blob: 22fcd27a0b58f6eb3c3574f99f6540763e835762 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 *
9 * Authors:
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
17
Eddie Dong85f455f2007-07-06 12:20:49 +030018#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080019#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020023#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/mm.h>
25#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020027#include <linux/moduleparam.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030028#include <linux/ftrace_event.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030030#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040031
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080033#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020034#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020035#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080036#include <asm/mce.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080037
Marcelo Tosatti229456f2009-06-17 09:22:14 -030038#include "trace.h"
39
Avi Kivity4ecac3f2008-05-13 13:23:38 +030040#define __ex(x) __kvm_handle_fault_on_reboot(x)
41
Avi Kivity6aa8b732006-12-10 02:21:36 -080042MODULE_AUTHOR("Qumranet");
43MODULE_LICENSE("GPL");
44
Avi Kivity4462d212009-03-23 17:53:37 +020045static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020046module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020047
Avi Kivity4462d212009-03-23 17:53:37 +020048static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020049module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080050
Avi Kivity4462d212009-03-23 17:53:37 +020051static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020052module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020053
Avi Kivity4462d212009-03-23 17:53:37 +020054static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020055module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080056
Nitin A Kamble3a624e22009-06-08 11:34:16 -070057static int __read_mostly enable_unrestricted_guest = 1;
58module_param_named(unrestricted_guest,
59 enable_unrestricted_guest, bool, S_IRUGO);
60
Avi Kivity4462d212009-03-23 17:53:37 +020061static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020062module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030063
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +080064/*
65 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
66 * ple_gap: upper bound on the amount of time between two successive
67 * executions of PAUSE in a loop. Also indicate if ple enabled.
68 * According to test, this time is usually small than 41 cycles.
69 * ple_window: upper bound on the amount of time a guest is allowed to execute
70 * in a PAUSE loop. Tests indicate that most spinlocks are held for
71 * less than 2^12 cycles
72 * Time is measured based on a counter that runs at the same rate as the TSC,
73 * refer SDM volume 3b section 21.6.13 & 22.1.3.
74 */
75#define KVM_VMX_DEFAULT_PLE_GAP 41
76#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
77static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
78module_param(ple_gap, int, S_IRUGO);
79
80static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
81module_param(ple_window, int, S_IRUGO);
82
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040083struct vmcs {
84 u32 revision_id;
85 u32 abort;
86 char data[0];
87};
88
Avi Kivity26bb0982009-09-07 11:14:12 +030089struct shared_msr_entry {
90 unsigned index;
91 u64 data;
92};
93
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040094struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100095 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030096 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030097 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040098 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030099 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200100 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300101 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400102 int nmsrs;
103 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400104#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300105 u64 msr_host_kernel_gs_base;
106 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400107#endif
108 struct vmcs *vmcs;
109 struct {
110 int loaded;
111 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200112 int gs_ldt_reload_needed;
113 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400114 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200115 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300116 int vm86_active;
117 u8 save_iopl;
118 struct kvm_save_segment {
119 u16 selector;
120 unsigned long base;
121 u32 limit;
122 u32 ar;
123 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200124 struct {
125 bool pending;
126 u8 vector;
127 unsigned rip;
128 } irq;
129 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800130 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300131 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200132
133 /* Support for vnmi-less CPUs */
134 int soft_vnmi_blocked;
135 ktime_t entry_time;
136 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800137 u32 exit_reason;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400138};
139
140static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
141{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000142 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400143}
144
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800145static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800146static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300147
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148static DEFINE_PER_CPU(struct vmcs *, vmxarea);
149static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300150static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800151
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200152static unsigned long *vmx_io_bitmap_a;
153static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200154static unsigned long *vmx_msr_bitmap_legacy;
155static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300156
Sheng Yang2384d2b2008-01-17 15:14:33 +0800157static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
158static DEFINE_SPINLOCK(vmx_vpid_lock);
159
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300160static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800161 int size;
162 int order;
163 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300164 u32 pin_based_exec_ctrl;
165 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800166 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300167 u32 vmexit_ctrl;
168 u32 vmentry_ctrl;
169} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800170
Hannes Ederefff9e52008-11-28 17:02:06 +0100171static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800172 u32 ept;
173 u32 vpid;
174} vmx_capability;
175
Avi Kivity6aa8b732006-12-10 02:21:36 -0800176#define VMX_SEGMENT_FIELD(seg) \
177 [VCPU_SREG_##seg] = { \
178 .selector = GUEST_##seg##_SELECTOR, \
179 .base = GUEST_##seg##_BASE, \
180 .limit = GUEST_##seg##_LIMIT, \
181 .ar_bytes = GUEST_##seg##_AR_BYTES, \
182 }
183
184static struct kvm_vmx_segment_field {
185 unsigned selector;
186 unsigned base;
187 unsigned limit;
188 unsigned ar_bytes;
189} kvm_vmx_segment_fields[] = {
190 VMX_SEGMENT_FIELD(CS),
191 VMX_SEGMENT_FIELD(DS),
192 VMX_SEGMENT_FIELD(ES),
193 VMX_SEGMENT_FIELD(FS),
194 VMX_SEGMENT_FIELD(GS),
195 VMX_SEGMENT_FIELD(SS),
196 VMX_SEGMENT_FIELD(TR),
197 VMX_SEGMENT_FIELD(LDTR),
198};
199
Avi Kivity26bb0982009-09-07 11:14:12 +0300200static u64 host_efer;
201
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300202static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
203
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300204/*
205 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
206 * away by decrementing the array size.
207 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800208static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800209#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300210 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211#endif
212 MSR_EFER, MSR_K6_STAR,
213};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200214#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800215
Avi Kivity6aa8b732006-12-10 02:21:36 -0800216static inline int is_page_fault(u32 intr_info)
217{
218 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
219 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100220 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800221}
222
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300223static inline int is_no_device(u32 intr_info)
224{
225 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
226 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100227 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300228}
229
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500230static inline int is_invalid_opcode(u32 intr_info)
231{
232 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
233 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100234 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500235}
236
Avi Kivity6aa8b732006-12-10 02:21:36 -0800237static inline int is_external_interrupt(u32 intr_info)
238{
239 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
240 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
241}
242
Andi Kleena0861c02009-06-08 17:37:09 +0800243static inline int is_machine_check(u32 intr_info)
244{
245 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
246 INTR_INFO_VALID_MASK)) ==
247 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
248}
249
Sheng Yang25c5f222008-03-28 13:18:56 +0800250static inline int cpu_has_vmx_msr_bitmap(void)
251{
Sheng Yang04547152009-04-01 15:52:31 +0800252 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800253}
254
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800255static inline int cpu_has_vmx_tpr_shadow(void)
256{
Sheng Yang04547152009-04-01 15:52:31 +0800257 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800258}
259
260static inline int vm_need_tpr_shadow(struct kvm *kvm)
261{
Sheng Yang04547152009-04-01 15:52:31 +0800262 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800263}
264
Sheng Yangf78e0e22007-10-29 09:40:42 +0800265static inline int cpu_has_secondary_exec_ctrls(void)
266{
Sheng Yang04547152009-04-01 15:52:31 +0800267 return vmcs_config.cpu_based_exec_ctrl &
268 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800269}
270
Avi Kivity774ead32007-12-26 13:57:04 +0200271static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800272{
Sheng Yang04547152009-04-01 15:52:31 +0800273 return vmcs_config.cpu_based_2nd_exec_ctrl &
274 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
275}
276
277static inline bool cpu_has_vmx_flexpriority(void)
278{
279 return cpu_has_vmx_tpr_shadow() &&
280 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800281}
282
Marcelo Tosattie7997942009-06-11 12:07:40 -0300283static inline bool cpu_has_vmx_ept_execute_only(void)
284{
285 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
286}
287
288static inline bool cpu_has_vmx_eptp_uncacheable(void)
289{
290 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
291}
292
293static inline bool cpu_has_vmx_eptp_writeback(void)
294{
295 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
296}
297
298static inline bool cpu_has_vmx_ept_2m_page(void)
299{
300 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
301}
302
Sheng Yangd56f5462008-04-25 10:13:16 +0800303static inline int cpu_has_vmx_invept_individual_addr(void)
304{
Sheng Yang04547152009-04-01 15:52:31 +0800305 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800306}
307
308static inline int cpu_has_vmx_invept_context(void)
309{
Sheng Yang04547152009-04-01 15:52:31 +0800310 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800311}
312
313static inline int cpu_has_vmx_invept_global(void)
314{
Sheng Yang04547152009-04-01 15:52:31 +0800315 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800316}
317
318static inline int cpu_has_vmx_ept(void)
319{
Sheng Yang04547152009-04-01 15:52:31 +0800320 return vmcs_config.cpu_based_2nd_exec_ctrl &
321 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800322}
323
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700324static inline int cpu_has_vmx_unrestricted_guest(void)
325{
326 return vmcs_config.cpu_based_2nd_exec_ctrl &
327 SECONDARY_EXEC_UNRESTRICTED_GUEST;
328}
329
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800330static inline int cpu_has_vmx_ple(void)
331{
332 return vmcs_config.cpu_based_2nd_exec_ctrl &
333 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
334}
335
Sheng Yangf78e0e22007-10-29 09:40:42 +0800336static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
337{
Sheng Yang04547152009-04-01 15:52:31 +0800338 return flexpriority_enabled &&
339 (cpu_has_vmx_virtualize_apic_accesses()) &&
340 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800341}
342
Sheng Yang2384d2b2008-01-17 15:14:33 +0800343static inline int cpu_has_vmx_vpid(void)
344{
Sheng Yang04547152009-04-01 15:52:31 +0800345 return vmcs_config.cpu_based_2nd_exec_ctrl &
346 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800347}
348
Sheng Yangf08864b2008-05-15 18:23:25 +0800349static inline int cpu_has_virtual_nmis(void)
350{
351 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
352}
353
Sheng Yang04547152009-04-01 15:52:31 +0800354static inline bool report_flexpriority(void)
355{
356 return flexpriority_enabled;
357}
358
Rusty Russell8b9cf982007-07-30 16:31:43 +1000359static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800360{
361 int i;
362
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400363 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300364 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300365 return i;
366 return -1;
367}
368
Sheng Yang2384d2b2008-01-17 15:14:33 +0800369static inline void __invvpid(int ext, u16 vpid, gva_t gva)
370{
371 struct {
372 u64 vpid : 16;
373 u64 rsvd : 48;
374 u64 gva;
375 } operand = { vpid, 0, gva };
376
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300377 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800378 /* CF==1 or ZF==1 --> rc = -1 */
379 "; ja 1f ; ud2 ; 1:"
380 : : "a"(&operand), "c"(ext) : "cc", "memory");
381}
382
Sheng Yang14394422008-04-28 12:24:45 +0800383static inline void __invept(int ext, u64 eptp, gpa_t gpa)
384{
385 struct {
386 u64 eptp, gpa;
387 } operand = {eptp, gpa};
388
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300389 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800390 /* CF==1 or ZF==1 --> rc = -1 */
391 "; ja 1f ; ud2 ; 1:\n"
392 : : "a" (&operand), "c" (ext) : "cc", "memory");
393}
394
Avi Kivity26bb0982009-09-07 11:14:12 +0300395static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300396{
397 int i;
398
Rusty Russell8b9cf982007-07-30 16:31:43 +1000399 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300400 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400401 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000402 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800403}
404
Avi Kivity6aa8b732006-12-10 02:21:36 -0800405static void vmcs_clear(struct vmcs *vmcs)
406{
407 u64 phys_addr = __pa(vmcs);
408 u8 error;
409
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300410 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800411 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
412 : "cc", "memory");
413 if (error)
414 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
415 vmcs, phys_addr);
416}
417
418static void __vcpu_clear(void *arg)
419{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000420 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800421 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800422
Rusty Russell8b9cf982007-07-30 16:31:43 +1000423 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400424 vmcs_clear(vmx->vmcs);
425 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800426 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800427 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300428 list_del(&vmx->local_vcpus_link);
429 vmx->vcpu.cpu = -1;
430 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800431}
432
Rusty Russell8b9cf982007-07-30 16:31:43 +1000433static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800434{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200435 if (vmx->vcpu.cpu == -1)
436 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200437 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800438}
439
Sheng Yang2384d2b2008-01-17 15:14:33 +0800440static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
441{
442 if (vmx->vpid == 0)
443 return;
444
445 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
446}
447
Sheng Yang14394422008-04-28 12:24:45 +0800448static inline void ept_sync_global(void)
449{
450 if (cpu_has_vmx_invept_global())
451 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
452}
453
454static inline void ept_sync_context(u64 eptp)
455{
Avi Kivity089d0342009-03-23 18:26:32 +0200456 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800457 if (cpu_has_vmx_invept_context())
458 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
459 else
460 ept_sync_global();
461 }
462}
463
464static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
465{
Avi Kivity089d0342009-03-23 18:26:32 +0200466 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800467 if (cpu_has_vmx_invept_individual_addr())
468 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
469 eptp, gpa);
470 else
471 ept_sync_context(eptp);
472 }
473}
474
Avi Kivity6aa8b732006-12-10 02:21:36 -0800475static unsigned long vmcs_readl(unsigned long field)
476{
477 unsigned long value;
478
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300479 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800480 : "=a"(value) : "d"(field) : "cc");
481 return value;
482}
483
484static u16 vmcs_read16(unsigned long field)
485{
486 return vmcs_readl(field);
487}
488
489static u32 vmcs_read32(unsigned long field)
490{
491 return vmcs_readl(field);
492}
493
494static u64 vmcs_read64(unsigned long field)
495{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800496#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800497 return vmcs_readl(field);
498#else
499 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
500#endif
501}
502
Avi Kivitye52de1b2007-01-05 16:36:56 -0800503static noinline void vmwrite_error(unsigned long field, unsigned long value)
504{
505 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
506 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
507 dump_stack();
508}
509
Avi Kivity6aa8b732006-12-10 02:21:36 -0800510static void vmcs_writel(unsigned long field, unsigned long value)
511{
512 u8 error;
513
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300514 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400515 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800516 if (unlikely(error))
517 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800518}
519
520static void vmcs_write16(unsigned long field, u16 value)
521{
522 vmcs_writel(field, value);
523}
524
525static void vmcs_write32(unsigned long field, u32 value)
526{
527 vmcs_writel(field, value);
528}
529
530static void vmcs_write64(unsigned long field, u64 value)
531{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800532 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300533#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800534 asm volatile ("");
535 vmcs_writel(field+1, value >> 32);
536#endif
537}
538
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300539static void vmcs_clear_bits(unsigned long field, u32 mask)
540{
541 vmcs_writel(field, vmcs_readl(field) & ~mask);
542}
543
544static void vmcs_set_bits(unsigned long field, u32 mask)
545{
546 vmcs_writel(field, vmcs_readl(field) | mask);
547}
548
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300549static void update_exception_bitmap(struct kvm_vcpu *vcpu)
550{
551 u32 eb;
552
Andi Kleena0861c02009-06-08 17:37:09 +0800553 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300554 if (!vcpu->fpu_active)
555 eb |= 1u << NM_VECTOR;
Avi Kivitye8a48342009-09-01 16:06:25 +0300556 /*
557 * Unconditionally intercept #DB so we can maintain dr6 without
558 * reading it every exit.
559 */
560 eb |= 1u << DB_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100561 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100562 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
563 eb |= 1u << BP_VECTOR;
564 }
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300565 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300566 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200567 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800568 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300569 vmcs_write32(EXCEPTION_BITMAP, eb);
570}
571
Avi Kivity33ed6322007-05-02 16:54:03 +0300572static void reload_tss(void)
573{
Avi Kivity33ed6322007-05-02 16:54:03 +0300574 /*
575 * VT restores TR but not its size. Useless.
576 */
577 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200578 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300579
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300580 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300581 descs = (void *)gdt.base;
582 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
583 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300584}
585
Avi Kivity92c0d902009-10-29 11:00:16 +0200586static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300587{
Roel Kluin3a34a882009-08-04 02:08:45 -0700588 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300589 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300590
Avi Kivity26bb0982009-09-07 11:14:12 +0300591 guest_efer = vmx->vcpu.arch.shadow_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700592
Avi Kivity51c6cf62007-08-29 03:48:05 +0300593 /*
594 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
595 * outside long mode
596 */
597 ignore_bits = EFER_NX | EFER_SCE;
598#ifdef CONFIG_X86_64
599 ignore_bits |= EFER_LMA | EFER_LME;
600 /* SCE is meaningful only in long mode on Intel */
601 if (guest_efer & EFER_LMA)
602 ignore_bits &= ~(u64)EFER_SCE;
603#endif
604 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
Avi Kivity26bb0982009-09-07 11:14:12 +0300605 return false;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300606
Avi Kivity51c6cf62007-08-29 03:48:05 +0300607 guest_efer &= ~ignore_bits;
608 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300609 vmx->guest_msrs[efer_offset].data = guest_efer;
610 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300611}
612
Avi Kivity04d2cc72007-09-10 18:10:54 +0300613static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300614{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300615 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300616 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300617
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400618 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300619 return;
620
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400621 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300622 /*
623 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
624 * allow segment selectors with cpl > 0 or ti == 1.
625 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300626 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200627 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300628 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200629 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400630 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200631 vmx->host_state.fs_reload_needed = 0;
632 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300633 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200634 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300635 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300636 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400637 if (!(vmx->host_state.gs_sel & 7))
638 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300639 else {
640 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200641 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300642 }
643
644#ifdef CONFIG_X86_64
645 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
646 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
647#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400648 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
649 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300650#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300651
652#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300653 if (is_long_mode(&vmx->vcpu)) {
654 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
655 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
656 }
Avi Kivity707c0872007-05-02 17:33:43 +0300657#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300658 for (i = 0; i < vmx->save_nmsrs; ++i)
659 kvm_set_shared_msr(vmx->guest_msrs[i].index,
660 vmx->guest_msrs[i].data);
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;
Avi Kivity089d0342009-03-23 18:26:32 +02002312 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002313 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002314 if (!enable_unrestricted_guest)
2315 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002316 if (!ple_gap)
2317 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002318 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2319 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002320
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002321 if (ple_gap) {
2322 vmcs_write32(PLE_GAP, ple_gap);
2323 vmcs_write32(PLE_WINDOW, ple_window);
2324 }
2325
Avi Kivityc7addb92007-09-16 18:58:32 +02002326 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2327 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2329
2330 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2331 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2332 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2333
2334 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2335 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2336 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002337 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2338 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002340#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341 rdmsrl(MSR_FS_BASE, a);
2342 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2343 rdmsrl(MSR_GS_BASE, a);
2344 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2345#else
2346 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2347 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2348#endif
2349
2350 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2351
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002352 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2354
Mike Dayd77c26f2007-10-08 09:02:08 -04002355 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002356 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002357 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2358 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2359 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002360
2361 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2362 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2363 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2364 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2365 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2366 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2367
Sheng Yang468d4722008-10-09 16:01:55 +08002368 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2369 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2370 host_pat = msr_low | ((u64) msr_high << 32);
2371 vmcs_write64(HOST_IA32_PAT, host_pat);
2372 }
2373 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2374 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2375 host_pat = msr_low | ((u64) msr_high << 32);
2376 /* Write the default value follow host pat */
2377 vmcs_write64(GUEST_IA32_PAT, host_pat);
2378 /* Keep arch.pat sync with GUEST_IA32_PAT */
2379 vmx->vcpu.arch.pat = host_pat;
2380 }
2381
Avi Kivity6aa8b732006-12-10 02:21:36 -08002382 for (i = 0; i < NR_VMX_MSR; ++i) {
2383 u32 index = vmx_msr_index[i];
2384 u32 data_low, data_high;
2385 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002386 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002387
2388 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2389 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002390 if (wrmsr_safe(index, data_low, data_high) < 0)
2391 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392 data = data_low | ((u64)data_high << 32);
Avi Kivity26bb0982009-09-07 11:14:12 +03002393 vmx->guest_msrs[j].index = i;
2394 vmx->guest_msrs[j].data = 0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002395 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002397
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002398 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399
2400 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002401 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2402
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002403 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2404 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2405
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002406 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2407 rdtscll(tsc_this);
2408 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2409 tsc_base = tsc_this;
2410
2411 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002412
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002413 return 0;
2414}
2415
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002416static int init_rmode(struct kvm *kvm)
2417{
2418 if (!init_rmode_tss(kvm))
2419 return 0;
2420 if (!init_rmode_identity_map(kvm))
2421 return 0;
2422 return 1;
2423}
2424
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002425static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2426{
2427 struct vcpu_vmx *vmx = to_vmx(vcpu);
2428 u64 msr;
2429 int ret;
2430
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002431 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002432 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002433 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002434 ret = -ENOMEM;
2435 goto out;
2436 }
2437
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002438 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002439
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002440 vmx->soft_vnmi_blocked = 0;
2441
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002442 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002443 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002444 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002445 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002446 msr |= MSR_IA32_APICBASE_BSP;
2447 kvm_set_apic_base(&vmx->vcpu, msr);
2448
2449 fx_init(&vmx->vcpu);
2450
Avi Kivity5706be02008-08-20 15:07:31 +03002451 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002452 /*
2453 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2454 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2455 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002456 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002457 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2458 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2459 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002460 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2461 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002462 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002463
2464 seg_setup(VCPU_SREG_DS);
2465 seg_setup(VCPU_SREG_ES);
2466 seg_setup(VCPU_SREG_FS);
2467 seg_setup(VCPU_SREG_GS);
2468 seg_setup(VCPU_SREG_SS);
2469
2470 vmcs_write16(GUEST_TR_SELECTOR, 0);
2471 vmcs_writel(GUEST_TR_BASE, 0);
2472 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2473 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2474
2475 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2476 vmcs_writel(GUEST_LDTR_BASE, 0);
2477 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2478 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2479
2480 vmcs_write32(GUEST_SYSENTER_CS, 0);
2481 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2482 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2483
2484 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002485 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002486 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002487 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002488 kvm_rip_write(vcpu, 0);
2489 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002490
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002491 vmcs_writel(GUEST_DR7, 0x400);
2492
2493 vmcs_writel(GUEST_GDTR_BASE, 0);
2494 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2495
2496 vmcs_writel(GUEST_IDTR_BASE, 0);
2497 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2498
2499 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2500 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2501 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2502
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002503 /* Special registers */
2504 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2505
2506 setup_msrs(vmx);
2507
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2509
Sheng Yangf78e0e22007-10-29 09:40:42 +08002510 if (cpu_has_vmx_tpr_shadow()) {
2511 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2512 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2513 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002514 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002515 vmcs_write32(TPR_THRESHOLD, 0);
2516 }
2517
2518 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2519 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002520 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002521
Sheng Yang2384d2b2008-01-17 15:14:33 +08002522 if (vmx->vpid != 0)
2523 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2524
Eduardo Habkostfa400522009-10-24 02:49:58 -02002525 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002526 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002527 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002528 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002529 vmx_fpu_activate(&vmx->vcpu);
2530 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002531
Sheng Yang2384d2b2008-01-17 15:14:33 +08002532 vpid_sync_vcpu_all(vmx);
2533
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002534 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002536 /* HACK: Don't enable emulation on guest boot/reset */
2537 vmx->emulation_required = 0;
2538
Avi Kivity6aa8b732006-12-10 02:21:36 -08002539out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002540 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002541 return ret;
2542}
2543
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002544static void enable_irq_window(struct kvm_vcpu *vcpu)
2545{
2546 u32 cpu_based_vm_exec_control;
2547
2548 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2549 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2550 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2551}
2552
2553static void enable_nmi_window(struct kvm_vcpu *vcpu)
2554{
2555 u32 cpu_based_vm_exec_control;
2556
2557 if (!cpu_has_virtual_nmis()) {
2558 enable_irq_window(vcpu);
2559 return;
2560 }
2561
2562 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2563 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2564 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2565}
2566
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002567static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002568{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002569 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002570 uint32_t intr;
2571 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002572
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002573 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002574
Avi Kivityfa89a812008-09-01 15:57:51 +03002575 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002576 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002577 vmx->rmode.irq.pending = true;
2578 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002579 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002580 if (vcpu->arch.interrupt.soft)
2581 vmx->rmode.irq.rip +=
2582 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002583 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2584 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2585 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002586 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002587 return;
2588 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002589 intr = irq | INTR_INFO_VALID_MASK;
2590 if (vcpu->arch.interrupt.soft) {
2591 intr |= INTR_TYPE_SOFT_INTR;
2592 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2593 vmx->vcpu.arch.event_exit_inst_len);
2594 } else
2595 intr |= INTR_TYPE_EXT_INTR;
2596 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002597}
2598
Sheng Yangf08864b2008-05-15 18:23:25 +08002599static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2600{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002601 struct vcpu_vmx *vmx = to_vmx(vcpu);
2602
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002603 if (!cpu_has_virtual_nmis()) {
2604 /*
2605 * Tracking the NMI-blocked state in software is built upon
2606 * finding the next open IRQ window. This, in turn, depends on
2607 * well-behaving guests: They have to keep IRQs disabled at
2608 * least as long as the NMI handler runs. Otherwise we may
2609 * cause NMI nesting, maybe breaking the guest. But as this is
2610 * highly unlikely, we can live with the residual risk.
2611 */
2612 vmx->soft_vnmi_blocked = 1;
2613 vmx->vnmi_blocked_time = 0;
2614 }
2615
Jan Kiszka487b3912008-09-26 09:30:56 +02002616 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002617 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002618 vmx->rmode.irq.pending = true;
2619 vmx->rmode.irq.vector = NMI_VECTOR;
2620 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2621 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2622 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2623 INTR_INFO_VALID_MASK);
2624 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2625 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2626 return;
2627 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002628 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2629 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002630}
2631
Gleb Natapovc4282df2009-04-21 17:45:07 +03002632static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002633{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002634 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002635 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002636
Gleb Natapovc4282df2009-04-21 17:45:07 +03002637 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2638 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2639 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002640}
2641
Gleb Natapov78646122009-03-23 12:12:11 +02002642static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2643{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002644 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2645 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2646 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002647}
2648
Izik Eiduscbc94022007-10-25 00:29:55 +02002649static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2650{
2651 int ret;
2652 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002653 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002654 .guest_phys_addr = addr,
2655 .memory_size = PAGE_SIZE * 3,
2656 .flags = 0,
2657 };
2658
2659 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2660 if (ret)
2661 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002662 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002663 return 0;
2664}
2665
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2667 int vec, u32 err_code)
2668{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002669 /*
2670 * Instruction with address size override prefix opcode 0x67
2671 * Cause the #SS fault with 0 error code in VM86 mode.
2672 */
2673 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002674 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002675 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002676 /*
2677 * Forward all other exceptions that are valid in real mode.
2678 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2679 * the required debugging infrastructure rework.
2680 */
2681 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002682 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002683 if (vcpu->guest_debug &
2684 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2685 return 0;
2686 kvm_queue_exception(vcpu, vec);
2687 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002688 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002689 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2690 return 0;
2691 /* fall through */
2692 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002693 case OF_VECTOR:
2694 case BR_VECTOR:
2695 case UD_VECTOR:
2696 case DF_VECTOR:
2697 case SS_VECTOR:
2698 case GP_VECTOR:
2699 case MF_VECTOR:
2700 kvm_queue_exception(vcpu, vec);
2701 return 1;
2702 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703 return 0;
2704}
2705
Andi Kleena0861c02009-06-08 17:37:09 +08002706/*
2707 * Trigger machine check on the host. We assume all the MSRs are already set up
2708 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2709 * We pass a fake environment to the machine check handler because we want
2710 * the guest to be always treated like user space, no matter what context
2711 * it used internally.
2712 */
2713static void kvm_machine_check(void)
2714{
2715#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2716 struct pt_regs regs = {
2717 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2718 .flags = X86_EFLAGS_IF,
2719 };
2720
2721 do_machine_check(&regs, 0);
2722#endif
2723}
2724
Avi Kivity851ba692009-08-24 11:10:17 +03002725static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002726{
2727 /* already handled by vcpu_run */
2728 return 1;
2729}
2730
Avi Kivity851ba692009-08-24 11:10:17 +03002731static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732{
Avi Kivity1155f762007-11-22 11:30:47 +02002733 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002734 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002735 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002736 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002737 u32 vect_info;
2738 enum emulation_result er;
2739
Avi Kivity1155f762007-11-22 11:30:47 +02002740 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002741 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2742
Andi Kleena0861c02009-06-08 17:37:09 +08002743 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002744 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002745
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002747 !is_page_fault(intr_info)) {
2748 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2749 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2750 vcpu->run->internal.ndata = 2;
2751 vcpu->run->internal.data[0] = vect_info;
2752 vcpu->run->internal.data[1] = intr_info;
2753 return 0;
2754 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002755
Jan Kiszkae4a41882008-09-26 09:30:46 +02002756 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002757 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002758
2759 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002760 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002761 return 1;
2762 }
2763
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002764 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002765 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002766 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002767 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002768 return 1;
2769 }
2770
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002772 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002773 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2775 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002776 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002777 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002778 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002779 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002780 trace_kvm_page_fault(cr2, error_code);
2781
Gleb Natapov3298b752009-05-11 13:35:46 +03002782 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002783 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002784 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002785 }
2786
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002787 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002788 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002789 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002790 if (vcpu->arch.halt_request) {
2791 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002792 return kvm_emulate_halt(vcpu);
2793 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002794 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002795 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002797 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002798 switch (ex_no) {
2799 case DB_VECTOR:
2800 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2801 if (!(vcpu->guest_debug &
2802 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2803 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2804 kvm_queue_exception(vcpu, DB_VECTOR);
2805 return 1;
2806 }
2807 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2808 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2809 /* fall through */
2810 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002812 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2813 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002814 break;
2815 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002816 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2817 kvm_run->ex.exception = ex_no;
2818 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002819 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002821 return 0;
2822}
2823
Avi Kivity851ba692009-08-24 11:10:17 +03002824static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002826 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827 return 1;
2828}
2829
Avi Kivity851ba692009-08-24 11:10:17 +03002830static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002831{
Avi Kivity851ba692009-08-24 11:10:17 +03002832 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002833 return 0;
2834}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002835
Avi Kivity851ba692009-08-24 11:10:17 +03002836static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837{
He, Qingbfdaab02007-09-12 14:18:28 +08002838 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002839 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002840 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841
Avi Kivity1165f5f2007-04-19 17:27:43 +03002842 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002843 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002844 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002845
2846 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002847 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002848 return 0;
2849 return 1;
2850 }
2851
2852 size = (exit_qualification & 7) + 1;
2853 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002854 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002855
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002856 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002857 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858}
2859
Ingo Molnar102d8322007-02-19 14:37:47 +02002860static void
2861vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2862{
2863 /*
2864 * Patch in the VMCALL instruction:
2865 */
2866 hypercall[0] = 0x0f;
2867 hypercall[1] = 0x01;
2868 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002869}
2870
Avi Kivity851ba692009-08-24 11:10:17 +03002871static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002873 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874 int cr;
2875 int reg;
2876
He, Qingbfdaab02007-09-12 14:18:28 +08002877 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002878 cr = exit_qualification & 15;
2879 reg = (exit_qualification >> 8) & 15;
2880 switch ((exit_qualification >> 4) & 3) {
2881 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002882 val = kvm_register_read(vcpu, reg);
2883 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884 switch (cr) {
2885 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002886 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887 skip_emulated_instruction(vcpu);
2888 return 1;
2889 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002890 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891 skip_emulated_instruction(vcpu);
2892 return 1;
2893 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002894 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002895 skip_emulated_instruction(vcpu);
2896 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002897 case 8: {
2898 u8 cr8_prev = kvm_get_cr8(vcpu);
2899 u8 cr8 = kvm_register_read(vcpu, reg);
2900 kvm_set_cr8(vcpu, cr8);
2901 skip_emulated_instruction(vcpu);
2902 if (irqchip_in_kernel(vcpu->kvm))
2903 return 1;
2904 if (cr8_prev <= cr8)
2905 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002906 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002907 return 0;
2908 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909 };
2910 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002911 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002912 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002913 vcpu->arch.cr0 &= ~X86_CR0_TS;
2914 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002915 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002916 skip_emulated_instruction(vcpu);
2917 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 case 1: /*mov from cr*/
2919 switch (cr) {
2920 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002921 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002922 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923 skip_emulated_instruction(vcpu);
2924 return 1;
2925 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002926 val = kvm_get_cr8(vcpu);
2927 kvm_register_write(vcpu, reg, val);
2928 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002929 skip_emulated_instruction(vcpu);
2930 return 1;
2931 }
2932 break;
2933 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002934 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935
2936 skip_emulated_instruction(vcpu);
2937 return 1;
2938 default:
2939 break;
2940 }
Avi Kivity851ba692009-08-24 11:10:17 +03002941 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002942 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943 (int)(exit_qualification >> 4) & 3, cr);
2944 return 0;
2945}
2946
Avi Kivity851ba692009-08-24 11:10:17 +03002947static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948{
He, Qingbfdaab02007-09-12 14:18:28 +08002949 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002950 unsigned long val;
2951 int dr, reg;
2952
Avi Kivity0a79b002009-09-01 12:03:25 +03002953 if (!kvm_require_cpl(vcpu, 0))
2954 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002955 dr = vmcs_readl(GUEST_DR7);
2956 if (dr & DR7_GD) {
2957 /*
2958 * As the vm-exit takes precedence over the debug trap, we
2959 * need to emulate the latter, either for the host or the
2960 * guest debugging itself.
2961 */
2962 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002963 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2964 vcpu->run->debug.arch.dr7 = dr;
2965 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002966 vmcs_readl(GUEST_CS_BASE) +
2967 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002968 vcpu->run->debug.arch.exception = DB_VECTOR;
2969 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002970 return 0;
2971 } else {
2972 vcpu->arch.dr7 &= ~DR7_GD;
2973 vcpu->arch.dr6 |= DR6_BD;
2974 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2975 kvm_queue_exception(vcpu, DB_VECTOR);
2976 return 1;
2977 }
2978 }
2979
He, Qingbfdaab02007-09-12 14:18:28 +08002980 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002981 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2982 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2983 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002985 case 0 ... 3:
2986 val = vcpu->arch.db[dr];
2987 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002988 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002989 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002990 break;
2991 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002992 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993 break;
2994 default:
2995 val = 0;
2996 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002997 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002998 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002999 val = vcpu->arch.regs[reg];
3000 switch (dr) {
3001 case 0 ... 3:
3002 vcpu->arch.db[dr] = val;
3003 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3004 vcpu->arch.eff_db[dr] = val;
3005 break;
3006 case 4 ... 5:
3007 if (vcpu->arch.cr4 & X86_CR4_DE)
3008 kvm_queue_exception(vcpu, UD_VECTOR);
3009 break;
3010 case 6:
3011 if (val & 0xffffffff00000000ULL) {
3012 kvm_queue_exception(vcpu, GP_VECTOR);
3013 break;
3014 }
3015 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3016 break;
3017 case 7:
3018 if (val & 0xffffffff00000000ULL) {
3019 kvm_queue_exception(vcpu, GP_VECTOR);
3020 break;
3021 }
3022 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3023 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3024 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3025 vcpu->arch.switch_db_regs =
3026 (val & DR7_BP_EN_MASK);
3027 }
3028 break;
3029 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031 skip_emulated_instruction(vcpu);
3032 return 1;
3033}
3034
Avi Kivity851ba692009-08-24 11:10:17 +03003035static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003036{
Avi Kivity06465c52007-02-28 20:46:53 +02003037 kvm_emulate_cpuid(vcpu);
3038 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003039}
3040
Avi Kivity851ba692009-08-24 11:10:17 +03003041static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003042{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003043 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003044 u64 data;
3045
3046 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003047 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003048 return 1;
3049 }
3050
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003051 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003052
Avi Kivity6aa8b732006-12-10 02:21:36 -08003053 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003054 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3055 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003056 skip_emulated_instruction(vcpu);
3057 return 1;
3058}
3059
Avi Kivity851ba692009-08-24 11:10:17 +03003060static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003062 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3063 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3064 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003065
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003066 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003067
Avi Kivity6aa8b732006-12-10 02:21:36 -08003068 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003069 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003070 return 1;
3071 }
3072
3073 skip_emulated_instruction(vcpu);
3074 return 1;
3075}
3076
Avi Kivity851ba692009-08-24 11:10:17 +03003077static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003078{
3079 return 1;
3080}
3081
Avi Kivity851ba692009-08-24 11:10:17 +03003082static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003083{
Eddie Dong85f455f2007-07-06 12:20:49 +03003084 u32 cpu_based_vm_exec_control;
3085
3086 /* clear pending irq */
3087 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3088 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3089 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003090
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003091 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003092
Dor Laorc1150d82007-01-05 16:36:24 -08003093 /*
3094 * If the user space waits to inject interrupts, exit as soon as
3095 * possible
3096 */
Gleb Natapov80618232009-04-21 17:44:56 +03003097 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003098 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003099 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003100 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003101 return 0;
3102 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103 return 1;
3104}
3105
Avi Kivity851ba692009-08-24 11:10:17 +03003106static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003107{
3108 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003109 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003110}
3111
Avi Kivity851ba692009-08-24 11:10:17 +03003112static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003113{
Dor Laor510043d2007-02-19 18:25:43 +02003114 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003115 kvm_emulate_hypercall(vcpu);
3116 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003117}
3118
Avi Kivity851ba692009-08-24 11:10:17 +03003119static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003120{
3121 kvm_queue_exception(vcpu, UD_VECTOR);
3122 return 1;
3123}
3124
Avi Kivity851ba692009-08-24 11:10:17 +03003125static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003126{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003127 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003128
3129 kvm_mmu_invlpg(vcpu, exit_qualification);
3130 skip_emulated_instruction(vcpu);
3131 return 1;
3132}
3133
Avi Kivity851ba692009-08-24 11:10:17 +03003134static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003135{
3136 skip_emulated_instruction(vcpu);
3137 /* TODO: Add support for VT-d/pass-through device */
3138 return 1;
3139}
3140
Avi Kivity851ba692009-08-24 11:10:17 +03003141static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003142{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003143 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003144 enum emulation_result er;
3145 unsigned long offset;
3146
Sheng Yangf9c617f2009-03-25 10:08:52 +08003147 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003148 offset = exit_qualification & 0xffful;
3149
Avi Kivity851ba692009-08-24 11:10:17 +03003150 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003151
3152 if (er != EMULATE_DONE) {
3153 printk(KERN_ERR
3154 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3155 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003156 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003157 }
3158 return 1;
3159}
3160
Avi Kivity851ba692009-08-24 11:10:17 +03003161static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003162{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003163 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003164 unsigned long exit_qualification;
3165 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003166 int reason, type, idt_v;
3167
3168 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3169 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003170
3171 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3172
3173 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003174 if (reason == TASK_SWITCH_GATE && idt_v) {
3175 switch (type) {
3176 case INTR_TYPE_NMI_INTR:
3177 vcpu->arch.nmi_injected = false;
3178 if (cpu_has_virtual_nmis())
3179 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3180 GUEST_INTR_STATE_NMI);
3181 break;
3182 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003183 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003184 kvm_clear_interrupt_queue(vcpu);
3185 break;
3186 case INTR_TYPE_HARD_EXCEPTION:
3187 case INTR_TYPE_SOFT_EXCEPTION:
3188 kvm_clear_exception_queue(vcpu);
3189 break;
3190 default:
3191 break;
3192 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003193 }
Izik Eidus37817f22008-03-24 23:14:53 +02003194 tss_selector = exit_qualification;
3195
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003196 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3197 type != INTR_TYPE_EXT_INTR &&
3198 type != INTR_TYPE_NMI_INTR))
3199 skip_emulated_instruction(vcpu);
3200
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003201 if (!kvm_task_switch(vcpu, tss_selector, reason))
3202 return 0;
3203
3204 /* clear all local breakpoint enable flags */
3205 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3206
3207 /*
3208 * TODO: What about debug traps on tss switch?
3209 * Are we supposed to inject them and update dr6?
3210 */
3211
3212 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003213}
3214
Avi Kivity851ba692009-08-24 11:10:17 +03003215static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003216{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003217 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003218 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003219 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003220
Sheng Yangf9c617f2009-03-25 10:08:52 +08003221 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003222
3223 if (exit_qualification & (1 << 6)) {
3224 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003225 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003226 }
3227
3228 gla_validity = (exit_qualification >> 7) & 0x3;
3229 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3230 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3231 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3232 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003233 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003234 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3235 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003236 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3237 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003238 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003239 }
3240
3241 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003242 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003243 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003244}
3245
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003246static u64 ept_rsvd_mask(u64 spte, int level)
3247{
3248 int i;
3249 u64 mask = 0;
3250
3251 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3252 mask |= (1ULL << i);
3253
3254 if (level > 2)
3255 /* bits 7:3 reserved */
3256 mask |= 0xf8;
3257 else if (level == 2) {
3258 if (spte & (1ULL << 7))
3259 /* 2MB ref, bits 20:12 reserved */
3260 mask |= 0x1ff000;
3261 else
3262 /* bits 6:3 reserved */
3263 mask |= 0x78;
3264 }
3265
3266 return mask;
3267}
3268
3269static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3270 int level)
3271{
3272 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3273
3274 /* 010b (write-only) */
3275 WARN_ON((spte & 0x7) == 0x2);
3276
3277 /* 110b (write/execute) */
3278 WARN_ON((spte & 0x7) == 0x6);
3279
3280 /* 100b (execute-only) and value not supported by logical processor */
3281 if (!cpu_has_vmx_ept_execute_only())
3282 WARN_ON((spte & 0x7) == 0x4);
3283
3284 /* not 000b */
3285 if ((spte & 0x7)) {
3286 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3287
3288 if (rsvd_bits != 0) {
3289 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3290 __func__, rsvd_bits);
3291 WARN_ON(1);
3292 }
3293
3294 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3295 u64 ept_mem_type = (spte & 0x38) >> 3;
3296
3297 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3298 ept_mem_type == 7) {
3299 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3300 __func__, ept_mem_type);
3301 WARN_ON(1);
3302 }
3303 }
3304 }
3305}
3306
Avi Kivity851ba692009-08-24 11:10:17 +03003307static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003308{
3309 u64 sptes[4];
3310 int nr_sptes, i;
3311 gpa_t gpa;
3312
3313 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3314
3315 printk(KERN_ERR "EPT: Misconfiguration.\n");
3316 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3317
3318 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3319
3320 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3321 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3322
Avi Kivity851ba692009-08-24 11:10:17 +03003323 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3324 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003325
3326 return 0;
3327}
3328
Avi Kivity851ba692009-08-24 11:10:17 +03003329static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003330{
3331 u32 cpu_based_vm_exec_control;
3332
3333 /* clear pending NMI */
3334 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3335 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3336 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3337 ++vcpu->stat.nmi_window_exits;
3338
3339 return 1;
3340}
3341
Mohammed Gamal80ced182009-09-01 12:48:18 +02003342static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003343{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003344 struct vcpu_vmx *vmx = to_vmx(vcpu);
3345 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003346 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003347
3348 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003349 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003350
Mohammed Gamal80ced182009-09-01 12:48:18 +02003351 if (err == EMULATE_DO_MMIO) {
3352 ret = 0;
3353 goto out;
3354 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003355
3356 if (err != EMULATE_DONE) {
3357 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003358 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3359 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003360 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003361 ret = 0;
3362 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003363 }
3364
3365 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003366 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003367 if (need_resched())
3368 schedule();
3369 }
3370
Mohammed Gamal80ced182009-09-01 12:48:18 +02003371 vmx->emulation_required = 0;
3372out:
3373 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003374}
3375
Avi Kivity6aa8b732006-12-10 02:21:36 -08003376/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003377 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3378 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3379 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003380static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003381{
3382 skip_emulated_instruction(vcpu);
3383 kvm_vcpu_on_spin(vcpu);
3384
3385 return 1;
3386}
3387
3388/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003389 * The exit handlers return 1 if the exit was handled fully and guest execution
3390 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3391 * to be done to userspace and return 0.
3392 */
Avi Kivity851ba692009-08-24 11:10:17 +03003393static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003394 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3395 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003396 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003397 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003399 [EXIT_REASON_CR_ACCESS] = handle_cr,
3400 [EXIT_REASON_DR_ACCESS] = handle_dr,
3401 [EXIT_REASON_CPUID] = handle_cpuid,
3402 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3403 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3404 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3405 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003406 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003407 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003408 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3409 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3410 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3411 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3412 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3413 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3414 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3415 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3416 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003417 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3418 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003419 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003420 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003421 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003422 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3423 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003424 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003425};
3426
3427static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003428 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429
3430/*
3431 * The guest has exited. See if we can fix it or if we need userspace
3432 * assistance.
3433 */
Avi Kivity851ba692009-08-24 11:10:17 +03003434static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003435{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003436 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003437 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003438 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003439
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003440 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003441
Mohammed Gamal80ced182009-09-01 12:48:18 +02003442 /* If guest state is invalid, start emulating */
3443 if (vmx->emulation_required && emulate_invalid_guest_state)
3444 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003445
Sheng Yang14394422008-04-28 12:24:45 +08003446 /* Access CR3 don't cause VMExit in paging mode, so we need
3447 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003448 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003449 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003450
Avi Kivity29bd8a72007-09-10 17:27:03 +03003451 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003452 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3453 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003454 = vmcs_read32(VM_INSTRUCTION_ERROR);
3455 return 0;
3456 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457
Mike Dayd77c26f2007-10-08 09:02:08 -04003458 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003459 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003460 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3461 exit_reason != EXIT_REASON_TASK_SWITCH))
3462 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3463 "(0x%x) and exit reason is 0x%x\n",
3464 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003465
3466 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003467 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003468 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003469 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003470 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003471 /*
3472 * This CPU don't support us in finding the end of an
3473 * NMI-blocked window if the guest runs with IRQs
3474 * disabled. So we pull the trigger after 1 s of
3475 * futile waiting, but inform the user about this.
3476 */
3477 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3478 "state on VCPU %d after 1 s timeout\n",
3479 __func__, vcpu->vcpu_id);
3480 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003481 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003482 }
3483
Avi Kivity6aa8b732006-12-10 02:21:36 -08003484 if (exit_reason < kvm_vmx_max_exit_handlers
3485 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003486 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003487 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003488 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3489 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003490 }
3491 return 0;
3492}
3493
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003494static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003495{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003496 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003497 vmcs_write32(TPR_THRESHOLD, 0);
3498 return;
3499 }
3500
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003501 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003502}
3503
Avi Kivitycf393f72008-07-01 16:20:21 +03003504static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3505{
3506 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003507 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003508 bool unblock_nmi;
3509 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003510 int type;
3511 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003512
3513 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003514
Andi Kleena0861c02009-06-08 17:37:09 +08003515 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3516
3517 /* Handle machine checks before interrupts are enabled */
3518 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3519 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3520 && is_machine_check(exit_intr_info)))
3521 kvm_machine_check();
3522
Gleb Natapov20f65982009-05-11 13:35:55 +03003523 /* We need to handle NMIs before interrupts are enabled */
3524 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003525 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003526 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003527
3528 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3529
Avi Kivitycf393f72008-07-01 16:20:21 +03003530 if (cpu_has_virtual_nmis()) {
3531 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3532 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3533 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003534 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003535 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3536 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003537 * SDM 3: 23.2.2 (September 2008)
3538 * Bit 12 is undefined in any of the following cases:
3539 * If the VM exit sets the valid bit in the IDT-vectoring
3540 * information field.
3541 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003542 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003543 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3544 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003545 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3546 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003547 } else if (unlikely(vmx->soft_vnmi_blocked))
3548 vmx->vnmi_blocked_time +=
3549 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003550
Gleb Natapov37b96e92009-03-30 16:03:13 +03003551 vmx->vcpu.arch.nmi_injected = false;
3552 kvm_clear_exception_queue(&vmx->vcpu);
3553 kvm_clear_interrupt_queue(&vmx->vcpu);
3554
3555 if (!idtv_info_valid)
3556 return;
3557
Avi Kivity668f6122008-07-02 09:28:55 +03003558 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3559 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003560
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003561 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003562 case INTR_TYPE_NMI_INTR:
3563 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003564 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003565 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003566 * Clear bit "block by NMI" before VM entry if a NMI
3567 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003568 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003569 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3570 GUEST_INTR_STATE_NMI);
3571 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003572 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003573 vmx->vcpu.arch.event_exit_inst_len =
3574 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3575 /* fall through */
3576 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003577 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003578 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3579 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003580 } else
3581 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003582 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003583 case INTR_TYPE_SOFT_INTR:
3584 vmx->vcpu.arch.event_exit_inst_len =
3585 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3586 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003587 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003588 kvm_queue_interrupt(&vmx->vcpu, vector,
3589 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003590 break;
3591 default:
3592 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003593 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003594}
3595
Avi Kivity9c8cba32007-11-22 11:42:59 +02003596/*
3597 * Failure to inject an interrupt should give us the information
3598 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3599 * when fetching the interrupt redirection bitmap in the real-mode
3600 * tss, this doesn't happen. So we do it ourselves.
3601 */
3602static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3603{
3604 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003605 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003606 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003607 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003608 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3609 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3610 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3611 return;
3612 }
3613 vmx->idt_vectoring_info =
3614 VECTORING_INFO_VALID_MASK
3615 | INTR_TYPE_EXT_INTR
3616 | vmx->rmode.irq.vector;
3617}
3618
Avi Kivityc8019492008-07-14 14:44:59 +03003619#ifdef CONFIG_X86_64
3620#define R "r"
3621#define Q "q"
3622#else
3623#define R "e"
3624#define Q "l"
3625#endif
3626
Avi Kivity851ba692009-08-24 11:10:17 +03003627static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003628{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003629 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003630
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003631 /* Record the guest's net vcpu time for enforced NMI injections. */
3632 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3633 vmx->entry_time = ktime_get();
3634
Mohammed Gamal80ced182009-09-01 12:48:18 +02003635 /* Don't enter VMX if guest state is invalid, let the exit handler
3636 start emulation until we arrive back to a valid state */
3637 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003638 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003639
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003640 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3641 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3642 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3643 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3644
Gleb Natapov787ff732009-05-18 11:44:06 +03003645 /* When single-stepping over STI and MOV SS, we must clear the
3646 * corresponding interruptibility bits in the guest state. Otherwise
3647 * vmentry fails as it then expects bit 14 (BS) in pending debug
3648 * exceptions being set, but that's not correct for the guest debugging
3649 * case. */
3650 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3651 vmx_set_interrupt_shadow(vcpu, 0);
3652
Avi Kivitye6adf282007-04-30 16:07:54 +03003653 /*
3654 * Loading guest fpu may have cleared host cr0.ts
3655 */
3656 vmcs_writel(HOST_CR0, read_cr0());
3657
Avi Kivitye8a48342009-09-01 16:06:25 +03003658 if (vcpu->arch.switch_db_regs)
3659 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003660
Mike Dayd77c26f2007-10-08 09:02:08 -04003661 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003662 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003663 "push %%"R"dx; push %%"R"bp;"
3664 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003665 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3666 "je 1f \n\t"
3667 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003668 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003669 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003670 /* Reload cr2 if changed */
3671 "mov %c[cr2](%0), %%"R"ax \n\t"
3672 "mov %%cr2, %%"R"dx \n\t"
3673 "cmp %%"R"ax, %%"R"dx \n\t"
3674 "je 2f \n\t"
3675 "mov %%"R"ax, %%cr2 \n\t"
3676 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003677 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003678 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003679 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003680 "mov %c[rax](%0), %%"R"ax \n\t"
3681 "mov %c[rbx](%0), %%"R"bx \n\t"
3682 "mov %c[rdx](%0), %%"R"dx \n\t"
3683 "mov %c[rsi](%0), %%"R"si \n\t"
3684 "mov %c[rdi](%0), %%"R"di \n\t"
3685 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003686#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003687 "mov %c[r8](%0), %%r8 \n\t"
3688 "mov %c[r9](%0), %%r9 \n\t"
3689 "mov %c[r10](%0), %%r10 \n\t"
3690 "mov %c[r11](%0), %%r11 \n\t"
3691 "mov %c[r12](%0), %%r12 \n\t"
3692 "mov %c[r13](%0), %%r13 \n\t"
3693 "mov %c[r14](%0), %%r14 \n\t"
3694 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003696 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3697
Avi Kivity6aa8b732006-12-10 02:21:36 -08003698 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003699 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003700 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003701 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003702 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003703 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003704 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003705 "xchg %0, (%%"R"sp) \n\t"
3706 "mov %%"R"ax, %c[rax](%0) \n\t"
3707 "mov %%"R"bx, %c[rbx](%0) \n\t"
3708 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3709 "mov %%"R"dx, %c[rdx](%0) \n\t"
3710 "mov %%"R"si, %c[rsi](%0) \n\t"
3711 "mov %%"R"di, %c[rdi](%0) \n\t"
3712 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003713#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003714 "mov %%r8, %c[r8](%0) \n\t"
3715 "mov %%r9, %c[r9](%0) \n\t"
3716 "mov %%r10, %c[r10](%0) \n\t"
3717 "mov %%r11, %c[r11](%0) \n\t"
3718 "mov %%r12, %c[r12](%0) \n\t"
3719 "mov %%r13, %c[r13](%0) \n\t"
3720 "mov %%r14, %c[r14](%0) \n\t"
3721 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003722#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003723 "mov %%cr2, %%"R"ax \n\t"
3724 "mov %%"R"ax, %c[cr2](%0) \n\t"
3725
3726 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003727 "setbe %c[fail](%0) \n\t"
3728 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3729 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3730 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003731 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003732 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3733 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3734 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3735 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3736 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3737 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3738 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003739#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003740 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3741 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3742 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3743 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3744 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3745 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3746 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3747 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003748#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003749 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003750 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003751 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003752#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003753 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3754#endif
3755 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003756
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003757 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3758 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003759 vcpu->arch.regs_dirty = 0;
3760
Avi Kivitye8a48342009-09-01 16:06:25 +03003761 if (vcpu->arch.switch_db_regs)
3762 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003763
Avi Kivity1155f762007-11-22 11:30:47 +02003764 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003765 if (vmx->rmode.irq.pending)
3766 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003767
Mike Dayd77c26f2007-10-08 09:02:08 -04003768 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003769 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003770
Avi Kivitycf393f72008-07-01 16:20:21 +03003771 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003772}
3773
Avi Kivityc8019492008-07-14 14:44:59 +03003774#undef R
3775#undef Q
3776
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3778{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003779 struct vcpu_vmx *vmx = to_vmx(vcpu);
3780
3781 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003782 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003783 free_vmcs(vmx->vmcs);
3784 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003785 }
3786}
3787
3788static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3789{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003790 struct vcpu_vmx *vmx = to_vmx(vcpu);
3791
Sheng Yang2384d2b2008-01-17 15:14:33 +08003792 spin_lock(&vmx_vpid_lock);
3793 if (vmx->vpid != 0)
3794 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3795 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003796 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003797 kfree(vmx->guest_msrs);
3798 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003799 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003800}
3801
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003802static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003804 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003805 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003806 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003807
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003808 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003809 return ERR_PTR(-ENOMEM);
3810
Sheng Yang2384d2b2008-01-17 15:14:33 +08003811 allocate_vpid(vmx);
3812
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003813 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3814 if (err)
3815 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003816
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003817 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003818 if (!vmx->guest_msrs) {
3819 err = -ENOMEM;
3820 goto uninit_vcpu;
3821 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003822
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003823 vmx->vmcs = alloc_vmcs();
3824 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003825 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003826
3827 vmcs_clear(vmx->vmcs);
3828
Avi Kivity15ad7142007-07-11 18:17:21 +03003829 cpu = get_cpu();
3830 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003831 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003832 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003833 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003834 if (err)
3835 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003836 if (vm_need_virtualize_apic_accesses(kvm))
3837 if (alloc_apic_access_page(kvm) != 0)
3838 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003839
Sheng Yangb927a3c2009-07-21 10:42:48 +08003840 if (enable_ept) {
3841 if (!kvm->arch.ept_identity_map_addr)
3842 kvm->arch.ept_identity_map_addr =
3843 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003844 if (alloc_identity_pagetable(kvm) != 0)
3845 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003846 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003847
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003848 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003849
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003850free_vmcs:
3851 free_vmcs(vmx->vmcs);
3852free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003853 kfree(vmx->guest_msrs);
3854uninit_vcpu:
3855 kvm_vcpu_uninit(&vmx->vcpu);
3856free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003857 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003858 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003859}
3860
Yang, Sheng002c7f72007-07-31 14:23:01 +03003861static void __init vmx_check_processor_compat(void *rtn)
3862{
3863 struct vmcs_config vmcs_conf;
3864
3865 *(int *)rtn = 0;
3866 if (setup_vmcs_config(&vmcs_conf) < 0)
3867 *(int *)rtn = -EIO;
3868 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3869 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3870 smp_processor_id());
3871 *(int *)rtn = -EIO;
3872 }
3873}
3874
Sheng Yang67253af2008-04-25 10:20:22 +08003875static int get_ept_level(void)
3876{
3877 return VMX_EPT_DEFAULT_GAW + 1;
3878}
3879
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003880static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003881{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003882 u64 ret;
3883
Sheng Yang522c68c2009-04-27 20:35:43 +08003884 /* For VT-d and EPT combination
3885 * 1. MMIO: always map as UC
3886 * 2. EPT with VT-d:
3887 * a. VT-d without snooping control feature: can't guarantee the
3888 * result, try to trust guest.
3889 * b. VT-d with snooping control feature: snooping control feature of
3890 * VT-d engine can guarantee the cache correctness. Just set it
3891 * to WB to keep consistent with host. So the same as item 3.
3892 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3893 * consistent with host MTRR
3894 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003895 if (is_mmio)
3896 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003897 else if (vcpu->kvm->arch.iommu_domain &&
3898 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3899 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3900 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003901 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003902 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3903 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003904
3905 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003906}
3907
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003908static const struct trace_print_flags vmx_exit_reasons_str[] = {
3909 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3910 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3911 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3912 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3913 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3914 { EXIT_REASON_CR_ACCESS, "cr_access" },
3915 { EXIT_REASON_DR_ACCESS, "dr_access" },
3916 { EXIT_REASON_CPUID, "cpuid" },
3917 { EXIT_REASON_MSR_READ, "rdmsr" },
3918 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3919 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3920 { EXIT_REASON_HLT, "halt" },
3921 { EXIT_REASON_INVLPG, "invlpg" },
3922 { EXIT_REASON_VMCALL, "hypercall" },
3923 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3924 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3925 { EXIT_REASON_WBINVD, "wbinvd" },
3926 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3927 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3928 { -1, NULL }
3929};
3930
Joerg Roedel344f4142009-07-27 16:30:48 +02003931static bool vmx_gb_page_enable(void)
3932{
3933 return false;
3934}
3935
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003936static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937 .cpu_has_kvm_support = cpu_has_kvm_support,
3938 .disabled_by_bios = vmx_disabled_by_bios,
3939 .hardware_setup = hardware_setup,
3940 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003941 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003942 .hardware_enable = hardware_enable,
3943 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003944 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945
3946 .vcpu_create = vmx_create_vcpu,
3947 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003948 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949
Avi Kivity04d2cc72007-09-10 18:10:54 +03003950 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003951 .vcpu_load = vmx_vcpu_load,
3952 .vcpu_put = vmx_vcpu_put,
3953
3954 .set_guest_debug = set_guest_debug,
3955 .get_msr = vmx_get_msr,
3956 .set_msr = vmx_set_msr,
3957 .get_segment_base = vmx_get_segment_base,
3958 .get_segment = vmx_get_segment,
3959 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003960 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003961 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003962 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003963 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003964 .set_cr3 = vmx_set_cr3,
3965 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003966 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967 .get_idt = vmx_get_idt,
3968 .set_idt = vmx_set_idt,
3969 .get_gdt = vmx_get_gdt,
3970 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003971 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003972 .get_rflags = vmx_get_rflags,
3973 .set_rflags = vmx_set_rflags,
3974
3975 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003976
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003978 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003979 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003980 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3981 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003982 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003983 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003984 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003985 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003986 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003987 .nmi_allowed = vmx_nmi_allowed,
3988 .enable_nmi_window = enable_nmi_window,
3989 .enable_irq_window = enable_irq_window,
3990 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003991
Izik Eiduscbc94022007-10-25 00:29:55 +02003992 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003993 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003994 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003995
3996 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02003997 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003998};
3999
4000static int __init vmx_init(void)
4001{
Avi Kivity26bb0982009-09-07 11:14:12 +03004002 int r, i;
4003
4004 rdmsrl_safe(MSR_EFER, &host_efer);
4005
4006 for (i = 0; i < NR_VMX_MSR; ++i)
4007 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004008
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004009 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004010 if (!vmx_io_bitmap_a)
4011 return -ENOMEM;
4012
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004013 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004014 if (!vmx_io_bitmap_b) {
4015 r = -ENOMEM;
4016 goto out;
4017 }
4018
Avi Kivity58972972009-02-24 22:26:47 +02004019 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4020 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004021 r = -ENOMEM;
4022 goto out1;
4023 }
4024
Avi Kivity58972972009-02-24 22:26:47 +02004025 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4026 if (!vmx_msr_bitmap_longmode) {
4027 r = -ENOMEM;
4028 goto out2;
4029 }
4030
He, Qingfdef3ad2007-04-30 09:45:24 +03004031 /*
4032 * Allow direct access to the PC debug port (it is often used for I/O
4033 * delays, but the vmexits simply slow things down).
4034 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004035 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4036 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004037
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004038 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004039
Avi Kivity58972972009-02-24 22:26:47 +02004040 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4041 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004042
Sheng Yang2384d2b2008-01-17 15:14:33 +08004043 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4044
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004045 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004046 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004047 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004048
Avi Kivity58972972009-02-24 22:26:47 +02004049 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4050 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4051 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4052 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4053 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4054 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004055
Avi Kivity089d0342009-03-23 18:26:32 +02004056 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004057 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004058 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004059 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004060 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004061 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004062 kvm_enable_tdp();
4063 } else
4064 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004065
Avi Kivityc7addb92007-09-16 18:58:32 +02004066 if (bypass_guest_pf)
4067 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4068
He, Qingfdef3ad2007-04-30 09:45:24 +03004069 return 0;
4070
Avi Kivity58972972009-02-24 22:26:47 +02004071out3:
4072 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004073out2:
Avi Kivity58972972009-02-24 22:26:47 +02004074 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004075out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004076 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004077out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004078 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004079 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004080}
4081
4082static void __exit vmx_exit(void)
4083{
Avi Kivity58972972009-02-24 22:26:47 +02004084 free_page((unsigned long)vmx_msr_bitmap_legacy);
4085 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004086 free_page((unsigned long)vmx_io_bitmap_b);
4087 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004088
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004089 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004090}
4091
4092module_init(vmx_init)
4093module_exit(vmx_exit)