blob: 31c3a8740c4204bfd6852d34525872e9d3570761 [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
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040064struct vmcs {
65 u32 revision_id;
66 u32 abort;
67 char data[0];
68};
69
70struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100071 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030072 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030073 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040074 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030075 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020076 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040077 struct kvm_msr_entry *guest_msrs;
78 struct kvm_msr_entry *host_msrs;
79 int nmsrs;
80 int save_nmsrs;
81 int msr_offset_efer;
82#ifdef CONFIG_X86_64
83 int msr_offset_kernel_gs_base;
84#endif
85 struct vmcs *vmcs;
86 struct {
87 int loaded;
88 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020089 int gs_ldt_reload_needed;
90 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030091 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040092 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020093 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +030094 int vm86_active;
95 u8 save_iopl;
96 struct kvm_save_segment {
97 u16 selector;
98 unsigned long base;
99 u32 limit;
100 u32 ar;
101 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200102 struct {
103 bool pending;
104 u8 vector;
105 unsigned rip;
106 } irq;
107 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800108 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300109 bool emulation_required;
Avi Kivity8b3079a2009-01-05 12:10:54 +0200110 enum emulation_result invalid_state_emulation_result;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200111
112 /* Support for vnmi-less CPUs */
113 int soft_vnmi_blocked;
114 ktime_t entry_time;
115 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800116 u32 exit_reason;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400117};
118
119static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
120{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000121 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400122}
123
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800124static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800125static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300126
Avi Kivity6aa8b732006-12-10 02:21:36 -0800127static DEFINE_PER_CPU(struct vmcs *, vmxarea);
128static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300129static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800130
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200131static unsigned long *vmx_io_bitmap_a;
132static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200133static unsigned long *vmx_msr_bitmap_legacy;
134static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300135
Sheng Yang2384d2b2008-01-17 15:14:33 +0800136static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
137static DEFINE_SPINLOCK(vmx_vpid_lock);
138
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300139static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140 int size;
141 int order;
142 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300143 u32 pin_based_exec_ctrl;
144 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800145 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300146 u32 vmexit_ctrl;
147 u32 vmentry_ctrl;
148} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800149
Hannes Ederefff9e52008-11-28 17:02:06 +0100150static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800151 u32 ept;
152 u32 vpid;
153} vmx_capability;
154
Avi Kivity6aa8b732006-12-10 02:21:36 -0800155#define VMX_SEGMENT_FIELD(seg) \
156 [VCPU_SREG_##seg] = { \
157 .selector = GUEST_##seg##_SELECTOR, \
158 .base = GUEST_##seg##_BASE, \
159 .limit = GUEST_##seg##_LIMIT, \
160 .ar_bytes = GUEST_##seg##_AR_BYTES, \
161 }
162
163static struct kvm_vmx_segment_field {
164 unsigned selector;
165 unsigned base;
166 unsigned limit;
167 unsigned ar_bytes;
168} kvm_vmx_segment_fields[] = {
169 VMX_SEGMENT_FIELD(CS),
170 VMX_SEGMENT_FIELD(DS),
171 VMX_SEGMENT_FIELD(ES),
172 VMX_SEGMENT_FIELD(FS),
173 VMX_SEGMENT_FIELD(GS),
174 VMX_SEGMENT_FIELD(SS),
175 VMX_SEGMENT_FIELD(TR),
176 VMX_SEGMENT_FIELD(LDTR),
177};
178
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300179static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
180
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300181/*
182 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
183 * away by decrementing the array size.
184 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800185static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800186#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800187 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
188#endif
189 MSR_EFER, MSR_K6_STAR,
190};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200191#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800192
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400193static void load_msrs(struct kvm_msr_entry *e, int n)
194{
195 int i;
196
197 for (i = 0; i < n; ++i)
198 wrmsrl(e[i].index, e[i].data);
199}
200
201static void save_msrs(struct kvm_msr_entry *e, int n)
202{
203 int i;
204
205 for (i = 0; i < n; ++i)
206 rdmsrl(e[i].index, e[i].data);
207}
208
Avi Kivity6aa8b732006-12-10 02:21:36 -0800209static inline int is_page_fault(u32 intr_info)
210{
211 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
212 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100213 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800214}
215
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300216static inline int is_no_device(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 | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300221}
222
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500223static inline int is_invalid_opcode(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 | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500228}
229
Avi Kivity6aa8b732006-12-10 02:21:36 -0800230static inline int is_external_interrupt(u32 intr_info)
231{
232 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
233 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
234}
235
Andi Kleena0861c02009-06-08 17:37:09 +0800236static inline int is_machine_check(u32 intr_info)
237{
238 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
239 INTR_INFO_VALID_MASK)) ==
240 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
241}
242
Sheng Yang25c5f222008-03-28 13:18:56 +0800243static inline int cpu_has_vmx_msr_bitmap(void)
244{
Sheng Yang04547152009-04-01 15:52:31 +0800245 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800246}
247
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800248static inline int cpu_has_vmx_tpr_shadow(void)
249{
Sheng Yang04547152009-04-01 15:52:31 +0800250 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800251}
252
253static inline int vm_need_tpr_shadow(struct kvm *kvm)
254{
Sheng Yang04547152009-04-01 15:52:31 +0800255 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800256}
257
Sheng Yangf78e0e22007-10-29 09:40:42 +0800258static inline int cpu_has_secondary_exec_ctrls(void)
259{
Sheng Yang04547152009-04-01 15:52:31 +0800260 return vmcs_config.cpu_based_exec_ctrl &
261 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800262}
263
Avi Kivity774ead32007-12-26 13:57:04 +0200264static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800265{
Sheng Yang04547152009-04-01 15:52:31 +0800266 return vmcs_config.cpu_based_2nd_exec_ctrl &
267 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
268}
269
270static inline bool cpu_has_vmx_flexpriority(void)
271{
272 return cpu_has_vmx_tpr_shadow() &&
273 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800274}
275
Marcelo Tosattie7997942009-06-11 12:07:40 -0300276static inline bool cpu_has_vmx_ept_execute_only(void)
277{
278 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
279}
280
281static inline bool cpu_has_vmx_eptp_uncacheable(void)
282{
283 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
284}
285
286static inline bool cpu_has_vmx_eptp_writeback(void)
287{
288 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
289}
290
291static inline bool cpu_has_vmx_ept_2m_page(void)
292{
293 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
294}
295
Sheng Yangd56f5462008-04-25 10:13:16 +0800296static inline int cpu_has_vmx_invept_individual_addr(void)
297{
Sheng Yang04547152009-04-01 15:52:31 +0800298 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800299}
300
301static inline int cpu_has_vmx_invept_context(void)
302{
Sheng Yang04547152009-04-01 15:52:31 +0800303 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800304}
305
306static inline int cpu_has_vmx_invept_global(void)
307{
Sheng Yang04547152009-04-01 15:52:31 +0800308 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800309}
310
311static inline int cpu_has_vmx_ept(void)
312{
Sheng Yang04547152009-04-01 15:52:31 +0800313 return vmcs_config.cpu_based_2nd_exec_ctrl &
314 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800315}
316
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700317static inline int cpu_has_vmx_unrestricted_guest(void)
318{
319 return vmcs_config.cpu_based_2nd_exec_ctrl &
320 SECONDARY_EXEC_UNRESTRICTED_GUEST;
321}
322
Sheng Yangf78e0e22007-10-29 09:40:42 +0800323static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
324{
Sheng Yang04547152009-04-01 15:52:31 +0800325 return flexpriority_enabled &&
326 (cpu_has_vmx_virtualize_apic_accesses()) &&
327 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800328}
329
Sheng Yang2384d2b2008-01-17 15:14:33 +0800330static inline int cpu_has_vmx_vpid(void)
331{
Sheng Yang04547152009-04-01 15:52:31 +0800332 return vmcs_config.cpu_based_2nd_exec_ctrl &
333 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800334}
335
Sheng Yangf08864b2008-05-15 18:23:25 +0800336static inline int cpu_has_virtual_nmis(void)
337{
338 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
339}
340
Sheng Yang04547152009-04-01 15:52:31 +0800341static inline bool report_flexpriority(void)
342{
343 return flexpriority_enabled;
344}
345
Rusty Russell8b9cf982007-07-30 16:31:43 +1000346static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800347{
348 int i;
349
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400350 for (i = 0; i < vmx->nmsrs; ++i)
351 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300352 return i;
353 return -1;
354}
355
Sheng Yang2384d2b2008-01-17 15:14:33 +0800356static inline void __invvpid(int ext, u16 vpid, gva_t gva)
357{
358 struct {
359 u64 vpid : 16;
360 u64 rsvd : 48;
361 u64 gva;
362 } operand = { vpid, 0, gva };
363
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300364 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800365 /* CF==1 or ZF==1 --> rc = -1 */
366 "; ja 1f ; ud2 ; 1:"
367 : : "a"(&operand), "c"(ext) : "cc", "memory");
368}
369
Sheng Yang14394422008-04-28 12:24:45 +0800370static inline void __invept(int ext, u64 eptp, gpa_t gpa)
371{
372 struct {
373 u64 eptp, gpa;
374 } operand = {eptp, gpa};
375
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300376 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800377 /* CF==1 or ZF==1 --> rc = -1 */
378 "; ja 1f ; ud2 ; 1:\n"
379 : : "a" (&operand), "c" (ext) : "cc", "memory");
380}
381
Rusty Russell8b9cf982007-07-30 16:31:43 +1000382static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300383{
384 int i;
385
Rusty Russell8b9cf982007-07-30 16:31:43 +1000386 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300387 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400388 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000389 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800390}
391
Avi Kivity6aa8b732006-12-10 02:21:36 -0800392static void vmcs_clear(struct vmcs *vmcs)
393{
394 u64 phys_addr = __pa(vmcs);
395 u8 error;
396
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300397 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800398 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
399 : "cc", "memory");
400 if (error)
401 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
402 vmcs, phys_addr);
403}
404
405static void __vcpu_clear(void *arg)
406{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000407 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800408 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800409
Rusty Russell8b9cf982007-07-30 16:31:43 +1000410 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400411 vmcs_clear(vmx->vmcs);
412 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800413 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800414 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300415 list_del(&vmx->local_vcpus_link);
416 vmx->vcpu.cpu = -1;
417 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800418}
419
Rusty Russell8b9cf982007-07-30 16:31:43 +1000420static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800421{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200422 if (vmx->vcpu.cpu == -1)
423 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200424 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800425}
426
Sheng Yang2384d2b2008-01-17 15:14:33 +0800427static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
428{
429 if (vmx->vpid == 0)
430 return;
431
432 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
433}
434
Sheng Yang14394422008-04-28 12:24:45 +0800435static inline void ept_sync_global(void)
436{
437 if (cpu_has_vmx_invept_global())
438 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
439}
440
441static inline void ept_sync_context(u64 eptp)
442{
Avi Kivity089d0342009-03-23 18:26:32 +0200443 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800444 if (cpu_has_vmx_invept_context())
445 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
446 else
447 ept_sync_global();
448 }
449}
450
451static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
452{
Avi Kivity089d0342009-03-23 18:26:32 +0200453 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800454 if (cpu_has_vmx_invept_individual_addr())
455 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
456 eptp, gpa);
457 else
458 ept_sync_context(eptp);
459 }
460}
461
Avi Kivity6aa8b732006-12-10 02:21:36 -0800462static unsigned long vmcs_readl(unsigned long field)
463{
464 unsigned long value;
465
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300466 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800467 : "=a"(value) : "d"(field) : "cc");
468 return value;
469}
470
471static u16 vmcs_read16(unsigned long field)
472{
473 return vmcs_readl(field);
474}
475
476static u32 vmcs_read32(unsigned long field)
477{
478 return vmcs_readl(field);
479}
480
481static u64 vmcs_read64(unsigned long field)
482{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800483#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484 return vmcs_readl(field);
485#else
486 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
487#endif
488}
489
Avi Kivitye52de1b2007-01-05 16:36:56 -0800490static noinline void vmwrite_error(unsigned long field, unsigned long value)
491{
492 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
493 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
494 dump_stack();
495}
496
Avi Kivity6aa8b732006-12-10 02:21:36 -0800497static void vmcs_writel(unsigned long field, unsigned long value)
498{
499 u8 error;
500
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300501 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400502 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800503 if (unlikely(error))
504 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800505}
506
507static void vmcs_write16(unsigned long field, u16 value)
508{
509 vmcs_writel(field, value);
510}
511
512static void vmcs_write32(unsigned long field, u32 value)
513{
514 vmcs_writel(field, value);
515}
516
517static void vmcs_write64(unsigned long field, u64 value)
518{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300520#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800521 asm volatile ("");
522 vmcs_writel(field+1, value >> 32);
523#endif
524}
525
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300526static void vmcs_clear_bits(unsigned long field, u32 mask)
527{
528 vmcs_writel(field, vmcs_readl(field) & ~mask);
529}
530
531static void vmcs_set_bits(unsigned long field, u32 mask)
532{
533 vmcs_writel(field, vmcs_readl(field) | mask);
534}
535
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300536static void update_exception_bitmap(struct kvm_vcpu *vcpu)
537{
538 u32 eb;
539
Andi Kleena0861c02009-06-08 17:37:09 +0800540 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300541 if (!vcpu->fpu_active)
542 eb |= 1u << NM_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100543 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
544 if (vcpu->guest_debug &
545 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
546 eb |= 1u << DB_VECTOR;
547 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
548 eb |= 1u << BP_VECTOR;
549 }
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300550 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300551 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200552 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800553 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300554 vmcs_write32(EXCEPTION_BITMAP, eb);
555}
556
Avi Kivity33ed6322007-05-02 16:54:03 +0300557static void reload_tss(void)
558{
Avi Kivity33ed6322007-05-02 16:54:03 +0300559 /*
560 * VT restores TR but not its size. Useless.
561 */
562 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200563 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300564
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300565 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300566 descs = (void *)gdt.base;
567 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
568 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300569}
570
Rusty Russell8b9cf982007-07-30 16:31:43 +1000571static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300572{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573 int efer_offset = vmx->msr_offset_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700574 u64 host_efer;
575 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300576 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300577
Avi Kivity51c6cf62007-08-29 03:48:05 +0300578 if (efer_offset < 0)
579 return;
Roel Kluin3a34a882009-08-04 02:08:45 -0700580 host_efer = vmx->host_msrs[efer_offset].data;
581 guest_efer = vmx->guest_msrs[efer_offset].data;
582
Avi Kivity51c6cf62007-08-29 03:48:05 +0300583 /*
584 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
585 * outside long mode
586 */
587 ignore_bits = EFER_NX | EFER_SCE;
588#ifdef CONFIG_X86_64
589 ignore_bits |= EFER_LMA | EFER_LME;
590 /* SCE is meaningful only in long mode on Intel */
591 if (guest_efer & EFER_LMA)
592 ignore_bits &= ~(u64)EFER_SCE;
593#endif
594 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
595 return;
596
597 vmx->host_state.guest_efer_loaded = 1;
598 guest_efer &= ~ignore_bits;
599 guest_efer |= host_efer & ignore_bits;
600 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000601 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300602}
603
Avi Kivity51c6cf62007-08-29 03:48:05 +0300604static void reload_host_efer(struct vcpu_vmx *vmx)
605{
606 if (vmx->host_state.guest_efer_loaded) {
607 vmx->host_state.guest_efer_loaded = 0;
608 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
609 }
610}
611
Avi Kivity04d2cc72007-09-10 18:10:54 +0300612static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300613{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300614 struct vcpu_vmx *vmx = to_vmx(vcpu);
615
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400616 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300617 return;
618
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400619 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300620 /*
621 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
622 * allow segment selectors with cpl > 0 or ti == 1.
623 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300624 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200625 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300626 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200627 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400628 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200629 vmx->host_state.fs_reload_needed = 0;
630 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300631 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200632 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300633 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300634 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400635 if (!(vmx->host_state.gs_sel & 7))
636 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300637 else {
638 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200639 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300640 }
641
642#ifdef CONFIG_X86_64
643 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
644 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
645#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400646 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
647 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300648#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300649
650#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400651 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400652 save_msrs(vmx->host_msrs +
653 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400654
Avi Kivity707c0872007-05-02 17:33:43 +0300655#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400656 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300657 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300658}
659
Avi Kivitya9b21b62008-06-24 11:48:49 +0300660static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300661{
Avi Kivity15ad7142007-07-11 18:17:21 +0300662 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300663
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400664 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300665 return;
666
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200667 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400668 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200669 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300670 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200671 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300672 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300673 /*
674 * If we have to reload gs, we must take care to
675 * preserve our gs base.
676 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300677 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300678 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300679#ifdef CONFIG_X86_64
680 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
681#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300682 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300683 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200684 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400685 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
686 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300687 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300688}
689
Avi Kivitya9b21b62008-06-24 11:48:49 +0300690static void vmx_load_host_state(struct vcpu_vmx *vmx)
691{
692 preempt_disable();
693 __vmx_load_host_state(vmx);
694 preempt_enable();
695}
696
Avi Kivity6aa8b732006-12-10 02:21:36 -0800697/*
698 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
699 * vcpu mutex is already taken.
700 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300701static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400703 struct vcpu_vmx *vmx = to_vmx(vcpu);
704 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200705 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706
Eddie Donga3d7f852007-09-03 16:15:12 +0300707 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000708 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300709 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800710 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300711 local_irq_disable();
712 list_add(&vmx->local_vcpus_link,
713 &per_cpu(vcpus_on_cpu, cpu));
714 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300715 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400717 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718 u8 error;
719
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400720 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300721 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
723 : "cc");
724 if (error)
725 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400726 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800727 }
728
729 if (vcpu->cpu != cpu) {
730 struct descriptor_table dt;
731 unsigned long sysenter_esp;
732
733 vcpu->cpu = cpu;
734 /*
735 * Linux uses per-cpu TSS and GDT, so set these when switching
736 * processors.
737 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300738 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
739 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
741
742 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
743 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300744
745 /*
746 * Make sure the time stamp counter is monotonous.
747 */
748 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200749 if (tsc_this < vcpu->arch.host_tsc) {
750 delta = vcpu->arch.host_tsc - tsc_this;
751 new_offset = vmcs_read64(TSC_OFFSET) + delta;
752 vmcs_write64(TSC_OFFSET, new_offset);
753 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800754 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755}
756
757static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
758{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300759 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760}
761
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300762static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
763{
764 if (vcpu->fpu_active)
765 return;
766 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000767 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800768 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000769 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300770 update_exception_bitmap(vcpu);
771}
772
773static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
774{
775 if (!vcpu->fpu_active)
776 return;
777 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000778 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300779 update_exception_bitmap(vcpu);
780}
781
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
783{
784 return vmcs_readl(GUEST_RFLAGS);
785}
786
787static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
788{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300789 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100790 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791 vmcs_writel(GUEST_RFLAGS, rflags);
792}
793
Glauber Costa2809f5d2009-05-12 16:21:05 -0400794static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
795{
796 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
797 int ret = 0;
798
799 if (interruptibility & GUEST_INTR_STATE_STI)
800 ret |= X86_SHADOW_INT_STI;
801 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
802 ret |= X86_SHADOW_INT_MOV_SS;
803
804 return ret & mask;
805}
806
807static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
808{
809 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
810 u32 interruptibility = interruptibility_old;
811
812 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
813
814 if (mask & X86_SHADOW_INT_MOV_SS)
815 interruptibility |= GUEST_INTR_STATE_MOV_SS;
816 if (mask & X86_SHADOW_INT_STI)
817 interruptibility |= GUEST_INTR_STATE_STI;
818
819 if ((interruptibility != interruptibility_old))
820 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
821}
822
Avi Kivity6aa8b732006-12-10 02:21:36 -0800823static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
824{
825 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300827 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800828 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300829 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800830
Glauber Costa2809f5d2009-05-12 16:21:05 -0400831 /* skipping an emulated instruction also counts */
832 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800833}
834
Avi Kivity298101d2007-11-25 13:41:11 +0200835static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
836 bool has_error_code, u32 error_code)
837{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200838 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100839 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200840
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100841 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200842 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100843 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
844 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200845
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300846 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200847 vmx->rmode.irq.pending = true;
848 vmx->rmode.irq.vector = nr;
849 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300850 if (kvm_exception_is_soft(nr))
851 vmx->rmode.irq.rip +=
852 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100853 intr_info |= INTR_TYPE_SOFT_INTR;
854 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200855 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
856 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
857 return;
858 }
859
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300860 if (kvm_exception_is_soft(nr)) {
861 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
862 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100863 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
864 } else
865 intr_info |= INTR_TYPE_HARD_EXCEPTION;
866
867 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200868}
869
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870/*
Eddie Donga75beee2007-05-17 18:55:15 +0300871 * Swap MSR entry in host/guest MSR entry array.
872 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200873#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000874static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300875{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400876 struct kvm_msr_entry tmp;
877
878 tmp = vmx->guest_msrs[to];
879 vmx->guest_msrs[to] = vmx->guest_msrs[from];
880 vmx->guest_msrs[from] = tmp;
881 tmp = vmx->host_msrs[to];
882 vmx->host_msrs[to] = vmx->host_msrs[from];
883 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300884}
Gabriel C54e11fa2007-08-01 16:23:10 +0200885#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300886
887/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300888 * Set up the vmcs to automatically save and restore system
889 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
890 * mode, as fiddling with msrs is very expensive.
891 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000892static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300893{
Eddie Dong2cc51562007-05-21 07:28:09 +0300894 int save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200895 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300896
Avi Kivity33f9c502008-02-27 16:06:57 +0200897 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300898 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300899#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000900 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300901 int index;
902
Rusty Russell8b9cf982007-07-30 16:31:43 +1000903 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300904 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000905 move_msr_up(vmx, index, save_nmsrs++);
906 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300907 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000908 move_msr_up(vmx, index, save_nmsrs++);
909 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300910 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000911 move_msr_up(vmx, index, save_nmsrs++);
912 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300913 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000914 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300915 /*
916 * MSR_K6_STAR is only needed on long mode guests, and only
917 * if efer.sce is enabled.
918 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000919 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800920 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000921 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300922 }
Eddie Donga75beee2007-05-17 18:55:15 +0300923#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400924 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300925
Eddie Donga75beee2007-05-17 18:55:15 +0300926#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400927 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000928 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300929#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000930 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivity58972972009-02-24 22:26:47 +0200931
932 if (cpu_has_vmx_msr_bitmap()) {
933 if (is_long_mode(&vmx->vcpu))
934 msr_bitmap = vmx_msr_bitmap_longmode;
935 else
936 msr_bitmap = vmx_msr_bitmap_legacy;
937
938 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
939 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300940}
941
942/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943 * reads and returns guest's timestamp counter "register"
944 * guest_tsc = host_tsc + tsc_offset -- 21.3
945 */
946static u64 guest_read_tsc(void)
947{
948 u64 host_tsc, tsc_offset;
949
950 rdtscll(host_tsc);
951 tsc_offset = vmcs_read64(TSC_OFFSET);
952 return host_tsc + tsc_offset;
953}
954
955/*
956 * writes 'guest_tsc' into guest's timestamp counter "register"
957 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
958 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100959static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
962}
963
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964/*
965 * Reads an msr value (of 'msr_index') into 'pdata'.
966 * Returns 0 on success, non-0 otherwise.
967 * Assumes vcpu_load() was already called.
968 */
969static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
970{
971 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400972 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973
974 if (!pdata) {
975 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
976 return -EINVAL;
977 }
978
979 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800980#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 case MSR_FS_BASE:
982 data = vmcs_readl(GUEST_FS_BASE);
983 break;
984 case MSR_GS_BASE:
985 data = vmcs_readl(GUEST_GS_BASE);
986 break;
987 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800988 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989#endif
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +0530990 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 data = guest_read_tsc();
992 break;
993 case MSR_IA32_SYSENTER_CS:
994 data = vmcs_read32(GUEST_SYSENTER_CS);
995 break;
996 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200997 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 break;
999 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001000 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 default:
Avi Kivity516a1a72009-02-15 02:32:07 +02001003 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001004 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001005 if (msr) {
1006 data = msr->data;
1007 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001009 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 }
1011
1012 *pdata = data;
1013 return 0;
1014}
1015
1016/*
1017 * Writes msr value into into the appropriate "register".
1018 * Returns 0 on success, non-0 otherwise.
1019 * Assumes vcpu_load() was already called.
1020 */
1021static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1022{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001023 struct vcpu_vmx *vmx = to_vmx(vcpu);
1024 struct kvm_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001025 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001026 int ret = 0;
1027
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001029 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001030 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001031 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001032 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001033#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 case MSR_FS_BASE:
1035 vmcs_writel(GUEST_FS_BASE, data);
1036 break;
1037 case MSR_GS_BASE:
1038 vmcs_writel(GUEST_GS_BASE, data);
1039 break;
1040#endif
1041 case MSR_IA32_SYSENTER_CS:
1042 vmcs_write32(GUEST_SYSENTER_CS, data);
1043 break;
1044 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001045 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046 break;
1047 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001048 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001049 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301050 case MSR_IA32_TSC:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001051 rdtscll(host_tsc);
1052 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001054 case MSR_IA32_CR_PAT:
1055 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1056 vmcs_write64(GUEST_IA32_PAT, data);
1057 vcpu->arch.pat = data;
1058 break;
1059 }
1060 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001062 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +10001063 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001064 if (msr) {
1065 msr->data = data;
1066 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001068 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069 }
1070
Eddie Dong2cc51562007-05-21 07:28:09 +03001071 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072}
1073
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001074static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001076 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1077 switch (reg) {
1078 case VCPU_REGS_RSP:
1079 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1080 break;
1081 case VCPU_REGS_RIP:
1082 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1083 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001084 case VCPU_EXREG_PDPTR:
1085 if (enable_ept)
1086 ept_save_pdptrs(vcpu);
1087 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001088 default:
1089 break;
1090 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091}
1092
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001093static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001095 int old_debug = vcpu->guest_debug;
1096 unsigned long flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001098 vcpu->guest_debug = dbg->control;
1099 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
1100 vcpu->guest_debug = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001101
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001102 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1103 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1104 else
1105 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1106
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001107 flags = vmcs_readl(GUEST_RFLAGS);
1108 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1109 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1110 else if (old_debug & KVM_GUESTDBG_SINGLESTEP)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001112 vmcs_writel(GUEST_RFLAGS, flags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001114 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115
1116 return 0;
1117}
1118
1119static __init int cpu_has_kvm_support(void)
1120{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001121 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001122}
1123
1124static __init int vmx_disabled_by_bios(void)
1125{
1126 u64 msr;
1127
1128 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001129 return (msr & (FEATURE_CONTROL_LOCKED |
1130 FEATURE_CONTROL_VMXON_ENABLED))
1131 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001132 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133}
1134
Avi Kivity774c47f2007-02-12 00:54:47 -08001135static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001136{
1137 int cpu = raw_smp_processor_id();
1138 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1139 u64 old;
1140
Avi Kivity543e4242008-05-13 16:22:47 +03001141 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001143 if ((old & (FEATURE_CONTROL_LOCKED |
1144 FEATURE_CONTROL_VMXON_ENABLED))
1145 != (FEATURE_CONTROL_LOCKED |
1146 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001147 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001148 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001149 FEATURE_CONTROL_LOCKED |
1150 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001151 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001152 asm volatile (ASM_VMX_VMXON_RAX
1153 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001154 : "memory", "cc");
1155}
1156
Avi Kivity543e4242008-05-13 16:22:47 +03001157static void vmclear_local_vcpus(void)
1158{
1159 int cpu = raw_smp_processor_id();
1160 struct vcpu_vmx *vmx, *n;
1161
1162 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1163 local_vcpus_link)
1164 __vcpu_clear(vmx);
1165}
1166
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001167
1168/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1169 * tricks.
1170 */
1171static void kvm_cpu_vmxoff(void)
1172{
1173 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1174 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1175}
1176
Avi Kivity6aa8b732006-12-10 02:21:36 -08001177static void hardware_disable(void *garbage)
1178{
Avi Kivity543e4242008-05-13 16:22:47 +03001179 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001180 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001181}
1182
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001183static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001184 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001185{
1186 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001187 u32 ctl = ctl_min | ctl_opt;
1188
1189 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1190
1191 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1192 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1193
1194 /* Ensure minimum (required) set of control bits are supported. */
1195 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001196 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001197
1198 *result = ctl;
1199 return 0;
1200}
1201
Yang, Sheng002c7f72007-07-31 14:23:01 +03001202static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001203{
1204 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001205 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001206 u32 _pin_based_exec_control = 0;
1207 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001208 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001209 u32 _vmexit_control = 0;
1210 u32 _vmentry_control = 0;
1211
1212 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001213 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001214 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1215 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001216 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001217
1218 min = CPU_BASED_HLT_EXITING |
1219#ifdef CONFIG_X86_64
1220 CPU_BASED_CR8_LOAD_EXITING |
1221 CPU_BASED_CR8_STORE_EXITING |
1222#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001223 CPU_BASED_CR3_LOAD_EXITING |
1224 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001225 CPU_BASED_USE_IO_BITMAPS |
1226 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001227 CPU_BASED_USE_TSC_OFFSETING |
1228 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001229 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001230 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001231 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001232 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1233 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001234 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001235#ifdef CONFIG_X86_64
1236 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1237 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1238 ~CPU_BASED_CR8_STORE_EXITING;
1239#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001240 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001241 min2 = 0;
1242 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001243 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001244 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001245 SECONDARY_EXEC_ENABLE_EPT |
1246 SECONDARY_EXEC_UNRESTRICTED_GUEST;
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 */
Sheng Yangd56f5462008-04-25 10:13:16 +08001260 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001261 CPU_BASED_CR3_STORE_EXITING |
1262 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001263 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1264 &_cpu_based_exec_control) < 0)
1265 return -EIO;
1266 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1267 vmx_capability.ept, vmx_capability.vpid);
1268 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001269
1270 min = 0;
1271#ifdef CONFIG_X86_64
1272 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1273#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001274 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001275 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1276 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001277 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001278
Sheng Yang468d4722008-10-09 16:01:55 +08001279 min = 0;
1280 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001281 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1282 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001283 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001284
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001285 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001286
1287 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1288 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001289 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001290
1291#ifdef CONFIG_X86_64
1292 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1293 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001294 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001295#endif
1296
1297 /* Require Write-Back (WB) memory type for VMCS accesses. */
1298 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001299 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001300
Yang, Sheng002c7f72007-07-31 14:23:01 +03001301 vmcs_conf->size = vmx_msr_high & 0x1fff;
1302 vmcs_conf->order = get_order(vmcs_config.size);
1303 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001304
Yang, Sheng002c7f72007-07-31 14:23:01 +03001305 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1306 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001307 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001308 vmcs_conf->vmexit_ctrl = _vmexit_control;
1309 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001310
1311 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001312}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001313
1314static struct vmcs *alloc_vmcs_cpu(int cpu)
1315{
1316 int node = cpu_to_node(cpu);
1317 struct page *pages;
1318 struct vmcs *vmcs;
1319
Mel Gorman6484eb32009-06-16 15:31:54 -07001320 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001321 if (!pages)
1322 return NULL;
1323 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001324 memset(vmcs, 0, vmcs_config.size);
1325 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001326 return vmcs;
1327}
1328
1329static struct vmcs *alloc_vmcs(void)
1330{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001331 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332}
1333
1334static void free_vmcs(struct vmcs *vmcs)
1335{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001336 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337}
1338
Sam Ravnborg39959582007-06-01 00:47:13 -07001339static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340{
1341 int cpu;
1342
1343 for_each_online_cpu(cpu)
1344 free_vmcs(per_cpu(vmxarea, cpu));
1345}
1346
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347static __init int alloc_kvm_area(void)
1348{
1349 int cpu;
1350
1351 for_each_online_cpu(cpu) {
1352 struct vmcs *vmcs;
1353
1354 vmcs = alloc_vmcs_cpu(cpu);
1355 if (!vmcs) {
1356 free_kvm_area();
1357 return -ENOMEM;
1358 }
1359
1360 per_cpu(vmxarea, cpu) = vmcs;
1361 }
1362 return 0;
1363}
1364
1365static __init int hardware_setup(void)
1366{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001367 if (setup_vmcs_config(&vmcs_config) < 0)
1368 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001369
1370 if (boot_cpu_has(X86_FEATURE_NX))
1371 kvm_enable_efer_bits(EFER_NX);
1372
Sheng Yang93ba03c2009-04-01 15:52:32 +08001373 if (!cpu_has_vmx_vpid())
1374 enable_vpid = 0;
1375
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001376 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001377 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001378 enable_unrestricted_guest = 0;
1379 }
1380
1381 if (!cpu_has_vmx_unrestricted_guest())
1382 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001383
1384 if (!cpu_has_vmx_flexpriority())
1385 flexpriority_enabled = 0;
1386
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001387 if (!cpu_has_vmx_tpr_shadow())
1388 kvm_x86_ops->update_cr8_intercept = NULL;
1389
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001390 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1391 kvm_disable_largepages();
1392
Avi Kivity6aa8b732006-12-10 02:21:36 -08001393 return alloc_kvm_area();
1394}
1395
1396static __exit void hardware_unsetup(void)
1397{
1398 free_kvm_area();
1399}
1400
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1402{
1403 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1404
Avi Kivity6af11b92007-03-19 13:18:10 +02001405 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406 vmcs_write16(sf->selector, save->selector);
1407 vmcs_writel(sf->base, save->base);
1408 vmcs_write32(sf->limit, save->limit);
1409 vmcs_write32(sf->ar_bytes, save->ar);
1410 } else {
1411 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1412 << AR_DPL_SHIFT;
1413 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1414 }
1415}
1416
1417static void enter_pmode(struct kvm_vcpu *vcpu)
1418{
1419 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001420 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001422 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001423 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001425 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1426 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1427 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428
1429 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001430 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001431 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432 vmcs_writel(GUEST_RFLAGS, flags);
1433
Rusty Russell66aee912007-07-17 23:34:16 +10001434 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1435 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001436
1437 update_exception_bitmap(vcpu);
1438
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001439 if (emulate_invalid_guest_state)
1440 return;
1441
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001442 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1443 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1444 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1445 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446
1447 vmcs_write16(GUEST_SS_SELECTOR, 0);
1448 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1449
1450 vmcs_write16(GUEST_CS_SELECTOR,
1451 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1452 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1453}
1454
Mike Dayd77c26f2007-10-08 09:02:08 -04001455static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001457 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001458 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1459 kvm->memslots[0].npages - 3;
1460 return base_gfn << PAGE_SHIFT;
1461 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001462 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001463}
1464
1465static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1466{
1467 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1468
1469 save->selector = vmcs_read16(sf->selector);
1470 save->base = vmcs_readl(sf->base);
1471 save->limit = vmcs_read32(sf->limit);
1472 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001473 vmcs_write16(sf->selector, save->base >> 4);
1474 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475 vmcs_write32(sf->limit, 0xffff);
1476 vmcs_write32(sf->ar_bytes, 0xf3);
1477}
1478
1479static void enter_rmode(struct kvm_vcpu *vcpu)
1480{
1481 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001482 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001484 if (enable_unrestricted_guest)
1485 return;
1486
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001487 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001488 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001489
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001490 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1492
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001493 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001494 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1495
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001496 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1498
1499 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001500 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001501 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001503 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001504
1505 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001506 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507 update_exception_bitmap(vcpu);
1508
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001509 if (emulate_invalid_guest_state)
1510 goto continue_rmode;
1511
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1513 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1514 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1515
1516 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001517 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001518 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1519 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1521
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001522 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1523 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1524 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1525 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001526
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001527continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001528 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001529 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530}
1531
Amit Shah401d10d2009-02-20 22:53:37 +05301532static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1533{
1534 struct vcpu_vmx *vmx = to_vmx(vcpu);
1535 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1536
1537 vcpu->arch.shadow_efer = efer;
1538 if (!msr)
1539 return;
1540 if (efer & EFER_LMA) {
1541 vmcs_write32(VM_ENTRY_CONTROLS,
1542 vmcs_read32(VM_ENTRY_CONTROLS) |
1543 VM_ENTRY_IA32E_MODE);
1544 msr->data = efer;
1545 } else {
1546 vmcs_write32(VM_ENTRY_CONTROLS,
1547 vmcs_read32(VM_ENTRY_CONTROLS) &
1548 ~VM_ENTRY_IA32E_MODE);
1549
1550 msr->data = efer & ~EFER_LME;
1551 }
1552 setup_msrs(vmx);
1553}
1554
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001555#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556
1557static void enter_lmode(struct kvm_vcpu *vcpu)
1558{
1559 u32 guest_tr_ar;
1560
1561 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1562 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1563 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001564 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565 vmcs_write32(GUEST_TR_AR_BYTES,
1566 (guest_tr_ar & ~AR_TYPE_MASK)
1567 | AR_TYPE_BUSY_64_TSS);
1568 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001569 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301570 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571}
1572
1573static void exit_lmode(struct kvm_vcpu *vcpu)
1574{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001575 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576
1577 vmcs_write32(VM_ENTRY_CONTROLS,
1578 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001579 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001580}
1581
1582#endif
1583
Sheng Yang2384d2b2008-01-17 15:14:33 +08001584static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1585{
1586 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001587 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001588 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001589}
1590
Anthony Liguori25c4c272007-04-27 09:29:21 +03001591static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001592{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001593 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1594 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001595}
1596
Sheng Yang14394422008-04-28 12:24:45 +08001597static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1598{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001599 if (!test_bit(VCPU_EXREG_PDPTR,
1600 (unsigned long *)&vcpu->arch.regs_dirty))
1601 return;
1602
Sheng Yang14394422008-04-28 12:24:45 +08001603 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001604 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1605 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1606 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1607 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1608 }
1609}
1610
Avi Kivity8f5d5492009-05-31 18:41:29 +03001611static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1612{
1613 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1614 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1615 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1616 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1617 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1618 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001619
1620 __set_bit(VCPU_EXREG_PDPTR,
1621 (unsigned long *)&vcpu->arch.regs_avail);
1622 __set_bit(VCPU_EXREG_PDPTR,
1623 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001624}
1625
Sheng Yang14394422008-04-28 12:24:45 +08001626static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1627
1628static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1629 unsigned long cr0,
1630 struct kvm_vcpu *vcpu)
1631{
1632 if (!(cr0 & X86_CR0_PG)) {
1633 /* From paging/starting to nonpaging */
1634 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001635 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001636 (CPU_BASED_CR3_LOAD_EXITING |
1637 CPU_BASED_CR3_STORE_EXITING));
1638 vcpu->arch.cr0 = cr0;
1639 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001640 *hw_cr0 &= ~X86_CR0_WP;
1641 } else if (!is_paging(vcpu)) {
1642 /* From nonpaging to paging */
1643 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001644 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001645 ~(CPU_BASED_CR3_LOAD_EXITING |
1646 CPU_BASED_CR3_STORE_EXITING));
1647 vcpu->arch.cr0 = cr0;
1648 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1649 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1650 *hw_cr0 &= ~X86_CR0_WP;
1651 }
1652}
1653
1654static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1655 struct kvm_vcpu *vcpu)
1656{
1657 if (!is_paging(vcpu)) {
1658 *hw_cr4 &= ~X86_CR4_PAE;
1659 *hw_cr4 |= X86_CR4_PSE;
1660 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1661 *hw_cr4 &= ~X86_CR4_PAE;
1662}
1663
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1665{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001666 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001667 unsigned long hw_cr0;
1668
1669 if (enable_unrestricted_guest)
1670 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1671 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1672 else
1673 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001674
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001675 vmx_fpu_deactivate(vcpu);
1676
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001677 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678 enter_pmode(vcpu);
1679
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001680 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681 enter_rmode(vcpu);
1682
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001683#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001684 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001685 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001687 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688 exit_lmode(vcpu);
1689 }
1690#endif
1691
Avi Kivity089d0342009-03-23 18:26:32 +02001692 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001693 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1694
Avi Kivity6aa8b732006-12-10 02:21:36 -08001695 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001696 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001697 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001698
Rusty Russell707d92f2007-07-17 23:19:08 +10001699 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001700 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701}
1702
Sheng Yang14394422008-04-28 12:24:45 +08001703static u64 construct_eptp(unsigned long root_hpa)
1704{
1705 u64 eptp;
1706
1707 /* TODO write the value reading from MSR */
1708 eptp = VMX_EPT_DEFAULT_MT |
1709 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1710 eptp |= (root_hpa & PAGE_MASK);
1711
1712 return eptp;
1713}
1714
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1716{
Sheng Yang14394422008-04-28 12:24:45 +08001717 unsigned long guest_cr3;
1718 u64 eptp;
1719
1720 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001721 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001722 eptp = construct_eptp(cr3);
1723 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001724 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001725 vcpu->kvm->arch.ept_identity_map_addr;
Sheng Yang14394422008-04-28 12:24:45 +08001726 }
1727
Sheng Yang2384d2b2008-01-17 15:14:33 +08001728 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001729 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001730 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001731 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732}
1733
1734static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1735{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001736 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001737 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1738
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001739 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001740 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001741 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1742
1743 vmcs_writel(CR4_READ_SHADOW, cr4);
1744 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001745}
1746
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1748{
1749 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1750
1751 return vmcs_readl(sf->base);
1752}
1753
1754static void vmx_get_segment(struct kvm_vcpu *vcpu,
1755 struct kvm_segment *var, int seg)
1756{
1757 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1758 u32 ar;
1759
1760 var->base = vmcs_readl(sf->base);
1761 var->limit = vmcs_read32(sf->limit);
1762 var->selector = vmcs_read16(sf->selector);
1763 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001764 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 ar = 0;
1766 var->type = ar & 15;
1767 var->s = (ar >> 4) & 1;
1768 var->dpl = (ar >> 5) & 3;
1769 var->present = (ar >> 7) & 1;
1770 var->avl = (ar >> 12) & 1;
1771 var->l = (ar >> 13) & 1;
1772 var->db = (ar >> 14) & 1;
1773 var->g = (ar >> 15) & 1;
1774 var->unusable = (ar >> 16) & 1;
1775}
1776
Izik Eidus2e4d2652008-03-24 19:38:34 +02001777static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1778{
Izik Eidus2e4d2652008-03-24 19:38:34 +02001779 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1780 return 0;
1781
1782 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1783 return 3;
1784
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001785 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001786}
1787
Avi Kivity653e3102007-05-07 10:55:37 +03001788static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001789{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001790 u32 ar;
1791
Avi Kivity653e3102007-05-07 10:55:37 +03001792 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793 ar = 1 << 16;
1794 else {
1795 ar = var->type & 15;
1796 ar |= (var->s & 1) << 4;
1797 ar |= (var->dpl & 3) << 5;
1798 ar |= (var->present & 1) << 7;
1799 ar |= (var->avl & 1) << 12;
1800 ar |= (var->l & 1) << 13;
1801 ar |= (var->db & 1) << 14;
1802 ar |= (var->g & 1) << 15;
1803 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001804 if (ar == 0) /* a 0 value means unusable */
1805 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001806
1807 return ar;
1808}
1809
1810static void vmx_set_segment(struct kvm_vcpu *vcpu,
1811 struct kvm_segment *var, int seg)
1812{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001813 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001814 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1815 u32 ar;
1816
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001817 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1818 vmx->rmode.tr.selector = var->selector;
1819 vmx->rmode.tr.base = var->base;
1820 vmx->rmode.tr.limit = var->limit;
1821 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001822 return;
1823 }
1824 vmcs_writel(sf->base, var->base);
1825 vmcs_write32(sf->limit, var->limit);
1826 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001827 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001828 /*
1829 * Hack real-mode segments into vm86 compatibility.
1830 */
1831 if (var->base == 0xffff0000 && var->selector == 0xf000)
1832 vmcs_writel(sf->base, 0xf0000);
1833 ar = 0xf3;
1834 } else
1835 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001836
1837 /*
1838 * Fix the "Accessed" bit in AR field of segment registers for older
1839 * qemu binaries.
1840 * IA32 arch specifies that at the time of processor reset the
1841 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1842 * is setting it to 0 in the usedland code. This causes invalid guest
1843 * state vmexit when "unrestricted guest" mode is turned on.
1844 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1845 * tree. Newer qemu binaries with that qemu fix would not need this
1846 * kvm hack.
1847 */
1848 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1849 ar |= 0x1; /* Accessed */
1850
Avi Kivity6aa8b732006-12-10 02:21:36 -08001851 vmcs_write32(sf->ar_bytes, ar);
1852}
1853
Avi Kivity6aa8b732006-12-10 02:21:36 -08001854static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1855{
1856 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1857
1858 *db = (ar >> 14) & 1;
1859 *l = (ar >> 13) & 1;
1860}
1861
1862static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1863{
1864 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1865 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1866}
1867
1868static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1869{
1870 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1871 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1872}
1873
1874static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1875{
1876 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1877 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1878}
1879
1880static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1881{
1882 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1883 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1884}
1885
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001886static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1887{
1888 struct kvm_segment var;
1889 u32 ar;
1890
1891 vmx_get_segment(vcpu, &var, seg);
1892 ar = vmx_segment_access_rights(&var);
1893
1894 if (var.base != (var.selector << 4))
1895 return false;
1896 if (var.limit != 0xffff)
1897 return false;
1898 if (ar != 0xf3)
1899 return false;
1900
1901 return true;
1902}
1903
1904static bool code_segment_valid(struct kvm_vcpu *vcpu)
1905{
1906 struct kvm_segment cs;
1907 unsigned int cs_rpl;
1908
1909 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1910 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1911
Avi Kivity1872a3f2009-01-04 23:26:52 +02001912 if (cs.unusable)
1913 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001914 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1915 return false;
1916 if (!cs.s)
1917 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001918 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001919 if (cs.dpl > cs_rpl)
1920 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001921 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001922 if (cs.dpl != cs_rpl)
1923 return false;
1924 }
1925 if (!cs.present)
1926 return false;
1927
1928 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1929 return true;
1930}
1931
1932static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1933{
1934 struct kvm_segment ss;
1935 unsigned int ss_rpl;
1936
1937 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1938 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1939
Avi Kivity1872a3f2009-01-04 23:26:52 +02001940 if (ss.unusable)
1941 return true;
1942 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001943 return false;
1944 if (!ss.s)
1945 return false;
1946 if (ss.dpl != ss_rpl) /* DPL != RPL */
1947 return false;
1948 if (!ss.present)
1949 return false;
1950
1951 return true;
1952}
1953
1954static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1955{
1956 struct kvm_segment var;
1957 unsigned int rpl;
1958
1959 vmx_get_segment(vcpu, &var, seg);
1960 rpl = var.selector & SELECTOR_RPL_MASK;
1961
Avi Kivity1872a3f2009-01-04 23:26:52 +02001962 if (var.unusable)
1963 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001964 if (!var.s)
1965 return false;
1966 if (!var.present)
1967 return false;
1968 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1969 if (var.dpl < rpl) /* DPL < RPL */
1970 return false;
1971 }
1972
1973 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1974 * rights flags
1975 */
1976 return true;
1977}
1978
1979static bool tr_valid(struct kvm_vcpu *vcpu)
1980{
1981 struct kvm_segment tr;
1982
1983 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1984
Avi Kivity1872a3f2009-01-04 23:26:52 +02001985 if (tr.unusable)
1986 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001987 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1988 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001989 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001990 return false;
1991 if (!tr.present)
1992 return false;
1993
1994 return true;
1995}
1996
1997static bool ldtr_valid(struct kvm_vcpu *vcpu)
1998{
1999 struct kvm_segment ldtr;
2000
2001 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2002
Avi Kivity1872a3f2009-01-04 23:26:52 +02002003 if (ldtr.unusable)
2004 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002005 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2006 return false;
2007 if (ldtr.type != 2)
2008 return false;
2009 if (!ldtr.present)
2010 return false;
2011
2012 return true;
2013}
2014
2015static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2016{
2017 struct kvm_segment cs, ss;
2018
2019 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2020 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2021
2022 return ((cs.selector & SELECTOR_RPL_MASK) ==
2023 (ss.selector & SELECTOR_RPL_MASK));
2024}
2025
2026/*
2027 * Check if guest state is valid. Returns true if valid, false if
2028 * not.
2029 * We assume that registers are always usable
2030 */
2031static bool guest_state_valid(struct kvm_vcpu *vcpu)
2032{
2033 /* real mode guest state checks */
2034 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
2035 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2036 return false;
2037 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2038 return false;
2039 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2040 return false;
2041 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2042 return false;
2043 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2044 return false;
2045 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2046 return false;
2047 } else {
2048 /* protected mode guest state checks */
2049 if (!cs_ss_rpl_check(vcpu))
2050 return false;
2051 if (!code_segment_valid(vcpu))
2052 return false;
2053 if (!stack_segment_valid(vcpu))
2054 return false;
2055 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2056 return false;
2057 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2058 return false;
2059 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2060 return false;
2061 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2062 return false;
2063 if (!tr_valid(vcpu))
2064 return false;
2065 if (!ldtr_valid(vcpu))
2066 return false;
2067 }
2068 /* TODO:
2069 * - Add checks on RIP
2070 * - Add checks on RFLAGS
2071 */
2072
2073 return true;
2074}
2075
Mike Dayd77c26f2007-10-08 09:02:08 -04002076static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002079 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002080 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002081 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002082
Izik Eidus195aefd2007-10-01 22:14:18 +02002083 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2084 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002085 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002086 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002087 r = kvm_write_guest_page(kvm, fn++, &data,
2088 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002089 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002090 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002091 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2092 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002093 goto out;
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 = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002098 r = kvm_write_guest_page(kvm, fn, &data,
2099 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2100 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002101 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002102 goto out;
2103
2104 ret = 1;
2105out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002106 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107}
2108
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002109static int init_rmode_identity_map(struct kvm *kvm)
2110{
2111 int i, r, ret;
2112 pfn_t identity_map_pfn;
2113 u32 tmp;
2114
Avi Kivity089d0342009-03-23 18:26:32 +02002115 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002116 return 1;
2117 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2118 printk(KERN_ERR "EPT: identity-mapping pagetable "
2119 "haven't been allocated!\n");
2120 return 0;
2121 }
2122 if (likely(kvm->arch.ept_identity_pagetable_done))
2123 return 1;
2124 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002125 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002126 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2127 if (r < 0)
2128 goto out;
2129 /* Set up identity-mapping pagetable for EPT in real mode */
2130 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2131 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2132 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2133 r = kvm_write_guest_page(kvm, identity_map_pfn,
2134 &tmp, i * sizeof(tmp), sizeof(tmp));
2135 if (r < 0)
2136 goto out;
2137 }
2138 kvm->arch.ept_identity_pagetable_done = true;
2139 ret = 1;
2140out:
2141 return ret;
2142}
2143
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144static void seg_setup(int seg)
2145{
2146 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002147 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002148
2149 vmcs_write16(sf->selector, 0);
2150 vmcs_writel(sf->base, 0);
2151 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002152 if (enable_unrestricted_guest) {
2153 ar = 0x93;
2154 if (seg == VCPU_SREG_CS)
2155 ar |= 0x08; /* code segment */
2156 } else
2157 ar = 0xf3;
2158
2159 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002160}
2161
Sheng Yangf78e0e22007-10-29 09:40:42 +08002162static int alloc_apic_access_page(struct kvm *kvm)
2163{
2164 struct kvm_userspace_memory_region kvm_userspace_mem;
2165 int r = 0;
2166
Izik Eidus72dc67a2008-02-10 18:04:15 +02002167 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002168 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002169 goto out;
2170 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2171 kvm_userspace_mem.flags = 0;
2172 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2173 kvm_userspace_mem.memory_size = PAGE_SIZE;
2174 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2175 if (r)
2176 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002177
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002178 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002179out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002180 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002181 return r;
2182}
2183
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002184static int alloc_identity_pagetable(struct kvm *kvm)
2185{
2186 struct kvm_userspace_memory_region kvm_userspace_mem;
2187 int r = 0;
2188
2189 down_write(&kvm->slots_lock);
2190 if (kvm->arch.ept_identity_pagetable)
2191 goto out;
2192 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2193 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002194 kvm_userspace_mem.guest_phys_addr =
2195 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002196 kvm_userspace_mem.memory_size = PAGE_SIZE;
2197 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2198 if (r)
2199 goto out;
2200
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002201 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002202 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002203out:
2204 up_write(&kvm->slots_lock);
2205 return r;
2206}
2207
Sheng Yang2384d2b2008-01-17 15:14:33 +08002208static void allocate_vpid(struct vcpu_vmx *vmx)
2209{
2210 int vpid;
2211
2212 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002213 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002214 return;
2215 spin_lock(&vmx_vpid_lock);
2216 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2217 if (vpid < VMX_NR_VPIDS) {
2218 vmx->vpid = vpid;
2219 __set_bit(vpid, vmx_vpid_bitmap);
2220 }
2221 spin_unlock(&vmx_vpid_lock);
2222}
2223
Avi Kivity58972972009-02-24 22:26:47 +02002224static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002225{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002226 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002227
2228 if (!cpu_has_vmx_msr_bitmap())
2229 return;
2230
2231 /*
2232 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2233 * have the write-low and read-high bitmap offsets the wrong way round.
2234 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2235 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002236 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002237 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2238 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002239 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2240 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002241 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2242 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002243 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002244}
2245
Avi Kivity58972972009-02-24 22:26:47 +02002246static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2247{
2248 if (!longmode_only)
2249 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2250 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2251}
2252
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253/*
2254 * Sets up the vmcs for emulated real mode.
2255 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002256static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257{
Sheng Yang468d4722008-10-09 16:01:55 +08002258 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002259 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002260 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261 unsigned long a;
2262 struct descriptor_table dt;
2263 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002264 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002265 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266
Avi Kivity6aa8b732006-12-10 02:21:36 -08002267 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002268 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2269 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270
Sheng Yang25c5f222008-03-28 13:18:56 +08002271 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002272 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002273
Avi Kivity6aa8b732006-12-10 02:21:36 -08002274 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2275
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002277 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2278 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002279
2280 exec_control = vmcs_config.cpu_based_exec_ctrl;
2281 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2282 exec_control &= ~CPU_BASED_TPR_SHADOW;
2283#ifdef CONFIG_X86_64
2284 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2285 CPU_BASED_CR8_LOAD_EXITING;
2286#endif
2287 }
Avi Kivity089d0342009-03-23 18:26:32 +02002288 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002289 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002290 CPU_BASED_CR3_LOAD_EXITING |
2291 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002292 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293
Sheng Yang83ff3b92007-11-21 14:33:25 +08002294 if (cpu_has_secondary_exec_ctrls()) {
2295 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2296 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2297 exec_control &=
2298 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002299 if (vmx->vpid == 0)
2300 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Avi Kivity089d0342009-03-23 18:26:32 +02002301 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002302 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002303 if (!enable_unrestricted_guest)
2304 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002305 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2306 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002307
Avi Kivityc7addb92007-09-16 18:58:32 +02002308 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2309 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002310 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2311
2312 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2313 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2314 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2315
2316 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2317 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2318 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002319 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2320 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002322#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002323 rdmsrl(MSR_FS_BASE, a);
2324 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2325 rdmsrl(MSR_GS_BASE, a);
2326 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2327#else
2328 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2329 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2330#endif
2331
2332 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2333
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002334 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2336
Mike Dayd77c26f2007-10-08 09:02:08 -04002337 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002338 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002339 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2340 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2341 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002342
2343 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2344 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2345 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2346 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2347 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2348 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2349
Sheng Yang468d4722008-10-09 16:01:55 +08002350 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2351 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2352 host_pat = msr_low | ((u64) msr_high << 32);
2353 vmcs_write64(HOST_IA32_PAT, host_pat);
2354 }
2355 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2356 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2357 host_pat = msr_low | ((u64) msr_high << 32);
2358 /* Write the default value follow host pat */
2359 vmcs_write64(GUEST_IA32_PAT, host_pat);
2360 /* Keep arch.pat sync with GUEST_IA32_PAT */
2361 vmx->vcpu.arch.pat = host_pat;
2362 }
2363
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364 for (i = 0; i < NR_VMX_MSR; ++i) {
2365 u32 index = vmx_msr_index[i];
2366 u32 data_low, data_high;
2367 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002368 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369
2370 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2371 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002372 if (wrmsr_safe(index, data_low, data_high) < 0)
2373 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002374 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002375 vmx->host_msrs[j].index = index;
2376 vmx->host_msrs[j].reserved = 0;
2377 vmx->host_msrs[j].data = data;
2378 vmx->guest_msrs[j] = vmx->host_msrs[j];
2379 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002382 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383
2384 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002385 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2386
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002387 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2388 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2389
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002390 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2391 rdtscll(tsc_this);
2392 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2393 tsc_base = tsc_this;
2394
2395 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002396
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002397 return 0;
2398}
2399
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002400static int init_rmode(struct kvm *kvm)
2401{
2402 if (!init_rmode_tss(kvm))
2403 return 0;
2404 if (!init_rmode_identity_map(kvm))
2405 return 0;
2406 return 1;
2407}
2408
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002409static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2410{
2411 struct vcpu_vmx *vmx = to_vmx(vcpu);
2412 u64 msr;
2413 int ret;
2414
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002415 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002416 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002417 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002418 ret = -ENOMEM;
2419 goto out;
2420 }
2421
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002422 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002423
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002424 vmx->soft_vnmi_blocked = 0;
2425
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002426 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002427 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002428 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002429 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002430 msr |= MSR_IA32_APICBASE_BSP;
2431 kvm_set_apic_base(&vmx->vcpu, msr);
2432
2433 fx_init(&vmx->vcpu);
2434
Avi Kivity5706be02008-08-20 15:07:31 +03002435 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002436 /*
2437 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2438 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2439 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002440 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002441 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2442 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2443 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002444 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2445 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002446 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002447
2448 seg_setup(VCPU_SREG_DS);
2449 seg_setup(VCPU_SREG_ES);
2450 seg_setup(VCPU_SREG_FS);
2451 seg_setup(VCPU_SREG_GS);
2452 seg_setup(VCPU_SREG_SS);
2453
2454 vmcs_write16(GUEST_TR_SELECTOR, 0);
2455 vmcs_writel(GUEST_TR_BASE, 0);
2456 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2457 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2458
2459 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2460 vmcs_writel(GUEST_LDTR_BASE, 0);
2461 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2462 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2463
2464 vmcs_write32(GUEST_SYSENTER_CS, 0);
2465 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2466 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2467
2468 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002469 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002470 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002471 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002472 kvm_rip_write(vcpu, 0);
2473 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002474
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002475 vmcs_writel(GUEST_DR7, 0x400);
2476
2477 vmcs_writel(GUEST_GDTR_BASE, 0);
2478 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2479
2480 vmcs_writel(GUEST_IDTR_BASE, 0);
2481 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2482
2483 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2484 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2485 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2486
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002487 /* Special registers */
2488 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2489
2490 setup_msrs(vmx);
2491
Avi Kivity6aa8b732006-12-10 02:21:36 -08002492 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2493
Sheng Yangf78e0e22007-10-29 09:40:42 +08002494 if (cpu_has_vmx_tpr_shadow()) {
2495 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2496 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2497 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002498 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002499 vmcs_write32(TPR_THRESHOLD, 0);
2500 }
2501
2502 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2503 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002504 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505
Sheng Yang2384d2b2008-01-17 15:14:33 +08002506 if (vmx->vpid != 0)
2507 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2508
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002509 vmx->vcpu.arch.cr0 = 0x60000010;
2510 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002511 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002512 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002513 vmx_fpu_activate(&vmx->vcpu);
2514 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002515
Sheng Yang2384d2b2008-01-17 15:14:33 +08002516 vpid_sync_vcpu_all(vmx);
2517
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002518 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002520 /* HACK: Don't enable emulation on guest boot/reset */
2521 vmx->emulation_required = 0;
2522
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002524 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002525 return ret;
2526}
2527
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002528static void enable_irq_window(struct kvm_vcpu *vcpu)
2529{
2530 u32 cpu_based_vm_exec_control;
2531
2532 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2533 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2534 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2535}
2536
2537static void enable_nmi_window(struct kvm_vcpu *vcpu)
2538{
2539 u32 cpu_based_vm_exec_control;
2540
2541 if (!cpu_has_virtual_nmis()) {
2542 enable_irq_window(vcpu);
2543 return;
2544 }
2545
2546 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2547 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2548 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2549}
2550
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002551static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002552{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002553 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002554 uint32_t intr;
2555 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002556
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002557 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002558
Avi Kivityfa89a812008-09-01 15:57:51 +03002559 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002560 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002561 vmx->rmode.irq.pending = true;
2562 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002563 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002564 if (vcpu->arch.interrupt.soft)
2565 vmx->rmode.irq.rip +=
2566 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002567 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2568 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2569 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002570 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002571 return;
2572 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002573 intr = irq | INTR_INFO_VALID_MASK;
2574 if (vcpu->arch.interrupt.soft) {
2575 intr |= INTR_TYPE_SOFT_INTR;
2576 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2577 vmx->vcpu.arch.event_exit_inst_len);
2578 } else
2579 intr |= INTR_TYPE_EXT_INTR;
2580 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002581}
2582
Sheng Yangf08864b2008-05-15 18:23:25 +08002583static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2584{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002585 struct vcpu_vmx *vmx = to_vmx(vcpu);
2586
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002587 if (!cpu_has_virtual_nmis()) {
2588 /*
2589 * Tracking the NMI-blocked state in software is built upon
2590 * finding the next open IRQ window. This, in turn, depends on
2591 * well-behaving guests: They have to keep IRQs disabled at
2592 * least as long as the NMI handler runs. Otherwise we may
2593 * cause NMI nesting, maybe breaking the guest. But as this is
2594 * highly unlikely, we can live with the residual risk.
2595 */
2596 vmx->soft_vnmi_blocked = 1;
2597 vmx->vnmi_blocked_time = 0;
2598 }
2599
Jan Kiszka487b3912008-09-26 09:30:56 +02002600 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002601 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002602 vmx->rmode.irq.pending = true;
2603 vmx->rmode.irq.vector = NMI_VECTOR;
2604 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2605 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2606 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2607 INTR_INFO_VALID_MASK);
2608 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2609 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2610 return;
2611 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002612 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2613 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002614}
2615
Gleb Natapovc4282df2009-04-21 17:45:07 +03002616static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002617{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002618 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002619 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002620
Gleb Natapovc4282df2009-04-21 17:45:07 +03002621 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2622 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2623 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002624}
2625
Gleb Natapov78646122009-03-23 12:12:11 +02002626static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2627{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002628 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2629 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2630 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002631}
2632
Izik Eiduscbc94022007-10-25 00:29:55 +02002633static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2634{
2635 int ret;
2636 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002637 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002638 .guest_phys_addr = addr,
2639 .memory_size = PAGE_SIZE * 3,
2640 .flags = 0,
2641 };
2642
2643 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2644 if (ret)
2645 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002646 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002647 return 0;
2648}
2649
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2651 int vec, u32 err_code)
2652{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002653 /*
2654 * Instruction with address size override prefix opcode 0x67
2655 * Cause the #SS fault with 0 error code in VM86 mode.
2656 */
2657 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002658 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002659 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002660 /*
2661 * Forward all other exceptions that are valid in real mode.
2662 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2663 * the required debugging infrastructure rework.
2664 */
2665 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002666 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002667 if (vcpu->guest_debug &
2668 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2669 return 0;
2670 kvm_queue_exception(vcpu, vec);
2671 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002672 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002673 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2674 return 0;
2675 /* fall through */
2676 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002677 case OF_VECTOR:
2678 case BR_VECTOR:
2679 case UD_VECTOR:
2680 case DF_VECTOR:
2681 case SS_VECTOR:
2682 case GP_VECTOR:
2683 case MF_VECTOR:
2684 kvm_queue_exception(vcpu, vec);
2685 return 1;
2686 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002687 return 0;
2688}
2689
Andi Kleena0861c02009-06-08 17:37:09 +08002690/*
2691 * Trigger machine check on the host. We assume all the MSRs are already set up
2692 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2693 * We pass a fake environment to the machine check handler because we want
2694 * the guest to be always treated like user space, no matter what context
2695 * it used internally.
2696 */
2697static void kvm_machine_check(void)
2698{
2699#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2700 struct pt_regs regs = {
2701 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2702 .flags = X86_EFLAGS_IF,
2703 };
2704
2705 do_machine_check(&regs, 0);
2706#endif
2707}
2708
2709static int handle_machine_check(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2710{
2711 /* already handled by vcpu_run */
2712 return 1;
2713}
2714
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2716{
Avi Kivity1155f762007-11-22 11:30:47 +02002717 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002718 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002719 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002720 u32 vect_info;
2721 enum emulation_result er;
2722
Avi Kivity1155f762007-11-22 11:30:47 +02002723 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2725
Andi Kleena0861c02009-06-08 17:37:09 +08002726 if (is_machine_check(intr_info))
2727 return handle_machine_check(vcpu, kvm_run);
2728
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002730 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002732 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733
Jan Kiszkae4a41882008-09-26 09:30:46 +02002734 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002735 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002736
2737 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002738 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002739 return 1;
2740 }
2741
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002742 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002743 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002744 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002745 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002746 return 1;
2747 }
2748
Avi Kivity6aa8b732006-12-10 02:21:36 -08002749 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002750 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002751 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2753 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002754 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002755 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002756 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002758 trace_kvm_page_fault(cr2, error_code);
2759
Gleb Natapov3298b752009-05-11 13:35:46 +03002760 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002761 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002762 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763 }
2764
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002765 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002767 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002768 if (vcpu->arch.halt_request) {
2769 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002770 return kvm_emulate_halt(vcpu);
2771 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002772 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002773 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002775 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002776 switch (ex_no) {
2777 case DB_VECTOR:
2778 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2779 if (!(vcpu->guest_debug &
2780 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2781 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2782 kvm_queue_exception(vcpu, DB_VECTOR);
2783 return 1;
2784 }
2785 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2786 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2787 /* fall through */
2788 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002789 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002790 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2791 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002792 break;
2793 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002794 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2795 kvm_run->ex.exception = ex_no;
2796 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002797 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002798 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799 return 0;
2800}
2801
2802static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2803 struct kvm_run *kvm_run)
2804{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002805 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806 return 1;
2807}
2808
Avi Kivity988ad742007-02-12 00:54:36 -08002809static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2810{
2811 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2812 return 0;
2813}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814
Avi Kivity6aa8b732006-12-10 02:21:36 -08002815static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2816{
He, Qingbfdaab02007-09-12 14:18:28 +08002817 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002818 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002819 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820
Avi Kivity1165f5f2007-04-19 17:27:43 +03002821 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002822 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002823 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002824
2825 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002826 if (emulate_instruction(vcpu,
2827 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002828 return 0;
2829 return 1;
2830 }
2831
2832 size = (exit_qualification & 7) + 1;
2833 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002834 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002835
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002836 skip_emulated_instruction(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03002837 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838}
2839
Ingo Molnar102d8322007-02-19 14:37:47 +02002840static void
2841vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2842{
2843 /*
2844 * Patch in the VMCALL instruction:
2845 */
2846 hypercall[0] = 0x0f;
2847 hypercall[1] = 0x01;
2848 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002849}
2850
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2852{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002853 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854 int cr;
2855 int reg;
2856
He, Qingbfdaab02007-09-12 14:18:28 +08002857 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858 cr = exit_qualification & 15;
2859 reg = (exit_qualification >> 8) & 15;
2860 switch ((exit_qualification >> 4) & 3) {
2861 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002862 val = kvm_register_read(vcpu, reg);
2863 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864 switch (cr) {
2865 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002866 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002867 skip_emulated_instruction(vcpu);
2868 return 1;
2869 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002870 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002871 skip_emulated_instruction(vcpu);
2872 return 1;
2873 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002874 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002875 skip_emulated_instruction(vcpu);
2876 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002877 case 8: {
2878 u8 cr8_prev = kvm_get_cr8(vcpu);
2879 u8 cr8 = kvm_register_read(vcpu, reg);
2880 kvm_set_cr8(vcpu, cr8);
2881 skip_emulated_instruction(vcpu);
2882 if (irqchip_in_kernel(vcpu->kvm))
2883 return 1;
2884 if (cr8_prev <= cr8)
2885 return 1;
2886 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2887 return 0;
2888 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889 };
2890 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002891 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002892 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002893 vcpu->arch.cr0 &= ~X86_CR0_TS;
2894 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002895 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002896 skip_emulated_instruction(vcpu);
2897 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898 case 1: /*mov from cr*/
2899 switch (cr) {
2900 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002901 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002902 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002903 skip_emulated_instruction(vcpu);
2904 return 1;
2905 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002906 val = kvm_get_cr8(vcpu);
2907 kvm_register_write(vcpu, reg, val);
2908 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909 skip_emulated_instruction(vcpu);
2910 return 1;
2911 }
2912 break;
2913 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002914 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915
2916 skip_emulated_instruction(vcpu);
2917 return 1;
2918 default:
2919 break;
2920 }
2921 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002922 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923 (int)(exit_qualification >> 4) & 3, cr);
2924 return 0;
2925}
2926
2927static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2928{
He, Qingbfdaab02007-09-12 14:18:28 +08002929 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930 unsigned long val;
2931 int dr, reg;
2932
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002933 dr = vmcs_readl(GUEST_DR7);
2934 if (dr & DR7_GD) {
2935 /*
2936 * As the vm-exit takes precedence over the debug trap, we
2937 * need to emulate the latter, either for the host or the
2938 * guest debugging itself.
2939 */
2940 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
2941 kvm_run->debug.arch.dr6 = vcpu->arch.dr6;
2942 kvm_run->debug.arch.dr7 = dr;
2943 kvm_run->debug.arch.pc =
2944 vmcs_readl(GUEST_CS_BASE) +
2945 vmcs_readl(GUEST_RIP);
2946 kvm_run->debug.arch.exception = DB_VECTOR;
2947 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2948 return 0;
2949 } else {
2950 vcpu->arch.dr7 &= ~DR7_GD;
2951 vcpu->arch.dr6 |= DR6_BD;
2952 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2953 kvm_queue_exception(vcpu, DB_VECTOR);
2954 return 1;
2955 }
2956 }
2957
He, Qingbfdaab02007-09-12 14:18:28 +08002958 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002959 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2960 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2961 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002963 case 0 ... 3:
2964 val = vcpu->arch.db[dr];
2965 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002966 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002967 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 break;
2969 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002970 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002971 break;
2972 default:
2973 val = 0;
2974 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002975 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002976 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002977 val = vcpu->arch.regs[reg];
2978 switch (dr) {
2979 case 0 ... 3:
2980 vcpu->arch.db[dr] = val;
2981 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2982 vcpu->arch.eff_db[dr] = val;
2983 break;
2984 case 4 ... 5:
2985 if (vcpu->arch.cr4 & X86_CR4_DE)
2986 kvm_queue_exception(vcpu, UD_VECTOR);
2987 break;
2988 case 6:
2989 if (val & 0xffffffff00000000ULL) {
2990 kvm_queue_exception(vcpu, GP_VECTOR);
2991 break;
2992 }
2993 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2994 break;
2995 case 7:
2996 if (val & 0xffffffff00000000ULL) {
2997 kvm_queue_exception(vcpu, GP_VECTOR);
2998 break;
2999 }
3000 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3001 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3002 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3003 vcpu->arch.switch_db_regs =
3004 (val & DR7_BP_EN_MASK);
3005 }
3006 break;
3007 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003008 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003009 skip_emulated_instruction(vcpu);
3010 return 1;
3011}
3012
3013static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3014{
Avi Kivity06465c52007-02-28 20:46:53 +02003015 kvm_emulate_cpuid(vcpu);
3016 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017}
3018
3019static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3020{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003021 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003022 u64 data;
3023
3024 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003025 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026 return 1;
3027 }
3028
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003029 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003030
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003032 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3033 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003034 skip_emulated_instruction(vcpu);
3035 return 1;
3036}
3037
3038static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3039{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003040 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3041 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3042 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003044 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003045
Avi Kivity6aa8b732006-12-10 02:21:36 -08003046 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003047 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003048 return 1;
3049 }
3050
3051 skip_emulated_instruction(vcpu);
3052 return 1;
3053}
3054
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003055static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
3056 struct kvm_run *kvm_run)
3057{
3058 return 1;
3059}
3060
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061static int handle_interrupt_window(struct kvm_vcpu *vcpu,
3062 struct kvm_run *kvm_run)
3063{
Eddie Dong85f455f2007-07-06 12:20:49 +03003064 u32 cpu_based_vm_exec_control;
3065
3066 /* clear pending irq */
3067 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3068 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3069 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003070
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003071 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003072
Dor Laorc1150d82007-01-05 16:36:24 -08003073 /*
3074 * If the user space waits to inject interrupts, exit as soon as
3075 * possible
3076 */
Gleb Natapov80618232009-04-21 17:44:56 +03003077 if (!irqchip_in_kernel(vcpu->kvm) &&
3078 kvm_run->request_interrupt_window &&
3079 !kvm_cpu_has_interrupt(vcpu)) {
Dor Laorc1150d82007-01-05 16:36:24 -08003080 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003081 return 0;
3082 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003083 return 1;
3084}
3085
3086static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3087{
3088 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003089 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003090}
3091
Ingo Molnarc21415e2007-02-19 14:37:47 +02003092static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3093{
Dor Laor510043d2007-02-19 18:25:43 +02003094 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003095 kvm_emulate_hypercall(vcpu);
3096 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003097}
3098
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003099static int handle_vmx_insn(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3100{
3101 kvm_queue_exception(vcpu, UD_VECTOR);
3102 return 1;
3103}
3104
Marcelo Tosattia7052892008-09-23 13:18:35 -03003105static int handle_invlpg(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3106{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003107 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003108
3109 kvm_mmu_invlpg(vcpu, exit_qualification);
3110 skip_emulated_instruction(vcpu);
3111 return 1;
3112}
3113
Eddie Donge5edaa02007-11-11 12:28:35 +02003114static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3115{
3116 skip_emulated_instruction(vcpu);
3117 /* TODO: Add support for VT-d/pass-through device */
3118 return 1;
3119}
3120
Sheng Yangf78e0e22007-10-29 09:40:42 +08003121static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3122{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003123 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003124 enum emulation_result er;
3125 unsigned long offset;
3126
Sheng Yangf9c617f2009-03-25 10:08:52 +08003127 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003128 offset = exit_qualification & 0xffful;
3129
3130 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3131
3132 if (er != EMULATE_DONE) {
3133 printk(KERN_ERR
3134 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3135 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003136 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003137 }
3138 return 1;
3139}
3140
Izik Eidus37817f22008-03-24 23:14:53 +02003141static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3142{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003143 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003144 unsigned long exit_qualification;
3145 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003146 int reason, type, idt_v;
3147
3148 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3149 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003150
3151 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3152
3153 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003154 if (reason == TASK_SWITCH_GATE && idt_v) {
3155 switch (type) {
3156 case INTR_TYPE_NMI_INTR:
3157 vcpu->arch.nmi_injected = false;
3158 if (cpu_has_virtual_nmis())
3159 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3160 GUEST_INTR_STATE_NMI);
3161 break;
3162 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003163 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003164 kvm_clear_interrupt_queue(vcpu);
3165 break;
3166 case INTR_TYPE_HARD_EXCEPTION:
3167 case INTR_TYPE_SOFT_EXCEPTION:
3168 kvm_clear_exception_queue(vcpu);
3169 break;
3170 default:
3171 break;
3172 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003173 }
Izik Eidus37817f22008-03-24 23:14:53 +02003174 tss_selector = exit_qualification;
3175
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003176 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3177 type != INTR_TYPE_EXT_INTR &&
3178 type != INTR_TYPE_NMI_INTR))
3179 skip_emulated_instruction(vcpu);
3180
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003181 if (!kvm_task_switch(vcpu, tss_selector, reason))
3182 return 0;
3183
3184 /* clear all local breakpoint enable flags */
3185 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3186
3187 /*
3188 * TODO: What about debug traps on tss switch?
3189 * Are we supposed to inject them and update dr6?
3190 */
3191
3192 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003193}
3194
Sheng Yang14394422008-04-28 12:24:45 +08003195static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3196{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003197 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003198 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003199 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003200
Sheng Yangf9c617f2009-03-25 10:08:52 +08003201 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003202
3203 if (exit_qualification & (1 << 6)) {
3204 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003205 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003206 }
3207
3208 gla_validity = (exit_qualification >> 7) & 0x3;
3209 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3210 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3211 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3212 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003213 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003214 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3215 (long unsigned int)exit_qualification);
3216 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
Avi Kivity596ae892009-06-03 14:12:10 +03003217 kvm_run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
3218 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003219 }
3220
3221 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003222 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003223 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003224}
3225
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003226static u64 ept_rsvd_mask(u64 spte, int level)
3227{
3228 int i;
3229 u64 mask = 0;
3230
3231 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3232 mask |= (1ULL << i);
3233
3234 if (level > 2)
3235 /* bits 7:3 reserved */
3236 mask |= 0xf8;
3237 else if (level == 2) {
3238 if (spte & (1ULL << 7))
3239 /* 2MB ref, bits 20:12 reserved */
3240 mask |= 0x1ff000;
3241 else
3242 /* bits 6:3 reserved */
3243 mask |= 0x78;
3244 }
3245
3246 return mask;
3247}
3248
3249static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3250 int level)
3251{
3252 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3253
3254 /* 010b (write-only) */
3255 WARN_ON((spte & 0x7) == 0x2);
3256
3257 /* 110b (write/execute) */
3258 WARN_ON((spte & 0x7) == 0x6);
3259
3260 /* 100b (execute-only) and value not supported by logical processor */
3261 if (!cpu_has_vmx_ept_execute_only())
3262 WARN_ON((spte & 0x7) == 0x4);
3263
3264 /* not 000b */
3265 if ((spte & 0x7)) {
3266 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3267
3268 if (rsvd_bits != 0) {
3269 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3270 __func__, rsvd_bits);
3271 WARN_ON(1);
3272 }
3273
3274 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3275 u64 ept_mem_type = (spte & 0x38) >> 3;
3276
3277 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3278 ept_mem_type == 7) {
3279 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3280 __func__, ept_mem_type);
3281 WARN_ON(1);
3282 }
3283 }
3284 }
3285}
3286
3287static int handle_ept_misconfig(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3288{
3289 u64 sptes[4];
3290 int nr_sptes, i;
3291 gpa_t gpa;
3292
3293 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3294
3295 printk(KERN_ERR "EPT: Misconfiguration.\n");
3296 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3297
3298 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3299
3300 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3301 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3302
3303 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3304 kvm_run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
3305
3306 return 0;
3307}
3308
Sheng Yangf08864b2008-05-15 18:23:25 +08003309static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3310{
3311 u32 cpu_based_vm_exec_control;
3312
3313 /* clear pending NMI */
3314 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3315 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3316 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3317 ++vcpu->stat.nmi_window_exits;
3318
3319 return 1;
3320}
3321
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003322static void handle_invalid_guest_state(struct kvm_vcpu *vcpu,
3323 struct kvm_run *kvm_run)
3324{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003325 struct vcpu_vmx *vmx = to_vmx(vcpu);
3326 enum emulation_result err = EMULATE_DONE;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003327
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003328 local_irq_enable();
Jan Kiszka34f0c1a2009-07-22 23:53:26 +02003329 preempt_enable();
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003330
3331 while (!guest_state_valid(vcpu)) {
3332 err = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3333
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003334 if (err == EMULATE_DO_MMIO)
3335 break;
3336
3337 if (err != EMULATE_DONE) {
3338 kvm_report_emulation_failure(vcpu, "emulation failure");
Jan Kiszka263799a2009-07-21 10:43:07 +02003339 break;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003340 }
3341
3342 if (signal_pending(current))
3343 break;
3344 if (need_resched())
3345 schedule();
3346 }
3347
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003348 preempt_disable();
Jan Kiszka34f0c1a2009-07-22 23:53:26 +02003349 local_irq_disable();
Avi Kivity8b3079a2009-01-05 12:10:54 +02003350
3351 vmx->invalid_state_emulation_result = err;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003352}
3353
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354/*
3355 * The exit handlers return 1 if the exit was handled fully and guest execution
3356 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3357 * to be done to userspace and return 0.
3358 */
3359static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
3360 struct kvm_run *kvm_run) = {
3361 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3362 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003363 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003364 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003365 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366 [EXIT_REASON_CR_ACCESS] = handle_cr,
3367 [EXIT_REASON_DR_ACCESS] = handle_dr,
3368 [EXIT_REASON_CPUID] = handle_cpuid,
3369 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3370 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3371 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3372 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003373 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003374 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003375 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3376 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3377 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3378 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3379 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3380 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3381 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3382 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3383 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003384 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3385 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003386 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003387 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003388 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003389 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3390 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003391};
3392
3393static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003394 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395
3396/*
3397 * The guest has exited. See if we can fix it or if we need userspace
3398 * assistance.
3399 */
Avi Kivity6062d012009-03-23 17:35:17 +02003400static int vmx_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003401{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003402 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003403 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003404 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003405
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003406 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003407
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003408 /* If we need to emulate an MMIO from handle_invalid_guest_state
3409 * we just return 0 */
Avi Kivity10f32d82009-01-05 00:53:19 +02003410 if (vmx->emulation_required && emulate_invalid_guest_state) {
3411 if (guest_state_valid(vcpu))
3412 vmx->emulation_required = 0;
Avi Kivity8b3079a2009-01-05 12:10:54 +02003413 return vmx->invalid_state_emulation_result != EMULATE_DO_MMIO;
Avi Kivity10f32d82009-01-05 00:53:19 +02003414 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003415
Sheng Yang14394422008-04-28 12:24:45 +08003416 /* Access CR3 don't cause VMExit in paging mode, so we need
3417 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003418 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003419 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003420
Avi Kivity29bd8a72007-09-10 17:27:03 +03003421 if (unlikely(vmx->fail)) {
3422 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3423 kvm_run->fail_entry.hardware_entry_failure_reason
3424 = vmcs_read32(VM_INSTRUCTION_ERROR);
3425 return 0;
3426 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003427
Mike Dayd77c26f2007-10-08 09:02:08 -04003428 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003429 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003430 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3431 exit_reason != EXIT_REASON_TASK_SWITCH))
3432 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3433 "(0x%x) and exit reason is 0x%x\n",
3434 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003435
3436 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003437 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003438 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003439 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003440 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003441 /*
3442 * This CPU don't support us in finding the end of an
3443 * NMI-blocked window if the guest runs with IRQs
3444 * disabled. So we pull the trigger after 1 s of
3445 * futile waiting, but inform the user about this.
3446 */
3447 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3448 "state on VCPU %d after 1 s timeout\n",
3449 __func__, vcpu->vcpu_id);
3450 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003451 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003452 }
3453
Avi Kivity6aa8b732006-12-10 02:21:36 -08003454 if (exit_reason < kvm_vmx_max_exit_handlers
3455 && kvm_vmx_exit_handlers[exit_reason])
3456 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
3457 else {
3458 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3459 kvm_run->hw.hardware_exit_reason = exit_reason;
3460 }
3461 return 0;
3462}
3463
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003464static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003465{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003466 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003467 vmcs_write32(TPR_THRESHOLD, 0);
3468 return;
3469 }
3470
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003471 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003472}
3473
Avi Kivitycf393f72008-07-01 16:20:21 +03003474static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3475{
3476 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003477 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003478 bool unblock_nmi;
3479 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003480 int type;
3481 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003482
3483 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003484
Andi Kleena0861c02009-06-08 17:37:09 +08003485 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3486
3487 /* Handle machine checks before interrupts are enabled */
3488 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3489 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3490 && is_machine_check(exit_intr_info)))
3491 kvm_machine_check();
3492
Gleb Natapov20f65982009-05-11 13:35:55 +03003493 /* We need to handle NMIs before interrupts are enabled */
3494 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003495 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003496 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003497
3498 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3499
Avi Kivitycf393f72008-07-01 16:20:21 +03003500 if (cpu_has_virtual_nmis()) {
3501 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3502 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3503 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003504 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003505 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3506 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003507 * SDM 3: 23.2.2 (September 2008)
3508 * Bit 12 is undefined in any of the following cases:
3509 * If the VM exit sets the valid bit in the IDT-vectoring
3510 * information field.
3511 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003512 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003513 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3514 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003515 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3516 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003517 } else if (unlikely(vmx->soft_vnmi_blocked))
3518 vmx->vnmi_blocked_time +=
3519 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003520
Gleb Natapov37b96e92009-03-30 16:03:13 +03003521 vmx->vcpu.arch.nmi_injected = false;
3522 kvm_clear_exception_queue(&vmx->vcpu);
3523 kvm_clear_interrupt_queue(&vmx->vcpu);
3524
3525 if (!idtv_info_valid)
3526 return;
3527
Avi Kivity668f6122008-07-02 09:28:55 +03003528 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3529 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003530
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003531 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003532 case INTR_TYPE_NMI_INTR:
3533 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003534 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003535 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003536 * Clear bit "block by NMI" before VM entry if a NMI
3537 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003538 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003539 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3540 GUEST_INTR_STATE_NMI);
3541 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003542 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003543 vmx->vcpu.arch.event_exit_inst_len =
3544 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3545 /* fall through */
3546 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003547 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003548 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3549 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003550 } else
3551 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003552 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003553 case INTR_TYPE_SOFT_INTR:
3554 vmx->vcpu.arch.event_exit_inst_len =
3555 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3556 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003557 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003558 kvm_queue_interrupt(&vmx->vcpu, vector,
3559 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003560 break;
3561 default:
3562 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003563 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003564}
3565
Avi Kivity9c8cba32007-11-22 11:42:59 +02003566/*
3567 * Failure to inject an interrupt should give us the information
3568 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3569 * when fetching the interrupt redirection bitmap in the real-mode
3570 * tss, this doesn't happen. So we do it ourselves.
3571 */
3572static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3573{
3574 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003575 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003576 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003577 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003578 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3579 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3580 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3581 return;
3582 }
3583 vmx->idt_vectoring_info =
3584 VECTORING_INFO_VALID_MASK
3585 | INTR_TYPE_EXT_INTR
3586 | vmx->rmode.irq.vector;
3587}
3588
Avi Kivityc8019492008-07-14 14:44:59 +03003589#ifdef CONFIG_X86_64
3590#define R "r"
3591#define Q "q"
3592#else
3593#define R "e"
3594#define Q "l"
3595#endif
3596
Avi Kivity04d2cc72007-09-10 18:10:54 +03003597static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003598{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003599 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003600
Avi Kivity8f5d5492009-05-31 18:41:29 +03003601 if (enable_ept && is_paging(vcpu)) {
3602 vmcs_writel(GUEST_CR3, vcpu->arch.cr3);
3603 ept_load_pdptrs(vcpu);
3604 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003605 /* Record the guest's net vcpu time for enforced NMI injections. */
3606 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3607 vmx->entry_time = ktime_get();
3608
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003609 /* Handle invalid guest state instead of entering VMX */
3610 if (vmx->emulation_required && emulate_invalid_guest_state) {
3611 handle_invalid_guest_state(vcpu, kvm_run);
3612 return;
3613 }
3614
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003615 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3616 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3617 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3618 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3619
Gleb Natapov787ff732009-05-18 11:44:06 +03003620 /* When single-stepping over STI and MOV SS, we must clear the
3621 * corresponding interruptibility bits in the guest state. Otherwise
3622 * vmentry fails as it then expects bit 14 (BS) in pending debug
3623 * exceptions being set, but that's not correct for the guest debugging
3624 * case. */
3625 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3626 vmx_set_interrupt_shadow(vcpu, 0);
3627
Avi Kivitye6adf282007-04-30 16:07:54 +03003628 /*
3629 * Loading guest fpu may have cleared host cr0.ts
3630 */
3631 vmcs_writel(HOST_CR0, read_cr0());
3632
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003633 set_debugreg(vcpu->arch.dr6, 6);
3634
Mike Dayd77c26f2007-10-08 09:02:08 -04003635 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003636 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003637 "push %%"R"dx; push %%"R"bp;"
3638 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003639 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3640 "je 1f \n\t"
3641 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003642 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003643 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003644 /* Reload cr2 if changed */
3645 "mov %c[cr2](%0), %%"R"ax \n\t"
3646 "mov %%cr2, %%"R"dx \n\t"
3647 "cmp %%"R"ax, %%"R"dx \n\t"
3648 "je 2f \n\t"
3649 "mov %%"R"ax, %%cr2 \n\t"
3650 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003651 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003652 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003653 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003654 "mov %c[rax](%0), %%"R"ax \n\t"
3655 "mov %c[rbx](%0), %%"R"bx \n\t"
3656 "mov %c[rdx](%0), %%"R"dx \n\t"
3657 "mov %c[rsi](%0), %%"R"si \n\t"
3658 "mov %c[rdi](%0), %%"R"di \n\t"
3659 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003660#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003661 "mov %c[r8](%0), %%r8 \n\t"
3662 "mov %c[r9](%0), %%r9 \n\t"
3663 "mov %c[r10](%0), %%r10 \n\t"
3664 "mov %c[r11](%0), %%r11 \n\t"
3665 "mov %c[r12](%0), %%r12 \n\t"
3666 "mov %c[r13](%0), %%r13 \n\t"
3667 "mov %c[r14](%0), %%r14 \n\t"
3668 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003670 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3671
Avi Kivity6aa8b732006-12-10 02:21:36 -08003672 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003673 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003674 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003675 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003676 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003677 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003679 "xchg %0, (%%"R"sp) \n\t"
3680 "mov %%"R"ax, %c[rax](%0) \n\t"
3681 "mov %%"R"bx, %c[rbx](%0) \n\t"
3682 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3683 "mov %%"R"dx, %c[rdx](%0) \n\t"
3684 "mov %%"R"si, %c[rsi](%0) \n\t"
3685 "mov %%"R"di, %c[rdi](%0) \n\t"
3686 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003687#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003688 "mov %%r8, %c[r8](%0) \n\t"
3689 "mov %%r9, %c[r9](%0) \n\t"
3690 "mov %%r10, %c[r10](%0) \n\t"
3691 "mov %%r11, %c[r11](%0) \n\t"
3692 "mov %%r12, %c[r12](%0) \n\t"
3693 "mov %%r13, %c[r13](%0) \n\t"
3694 "mov %%r14, %c[r14](%0) \n\t"
3695 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003697 "mov %%cr2, %%"R"ax \n\t"
3698 "mov %%"R"ax, %c[cr2](%0) \n\t"
3699
3700 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003701 "setbe %c[fail](%0) \n\t"
3702 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3703 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3704 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003705 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003706 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3707 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3708 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3709 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3710 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3711 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3712 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003713#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003714 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3715 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3716 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3717 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3718 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3719 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3720 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3721 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003722#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003723 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003724 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003725 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003726#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003727 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3728#endif
3729 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003730
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003731 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3732 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003733 vcpu->arch.regs_dirty = 0;
3734
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003735 get_debugreg(vcpu->arch.dr6, 6);
3736
Avi Kivity1155f762007-11-22 11:30:47 +02003737 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003738 if (vmx->rmode.irq.pending)
3739 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003740
Mike Dayd77c26f2007-10-08 09:02:08 -04003741 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003742 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003743
Avi Kivitycf393f72008-07-01 16:20:21 +03003744 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003745}
3746
Avi Kivityc8019492008-07-14 14:44:59 +03003747#undef R
3748#undef Q
3749
Avi Kivity6aa8b732006-12-10 02:21:36 -08003750static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3751{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003752 struct vcpu_vmx *vmx = to_vmx(vcpu);
3753
3754 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003755 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003756 free_vmcs(vmx->vmcs);
3757 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003758 }
3759}
3760
3761static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3762{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003763 struct vcpu_vmx *vmx = to_vmx(vcpu);
3764
Sheng Yang2384d2b2008-01-17 15:14:33 +08003765 spin_lock(&vmx_vpid_lock);
3766 if (vmx->vpid != 0)
3767 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3768 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003769 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003770 kfree(vmx->host_msrs);
3771 kfree(vmx->guest_msrs);
3772 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003773 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003774}
3775
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003776static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003778 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003779 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003780 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003781
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003782 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003783 return ERR_PTR(-ENOMEM);
3784
Sheng Yang2384d2b2008-01-17 15:14:33 +08003785 allocate_vpid(vmx);
3786
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003787 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3788 if (err)
3789 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003790
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003791 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003792 if (!vmx->guest_msrs) {
3793 err = -ENOMEM;
3794 goto uninit_vcpu;
3795 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003796
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003797 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3798 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003799 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003800
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003801 vmx->vmcs = alloc_vmcs();
3802 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003803 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003804
3805 vmcs_clear(vmx->vmcs);
3806
Avi Kivity15ad7142007-07-11 18:17:21 +03003807 cpu = get_cpu();
3808 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003809 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003810 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003811 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003812 if (err)
3813 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003814 if (vm_need_virtualize_apic_accesses(kvm))
3815 if (alloc_apic_access_page(kvm) != 0)
3816 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003817
Sheng Yangb927a3c2009-07-21 10:42:48 +08003818 if (enable_ept) {
3819 if (!kvm->arch.ept_identity_map_addr)
3820 kvm->arch.ept_identity_map_addr =
3821 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003822 if (alloc_identity_pagetable(kvm) != 0)
3823 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003824 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003825
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003826 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003827
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003828free_vmcs:
3829 free_vmcs(vmx->vmcs);
3830free_msrs:
3831 kfree(vmx->host_msrs);
3832free_guest_msrs:
3833 kfree(vmx->guest_msrs);
3834uninit_vcpu:
3835 kvm_vcpu_uninit(&vmx->vcpu);
3836free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003837 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003838 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003839}
3840
Yang, Sheng002c7f72007-07-31 14:23:01 +03003841static void __init vmx_check_processor_compat(void *rtn)
3842{
3843 struct vmcs_config vmcs_conf;
3844
3845 *(int *)rtn = 0;
3846 if (setup_vmcs_config(&vmcs_conf) < 0)
3847 *(int *)rtn = -EIO;
3848 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3849 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3850 smp_processor_id());
3851 *(int *)rtn = -EIO;
3852 }
3853}
3854
Sheng Yang67253af2008-04-25 10:20:22 +08003855static int get_ept_level(void)
3856{
3857 return VMX_EPT_DEFAULT_GAW + 1;
3858}
3859
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003860static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003861{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003862 u64 ret;
3863
Sheng Yang522c68c2009-04-27 20:35:43 +08003864 /* For VT-d and EPT combination
3865 * 1. MMIO: always map as UC
3866 * 2. EPT with VT-d:
3867 * a. VT-d without snooping control feature: can't guarantee the
3868 * result, try to trust guest.
3869 * b. VT-d with snooping control feature: snooping control feature of
3870 * VT-d engine can guarantee the cache correctness. Just set it
3871 * to WB to keep consistent with host. So the same as item 3.
3872 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3873 * consistent with host MTRR
3874 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003875 if (is_mmio)
3876 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003877 else if (vcpu->kvm->arch.iommu_domain &&
3878 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3879 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3880 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003881 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003882 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3883 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003884
3885 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003886}
3887
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003888static const struct trace_print_flags vmx_exit_reasons_str[] = {
3889 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3890 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3891 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3892 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3893 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3894 { EXIT_REASON_CR_ACCESS, "cr_access" },
3895 { EXIT_REASON_DR_ACCESS, "dr_access" },
3896 { EXIT_REASON_CPUID, "cpuid" },
3897 { EXIT_REASON_MSR_READ, "rdmsr" },
3898 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3899 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3900 { EXIT_REASON_HLT, "halt" },
3901 { EXIT_REASON_INVLPG, "invlpg" },
3902 { EXIT_REASON_VMCALL, "hypercall" },
3903 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3904 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3905 { EXIT_REASON_WBINVD, "wbinvd" },
3906 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3907 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3908 { -1, NULL }
3909};
3910
Joerg Roedel344f4142009-07-27 16:30:48 +02003911static bool vmx_gb_page_enable(void)
3912{
3913 return false;
3914}
3915
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003916static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917 .cpu_has_kvm_support = cpu_has_kvm_support,
3918 .disabled_by_bios = vmx_disabled_by_bios,
3919 .hardware_setup = hardware_setup,
3920 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003921 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003922 .hardware_enable = hardware_enable,
3923 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003924 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003925
3926 .vcpu_create = vmx_create_vcpu,
3927 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003928 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003929
Avi Kivity04d2cc72007-09-10 18:10:54 +03003930 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003931 .vcpu_load = vmx_vcpu_load,
3932 .vcpu_put = vmx_vcpu_put,
3933
3934 .set_guest_debug = set_guest_debug,
3935 .get_msr = vmx_get_msr,
3936 .set_msr = vmx_set_msr,
3937 .get_segment_base = vmx_get_segment_base,
3938 .get_segment = vmx_get_segment,
3939 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003940 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003941 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003942 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944 .set_cr3 = vmx_set_cr3,
3945 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947 .get_idt = vmx_get_idt,
3948 .set_idt = vmx_set_idt,
3949 .get_gdt = vmx_get_gdt,
3950 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003951 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003952 .get_rflags = vmx_get_rflags,
3953 .set_rflags = vmx_set_rflags,
3954
3955 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003956
Avi Kivity6aa8b732006-12-10 02:21:36 -08003957 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003958 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003959 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003960 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3961 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003962 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003963 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003964 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003965 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003966 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003967 .nmi_allowed = vmx_nmi_allowed,
3968 .enable_nmi_window = enable_nmi_window,
3969 .enable_irq_window = enable_irq_window,
3970 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003971
Izik Eiduscbc94022007-10-25 00:29:55 +02003972 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003973 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003974 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003975
3976 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02003977 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003978};
3979
3980static int __init vmx_init(void)
3981{
He, Qingfdef3ad2007-04-30 09:45:24 +03003982 int r;
3983
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003984 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003985 if (!vmx_io_bitmap_a)
3986 return -ENOMEM;
3987
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003988 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003989 if (!vmx_io_bitmap_b) {
3990 r = -ENOMEM;
3991 goto out;
3992 }
3993
Avi Kivity58972972009-02-24 22:26:47 +02003994 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3995 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003996 r = -ENOMEM;
3997 goto out1;
3998 }
3999
Avi Kivity58972972009-02-24 22:26:47 +02004000 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4001 if (!vmx_msr_bitmap_longmode) {
4002 r = -ENOMEM;
4003 goto out2;
4004 }
4005
He, Qingfdef3ad2007-04-30 09:45:24 +03004006 /*
4007 * Allow direct access to the PC debug port (it is often used for I/O
4008 * delays, but the vmexits simply slow things down).
4009 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004010 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4011 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004012
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004013 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004014
Avi Kivity58972972009-02-24 22:26:47 +02004015 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4016 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004017
Sheng Yang2384d2b2008-01-17 15:14:33 +08004018 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4019
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004020 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004021 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004022 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004023
Avi Kivity58972972009-02-24 22:26:47 +02004024 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4025 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4026 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4027 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4028 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4029 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004030
Avi Kivity089d0342009-03-23 18:26:32 +02004031 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004032 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004033 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004034 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004035 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004036 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004037 kvm_enable_tdp();
4038 } else
4039 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004040
Avi Kivityc7addb92007-09-16 18:58:32 +02004041 if (bypass_guest_pf)
4042 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4043
Sheng Yang14394422008-04-28 12:24:45 +08004044 ept_sync_global();
4045
He, Qingfdef3ad2007-04-30 09:45:24 +03004046 return 0;
4047
Avi Kivity58972972009-02-24 22:26:47 +02004048out3:
4049 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004050out2:
Avi Kivity58972972009-02-24 22:26:47 +02004051 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004052out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004053 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004054out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004055 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004056 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004057}
4058
4059static void __exit vmx_exit(void)
4060{
Avi Kivity58972972009-02-24 22:26:47 +02004061 free_page((unsigned long)vmx_msr_bitmap_legacy);
4062 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004063 free_page((unsigned long)vmx_io_bitmap_b);
4064 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004065
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004066 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067}
4068
4069module_init(vmx_init)
4070module_exit(vmx_exit)