blob: ed97c6c7e648d63df152781251a6cc41d3c53942 [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;
Sheng Yang046d8712009-11-27 16:46:26 +08002312 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002313 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002314 enable_unrestricted_guest = 0;
2315 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002316 if (!enable_unrestricted_guest)
2317 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002318 if (!ple_gap)
2319 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002320 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2321 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002322
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002323 if (ple_gap) {
2324 vmcs_write32(PLE_GAP, ple_gap);
2325 vmcs_write32(PLE_WINDOW, ple_window);
2326 }
2327
Avi Kivityc7addb92007-09-16 18:58:32 +02002328 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2329 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2331
2332 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2333 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2334 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2335
2336 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2337 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2338 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002339 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2340 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002342#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343 rdmsrl(MSR_FS_BASE, a);
2344 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2345 rdmsrl(MSR_GS_BASE, a);
2346 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2347#else
2348 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2349 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2350#endif
2351
2352 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2353
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002354 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2356
Mike Dayd77c26f2007-10-08 09:02:08 -04002357 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002358 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002359 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2360 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2361 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362
2363 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2364 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2365 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2366 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2367 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2368 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2369
Sheng Yang468d4722008-10-09 16:01:55 +08002370 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2371 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2372 host_pat = msr_low | ((u64) msr_high << 32);
2373 vmcs_write64(HOST_IA32_PAT, host_pat);
2374 }
2375 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2376 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2377 host_pat = msr_low | ((u64) msr_high << 32);
2378 /* Write the default value follow host pat */
2379 vmcs_write64(GUEST_IA32_PAT, host_pat);
2380 /* Keep arch.pat sync with GUEST_IA32_PAT */
2381 vmx->vcpu.arch.pat = host_pat;
2382 }
2383
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384 for (i = 0; i < NR_VMX_MSR; ++i) {
2385 u32 index = vmx_msr_index[i];
2386 u32 data_low, data_high;
2387 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002388 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389
2390 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2391 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002392 if (wrmsr_safe(index, data_low, data_high) < 0)
2393 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394 data = data_low | ((u64)data_high << 32);
Avi Kivity26bb0982009-09-07 11:14:12 +03002395 vmx->guest_msrs[j].index = i;
2396 vmx->guest_msrs[j].data = 0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002397 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002398 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002400 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401
2402 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002403 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2404
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002405 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2406 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2407
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002408 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2409 rdtscll(tsc_this);
2410 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2411 tsc_base = tsc_this;
2412
2413 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002414
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002415 return 0;
2416}
2417
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002418static int init_rmode(struct kvm *kvm)
2419{
2420 if (!init_rmode_tss(kvm))
2421 return 0;
2422 if (!init_rmode_identity_map(kvm))
2423 return 0;
2424 return 1;
2425}
2426
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002427static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2428{
2429 struct vcpu_vmx *vmx = to_vmx(vcpu);
2430 u64 msr;
2431 int ret;
2432
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002433 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002434 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002435 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002436 ret = -ENOMEM;
2437 goto out;
2438 }
2439
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002440 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002441
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002442 vmx->soft_vnmi_blocked = 0;
2443
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002444 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002445 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002446 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002447 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002448 msr |= MSR_IA32_APICBASE_BSP;
2449 kvm_set_apic_base(&vmx->vcpu, msr);
2450
2451 fx_init(&vmx->vcpu);
2452
Avi Kivity5706be02008-08-20 15:07:31 +03002453 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002454 /*
2455 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2456 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2457 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002458 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002459 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2460 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2461 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002462 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2463 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002464 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002465
2466 seg_setup(VCPU_SREG_DS);
2467 seg_setup(VCPU_SREG_ES);
2468 seg_setup(VCPU_SREG_FS);
2469 seg_setup(VCPU_SREG_GS);
2470 seg_setup(VCPU_SREG_SS);
2471
2472 vmcs_write16(GUEST_TR_SELECTOR, 0);
2473 vmcs_writel(GUEST_TR_BASE, 0);
2474 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2475 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2476
2477 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2478 vmcs_writel(GUEST_LDTR_BASE, 0);
2479 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2480 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2481
2482 vmcs_write32(GUEST_SYSENTER_CS, 0);
2483 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2484 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2485
2486 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002487 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002488 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002489 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002490 kvm_rip_write(vcpu, 0);
2491 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002492
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002493 vmcs_writel(GUEST_DR7, 0x400);
2494
2495 vmcs_writel(GUEST_GDTR_BASE, 0);
2496 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2497
2498 vmcs_writel(GUEST_IDTR_BASE, 0);
2499 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2500
2501 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2502 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2503 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2504
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002505 /* Special registers */
2506 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2507
2508 setup_msrs(vmx);
2509
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2511
Sheng Yangf78e0e22007-10-29 09:40:42 +08002512 if (cpu_has_vmx_tpr_shadow()) {
2513 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2514 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2515 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002516 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002517 vmcs_write32(TPR_THRESHOLD, 0);
2518 }
2519
2520 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2521 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002522 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523
Sheng Yang2384d2b2008-01-17 15:14:33 +08002524 if (vmx->vpid != 0)
2525 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2526
Eduardo Habkostfa400522009-10-24 02:49:58 -02002527 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002528 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002529 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002530 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002531 vmx_fpu_activate(&vmx->vcpu);
2532 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533
Sheng Yang2384d2b2008-01-17 15:14:33 +08002534 vpid_sync_vcpu_all(vmx);
2535
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002536 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002538 /* HACK: Don't enable emulation on guest boot/reset */
2539 vmx->emulation_required = 0;
2540
Avi Kivity6aa8b732006-12-10 02:21:36 -08002541out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002542 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543 return ret;
2544}
2545
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002546static void enable_irq_window(struct kvm_vcpu *vcpu)
2547{
2548 u32 cpu_based_vm_exec_control;
2549
2550 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2551 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2552 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2553}
2554
2555static void enable_nmi_window(struct kvm_vcpu *vcpu)
2556{
2557 u32 cpu_based_vm_exec_control;
2558
2559 if (!cpu_has_virtual_nmis()) {
2560 enable_irq_window(vcpu);
2561 return;
2562 }
2563
2564 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2565 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2566 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2567}
2568
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002569static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002570{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002571 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002572 uint32_t intr;
2573 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002574
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002575 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002576
Avi Kivityfa89a812008-09-01 15:57:51 +03002577 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002578 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002579 vmx->rmode.irq.pending = true;
2580 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002581 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002582 if (vcpu->arch.interrupt.soft)
2583 vmx->rmode.irq.rip +=
2584 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002585 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2586 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2587 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002588 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002589 return;
2590 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002591 intr = irq | INTR_INFO_VALID_MASK;
2592 if (vcpu->arch.interrupt.soft) {
2593 intr |= INTR_TYPE_SOFT_INTR;
2594 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2595 vmx->vcpu.arch.event_exit_inst_len);
2596 } else
2597 intr |= INTR_TYPE_EXT_INTR;
2598 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002599}
2600
Sheng Yangf08864b2008-05-15 18:23:25 +08002601static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2602{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002603 struct vcpu_vmx *vmx = to_vmx(vcpu);
2604
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002605 if (!cpu_has_virtual_nmis()) {
2606 /*
2607 * Tracking the NMI-blocked state in software is built upon
2608 * finding the next open IRQ window. This, in turn, depends on
2609 * well-behaving guests: They have to keep IRQs disabled at
2610 * least as long as the NMI handler runs. Otherwise we may
2611 * cause NMI nesting, maybe breaking the guest. But as this is
2612 * highly unlikely, we can live with the residual risk.
2613 */
2614 vmx->soft_vnmi_blocked = 1;
2615 vmx->vnmi_blocked_time = 0;
2616 }
2617
Jan Kiszka487b3912008-09-26 09:30:56 +02002618 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002619 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002620 vmx->rmode.irq.pending = true;
2621 vmx->rmode.irq.vector = NMI_VECTOR;
2622 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2623 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2624 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2625 INTR_INFO_VALID_MASK);
2626 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2627 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2628 return;
2629 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002630 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2631 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002632}
2633
Gleb Natapovc4282df2009-04-21 17:45:07 +03002634static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002635{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002636 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002637 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002638
Gleb Natapovc4282df2009-04-21 17:45:07 +03002639 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2640 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2641 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002642}
2643
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002644static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2645{
2646 if (!cpu_has_virtual_nmis())
2647 return to_vmx(vcpu)->soft_vnmi_blocked;
2648 else
2649 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2650 GUEST_INTR_STATE_NMI);
2651}
2652
2653static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2654{
2655 struct vcpu_vmx *vmx = to_vmx(vcpu);
2656
2657 if (!cpu_has_virtual_nmis()) {
2658 if (vmx->soft_vnmi_blocked != masked) {
2659 vmx->soft_vnmi_blocked = masked;
2660 vmx->vnmi_blocked_time = 0;
2661 }
2662 } else {
2663 if (masked)
2664 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2665 GUEST_INTR_STATE_NMI);
2666 else
2667 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2668 GUEST_INTR_STATE_NMI);
2669 }
2670}
2671
Gleb Natapov78646122009-03-23 12:12:11 +02002672static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2673{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002674 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2675 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2676 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002677}
2678
Izik Eiduscbc94022007-10-25 00:29:55 +02002679static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2680{
2681 int ret;
2682 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002683 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002684 .guest_phys_addr = addr,
2685 .memory_size = PAGE_SIZE * 3,
2686 .flags = 0,
2687 };
2688
2689 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2690 if (ret)
2691 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002692 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002693 return 0;
2694}
2695
Avi Kivity6aa8b732006-12-10 02:21:36 -08002696static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2697 int vec, u32 err_code)
2698{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002699 /*
2700 * Instruction with address size override prefix opcode 0x67
2701 * Cause the #SS fault with 0 error code in VM86 mode.
2702 */
2703 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002704 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002705 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002706 /*
2707 * Forward all other exceptions that are valid in real mode.
2708 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2709 * the required debugging infrastructure rework.
2710 */
2711 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002712 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002713 if (vcpu->guest_debug &
2714 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2715 return 0;
2716 kvm_queue_exception(vcpu, vec);
2717 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002718 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002719 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2720 return 0;
2721 /* fall through */
2722 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002723 case OF_VECTOR:
2724 case BR_VECTOR:
2725 case UD_VECTOR:
2726 case DF_VECTOR:
2727 case SS_VECTOR:
2728 case GP_VECTOR:
2729 case MF_VECTOR:
2730 kvm_queue_exception(vcpu, vec);
2731 return 1;
2732 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 return 0;
2734}
2735
Andi Kleena0861c02009-06-08 17:37:09 +08002736/*
2737 * Trigger machine check on the host. We assume all the MSRs are already set up
2738 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2739 * We pass a fake environment to the machine check handler because we want
2740 * the guest to be always treated like user space, no matter what context
2741 * it used internally.
2742 */
2743static void kvm_machine_check(void)
2744{
2745#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2746 struct pt_regs regs = {
2747 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2748 .flags = X86_EFLAGS_IF,
2749 };
2750
2751 do_machine_check(&regs, 0);
2752#endif
2753}
2754
Avi Kivity851ba692009-08-24 11:10:17 +03002755static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002756{
2757 /* already handled by vcpu_run */
2758 return 1;
2759}
2760
Avi Kivity851ba692009-08-24 11:10:17 +03002761static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762{
Avi Kivity1155f762007-11-22 11:30:47 +02002763 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002764 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002765 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002766 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767 u32 vect_info;
2768 enum emulation_result er;
2769
Avi Kivity1155f762007-11-22 11:30:47 +02002770 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2772
Andi Kleena0861c02009-06-08 17:37:09 +08002773 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002774 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002775
Avi Kivity6aa8b732006-12-10 02:21:36 -08002776 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002777 !is_page_fault(intr_info)) {
2778 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2779 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2780 vcpu->run->internal.ndata = 2;
2781 vcpu->run->internal.data[0] = vect_info;
2782 vcpu->run->internal.data[1] = intr_info;
2783 return 0;
2784 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002785
Jan Kiszkae4a41882008-09-26 09:30:46 +02002786 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002787 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002788
2789 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002790 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002791 return 1;
2792 }
2793
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002794 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002795 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002796 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002797 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002798 return 1;
2799 }
2800
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002802 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002803 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002804 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2805 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002806 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002807 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002808 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002809 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002810 trace_kvm_page_fault(cr2, error_code);
2811
Gleb Natapov3298b752009-05-11 13:35:46 +03002812 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002813 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002814 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002815 }
2816
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002817 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002818 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002819 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002820 if (vcpu->arch.halt_request) {
2821 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002822 return kvm_emulate_halt(vcpu);
2823 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002825 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002827 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002828 switch (ex_no) {
2829 case DB_VECTOR:
2830 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2831 if (!(vcpu->guest_debug &
2832 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2833 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2834 kvm_queue_exception(vcpu, DB_VECTOR);
2835 return 1;
2836 }
2837 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2838 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2839 /* fall through */
2840 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002842 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2843 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002844 break;
2845 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002846 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2847 kvm_run->ex.exception = ex_no;
2848 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002849 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002850 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 return 0;
2852}
2853
Avi Kivity851ba692009-08-24 11:10:17 +03002854static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002856 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857 return 1;
2858}
2859
Avi Kivity851ba692009-08-24 11:10:17 +03002860static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002861{
Avi Kivity851ba692009-08-24 11:10:17 +03002862 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002863 return 0;
2864}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865
Avi Kivity851ba692009-08-24 11:10:17 +03002866static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002867{
He, Qingbfdaab02007-09-12 14:18:28 +08002868 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002869 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002870 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002871
Avi Kivity1165f5f2007-04-19 17:27:43 +03002872 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002873 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002874 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002875
2876 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002877 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002878 return 0;
2879 return 1;
2880 }
2881
2882 size = (exit_qualification & 7) + 1;
2883 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002884 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002885
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002886 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002887 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888}
2889
Ingo Molnar102d8322007-02-19 14:37:47 +02002890static void
2891vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2892{
2893 /*
2894 * Patch in the VMCALL instruction:
2895 */
2896 hypercall[0] = 0x0f;
2897 hypercall[1] = 0x01;
2898 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002899}
2900
Avi Kivity851ba692009-08-24 11:10:17 +03002901static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002903 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904 int cr;
2905 int reg;
2906
He, Qingbfdaab02007-09-12 14:18:28 +08002907 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908 cr = exit_qualification & 15;
2909 reg = (exit_qualification >> 8) & 15;
2910 switch ((exit_qualification >> 4) & 3) {
2911 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002912 val = kvm_register_read(vcpu, reg);
2913 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002914 switch (cr) {
2915 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002916 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 skip_emulated_instruction(vcpu);
2918 return 1;
2919 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002920 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002921 skip_emulated_instruction(vcpu);
2922 return 1;
2923 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002924 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925 skip_emulated_instruction(vcpu);
2926 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002927 case 8: {
2928 u8 cr8_prev = kvm_get_cr8(vcpu);
2929 u8 cr8 = kvm_register_read(vcpu, reg);
2930 kvm_set_cr8(vcpu, cr8);
2931 skip_emulated_instruction(vcpu);
2932 if (irqchip_in_kernel(vcpu->kvm))
2933 return 1;
2934 if (cr8_prev <= cr8)
2935 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002936 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002937 return 0;
2938 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939 };
2940 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002941 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002942 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002943 vcpu->arch.cr0 &= ~X86_CR0_TS;
2944 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002945 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002946 skip_emulated_instruction(vcpu);
2947 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948 case 1: /*mov from cr*/
2949 switch (cr) {
2950 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002951 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002952 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953 skip_emulated_instruction(vcpu);
2954 return 1;
2955 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002956 val = kvm_get_cr8(vcpu);
2957 kvm_register_write(vcpu, reg, val);
2958 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002959 skip_emulated_instruction(vcpu);
2960 return 1;
2961 }
2962 break;
2963 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002964 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965
2966 skip_emulated_instruction(vcpu);
2967 return 1;
2968 default:
2969 break;
2970 }
Avi Kivity851ba692009-08-24 11:10:17 +03002971 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002972 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 (int)(exit_qualification >> 4) & 3, cr);
2974 return 0;
2975}
2976
Avi Kivity851ba692009-08-24 11:10:17 +03002977static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978{
He, Qingbfdaab02007-09-12 14:18:28 +08002979 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002980 unsigned long val;
2981 int dr, reg;
2982
Avi Kivity0a79b002009-09-01 12:03:25 +03002983 if (!kvm_require_cpl(vcpu, 0))
2984 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002985 dr = vmcs_readl(GUEST_DR7);
2986 if (dr & DR7_GD) {
2987 /*
2988 * As the vm-exit takes precedence over the debug trap, we
2989 * need to emulate the latter, either for the host or the
2990 * guest debugging itself.
2991 */
2992 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002993 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2994 vcpu->run->debug.arch.dr7 = dr;
2995 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002996 vmcs_readl(GUEST_CS_BASE) +
2997 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002998 vcpu->run->debug.arch.exception = DB_VECTOR;
2999 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003000 return 0;
3001 } else {
3002 vcpu->arch.dr7 &= ~DR7_GD;
3003 vcpu->arch.dr6 |= DR6_BD;
3004 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3005 kvm_queue_exception(vcpu, DB_VECTOR);
3006 return 1;
3007 }
3008 }
3009
He, Qingbfdaab02007-09-12 14:18:28 +08003010 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003011 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3012 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3013 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003014 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003015 case 0 ... 3:
3016 val = vcpu->arch.db[dr];
3017 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003019 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003020 break;
3021 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003022 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003023 break;
3024 default:
3025 val = 0;
3026 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003027 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003028 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003029 val = vcpu->arch.regs[reg];
3030 switch (dr) {
3031 case 0 ... 3:
3032 vcpu->arch.db[dr] = val;
3033 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3034 vcpu->arch.eff_db[dr] = val;
3035 break;
3036 case 4 ... 5:
3037 if (vcpu->arch.cr4 & X86_CR4_DE)
3038 kvm_queue_exception(vcpu, UD_VECTOR);
3039 break;
3040 case 6:
3041 if (val & 0xffffffff00000000ULL) {
3042 kvm_queue_exception(vcpu, GP_VECTOR);
3043 break;
3044 }
3045 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3046 break;
3047 case 7:
3048 if (val & 0xffffffff00000000ULL) {
3049 kvm_queue_exception(vcpu, GP_VECTOR);
3050 break;
3051 }
3052 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3053 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3054 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3055 vcpu->arch.switch_db_regs =
3056 (val & DR7_BP_EN_MASK);
3057 }
3058 break;
3059 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003060 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061 skip_emulated_instruction(vcpu);
3062 return 1;
3063}
3064
Avi Kivity851ba692009-08-24 11:10:17 +03003065static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003066{
Avi Kivity06465c52007-02-28 20:46:53 +02003067 kvm_emulate_cpuid(vcpu);
3068 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003069}
3070
Avi Kivity851ba692009-08-24 11:10:17 +03003071static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003072{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003073 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003074 u64 data;
3075
3076 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003077 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003078 return 1;
3079 }
3080
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003081 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003082
Avi Kivity6aa8b732006-12-10 02:21:36 -08003083 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003084 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3085 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003086 skip_emulated_instruction(vcpu);
3087 return 1;
3088}
3089
Avi Kivity851ba692009-08-24 11:10:17 +03003090static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003091{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003092 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3093 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3094 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003095
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003096 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003097
Avi Kivity6aa8b732006-12-10 02:21:36 -08003098 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003099 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003100 return 1;
3101 }
3102
3103 skip_emulated_instruction(vcpu);
3104 return 1;
3105}
3106
Avi Kivity851ba692009-08-24 11:10:17 +03003107static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003108{
3109 return 1;
3110}
3111
Avi Kivity851ba692009-08-24 11:10:17 +03003112static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003113{
Eddie Dong85f455f2007-07-06 12:20:49 +03003114 u32 cpu_based_vm_exec_control;
3115
3116 /* clear pending irq */
3117 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3118 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3119 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003120
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003121 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003122
Dor Laorc1150d82007-01-05 16:36:24 -08003123 /*
3124 * If the user space waits to inject interrupts, exit as soon as
3125 * possible
3126 */
Gleb Natapov80618232009-04-21 17:44:56 +03003127 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003128 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003129 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003130 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003131 return 0;
3132 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003133 return 1;
3134}
3135
Avi Kivity851ba692009-08-24 11:10:17 +03003136static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003137{
3138 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003139 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140}
3141
Avi Kivity851ba692009-08-24 11:10:17 +03003142static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003143{
Dor Laor510043d2007-02-19 18:25:43 +02003144 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003145 kvm_emulate_hypercall(vcpu);
3146 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003147}
3148
Avi Kivity851ba692009-08-24 11:10:17 +03003149static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003150{
3151 kvm_queue_exception(vcpu, UD_VECTOR);
3152 return 1;
3153}
3154
Avi Kivity851ba692009-08-24 11:10:17 +03003155static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003156{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003157 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003158
3159 kvm_mmu_invlpg(vcpu, exit_qualification);
3160 skip_emulated_instruction(vcpu);
3161 return 1;
3162}
3163
Avi Kivity851ba692009-08-24 11:10:17 +03003164static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003165{
3166 skip_emulated_instruction(vcpu);
3167 /* TODO: Add support for VT-d/pass-through device */
3168 return 1;
3169}
3170
Avi Kivity851ba692009-08-24 11:10:17 +03003171static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003172{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003173 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003174 enum emulation_result er;
3175 unsigned long offset;
3176
Sheng Yangf9c617f2009-03-25 10:08:52 +08003177 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003178 offset = exit_qualification & 0xffful;
3179
Avi Kivity851ba692009-08-24 11:10:17 +03003180 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003181
3182 if (er != EMULATE_DONE) {
3183 printk(KERN_ERR
3184 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3185 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003186 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003187 }
3188 return 1;
3189}
3190
Avi Kivity851ba692009-08-24 11:10:17 +03003191static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003192{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003193 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003194 unsigned long exit_qualification;
3195 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003196 int reason, type, idt_v;
3197
3198 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3199 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003200
3201 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3202
3203 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003204 if (reason == TASK_SWITCH_GATE && idt_v) {
3205 switch (type) {
3206 case INTR_TYPE_NMI_INTR:
3207 vcpu->arch.nmi_injected = false;
3208 if (cpu_has_virtual_nmis())
3209 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3210 GUEST_INTR_STATE_NMI);
3211 break;
3212 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003213 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003214 kvm_clear_interrupt_queue(vcpu);
3215 break;
3216 case INTR_TYPE_HARD_EXCEPTION:
3217 case INTR_TYPE_SOFT_EXCEPTION:
3218 kvm_clear_exception_queue(vcpu);
3219 break;
3220 default:
3221 break;
3222 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003223 }
Izik Eidus37817f22008-03-24 23:14:53 +02003224 tss_selector = exit_qualification;
3225
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003226 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3227 type != INTR_TYPE_EXT_INTR &&
3228 type != INTR_TYPE_NMI_INTR))
3229 skip_emulated_instruction(vcpu);
3230
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003231 if (!kvm_task_switch(vcpu, tss_selector, reason))
3232 return 0;
3233
3234 /* clear all local breakpoint enable flags */
3235 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3236
3237 /*
3238 * TODO: What about debug traps on tss switch?
3239 * Are we supposed to inject them and update dr6?
3240 */
3241
3242 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003243}
3244
Avi Kivity851ba692009-08-24 11:10:17 +03003245static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003246{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003247 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003248 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003249 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003250
Sheng Yangf9c617f2009-03-25 10:08:52 +08003251 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003252
3253 if (exit_qualification & (1 << 6)) {
3254 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003255 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003256 }
3257
3258 gla_validity = (exit_qualification >> 7) & 0x3;
3259 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3260 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3261 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3262 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003263 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003264 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3265 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003266 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3267 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003268 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003269 }
3270
3271 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003272 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003273 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003274}
3275
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003276static u64 ept_rsvd_mask(u64 spte, int level)
3277{
3278 int i;
3279 u64 mask = 0;
3280
3281 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3282 mask |= (1ULL << i);
3283
3284 if (level > 2)
3285 /* bits 7:3 reserved */
3286 mask |= 0xf8;
3287 else if (level == 2) {
3288 if (spte & (1ULL << 7))
3289 /* 2MB ref, bits 20:12 reserved */
3290 mask |= 0x1ff000;
3291 else
3292 /* bits 6:3 reserved */
3293 mask |= 0x78;
3294 }
3295
3296 return mask;
3297}
3298
3299static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3300 int level)
3301{
3302 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3303
3304 /* 010b (write-only) */
3305 WARN_ON((spte & 0x7) == 0x2);
3306
3307 /* 110b (write/execute) */
3308 WARN_ON((spte & 0x7) == 0x6);
3309
3310 /* 100b (execute-only) and value not supported by logical processor */
3311 if (!cpu_has_vmx_ept_execute_only())
3312 WARN_ON((spte & 0x7) == 0x4);
3313
3314 /* not 000b */
3315 if ((spte & 0x7)) {
3316 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3317
3318 if (rsvd_bits != 0) {
3319 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3320 __func__, rsvd_bits);
3321 WARN_ON(1);
3322 }
3323
3324 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3325 u64 ept_mem_type = (spte & 0x38) >> 3;
3326
3327 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3328 ept_mem_type == 7) {
3329 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3330 __func__, ept_mem_type);
3331 WARN_ON(1);
3332 }
3333 }
3334 }
3335}
3336
Avi Kivity851ba692009-08-24 11:10:17 +03003337static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003338{
3339 u64 sptes[4];
3340 int nr_sptes, i;
3341 gpa_t gpa;
3342
3343 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3344
3345 printk(KERN_ERR "EPT: Misconfiguration.\n");
3346 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3347
3348 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3349
3350 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3351 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3352
Avi Kivity851ba692009-08-24 11:10:17 +03003353 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3354 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003355
3356 return 0;
3357}
3358
Avi Kivity851ba692009-08-24 11:10:17 +03003359static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003360{
3361 u32 cpu_based_vm_exec_control;
3362
3363 /* clear pending NMI */
3364 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3365 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3366 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3367 ++vcpu->stat.nmi_window_exits;
3368
3369 return 1;
3370}
3371
Mohammed Gamal80ced182009-09-01 12:48:18 +02003372static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003373{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003374 struct vcpu_vmx *vmx = to_vmx(vcpu);
3375 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003376 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003377
3378 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003379 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003380
Mohammed Gamal80ced182009-09-01 12:48:18 +02003381 if (err == EMULATE_DO_MMIO) {
3382 ret = 0;
3383 goto out;
3384 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003385
3386 if (err != EMULATE_DONE) {
3387 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003388 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3389 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003390 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003391 ret = 0;
3392 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003393 }
3394
3395 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003396 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003397 if (need_resched())
3398 schedule();
3399 }
3400
Mohammed Gamal80ced182009-09-01 12:48:18 +02003401 vmx->emulation_required = 0;
3402out:
3403 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003404}
3405
Avi Kivity6aa8b732006-12-10 02:21:36 -08003406/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003407 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3408 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3409 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003410static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003411{
3412 skip_emulated_instruction(vcpu);
3413 kvm_vcpu_on_spin(vcpu);
3414
3415 return 1;
3416}
3417
3418/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419 * The exit handlers return 1 if the exit was handled fully and guest execution
3420 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3421 * to be done to userspace and return 0.
3422 */
Avi Kivity851ba692009-08-24 11:10:17 +03003423static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003424 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3425 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003426 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003427 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003428 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429 [EXIT_REASON_CR_ACCESS] = handle_cr,
3430 [EXIT_REASON_DR_ACCESS] = handle_dr,
3431 [EXIT_REASON_CPUID] = handle_cpuid,
3432 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3433 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3434 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3435 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003436 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003437 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003438 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3439 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3440 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3441 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3442 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3443 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3444 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3445 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3446 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003447 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3448 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003449 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003450 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003451 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003452 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3453 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003454 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003455};
3456
3457static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003458 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003459
3460/*
3461 * The guest has exited. See if we can fix it or if we need userspace
3462 * assistance.
3463 */
Avi Kivity851ba692009-08-24 11:10:17 +03003464static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003465{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003466 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003467 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003468 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003469
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003470 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003471
Mohammed Gamal80ced182009-09-01 12:48:18 +02003472 /* If guest state is invalid, start emulating */
3473 if (vmx->emulation_required && emulate_invalid_guest_state)
3474 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003475
Sheng Yang14394422008-04-28 12:24:45 +08003476 /* Access CR3 don't cause VMExit in paging mode, so we need
3477 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003478 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003479 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003480
Avi Kivity29bd8a72007-09-10 17:27:03 +03003481 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003482 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3483 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003484 = vmcs_read32(VM_INSTRUCTION_ERROR);
3485 return 0;
3486 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003487
Mike Dayd77c26f2007-10-08 09:02:08 -04003488 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003489 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003490 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3491 exit_reason != EXIT_REASON_TASK_SWITCH))
3492 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3493 "(0x%x) and exit reason is 0x%x\n",
3494 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003495
3496 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003497 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003498 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003499 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003500 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003501 /*
3502 * This CPU don't support us in finding the end of an
3503 * NMI-blocked window if the guest runs with IRQs
3504 * disabled. So we pull the trigger after 1 s of
3505 * futile waiting, but inform the user about this.
3506 */
3507 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3508 "state on VCPU %d after 1 s timeout\n",
3509 __func__, vcpu->vcpu_id);
3510 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003511 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003512 }
3513
Avi Kivity6aa8b732006-12-10 02:21:36 -08003514 if (exit_reason < kvm_vmx_max_exit_handlers
3515 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003516 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003517 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003518 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3519 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003520 }
3521 return 0;
3522}
3523
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003524static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003525{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003526 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003527 vmcs_write32(TPR_THRESHOLD, 0);
3528 return;
3529 }
3530
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003531 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003532}
3533
Avi Kivitycf393f72008-07-01 16:20:21 +03003534static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3535{
3536 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003537 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003538 bool unblock_nmi;
3539 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003540 int type;
3541 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003542
3543 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003544
Andi Kleena0861c02009-06-08 17:37:09 +08003545 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3546
3547 /* Handle machine checks before interrupts are enabled */
3548 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3549 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3550 && is_machine_check(exit_intr_info)))
3551 kvm_machine_check();
3552
Gleb Natapov20f65982009-05-11 13:35:55 +03003553 /* We need to handle NMIs before interrupts are enabled */
3554 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003555 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003556 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003557
3558 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3559
Avi Kivitycf393f72008-07-01 16:20:21 +03003560 if (cpu_has_virtual_nmis()) {
3561 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3562 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3563 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003564 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003565 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3566 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003567 * SDM 3: 23.2.2 (September 2008)
3568 * Bit 12 is undefined in any of the following cases:
3569 * If the VM exit sets the valid bit in the IDT-vectoring
3570 * information field.
3571 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003572 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003573 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3574 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003575 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3576 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003577 } else if (unlikely(vmx->soft_vnmi_blocked))
3578 vmx->vnmi_blocked_time +=
3579 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003580
Gleb Natapov37b96e92009-03-30 16:03:13 +03003581 vmx->vcpu.arch.nmi_injected = false;
3582 kvm_clear_exception_queue(&vmx->vcpu);
3583 kvm_clear_interrupt_queue(&vmx->vcpu);
3584
3585 if (!idtv_info_valid)
3586 return;
3587
Avi Kivity668f6122008-07-02 09:28:55 +03003588 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3589 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003590
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003591 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003592 case INTR_TYPE_NMI_INTR:
3593 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003594 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003595 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003596 * Clear bit "block by NMI" before VM entry if a NMI
3597 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003598 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003599 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3600 GUEST_INTR_STATE_NMI);
3601 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003602 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003603 vmx->vcpu.arch.event_exit_inst_len =
3604 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3605 /* fall through */
3606 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003607 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003608 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3609 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003610 } else
3611 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003612 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003613 case INTR_TYPE_SOFT_INTR:
3614 vmx->vcpu.arch.event_exit_inst_len =
3615 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3616 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003617 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003618 kvm_queue_interrupt(&vmx->vcpu, vector,
3619 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003620 break;
3621 default:
3622 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003623 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003624}
3625
Avi Kivity9c8cba32007-11-22 11:42:59 +02003626/*
3627 * Failure to inject an interrupt should give us the information
3628 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3629 * when fetching the interrupt redirection bitmap in the real-mode
3630 * tss, this doesn't happen. So we do it ourselves.
3631 */
3632static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3633{
3634 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003635 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003636 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003637 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003638 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3639 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3640 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3641 return;
3642 }
3643 vmx->idt_vectoring_info =
3644 VECTORING_INFO_VALID_MASK
3645 | INTR_TYPE_EXT_INTR
3646 | vmx->rmode.irq.vector;
3647}
3648
Avi Kivityc8019492008-07-14 14:44:59 +03003649#ifdef CONFIG_X86_64
3650#define R "r"
3651#define Q "q"
3652#else
3653#define R "e"
3654#define Q "l"
3655#endif
3656
Avi Kivity851ba692009-08-24 11:10:17 +03003657static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003658{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003659 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003660
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003661 /* Record the guest's net vcpu time for enforced NMI injections. */
3662 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3663 vmx->entry_time = ktime_get();
3664
Mohammed Gamal80ced182009-09-01 12:48:18 +02003665 /* Don't enter VMX if guest state is invalid, let the exit handler
3666 start emulation until we arrive back to a valid state */
3667 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003668 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003669
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003670 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3671 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3672 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3673 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3674
Gleb Natapov787ff732009-05-18 11:44:06 +03003675 /* When single-stepping over STI and MOV SS, we must clear the
3676 * corresponding interruptibility bits in the guest state. Otherwise
3677 * vmentry fails as it then expects bit 14 (BS) in pending debug
3678 * exceptions being set, but that's not correct for the guest debugging
3679 * case. */
3680 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3681 vmx_set_interrupt_shadow(vcpu, 0);
3682
Avi Kivitye6adf282007-04-30 16:07:54 +03003683 /*
3684 * Loading guest fpu may have cleared host cr0.ts
3685 */
3686 vmcs_writel(HOST_CR0, read_cr0());
3687
Avi Kivitye8a48342009-09-01 16:06:25 +03003688 if (vcpu->arch.switch_db_regs)
3689 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003690
Mike Dayd77c26f2007-10-08 09:02:08 -04003691 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003692 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003693 "push %%"R"dx; push %%"R"bp;"
3694 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003695 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3696 "je 1f \n\t"
3697 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003698 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003699 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003700 /* Reload cr2 if changed */
3701 "mov %c[cr2](%0), %%"R"ax \n\t"
3702 "mov %%cr2, %%"R"dx \n\t"
3703 "cmp %%"R"ax, %%"R"dx \n\t"
3704 "je 2f \n\t"
3705 "mov %%"R"ax, %%cr2 \n\t"
3706 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003707 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003708 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003709 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003710 "mov %c[rax](%0), %%"R"ax \n\t"
3711 "mov %c[rbx](%0), %%"R"bx \n\t"
3712 "mov %c[rdx](%0), %%"R"dx \n\t"
3713 "mov %c[rsi](%0), %%"R"si \n\t"
3714 "mov %c[rdi](%0), %%"R"di \n\t"
3715 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003716#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003717 "mov %c[r8](%0), %%r8 \n\t"
3718 "mov %c[r9](%0), %%r9 \n\t"
3719 "mov %c[r10](%0), %%r10 \n\t"
3720 "mov %c[r11](%0), %%r11 \n\t"
3721 "mov %c[r12](%0), %%r12 \n\t"
3722 "mov %c[r13](%0), %%r13 \n\t"
3723 "mov %c[r14](%0), %%r14 \n\t"
3724 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003725#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003726 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3727
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003729 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003730 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003731 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003732 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003733 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003734 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003735 "xchg %0, (%%"R"sp) \n\t"
3736 "mov %%"R"ax, %c[rax](%0) \n\t"
3737 "mov %%"R"bx, %c[rbx](%0) \n\t"
3738 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3739 "mov %%"R"dx, %c[rdx](%0) \n\t"
3740 "mov %%"R"si, %c[rsi](%0) \n\t"
3741 "mov %%"R"di, %c[rdi](%0) \n\t"
3742 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003743#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003744 "mov %%r8, %c[r8](%0) \n\t"
3745 "mov %%r9, %c[r9](%0) \n\t"
3746 "mov %%r10, %c[r10](%0) \n\t"
3747 "mov %%r11, %c[r11](%0) \n\t"
3748 "mov %%r12, %c[r12](%0) \n\t"
3749 "mov %%r13, %c[r13](%0) \n\t"
3750 "mov %%r14, %c[r14](%0) \n\t"
3751 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003752#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003753 "mov %%cr2, %%"R"ax \n\t"
3754 "mov %%"R"ax, %c[cr2](%0) \n\t"
3755
3756 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003757 "setbe %c[fail](%0) \n\t"
3758 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3759 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3760 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003761 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003762 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3763 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3764 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3765 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3766 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3767 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3768 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003769#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003770 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3771 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3772 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3773 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3774 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3775 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3776 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3777 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003778#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003779 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003780 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003781 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003782#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003783 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3784#endif
3785 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003786
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003787 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3788 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003789 vcpu->arch.regs_dirty = 0;
3790
Avi Kivitye8a48342009-09-01 16:06:25 +03003791 if (vcpu->arch.switch_db_regs)
3792 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003793
Avi Kivity1155f762007-11-22 11:30:47 +02003794 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003795 if (vmx->rmode.irq.pending)
3796 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003797
Mike Dayd77c26f2007-10-08 09:02:08 -04003798 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003799 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003800
Avi Kivitycf393f72008-07-01 16:20:21 +03003801 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003802}
3803
Avi Kivityc8019492008-07-14 14:44:59 +03003804#undef R
3805#undef Q
3806
Avi Kivity6aa8b732006-12-10 02:21:36 -08003807static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3808{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003809 struct vcpu_vmx *vmx = to_vmx(vcpu);
3810
3811 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003812 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003813 free_vmcs(vmx->vmcs);
3814 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815 }
3816}
3817
3818static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3819{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003820 struct vcpu_vmx *vmx = to_vmx(vcpu);
3821
Sheng Yang2384d2b2008-01-17 15:14:33 +08003822 spin_lock(&vmx_vpid_lock);
3823 if (vmx->vpid != 0)
3824 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3825 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003826 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003827 kfree(vmx->guest_msrs);
3828 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003829 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003830}
3831
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003832static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003833{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003834 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003835 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003836 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003838 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003839 return ERR_PTR(-ENOMEM);
3840
Sheng Yang2384d2b2008-01-17 15:14:33 +08003841 allocate_vpid(vmx);
3842
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003843 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3844 if (err)
3845 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003846
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003847 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003848 if (!vmx->guest_msrs) {
3849 err = -ENOMEM;
3850 goto uninit_vcpu;
3851 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003852
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003853 vmx->vmcs = alloc_vmcs();
3854 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003855 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003856
3857 vmcs_clear(vmx->vmcs);
3858
Avi Kivity15ad7142007-07-11 18:17:21 +03003859 cpu = get_cpu();
3860 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003861 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003862 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003863 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003864 if (err)
3865 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003866 if (vm_need_virtualize_apic_accesses(kvm))
3867 if (alloc_apic_access_page(kvm) != 0)
3868 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003869
Sheng Yangb927a3c2009-07-21 10:42:48 +08003870 if (enable_ept) {
3871 if (!kvm->arch.ept_identity_map_addr)
3872 kvm->arch.ept_identity_map_addr =
3873 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003874 if (alloc_identity_pagetable(kvm) != 0)
3875 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003876 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003877
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003878 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003879
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003880free_vmcs:
3881 free_vmcs(vmx->vmcs);
3882free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003883 kfree(vmx->guest_msrs);
3884uninit_vcpu:
3885 kvm_vcpu_uninit(&vmx->vcpu);
3886free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003887 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003888 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003889}
3890
Yang, Sheng002c7f72007-07-31 14:23:01 +03003891static void __init vmx_check_processor_compat(void *rtn)
3892{
3893 struct vmcs_config vmcs_conf;
3894
3895 *(int *)rtn = 0;
3896 if (setup_vmcs_config(&vmcs_conf) < 0)
3897 *(int *)rtn = -EIO;
3898 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3899 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3900 smp_processor_id());
3901 *(int *)rtn = -EIO;
3902 }
3903}
3904
Sheng Yang67253af2008-04-25 10:20:22 +08003905static int get_ept_level(void)
3906{
3907 return VMX_EPT_DEFAULT_GAW + 1;
3908}
3909
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003910static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003911{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003912 u64 ret;
3913
Sheng Yang522c68c2009-04-27 20:35:43 +08003914 /* For VT-d and EPT combination
3915 * 1. MMIO: always map as UC
3916 * 2. EPT with VT-d:
3917 * a. VT-d without snooping control feature: can't guarantee the
3918 * result, try to trust guest.
3919 * b. VT-d with snooping control feature: snooping control feature of
3920 * VT-d engine can guarantee the cache correctness. Just set it
3921 * to WB to keep consistent with host. So the same as item 3.
3922 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3923 * consistent with host MTRR
3924 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003925 if (is_mmio)
3926 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003927 else if (vcpu->kvm->arch.iommu_domain &&
3928 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3929 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3930 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003931 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003932 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3933 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003934
3935 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003936}
3937
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003938static const struct trace_print_flags vmx_exit_reasons_str[] = {
3939 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3940 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3941 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3942 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3943 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3944 { EXIT_REASON_CR_ACCESS, "cr_access" },
3945 { EXIT_REASON_DR_ACCESS, "dr_access" },
3946 { EXIT_REASON_CPUID, "cpuid" },
3947 { EXIT_REASON_MSR_READ, "rdmsr" },
3948 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3949 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3950 { EXIT_REASON_HLT, "halt" },
3951 { EXIT_REASON_INVLPG, "invlpg" },
3952 { EXIT_REASON_VMCALL, "hypercall" },
3953 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3954 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3955 { EXIT_REASON_WBINVD, "wbinvd" },
3956 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3957 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3958 { -1, NULL }
3959};
3960
Joerg Roedel344f4142009-07-27 16:30:48 +02003961static bool vmx_gb_page_enable(void)
3962{
3963 return false;
3964}
3965
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003966static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967 .cpu_has_kvm_support = cpu_has_kvm_support,
3968 .disabled_by_bios = vmx_disabled_by_bios,
3969 .hardware_setup = hardware_setup,
3970 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003971 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003972 .hardware_enable = hardware_enable,
3973 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003974 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975
3976 .vcpu_create = vmx_create_vcpu,
3977 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003978 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003979
Avi Kivity04d2cc72007-09-10 18:10:54 +03003980 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003981 .vcpu_load = vmx_vcpu_load,
3982 .vcpu_put = vmx_vcpu_put,
3983
3984 .set_guest_debug = set_guest_debug,
3985 .get_msr = vmx_get_msr,
3986 .set_msr = vmx_set_msr,
3987 .get_segment_base = vmx_get_segment_base,
3988 .get_segment = vmx_get_segment,
3989 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003990 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003991 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003992 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003994 .set_cr3 = vmx_set_cr3,
3995 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003997 .get_idt = vmx_get_idt,
3998 .set_idt = vmx_set_idt,
3999 .get_gdt = vmx_get_gdt,
4000 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004001 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002 .get_rflags = vmx_get_rflags,
4003 .set_rflags = vmx_set_rflags,
4004
4005 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004006
Avi Kivity6aa8b732006-12-10 02:21:36 -08004007 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004008 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004009 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004010 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4011 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004012 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004013 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004014 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004015 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004016 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004017 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004018 .get_nmi_mask = vmx_get_nmi_mask,
4019 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004020 .enable_nmi_window = enable_nmi_window,
4021 .enable_irq_window = enable_irq_window,
4022 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004023
Izik Eiduscbc94022007-10-25 00:29:55 +02004024 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004025 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004026 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004027
4028 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02004029 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004030};
4031
4032static int __init vmx_init(void)
4033{
Avi Kivity26bb0982009-09-07 11:14:12 +03004034 int r, i;
4035
4036 rdmsrl_safe(MSR_EFER, &host_efer);
4037
4038 for (i = 0; i < NR_VMX_MSR; ++i)
4039 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004040
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004041 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004042 if (!vmx_io_bitmap_a)
4043 return -ENOMEM;
4044
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004045 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004046 if (!vmx_io_bitmap_b) {
4047 r = -ENOMEM;
4048 goto out;
4049 }
4050
Avi Kivity58972972009-02-24 22:26:47 +02004051 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4052 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004053 r = -ENOMEM;
4054 goto out1;
4055 }
4056
Avi Kivity58972972009-02-24 22:26:47 +02004057 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4058 if (!vmx_msr_bitmap_longmode) {
4059 r = -ENOMEM;
4060 goto out2;
4061 }
4062
He, Qingfdef3ad2007-04-30 09:45:24 +03004063 /*
4064 * Allow direct access to the PC debug port (it is often used for I/O
4065 * delays, but the vmexits simply slow things down).
4066 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004067 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4068 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004069
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004070 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004071
Avi Kivity58972972009-02-24 22:26:47 +02004072 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4073 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004074
Sheng Yang2384d2b2008-01-17 15:14:33 +08004075 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4076
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004077 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004078 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004079 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004080
Avi Kivity58972972009-02-24 22:26:47 +02004081 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4082 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4083 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4084 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4085 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4086 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004087
Avi Kivity089d0342009-03-23 18:26:32 +02004088 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004089 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004090 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004091 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004092 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004093 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004094 kvm_enable_tdp();
4095 } else
4096 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004097
Avi Kivityc7addb92007-09-16 18:58:32 +02004098 if (bypass_guest_pf)
4099 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4100
He, Qingfdef3ad2007-04-30 09:45:24 +03004101 return 0;
4102
Avi Kivity58972972009-02-24 22:26:47 +02004103out3:
4104 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004105out2:
Avi Kivity58972972009-02-24 22:26:47 +02004106 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004107out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004108 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004109out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004110 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004111 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004112}
4113
4114static void __exit vmx_exit(void)
4115{
Avi Kivity58972972009-02-24 22:26:47 +02004116 free_page((unsigned long)vmx_msr_bitmap_legacy);
4117 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004118 free_page((unsigned long)vmx_io_bitmap_b);
4119 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004120
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004121 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004122}
4123
4124module_init(vmx_init)
4125module_exit(vmx_exit)