blob: 32d6ae8fb60e339eba6b85968676776d44293c8b [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 Tosatti5fdbf972008-06-27 14:58:02 -030028#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030029#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040030
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080032#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020033#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020034#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080035#include <asm/mce.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080036
Avi Kivity4ecac3f2008-05-13 13:23:38 +030037#define __ex(x) __kvm_handle_fault_on_reboot(x)
38
Avi Kivity6aa8b732006-12-10 02:21:36 -080039MODULE_AUTHOR("Qumranet");
40MODULE_LICENSE("GPL");
41
Avi Kivity4462d212009-03-23 17:53:37 +020042static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020043module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020044
Avi Kivity4462d212009-03-23 17:53:37 +020045static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020046module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080047
Avi Kivity4462d212009-03-23 17:53:37 +020048static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020049module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020050
Avi Kivity4462d212009-03-23 17:53:37 +020051static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020052module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080053
Avi Kivity4462d212009-03-23 17:53:37 +020054static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020055module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030056
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040057struct vmcs {
58 u32 revision_id;
59 u32 abort;
60 char data[0];
61};
62
63struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100064 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030065 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030066 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040067 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030068 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020069 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040070 struct kvm_msr_entry *guest_msrs;
71 struct kvm_msr_entry *host_msrs;
72 int nmsrs;
73 int save_nmsrs;
74 int msr_offset_efer;
75#ifdef CONFIG_X86_64
76 int msr_offset_kernel_gs_base;
77#endif
78 struct vmcs *vmcs;
79 struct {
80 int loaded;
81 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020082 int gs_ldt_reload_needed;
83 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030084 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040085 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020086 struct {
87 struct {
88 bool pending;
89 u8 vector;
90 unsigned rip;
91 } irq;
92 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080093 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030094 bool emulation_required;
Avi Kivity8b3079a2009-01-05 12:10:54 +020095 enum emulation_result invalid_state_emulation_result;
Jan Kiszka3b86cd92008-09-26 09:30:57 +020096
97 /* Support for vnmi-less CPUs */
98 int soft_vnmi_blocked;
99 ktime_t entry_time;
100 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800101 u32 exit_reason;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400102};
103
104static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
105{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000106 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400107}
108
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800109static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800110static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300111
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112static DEFINE_PER_CPU(struct vmcs *, vmxarea);
113static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300114static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800115
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200116static unsigned long *vmx_io_bitmap_a;
117static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200118static unsigned long *vmx_msr_bitmap_legacy;
119static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300120
Sheng Yang2384d2b2008-01-17 15:14:33 +0800121static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
122static DEFINE_SPINLOCK(vmx_vpid_lock);
123
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300124static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800125 int size;
126 int order;
127 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300128 u32 pin_based_exec_ctrl;
129 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800130 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300131 u32 vmexit_ctrl;
132 u32 vmentry_ctrl;
133} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800134
Hannes Ederefff9e52008-11-28 17:02:06 +0100135static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800136 u32 ept;
137 u32 vpid;
138} vmx_capability;
139
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140#define VMX_SEGMENT_FIELD(seg) \
141 [VCPU_SREG_##seg] = { \
142 .selector = GUEST_##seg##_SELECTOR, \
143 .base = GUEST_##seg##_BASE, \
144 .limit = GUEST_##seg##_LIMIT, \
145 .ar_bytes = GUEST_##seg##_AR_BYTES, \
146 }
147
148static struct kvm_vmx_segment_field {
149 unsigned selector;
150 unsigned base;
151 unsigned limit;
152 unsigned ar_bytes;
153} kvm_vmx_segment_fields[] = {
154 VMX_SEGMENT_FIELD(CS),
155 VMX_SEGMENT_FIELD(DS),
156 VMX_SEGMENT_FIELD(ES),
157 VMX_SEGMENT_FIELD(FS),
158 VMX_SEGMENT_FIELD(GS),
159 VMX_SEGMENT_FIELD(SS),
160 VMX_SEGMENT_FIELD(TR),
161 VMX_SEGMENT_FIELD(LDTR),
162};
163
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300164/*
165 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
166 * away by decrementing the array size.
167 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800168static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800169#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800170 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
171#endif
172 MSR_EFER, MSR_K6_STAR,
173};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200174#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800175
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400176static void load_msrs(struct kvm_msr_entry *e, int n)
177{
178 int i;
179
180 for (i = 0; i < n; ++i)
181 wrmsrl(e[i].index, e[i].data);
182}
183
184static void save_msrs(struct kvm_msr_entry *e, int n)
185{
186 int i;
187
188 for (i = 0; i < n; ++i)
189 rdmsrl(e[i].index, e[i].data);
190}
191
Avi Kivity6aa8b732006-12-10 02:21:36 -0800192static inline int is_page_fault(u32 intr_info)
193{
194 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
195 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100196 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197}
198
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300199static inline int is_no_device(u32 intr_info)
200{
201 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
202 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100203 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300204}
205
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500206static inline int is_invalid_opcode(u32 intr_info)
207{
208 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
209 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100210 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500211}
212
Avi Kivity6aa8b732006-12-10 02:21:36 -0800213static inline int is_external_interrupt(u32 intr_info)
214{
215 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
216 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
217}
218
Andi Kleena0861c02009-06-08 17:37:09 +0800219static inline int is_machine_check(u32 intr_info)
220{
221 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
222 INTR_INFO_VALID_MASK)) ==
223 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
224}
225
Sheng Yang25c5f222008-03-28 13:18:56 +0800226static inline int cpu_has_vmx_msr_bitmap(void)
227{
Sheng Yang04547152009-04-01 15:52:31 +0800228 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800229}
230
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800231static inline int cpu_has_vmx_tpr_shadow(void)
232{
Sheng Yang04547152009-04-01 15:52:31 +0800233 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800234}
235
236static inline int vm_need_tpr_shadow(struct kvm *kvm)
237{
Sheng Yang04547152009-04-01 15:52:31 +0800238 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800239}
240
Sheng Yangf78e0e22007-10-29 09:40:42 +0800241static inline int cpu_has_secondary_exec_ctrls(void)
242{
Sheng Yang04547152009-04-01 15:52:31 +0800243 return vmcs_config.cpu_based_exec_ctrl &
244 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800245}
246
Avi Kivity774ead32007-12-26 13:57:04 +0200247static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800248{
Sheng Yang04547152009-04-01 15:52:31 +0800249 return vmcs_config.cpu_based_2nd_exec_ctrl &
250 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
251}
252
253static inline bool cpu_has_vmx_flexpriority(void)
254{
255 return cpu_has_vmx_tpr_shadow() &&
256 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800257}
258
Sheng Yangd56f5462008-04-25 10:13:16 +0800259static inline int cpu_has_vmx_invept_individual_addr(void)
260{
Sheng Yang04547152009-04-01 15:52:31 +0800261 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800262}
263
264static inline int cpu_has_vmx_invept_context(void)
265{
Sheng Yang04547152009-04-01 15:52:31 +0800266 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800267}
268
269static inline int cpu_has_vmx_invept_global(void)
270{
Sheng Yang04547152009-04-01 15:52:31 +0800271 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800272}
273
274static inline int cpu_has_vmx_ept(void)
275{
Sheng Yang04547152009-04-01 15:52:31 +0800276 return vmcs_config.cpu_based_2nd_exec_ctrl &
277 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800278}
279
Sheng Yangf78e0e22007-10-29 09:40:42 +0800280static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
281{
Sheng Yang04547152009-04-01 15:52:31 +0800282 return flexpriority_enabled &&
283 (cpu_has_vmx_virtualize_apic_accesses()) &&
284 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800285}
286
Sheng Yang2384d2b2008-01-17 15:14:33 +0800287static inline int cpu_has_vmx_vpid(void)
288{
Sheng Yang04547152009-04-01 15:52:31 +0800289 return vmcs_config.cpu_based_2nd_exec_ctrl &
290 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800291}
292
Sheng Yangf08864b2008-05-15 18:23:25 +0800293static inline int cpu_has_virtual_nmis(void)
294{
295 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
296}
297
Sheng Yang04547152009-04-01 15:52:31 +0800298static inline bool report_flexpriority(void)
299{
300 return flexpriority_enabled;
301}
302
Rusty Russell8b9cf982007-07-30 16:31:43 +1000303static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800304{
305 int i;
306
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400307 for (i = 0; i < vmx->nmsrs; ++i)
308 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300309 return i;
310 return -1;
311}
312
Sheng Yang2384d2b2008-01-17 15:14:33 +0800313static inline void __invvpid(int ext, u16 vpid, gva_t gva)
314{
315 struct {
316 u64 vpid : 16;
317 u64 rsvd : 48;
318 u64 gva;
319 } operand = { vpid, 0, gva };
320
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300321 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800322 /* CF==1 or ZF==1 --> rc = -1 */
323 "; ja 1f ; ud2 ; 1:"
324 : : "a"(&operand), "c"(ext) : "cc", "memory");
325}
326
Sheng Yang14394422008-04-28 12:24:45 +0800327static inline void __invept(int ext, u64 eptp, gpa_t gpa)
328{
329 struct {
330 u64 eptp, gpa;
331 } operand = {eptp, gpa};
332
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300333 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800334 /* CF==1 or ZF==1 --> rc = -1 */
335 "; ja 1f ; ud2 ; 1:\n"
336 : : "a" (&operand), "c" (ext) : "cc", "memory");
337}
338
Rusty Russell8b9cf982007-07-30 16:31:43 +1000339static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300340{
341 int i;
342
Rusty Russell8b9cf982007-07-30 16:31:43 +1000343 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300344 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400345 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000346 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800347}
348
Avi Kivity6aa8b732006-12-10 02:21:36 -0800349static void vmcs_clear(struct vmcs *vmcs)
350{
351 u64 phys_addr = __pa(vmcs);
352 u8 error;
353
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300354 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800355 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
356 : "cc", "memory");
357 if (error)
358 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
359 vmcs, phys_addr);
360}
361
362static void __vcpu_clear(void *arg)
363{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000364 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800365 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800366
Rusty Russell8b9cf982007-07-30 16:31:43 +1000367 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400368 vmcs_clear(vmx->vmcs);
369 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800370 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800371 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300372 list_del(&vmx->local_vcpus_link);
373 vmx->vcpu.cpu = -1;
374 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800375}
376
Rusty Russell8b9cf982007-07-30 16:31:43 +1000377static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800378{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200379 if (vmx->vcpu.cpu == -1)
380 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200381 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800382}
383
Sheng Yang2384d2b2008-01-17 15:14:33 +0800384static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
385{
386 if (vmx->vpid == 0)
387 return;
388
389 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
390}
391
Sheng Yang14394422008-04-28 12:24:45 +0800392static inline void ept_sync_global(void)
393{
394 if (cpu_has_vmx_invept_global())
395 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
396}
397
398static inline void ept_sync_context(u64 eptp)
399{
Avi Kivity089d0342009-03-23 18:26:32 +0200400 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800401 if (cpu_has_vmx_invept_context())
402 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
403 else
404 ept_sync_global();
405 }
406}
407
408static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
409{
Avi Kivity089d0342009-03-23 18:26:32 +0200410 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800411 if (cpu_has_vmx_invept_individual_addr())
412 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
413 eptp, gpa);
414 else
415 ept_sync_context(eptp);
416 }
417}
418
Avi Kivity6aa8b732006-12-10 02:21:36 -0800419static unsigned long vmcs_readl(unsigned long field)
420{
421 unsigned long value;
422
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300423 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800424 : "=a"(value) : "d"(field) : "cc");
425 return value;
426}
427
428static u16 vmcs_read16(unsigned long field)
429{
430 return vmcs_readl(field);
431}
432
433static u32 vmcs_read32(unsigned long field)
434{
435 return vmcs_readl(field);
436}
437
438static u64 vmcs_read64(unsigned long field)
439{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800440#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800441 return vmcs_readl(field);
442#else
443 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
444#endif
445}
446
Avi Kivitye52de1b2007-01-05 16:36:56 -0800447static noinline void vmwrite_error(unsigned long field, unsigned long value)
448{
449 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
450 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
451 dump_stack();
452}
453
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454static void vmcs_writel(unsigned long field, unsigned long value)
455{
456 u8 error;
457
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300458 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400459 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800460 if (unlikely(error))
461 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800462}
463
464static void vmcs_write16(unsigned long field, u16 value)
465{
466 vmcs_writel(field, value);
467}
468
469static void vmcs_write32(unsigned long field, u32 value)
470{
471 vmcs_writel(field, value);
472}
473
474static void vmcs_write64(unsigned long field, u64 value)
475{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300477#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800478 asm volatile ("");
479 vmcs_writel(field+1, value >> 32);
480#endif
481}
482
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300483static void vmcs_clear_bits(unsigned long field, u32 mask)
484{
485 vmcs_writel(field, vmcs_readl(field) & ~mask);
486}
487
488static void vmcs_set_bits(unsigned long field, u32 mask)
489{
490 vmcs_writel(field, vmcs_readl(field) | mask);
491}
492
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300493static void update_exception_bitmap(struct kvm_vcpu *vcpu)
494{
495 u32 eb;
496
Andi Kleena0861c02009-06-08 17:37:09 +0800497 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300498 if (!vcpu->fpu_active)
499 eb |= 1u << NM_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100500 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
501 if (vcpu->guest_debug &
502 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
503 eb |= 1u << DB_VECTOR;
504 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
505 eb |= 1u << BP_VECTOR;
506 }
Nitin A Kamble56b237e2009-06-04 15:04:08 -0700507 if (vcpu->arch.rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300508 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200509 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800510 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300511 vmcs_write32(EXCEPTION_BITMAP, eb);
512}
513
Avi Kivity33ed6322007-05-02 16:54:03 +0300514static void reload_tss(void)
515{
Avi Kivity33ed6322007-05-02 16:54:03 +0300516 /*
517 * VT restores TR but not its size. Useless.
518 */
519 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200520 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300521
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300522 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300523 descs = (void *)gdt.base;
524 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
525 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300526}
527
Rusty Russell8b9cf982007-07-30 16:31:43 +1000528static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300529{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400530 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300531 u64 host_efer = vmx->host_msrs[efer_offset].data;
532 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
533 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300534
Avi Kivity51c6cf62007-08-29 03:48:05 +0300535 if (efer_offset < 0)
536 return;
537 /*
538 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
539 * outside long mode
540 */
541 ignore_bits = EFER_NX | EFER_SCE;
542#ifdef CONFIG_X86_64
543 ignore_bits |= EFER_LMA | EFER_LME;
544 /* SCE is meaningful only in long mode on Intel */
545 if (guest_efer & EFER_LMA)
546 ignore_bits &= ~(u64)EFER_SCE;
547#endif
548 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
549 return;
550
551 vmx->host_state.guest_efer_loaded = 1;
552 guest_efer &= ~ignore_bits;
553 guest_efer |= host_efer & ignore_bits;
554 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000555 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300556}
557
Avi Kivity51c6cf62007-08-29 03:48:05 +0300558static void reload_host_efer(struct vcpu_vmx *vmx)
559{
560 if (vmx->host_state.guest_efer_loaded) {
561 vmx->host_state.guest_efer_loaded = 0;
562 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
563 }
564}
565
Avi Kivity04d2cc72007-09-10 18:10:54 +0300566static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300567{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300568 struct vcpu_vmx *vmx = to_vmx(vcpu);
569
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400570 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300571 return;
572
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300574 /*
575 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
576 * allow segment selectors with cpl > 0 or ti == 1.
577 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300578 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200579 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300580 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200581 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400582 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200583 vmx->host_state.fs_reload_needed = 0;
584 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300585 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200586 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300587 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300588 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400589 if (!(vmx->host_state.gs_sel & 7))
590 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300591 else {
592 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200593 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300594 }
595
596#ifdef CONFIG_X86_64
597 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
598 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
599#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400600 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
601 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300602#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300603
604#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400605 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400606 save_msrs(vmx->host_msrs +
607 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400608
Avi Kivity707c0872007-05-02 17:33:43 +0300609#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400610 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300611 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300612}
613
Avi Kivitya9b21b62008-06-24 11:48:49 +0300614static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300615{
Avi Kivity15ad7142007-07-11 18:17:21 +0300616 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300617
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400618 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300619 return;
620
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200621 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400622 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200623 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300624 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200625 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300626 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300627 /*
628 * If we have to reload gs, we must take care to
629 * preserve our gs base.
630 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300631 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300632 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300633#ifdef CONFIG_X86_64
634 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
635#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300636 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300637 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200638 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400639 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
640 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300641 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300642}
643
Avi Kivitya9b21b62008-06-24 11:48:49 +0300644static void vmx_load_host_state(struct vcpu_vmx *vmx)
645{
646 preempt_disable();
647 __vmx_load_host_state(vmx);
648 preempt_enable();
649}
650
Avi Kivity6aa8b732006-12-10 02:21:36 -0800651/*
652 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
653 * vcpu mutex is already taken.
654 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300655static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400657 struct vcpu_vmx *vmx = to_vmx(vcpu);
658 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200659 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800660
Eddie Donga3d7f852007-09-03 16:15:12 +0300661 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000662 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300663 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800664 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300665 local_irq_disable();
666 list_add(&vmx->local_vcpus_link,
667 &per_cpu(vcpus_on_cpu, cpu));
668 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300669 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400671 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800672 u8 error;
673
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400674 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300675 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
677 : "cc");
678 if (error)
679 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400680 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681 }
682
683 if (vcpu->cpu != cpu) {
684 struct descriptor_table dt;
685 unsigned long sysenter_esp;
686
687 vcpu->cpu = cpu;
688 /*
689 * Linux uses per-cpu TSS and GDT, so set these when switching
690 * processors.
691 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300692 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
693 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800694 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
695
696 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
697 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300698
699 /*
700 * Make sure the time stamp counter is monotonous.
701 */
702 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200703 if (tsc_this < vcpu->arch.host_tsc) {
704 delta = vcpu->arch.host_tsc - tsc_this;
705 new_offset = vmcs_read64(TSC_OFFSET) + delta;
706 vmcs_write64(TSC_OFFSET, new_offset);
707 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709}
710
711static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
712{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300713 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800714}
715
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300716static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
717{
718 if (vcpu->fpu_active)
719 return;
720 vcpu->fpu_active = 1;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000721 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800722 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92fa2007-07-17 23:19:08 +1000723 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300724 update_exception_bitmap(vcpu);
725}
726
727static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
728{
729 if (!vcpu->fpu_active)
730 return;
731 vcpu->fpu_active = 0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000732 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300733 update_exception_bitmap(vcpu);
734}
735
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
737{
738 return vmcs_readl(GUEST_RFLAGS);
739}
740
741static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
742{
Nitin A Kamble56b237e2009-06-04 15:04:08 -0700743 if (vcpu->arch.rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100744 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800745 vmcs_writel(GUEST_RFLAGS, rflags);
746}
747
Glauber Costa2809f5d2009-05-12 16:21:05 -0400748static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
749{
750 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
751 int ret = 0;
752
753 if (interruptibility & GUEST_INTR_STATE_STI)
754 ret |= X86_SHADOW_INT_STI;
755 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
756 ret |= X86_SHADOW_INT_MOV_SS;
757
758 return ret & mask;
759}
760
761static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
762{
763 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
764 u32 interruptibility = interruptibility_old;
765
766 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
767
768 if (mask & X86_SHADOW_INT_MOV_SS)
769 interruptibility |= GUEST_INTR_STATE_MOV_SS;
770 if (mask & X86_SHADOW_INT_STI)
771 interruptibility |= GUEST_INTR_STATE_STI;
772
773 if ((interruptibility != interruptibility_old))
774 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
775}
776
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
778{
779 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800780
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300781 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300783 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784
Glauber Costa2809f5d2009-05-12 16:21:05 -0400785 /* skipping an emulated instruction also counts */
786 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787}
788
Avi Kivity298101d2007-11-25 13:41:11 +0200789static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
790 bool has_error_code, u32 error_code)
791{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200792 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100793 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200794
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100795 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200796 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100797 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
798 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200799
Nitin A Kamble56b237e2009-06-04 15:04:08 -0700800 if (vcpu->arch.rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200801 vmx->rmode.irq.pending = true;
802 vmx->rmode.irq.vector = nr;
803 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100804 if (nr == BP_VECTOR || nr == OF_VECTOR)
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200805 vmx->rmode.irq.rip++;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100806 intr_info |= INTR_TYPE_SOFT_INTR;
807 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200808 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
809 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
810 return;
811 }
812
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300813 if (kvm_exception_is_soft(nr)) {
814 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
815 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100816 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
817 } else
818 intr_info |= INTR_TYPE_HARD_EXCEPTION;
819
820 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200821}
822
Avi Kivity6aa8b732006-12-10 02:21:36 -0800823/*
Eddie Donga75beee2007-05-17 18:55:15 +0300824 * Swap MSR entry in host/guest MSR entry array.
825 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200826#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000827static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300828{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400829 struct kvm_msr_entry tmp;
830
831 tmp = vmx->guest_msrs[to];
832 vmx->guest_msrs[to] = vmx->guest_msrs[from];
833 vmx->guest_msrs[from] = tmp;
834 tmp = vmx->host_msrs[to];
835 vmx->host_msrs[to] = vmx->host_msrs[from];
836 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300837}
Gabriel C54e11fa2007-08-01 16:23:10 +0200838#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300839
840/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300841 * Set up the vmcs to automatically save and restore system
842 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
843 * mode, as fiddling with msrs is very expensive.
844 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000845static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300846{
Eddie Dong2cc51562007-05-21 07:28:09 +0300847 int save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200848 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300849
Avi Kivity33f9c502008-02-27 16:06:57 +0200850 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300851 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300852#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000853 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300854 int index;
855
Rusty Russell8b9cf982007-07-30 16:31:43 +1000856 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300857 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000858 move_msr_up(vmx, index, save_nmsrs++);
859 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300860 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000861 move_msr_up(vmx, index, save_nmsrs++);
862 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300863 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000864 move_msr_up(vmx, index, save_nmsrs++);
865 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300866 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000867 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300868 /*
869 * MSR_K6_STAR is only needed on long mode guests, and only
870 * if efer.sce is enabled.
871 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000872 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800873 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000874 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300875 }
Eddie Donga75beee2007-05-17 18:55:15 +0300876#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400877 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300878
Eddie Donga75beee2007-05-17 18:55:15 +0300879#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400880 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000881 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300882#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000883 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivity58972972009-02-24 22:26:47 +0200884
885 if (cpu_has_vmx_msr_bitmap()) {
886 if (is_long_mode(&vmx->vcpu))
887 msr_bitmap = vmx_msr_bitmap_longmode;
888 else
889 msr_bitmap = vmx_msr_bitmap_legacy;
890
891 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
892 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300893}
894
895/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896 * reads and returns guest's timestamp counter "register"
897 * guest_tsc = host_tsc + tsc_offset -- 21.3
898 */
899static u64 guest_read_tsc(void)
900{
901 u64 host_tsc, tsc_offset;
902
903 rdtscll(host_tsc);
904 tsc_offset = vmcs_read64(TSC_OFFSET);
905 return host_tsc + tsc_offset;
906}
907
908/*
909 * writes 'guest_tsc' into guest's timestamp counter "register"
910 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
911 */
Marcelo Tosatti53f658b32008-12-11 20:45:05 +0100912static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
915}
916
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917/*
918 * Reads an msr value (of 'msr_index') into 'pdata'.
919 * Returns 0 on success, non-0 otherwise.
920 * Assumes vcpu_load() was already called.
921 */
922static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
923{
924 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400925 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926
927 if (!pdata) {
928 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
929 return -EINVAL;
930 }
931
932 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800933#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 case MSR_FS_BASE:
935 data = vmcs_readl(GUEST_FS_BASE);
936 break;
937 case MSR_GS_BASE:
938 data = vmcs_readl(GUEST_GS_BASE);
939 break;
940 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800941 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942#endif
943 case MSR_IA32_TIME_STAMP_COUNTER:
944 data = guest_read_tsc();
945 break;
946 case MSR_IA32_SYSENTER_CS:
947 data = vmcs_read32(GUEST_SYSENTER_CS);
948 break;
949 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200950 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800951 break;
952 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200953 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800954 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800955 default:
Avi Kivity516a1a72009-02-15 02:32:07 +0200956 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +1000957 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800958 if (msr) {
959 data = msr->data;
960 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800962 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963 }
964
965 *pdata = data;
966 return 0;
967}
968
969/*
970 * Writes msr value into into the appropriate "register".
971 * Returns 0 on success, non-0 otherwise.
972 * Assumes vcpu_load() was already called.
973 */
974static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
975{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400976 struct vcpu_vmx *vmx = to_vmx(vcpu);
977 struct kvm_msr_entry *msr;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +0100978 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +0300979 int ret = 0;
980
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -0800982 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300983 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300984 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300985 break;
Avi Kivity16175a72009-03-23 22:13:44 +0200986#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 case MSR_FS_BASE:
988 vmcs_writel(GUEST_FS_BASE, data);
989 break;
990 case MSR_GS_BASE:
991 vmcs_writel(GUEST_GS_BASE, data);
992 break;
993#endif
994 case MSR_IA32_SYSENTER_CS:
995 vmcs_write32(GUEST_SYSENTER_CS, data);
996 break;
997 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200998 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 break;
1000 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001001 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +02001003 case MSR_IA32_TIME_STAMP_COUNTER:
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001004 rdtscll(host_tsc);
1005 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +02001007 case MSR_P6_PERFCTR0:
1008 case MSR_P6_PERFCTR1:
1009 case MSR_P6_EVNTSEL0:
1010 case MSR_P6_EVNTSEL1:
1011 /*
1012 * Just discard all writes to the performance counters; this
1013 * should keep both older linux and windows 64-bit guests
1014 * happy
1015 */
1016 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
1017
1018 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001019 case MSR_IA32_CR_PAT:
1020 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1021 vmcs_write64(GUEST_IA32_PAT, data);
1022 vcpu->arch.pat = data;
1023 break;
1024 }
1025 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001027 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +10001028 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001029 if (msr) {
1030 msr->data = data;
1031 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001033 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 }
1035
Eddie Dong2cc51562007-05-21 07:28:09 +03001036 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037}
1038
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001039static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001041 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1042 switch (reg) {
1043 case VCPU_REGS_RSP:
1044 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1045 break;
1046 case VCPU_REGS_RIP:
1047 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1048 break;
1049 default:
1050 break;
1051 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052}
1053
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001054static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001056 int old_debug = vcpu->guest_debug;
1057 unsigned long flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001059 vcpu->guest_debug = dbg->control;
1060 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
1061 vcpu->guest_debug = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001063 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1064 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1065 else
1066 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1067
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001068 flags = vmcs_readl(GUEST_RFLAGS);
1069 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1070 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1071 else if (old_debug & KVM_GUESTDBG_SINGLESTEP)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001073 vmcs_writel(GUEST_RFLAGS, flags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001075 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076
1077 return 0;
1078}
1079
1080static __init int cpu_has_kvm_support(void)
1081{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001082 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083}
1084
1085static __init int vmx_disabled_by_bios(void)
1086{
1087 u64 msr;
1088
1089 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001090 return (msr & (FEATURE_CONTROL_LOCKED |
1091 FEATURE_CONTROL_VMXON_ENABLED))
1092 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001093 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094}
1095
Avi Kivity774c47f2007-02-12 00:54:47 -08001096static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097{
1098 int cpu = raw_smp_processor_id();
1099 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1100 u64 old;
1101
Avi Kivity543e4242008-05-13 16:22:47 +03001102 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001104 if ((old & (FEATURE_CONTROL_LOCKED |
1105 FEATURE_CONTROL_VMXON_ENABLED))
1106 != (FEATURE_CONTROL_LOCKED |
1107 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001108 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001109 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001110 FEATURE_CONTROL_LOCKED |
1111 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001112 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001113 asm volatile (ASM_VMX_VMXON_RAX
1114 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115 : "memory", "cc");
1116}
1117
Avi Kivity543e4242008-05-13 16:22:47 +03001118static void vmclear_local_vcpus(void)
1119{
1120 int cpu = raw_smp_processor_id();
1121 struct vcpu_vmx *vmx, *n;
1122
1123 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1124 local_vcpus_link)
1125 __vcpu_clear(vmx);
1126}
1127
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001128
1129/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1130 * tricks.
1131 */
1132static void kvm_cpu_vmxoff(void)
1133{
1134 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1135 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1136}
1137
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138static void hardware_disable(void *garbage)
1139{
Avi Kivity543e4242008-05-13 16:22:47 +03001140 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001141 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142}
1143
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001144static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001145 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001146{
1147 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001148 u32 ctl = ctl_min | ctl_opt;
1149
1150 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1151
1152 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1153 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1154
1155 /* Ensure minimum (required) set of control bits are supported. */
1156 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001157 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001158
1159 *result = ctl;
1160 return 0;
1161}
1162
Yang, Sheng002c7f72007-07-31 14:23:01 +03001163static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001164{
1165 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001166 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001167 u32 _pin_based_exec_control = 0;
1168 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001169 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001170 u32 _vmexit_control = 0;
1171 u32 _vmentry_control = 0;
1172
1173 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001174 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001175 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1176 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001177 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001178
1179 min = CPU_BASED_HLT_EXITING |
1180#ifdef CONFIG_X86_64
1181 CPU_BASED_CR8_LOAD_EXITING |
1182 CPU_BASED_CR8_STORE_EXITING |
1183#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001184 CPU_BASED_CR3_LOAD_EXITING |
1185 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001186 CPU_BASED_USE_IO_BITMAPS |
1187 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001188 CPU_BASED_USE_TSC_OFFSETING |
1189 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001190 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001191 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001192 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001193 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1194 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001195 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001196#ifdef CONFIG_X86_64
1197 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1198 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1199 ~CPU_BASED_CR8_STORE_EXITING;
1200#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001201 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001202 min2 = 0;
1203 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001204 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001205 SECONDARY_EXEC_ENABLE_VPID |
1206 SECONDARY_EXEC_ENABLE_EPT;
1207 if (adjust_vmx_controls(min2, opt2,
1208 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001209 &_cpu_based_2nd_exec_control) < 0)
1210 return -EIO;
1211 }
1212#ifndef CONFIG_X86_64
1213 if (!(_cpu_based_2nd_exec_control &
1214 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1215 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1216#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001217 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001218 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1219 enabled */
Sheng Yangd56f5462008-04-25 10:13:16 +08001220 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001221 CPU_BASED_CR3_STORE_EXITING |
1222 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001223 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1224 &_cpu_based_exec_control) < 0)
1225 return -EIO;
1226 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1227 vmx_capability.ept, vmx_capability.vpid);
1228 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001229
1230 min = 0;
1231#ifdef CONFIG_X86_64
1232 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1233#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001234 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001235 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1236 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001237 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001238
Sheng Yang468d4722008-10-09 16:01:55 +08001239 min = 0;
1240 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001241 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1242 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001243 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001244
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001245 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001246
1247 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1248 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001249 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001250
1251#ifdef CONFIG_X86_64
1252 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1253 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001254 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001255#endif
1256
1257 /* Require Write-Back (WB) memory type for VMCS accesses. */
1258 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001259 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001260
Yang, Sheng002c7f72007-07-31 14:23:01 +03001261 vmcs_conf->size = vmx_msr_high & 0x1fff;
1262 vmcs_conf->order = get_order(vmcs_config.size);
1263 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001264
Yang, Sheng002c7f72007-07-31 14:23:01 +03001265 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1266 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001267 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001268 vmcs_conf->vmexit_ctrl = _vmexit_control;
1269 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001270
1271 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001272}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001273
1274static struct vmcs *alloc_vmcs_cpu(int cpu)
1275{
1276 int node = cpu_to_node(cpu);
1277 struct page *pages;
1278 struct vmcs *vmcs;
1279
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001280 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281 if (!pages)
1282 return NULL;
1283 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001284 memset(vmcs, 0, vmcs_config.size);
1285 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001286 return vmcs;
1287}
1288
1289static struct vmcs *alloc_vmcs(void)
1290{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001291 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001292}
1293
1294static void free_vmcs(struct vmcs *vmcs)
1295{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001296 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297}
1298
Sam Ravnborg39959582007-06-01 00:47:13 -07001299static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300{
1301 int cpu;
1302
1303 for_each_online_cpu(cpu)
1304 free_vmcs(per_cpu(vmxarea, cpu));
1305}
1306
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307static __init int alloc_kvm_area(void)
1308{
1309 int cpu;
1310
1311 for_each_online_cpu(cpu) {
1312 struct vmcs *vmcs;
1313
1314 vmcs = alloc_vmcs_cpu(cpu);
1315 if (!vmcs) {
1316 free_kvm_area();
1317 return -ENOMEM;
1318 }
1319
1320 per_cpu(vmxarea, cpu) = vmcs;
1321 }
1322 return 0;
1323}
1324
1325static __init int hardware_setup(void)
1326{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001327 if (setup_vmcs_config(&vmcs_config) < 0)
1328 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001329
1330 if (boot_cpu_has(X86_FEATURE_NX))
1331 kvm_enable_efer_bits(EFER_NX);
1332
Sheng Yang93ba03c2009-04-01 15:52:32 +08001333 if (!cpu_has_vmx_vpid())
1334 enable_vpid = 0;
1335
1336 if (!cpu_has_vmx_ept())
1337 enable_ept = 0;
1338
1339 if (!cpu_has_vmx_flexpriority())
1340 flexpriority_enabled = 0;
1341
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001342 if (!cpu_has_vmx_tpr_shadow())
1343 kvm_x86_ops->update_cr8_intercept = NULL;
1344
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345 return alloc_kvm_area();
1346}
1347
1348static __exit void hardware_unsetup(void)
1349{
1350 free_kvm_area();
1351}
1352
Avi Kivity6aa8b732006-12-10 02:21:36 -08001353static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1354{
1355 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1356
Avi Kivity6af11b92007-03-19 13:18:10 +02001357 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358 vmcs_write16(sf->selector, save->selector);
1359 vmcs_writel(sf->base, save->base);
1360 vmcs_write32(sf->limit, save->limit);
1361 vmcs_write32(sf->ar_bytes, save->ar);
1362 } else {
1363 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1364 << AR_DPL_SHIFT;
1365 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1366 }
1367}
1368
1369static void enter_pmode(struct kvm_vcpu *vcpu)
1370{
1371 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001372 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001374 vmx->emulation_required = 1;
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001375 vcpu->arch.rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001377 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1378 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1379 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380
1381 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001382 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001383 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384 vmcs_writel(GUEST_RFLAGS, flags);
1385
Rusty Russell66aee912007-07-17 23:34:16 +10001386 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1387 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388
1389 update_exception_bitmap(vcpu);
1390
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001391 if (emulate_invalid_guest_state)
1392 return;
1393
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001394 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1395 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1396 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1397 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398
1399 vmcs_write16(GUEST_SS_SELECTOR, 0);
1400 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1401
1402 vmcs_write16(GUEST_CS_SELECTOR,
1403 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1404 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1405}
1406
Mike Dayd77c26f2007-10-08 09:02:08 -04001407static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001409 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001410 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1411 kvm->memslots[0].npages - 3;
1412 return base_gfn << PAGE_SHIFT;
1413 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001414 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415}
1416
1417static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1418{
1419 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1420
1421 save->selector = vmcs_read16(sf->selector);
1422 save->base = vmcs_readl(sf->base);
1423 save->limit = vmcs_read32(sf->limit);
1424 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001425 vmcs_write16(sf->selector, save->base >> 4);
1426 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427 vmcs_write32(sf->limit, 0xffff);
1428 vmcs_write32(sf->ar_bytes, 0xf3);
1429}
1430
1431static void enter_rmode(struct kvm_vcpu *vcpu)
1432{
1433 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001434 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001435
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001436 vmx->emulation_required = 1;
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001437 vcpu->arch.rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001439 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001440 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1441
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001442 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001443 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1444
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001445 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1447
1448 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001449 vcpu->arch.rmode.save_iopl
1450 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001451
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001452 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001453
1454 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001455 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456 update_exception_bitmap(vcpu);
1457
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001458 if (emulate_invalid_guest_state)
1459 goto continue_rmode;
1460
Avi Kivity6aa8b732006-12-10 02:21:36 -08001461 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1462 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1463 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1464
1465 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001466 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001467 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1468 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1470
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001471 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1472 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1473 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1474 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001475
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001476continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001477 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001478 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479}
1480
Amit Shah401d10d2009-02-20 22:53:37 +05301481static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1482{
1483 struct vcpu_vmx *vmx = to_vmx(vcpu);
1484 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1485
1486 vcpu->arch.shadow_efer = efer;
1487 if (!msr)
1488 return;
1489 if (efer & EFER_LMA) {
1490 vmcs_write32(VM_ENTRY_CONTROLS,
1491 vmcs_read32(VM_ENTRY_CONTROLS) |
1492 VM_ENTRY_IA32E_MODE);
1493 msr->data = efer;
1494 } else {
1495 vmcs_write32(VM_ENTRY_CONTROLS,
1496 vmcs_read32(VM_ENTRY_CONTROLS) &
1497 ~VM_ENTRY_IA32E_MODE);
1498
1499 msr->data = efer & ~EFER_LME;
1500 }
1501 setup_msrs(vmx);
1502}
1503
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001504#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505
1506static void enter_lmode(struct kvm_vcpu *vcpu)
1507{
1508 u32 guest_tr_ar;
1509
1510 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1511 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1512 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001513 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514 vmcs_write32(GUEST_TR_AR_BYTES,
1515 (guest_tr_ar & ~AR_TYPE_MASK)
1516 | AR_TYPE_BUSY_64_TSS);
1517 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001518 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301519 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520}
1521
1522static void exit_lmode(struct kvm_vcpu *vcpu)
1523{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001524 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001525
1526 vmcs_write32(VM_ENTRY_CONTROLS,
1527 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001528 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001529}
1530
1531#endif
1532
Sheng Yang2384d2b2008-01-17 15:14:33 +08001533static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1534{
1535 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001536 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001537 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001538}
1539
Anthony Liguori25c4c272007-04-27 09:29:21 +03001540static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001541{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001542 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1543 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001544}
1545
Sheng Yang14394422008-04-28 12:24:45 +08001546static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1547{
1548 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1549 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1550 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1551 return;
1552 }
1553 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1554 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1555 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1556 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1557 }
1558}
1559
1560static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1561
1562static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1563 unsigned long cr0,
1564 struct kvm_vcpu *vcpu)
1565{
1566 if (!(cr0 & X86_CR0_PG)) {
1567 /* From paging/starting to nonpaging */
1568 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001569 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001570 (CPU_BASED_CR3_LOAD_EXITING |
1571 CPU_BASED_CR3_STORE_EXITING));
1572 vcpu->arch.cr0 = cr0;
1573 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1574 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1575 *hw_cr0 &= ~X86_CR0_WP;
1576 } else if (!is_paging(vcpu)) {
1577 /* From nonpaging to paging */
1578 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001579 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001580 ~(CPU_BASED_CR3_LOAD_EXITING |
1581 CPU_BASED_CR3_STORE_EXITING));
1582 vcpu->arch.cr0 = cr0;
1583 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1584 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1585 *hw_cr0 &= ~X86_CR0_WP;
1586 }
1587}
1588
1589static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1590 struct kvm_vcpu *vcpu)
1591{
1592 if (!is_paging(vcpu)) {
1593 *hw_cr4 &= ~X86_CR4_PAE;
1594 *hw_cr4 |= X86_CR4_PSE;
1595 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1596 *hw_cr4 &= ~X86_CR4_PAE;
1597}
1598
Avi Kivity6aa8b732006-12-10 02:21:36 -08001599static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1600{
Sheng Yang14394422008-04-28 12:24:45 +08001601 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1602 KVM_VM_CR0_ALWAYS_ON;
1603
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001604 vmx_fpu_deactivate(vcpu);
1605
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001606 if (vcpu->arch.rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001607 enter_pmode(vcpu);
1608
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001609 if (!vcpu->arch.rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001610 enter_rmode(vcpu);
1611
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001612#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001613 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001614 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001616 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001617 exit_lmode(vcpu);
1618 }
1619#endif
1620
Avi Kivity089d0342009-03-23 18:26:32 +02001621 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001622 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1623
Avi Kivity6aa8b732006-12-10 02:21:36 -08001624 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001625 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001626 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001627
Rusty Russell707d92fa2007-07-17 23:19:08 +10001628 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001629 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001630}
1631
Sheng Yang14394422008-04-28 12:24:45 +08001632static u64 construct_eptp(unsigned long root_hpa)
1633{
1634 u64 eptp;
1635
1636 /* TODO write the value reading from MSR */
1637 eptp = VMX_EPT_DEFAULT_MT |
1638 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1639 eptp |= (root_hpa & PAGE_MASK);
1640
1641 return eptp;
1642}
1643
Avi Kivity6aa8b732006-12-10 02:21:36 -08001644static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1645{
Sheng Yang14394422008-04-28 12:24:45 +08001646 unsigned long guest_cr3;
1647 u64 eptp;
1648
1649 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001650 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001651 eptp = construct_eptp(cr3);
1652 vmcs_write64(EPT_POINTER, eptp);
1653 ept_sync_context(eptp);
1654 ept_load_pdptrs(vcpu);
1655 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1656 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1657 }
1658
Sheng Yang2384d2b2008-01-17 15:14:33 +08001659 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001660 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001661 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001662 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663}
1664
1665static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1666{
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001667 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001668 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1669
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001670 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001671 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001672 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1673
1674 vmcs_writel(CR4_READ_SHADOW, cr4);
1675 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676}
1677
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1679{
1680 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1681
1682 return vmcs_readl(sf->base);
1683}
1684
1685static void vmx_get_segment(struct kvm_vcpu *vcpu,
1686 struct kvm_segment *var, int seg)
1687{
1688 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1689 u32 ar;
1690
1691 var->base = vmcs_readl(sf->base);
1692 var->limit = vmcs_read32(sf->limit);
1693 var->selector = vmcs_read16(sf->selector);
1694 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001695 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696 ar = 0;
1697 var->type = ar & 15;
1698 var->s = (ar >> 4) & 1;
1699 var->dpl = (ar >> 5) & 3;
1700 var->present = (ar >> 7) & 1;
1701 var->avl = (ar >> 12) & 1;
1702 var->l = (ar >> 13) & 1;
1703 var->db = (ar >> 14) & 1;
1704 var->g = (ar >> 15) & 1;
1705 var->unusable = (ar >> 16) & 1;
1706}
1707
Izik Eidus2e4d2652008-03-24 19:38:34 +02001708static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1709{
1710 struct kvm_segment kvm_seg;
1711
1712 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1713 return 0;
1714
1715 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1716 return 3;
1717
1718 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1719 return kvm_seg.selector & 3;
1720}
1721
Avi Kivity653e3102007-05-07 10:55:37 +03001722static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001723{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001724 u32 ar;
1725
Avi Kivity653e3102007-05-07 10:55:37 +03001726 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001727 ar = 1 << 16;
1728 else {
1729 ar = var->type & 15;
1730 ar |= (var->s & 1) << 4;
1731 ar |= (var->dpl & 3) << 5;
1732 ar |= (var->present & 1) << 7;
1733 ar |= (var->avl & 1) << 12;
1734 ar |= (var->l & 1) << 13;
1735 ar |= (var->db & 1) << 14;
1736 ar |= (var->g & 1) << 15;
1737 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001738 if (ar == 0) /* a 0 value means unusable */
1739 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001740
1741 return ar;
1742}
1743
1744static void vmx_set_segment(struct kvm_vcpu *vcpu,
1745 struct kvm_segment *var, int seg)
1746{
1747 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1748 u32 ar;
1749
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001750 if (vcpu->arch.rmode.vm86_active && seg == VCPU_SREG_TR) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001751 vcpu->arch.rmode.tr.selector = var->selector;
1752 vcpu->arch.rmode.tr.base = var->base;
1753 vcpu->arch.rmode.tr.limit = var->limit;
1754 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001755 return;
1756 }
1757 vmcs_writel(sf->base, var->base);
1758 vmcs_write32(sf->limit, var->limit);
1759 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble56b237e2009-06-04 15:04:08 -07001760 if (vcpu->arch.rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001761 /*
1762 * Hack real-mode segments into vm86 compatibility.
1763 */
1764 if (var->base == 0xffff0000 && var->selector == 0xf000)
1765 vmcs_writel(sf->base, 0xf0000);
1766 ar = 0xf3;
1767 } else
1768 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001769 vmcs_write32(sf->ar_bytes, ar);
1770}
1771
Avi Kivity6aa8b732006-12-10 02:21:36 -08001772static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1773{
1774 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1775
1776 *db = (ar >> 14) & 1;
1777 *l = (ar >> 13) & 1;
1778}
1779
1780static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1781{
1782 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1783 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1784}
1785
1786static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1787{
1788 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1789 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1790}
1791
1792static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1793{
1794 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1795 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1796}
1797
1798static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1799{
1800 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1801 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1802}
1803
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001804static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1805{
1806 struct kvm_segment var;
1807 u32 ar;
1808
1809 vmx_get_segment(vcpu, &var, seg);
1810 ar = vmx_segment_access_rights(&var);
1811
1812 if (var.base != (var.selector << 4))
1813 return false;
1814 if (var.limit != 0xffff)
1815 return false;
1816 if (ar != 0xf3)
1817 return false;
1818
1819 return true;
1820}
1821
1822static bool code_segment_valid(struct kvm_vcpu *vcpu)
1823{
1824 struct kvm_segment cs;
1825 unsigned int cs_rpl;
1826
1827 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1828 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1829
Avi Kivity1872a3f2009-01-04 23:26:52 +02001830 if (cs.unusable)
1831 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001832 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1833 return false;
1834 if (!cs.s)
1835 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001836 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001837 if (cs.dpl > cs_rpl)
1838 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001839 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001840 if (cs.dpl != cs_rpl)
1841 return false;
1842 }
1843 if (!cs.present)
1844 return false;
1845
1846 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1847 return true;
1848}
1849
1850static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1851{
1852 struct kvm_segment ss;
1853 unsigned int ss_rpl;
1854
1855 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1856 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1857
Avi Kivity1872a3f2009-01-04 23:26:52 +02001858 if (ss.unusable)
1859 return true;
1860 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001861 return false;
1862 if (!ss.s)
1863 return false;
1864 if (ss.dpl != ss_rpl) /* DPL != RPL */
1865 return false;
1866 if (!ss.present)
1867 return false;
1868
1869 return true;
1870}
1871
1872static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1873{
1874 struct kvm_segment var;
1875 unsigned int rpl;
1876
1877 vmx_get_segment(vcpu, &var, seg);
1878 rpl = var.selector & SELECTOR_RPL_MASK;
1879
Avi Kivity1872a3f2009-01-04 23:26:52 +02001880 if (var.unusable)
1881 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001882 if (!var.s)
1883 return false;
1884 if (!var.present)
1885 return false;
1886 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1887 if (var.dpl < rpl) /* DPL < RPL */
1888 return false;
1889 }
1890
1891 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1892 * rights flags
1893 */
1894 return true;
1895}
1896
1897static bool tr_valid(struct kvm_vcpu *vcpu)
1898{
1899 struct kvm_segment tr;
1900
1901 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1902
Avi Kivity1872a3f2009-01-04 23:26:52 +02001903 if (tr.unusable)
1904 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001905 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1906 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001907 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001908 return false;
1909 if (!tr.present)
1910 return false;
1911
1912 return true;
1913}
1914
1915static bool ldtr_valid(struct kvm_vcpu *vcpu)
1916{
1917 struct kvm_segment ldtr;
1918
1919 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
1920
Avi Kivity1872a3f2009-01-04 23:26:52 +02001921 if (ldtr.unusable)
1922 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001923 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1924 return false;
1925 if (ldtr.type != 2)
1926 return false;
1927 if (!ldtr.present)
1928 return false;
1929
1930 return true;
1931}
1932
1933static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
1934{
1935 struct kvm_segment cs, ss;
1936
1937 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1938 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1939
1940 return ((cs.selector & SELECTOR_RPL_MASK) ==
1941 (ss.selector & SELECTOR_RPL_MASK));
1942}
1943
1944/*
1945 * Check if guest state is valid. Returns true if valid, false if
1946 * not.
1947 * We assume that registers are always usable
1948 */
1949static bool guest_state_valid(struct kvm_vcpu *vcpu)
1950{
1951 /* real mode guest state checks */
1952 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
1953 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
1954 return false;
1955 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
1956 return false;
1957 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
1958 return false;
1959 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
1960 return false;
1961 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
1962 return false;
1963 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
1964 return false;
1965 } else {
1966 /* protected mode guest state checks */
1967 if (!cs_ss_rpl_check(vcpu))
1968 return false;
1969 if (!code_segment_valid(vcpu))
1970 return false;
1971 if (!stack_segment_valid(vcpu))
1972 return false;
1973 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
1974 return false;
1975 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
1976 return false;
1977 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
1978 return false;
1979 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
1980 return false;
1981 if (!tr_valid(vcpu))
1982 return false;
1983 if (!ldtr_valid(vcpu))
1984 return false;
1985 }
1986 /* TODO:
1987 * - Add checks on RIP
1988 * - Add checks on RFLAGS
1989 */
1990
1991 return true;
1992}
1993
Mike Dayd77c26f2007-10-08 09:02:08 -04001994static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001995{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001996 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001997 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001998 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001999 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002000
Izik Eidus195aefd2007-10-01 22:14:18 +02002001 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2002 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002003 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002004 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002005 r = kvm_write_guest_page(kvm, fn++, &data,
2006 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002007 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002008 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002009 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2010 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002011 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002012 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2013 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002014 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002015 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002016 r = kvm_write_guest_page(kvm, fn, &data,
2017 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2018 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002019 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002020 goto out;
2021
2022 ret = 1;
2023out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002024 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002025}
2026
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002027static int init_rmode_identity_map(struct kvm *kvm)
2028{
2029 int i, r, ret;
2030 pfn_t identity_map_pfn;
2031 u32 tmp;
2032
Avi Kivity089d0342009-03-23 18:26:32 +02002033 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002034 return 1;
2035 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2036 printk(KERN_ERR "EPT: identity-mapping pagetable "
2037 "haven't been allocated!\n");
2038 return 0;
2039 }
2040 if (likely(kvm->arch.ept_identity_pagetable_done))
2041 return 1;
2042 ret = 0;
2043 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
2044 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2045 if (r < 0)
2046 goto out;
2047 /* Set up identity-mapping pagetable for EPT in real mode */
2048 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2049 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2050 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2051 r = kvm_write_guest_page(kvm, identity_map_pfn,
2052 &tmp, i * sizeof(tmp), sizeof(tmp));
2053 if (r < 0)
2054 goto out;
2055 }
2056 kvm->arch.ept_identity_pagetable_done = true;
2057 ret = 1;
2058out:
2059 return ret;
2060}
2061
Avi Kivity6aa8b732006-12-10 02:21:36 -08002062static void seg_setup(int seg)
2063{
2064 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2065
2066 vmcs_write16(sf->selector, 0);
2067 vmcs_writel(sf->base, 0);
2068 vmcs_write32(sf->limit, 0xffff);
Avi Kivitya16b20d2008-08-20 15:48:27 +03002069 vmcs_write32(sf->ar_bytes, 0xf3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002070}
2071
Sheng Yangf78e0e22007-10-29 09:40:42 +08002072static int alloc_apic_access_page(struct kvm *kvm)
2073{
2074 struct kvm_userspace_memory_region kvm_userspace_mem;
2075 int r = 0;
2076
Izik Eidus72dc67a2008-02-10 18:04:15 +02002077 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002078 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002079 goto out;
2080 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2081 kvm_userspace_mem.flags = 0;
2082 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2083 kvm_userspace_mem.memory_size = PAGE_SIZE;
2084 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2085 if (r)
2086 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002087
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002088 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002089out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002090 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002091 return r;
2092}
2093
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002094static int alloc_identity_pagetable(struct kvm *kvm)
2095{
2096 struct kvm_userspace_memory_region kvm_userspace_mem;
2097 int r = 0;
2098
2099 down_write(&kvm->slots_lock);
2100 if (kvm->arch.ept_identity_pagetable)
2101 goto out;
2102 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2103 kvm_userspace_mem.flags = 0;
2104 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
2105 kvm_userspace_mem.memory_size = PAGE_SIZE;
2106 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2107 if (r)
2108 goto out;
2109
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002110 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
2111 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002112out:
2113 up_write(&kvm->slots_lock);
2114 return r;
2115}
2116
Sheng Yang2384d2b2008-01-17 15:14:33 +08002117static void allocate_vpid(struct vcpu_vmx *vmx)
2118{
2119 int vpid;
2120
2121 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002122 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002123 return;
2124 spin_lock(&vmx_vpid_lock);
2125 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2126 if (vpid < VMX_NR_VPIDS) {
2127 vmx->vpid = vpid;
2128 __set_bit(vpid, vmx_vpid_bitmap);
2129 }
2130 spin_unlock(&vmx_vpid_lock);
2131}
2132
Avi Kivity58972972009-02-24 22:26:47 +02002133static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002134{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002135 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002136
2137 if (!cpu_has_vmx_msr_bitmap())
2138 return;
2139
2140 /*
2141 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2142 * have the write-low and read-high bitmap offsets the wrong way round.
2143 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2144 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002145 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002146 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2147 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002148 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2149 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002150 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2151 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002152 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002153}
2154
Avi Kivity58972972009-02-24 22:26:47 +02002155static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2156{
2157 if (!longmode_only)
2158 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2159 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2160}
2161
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162/*
2163 * Sets up the vmcs for emulated real mode.
2164 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002165static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166{
Sheng Yang468d4722008-10-09 16:01:55 +08002167 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168 u32 junk;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002169 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002170 unsigned long a;
2171 struct descriptor_table dt;
2172 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002173 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002174 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002177 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2178 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002179
Sheng Yang25c5f222008-03-28 13:18:56 +08002180 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002181 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002182
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2184
Avi Kivity6aa8b732006-12-10 02:21:36 -08002185 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002186 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2187 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002188
2189 exec_control = vmcs_config.cpu_based_exec_ctrl;
2190 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2191 exec_control &= ~CPU_BASED_TPR_SHADOW;
2192#ifdef CONFIG_X86_64
2193 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2194 CPU_BASED_CR8_LOAD_EXITING;
2195#endif
2196 }
Avi Kivity089d0342009-03-23 18:26:32 +02002197 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002198 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002199 CPU_BASED_CR3_LOAD_EXITING |
2200 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002201 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202
Sheng Yang83ff3b92007-11-21 14:33:25 +08002203 if (cpu_has_secondary_exec_ctrls()) {
2204 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2205 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2206 exec_control &=
2207 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002208 if (vmx->vpid == 0)
2209 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Avi Kivity089d0342009-03-23 18:26:32 +02002210 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002211 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002212 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2213 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002214
Avi Kivityc7addb92007-09-16 18:58:32 +02002215 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2216 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002217 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2218
2219 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2220 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2221 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2222
2223 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2224 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2225 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002226 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2227 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002228 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002229#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002230 rdmsrl(MSR_FS_BASE, a);
2231 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2232 rdmsrl(MSR_GS_BASE, a);
2233 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2234#else
2235 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2236 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2237#endif
2238
2239 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2240
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002241 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002242 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2243
Mike Dayd77c26f2007-10-08 09:02:08 -04002244 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002245 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002246 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2247 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2248 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249
2250 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2251 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2252 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2253 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2254 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2255 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2256
Sheng Yang468d4722008-10-09 16:01:55 +08002257 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2258 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2259 host_pat = msr_low | ((u64) msr_high << 32);
2260 vmcs_write64(HOST_IA32_PAT, host_pat);
2261 }
2262 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2263 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2264 host_pat = msr_low | ((u64) msr_high << 32);
2265 /* Write the default value follow host pat */
2266 vmcs_write64(GUEST_IA32_PAT, host_pat);
2267 /* Keep arch.pat sync with GUEST_IA32_PAT */
2268 vmx->vcpu.arch.pat = host_pat;
2269 }
2270
Avi Kivity6aa8b732006-12-10 02:21:36 -08002271 for (i = 0; i < NR_VMX_MSR; ++i) {
2272 u32 index = vmx_msr_index[i];
2273 u32 data_low, data_high;
2274 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002275 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276
2277 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2278 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002279 if (wrmsr_safe(index, data_low, data_high) < 0)
2280 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002282 vmx->host_msrs[j].index = index;
2283 vmx->host_msrs[j].reserved = 0;
2284 vmx->host_msrs[j].data = data;
2285 vmx->guest_msrs[j] = vmx->host_msrs[j];
2286 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002289 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002290
2291 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002292 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2293
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002294 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2295 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2296
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002297 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2298 rdtscll(tsc_this);
2299 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2300 tsc_base = tsc_this;
2301
2302 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002303
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002304 return 0;
2305}
2306
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002307static int init_rmode(struct kvm *kvm)
2308{
2309 if (!init_rmode_tss(kvm))
2310 return 0;
2311 if (!init_rmode_identity_map(kvm))
2312 return 0;
2313 return 1;
2314}
2315
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002316static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2317{
2318 struct vcpu_vmx *vmx = to_vmx(vcpu);
2319 u64 msr;
2320 int ret;
2321
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002322 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002323 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002324 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002325 ret = -ENOMEM;
2326 goto out;
2327 }
2328
Nitin A Kamble56b237e2009-06-04 15:04:08 -07002329 vmx->vcpu.arch.rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002330
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002331 vmx->soft_vnmi_blocked = 0;
2332
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002333 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002334 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002335 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2336 if (vmx->vcpu.vcpu_id == 0)
2337 msr |= MSR_IA32_APICBASE_BSP;
2338 kvm_set_apic_base(&vmx->vcpu, msr);
2339
2340 fx_init(&vmx->vcpu);
2341
Avi Kivity5706be02008-08-20 15:07:31 +03002342 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002343 /*
2344 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2345 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2346 */
2347 if (vmx->vcpu.vcpu_id == 0) {
2348 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2349 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2350 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002351 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2352 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002353 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002354
2355 seg_setup(VCPU_SREG_DS);
2356 seg_setup(VCPU_SREG_ES);
2357 seg_setup(VCPU_SREG_FS);
2358 seg_setup(VCPU_SREG_GS);
2359 seg_setup(VCPU_SREG_SS);
2360
2361 vmcs_write16(GUEST_TR_SELECTOR, 0);
2362 vmcs_writel(GUEST_TR_BASE, 0);
2363 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2364 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2365
2366 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2367 vmcs_writel(GUEST_LDTR_BASE, 0);
2368 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2369 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2370
2371 vmcs_write32(GUEST_SYSENTER_CS, 0);
2372 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2373 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2374
2375 vmcs_writel(GUEST_RFLAGS, 0x02);
2376 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002377 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002378 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002379 kvm_rip_write(vcpu, 0);
2380 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002381
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002382 vmcs_writel(GUEST_DR7, 0x400);
2383
2384 vmcs_writel(GUEST_GDTR_BASE, 0);
2385 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2386
2387 vmcs_writel(GUEST_IDTR_BASE, 0);
2388 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2389
2390 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2391 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2392 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2393
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002394 /* Special registers */
2395 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2396
2397 setup_msrs(vmx);
2398
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2400
Sheng Yangf78e0e22007-10-29 09:40:42 +08002401 if (cpu_has_vmx_tpr_shadow()) {
2402 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2403 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2404 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002405 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002406 vmcs_write32(TPR_THRESHOLD, 0);
2407 }
2408
2409 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2410 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002411 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002412
Sheng Yang2384d2b2008-01-17 15:14:33 +08002413 if (vmx->vpid != 0)
2414 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2415
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002416 vmx->vcpu.arch.cr0 = 0x60000010;
2417 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002418 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002419 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002420 vmx_fpu_activate(&vmx->vcpu);
2421 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002422
Sheng Yang2384d2b2008-01-17 15:14:33 +08002423 vpid_sync_vcpu_all(vmx);
2424
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002425 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002427 /* HACK: Don't enable emulation on guest boot/reset */
2428 vmx->emulation_required = 0;
2429
Avi Kivity6aa8b732006-12-10 02:21:36 -08002430out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002431 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432 return ret;
2433}
2434
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002435static void enable_irq_window(struct kvm_vcpu *vcpu)
2436{
2437 u32 cpu_based_vm_exec_control;
2438
2439 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2440 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2441 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2442}
2443
2444static void enable_nmi_window(struct kvm_vcpu *vcpu)
2445{
2446 u32 cpu_based_vm_exec_control;
2447
2448 if (!cpu_has_virtual_nmis()) {
2449 enable_irq_window(vcpu);
2450 return;
2451 }
2452
2453 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2454 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2455 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2456}
2457
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002458static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002459{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002460 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002461 uint32_t intr;
2462 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002463
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002464 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2465
Avi Kivityfa89a812008-09-01 15:57:51 +03002466 ++vcpu->stat.irq_injections;
Nitin A Kamble56b237e2009-06-04 15:04:08 -07002467 if (vcpu->arch.rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002468 vmx->rmode.irq.pending = true;
2469 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002470 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002471 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2472 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2473 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002474 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002475 return;
2476 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002477 intr = irq | INTR_INFO_VALID_MASK;
2478 if (vcpu->arch.interrupt.soft) {
2479 intr |= INTR_TYPE_SOFT_INTR;
2480 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2481 vmx->vcpu.arch.event_exit_inst_len);
2482 } else
2483 intr |= INTR_TYPE_EXT_INTR;
2484 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002485}
2486
Sheng Yangf08864b2008-05-15 18:23:25 +08002487static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2488{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002489 struct vcpu_vmx *vmx = to_vmx(vcpu);
2490
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002491 if (!cpu_has_virtual_nmis()) {
2492 /*
2493 * Tracking the NMI-blocked state in software is built upon
2494 * finding the next open IRQ window. This, in turn, depends on
2495 * well-behaving guests: They have to keep IRQs disabled at
2496 * least as long as the NMI handler runs. Otherwise we may
2497 * cause NMI nesting, maybe breaking the guest. But as this is
2498 * highly unlikely, we can live with the residual risk.
2499 */
2500 vmx->soft_vnmi_blocked = 1;
2501 vmx->vnmi_blocked_time = 0;
2502 }
2503
Jan Kiszka487b3912008-09-26 09:30:56 +02002504 ++vcpu->stat.nmi_injections;
Nitin A Kamble56b237e2009-06-04 15:04:08 -07002505 if (vcpu->arch.rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002506 vmx->rmode.irq.pending = true;
2507 vmx->rmode.irq.vector = NMI_VECTOR;
2508 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2509 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2510 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2511 INTR_INFO_VALID_MASK);
2512 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2513 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2514 return;
2515 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002516 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2517 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002518}
2519
Gleb Natapovc4282df2009-04-21 17:45:07 +03002520static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002521{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002522 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002523 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002524
Gleb Natapovc4282df2009-04-21 17:45:07 +03002525 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2526 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2527 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002528}
2529
Gleb Natapov78646122009-03-23 12:12:11 +02002530static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2531{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002532 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2533 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2534 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002535}
2536
Izik Eiduscbc94022007-10-25 00:29:55 +02002537static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2538{
2539 int ret;
2540 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002541 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002542 .guest_phys_addr = addr,
2543 .memory_size = PAGE_SIZE * 3,
2544 .flags = 0,
2545 };
2546
2547 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2548 if (ret)
2549 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002550 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002551 return 0;
2552}
2553
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2555 int vec, u32 err_code)
2556{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002557 /*
2558 * Instruction with address size override prefix opcode 0x67
2559 * Cause the #SS fault with 0 error code in VM86 mode.
2560 */
2561 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002562 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002564 /*
2565 * Forward all other exceptions that are valid in real mode.
2566 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2567 * the required debugging infrastructure rework.
2568 */
2569 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002570 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002571 if (vcpu->guest_debug &
2572 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2573 return 0;
2574 kvm_queue_exception(vcpu, vec);
2575 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002576 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002577 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2578 return 0;
2579 /* fall through */
2580 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002581 case OF_VECTOR:
2582 case BR_VECTOR:
2583 case UD_VECTOR:
2584 case DF_VECTOR:
2585 case SS_VECTOR:
2586 case GP_VECTOR:
2587 case MF_VECTOR:
2588 kvm_queue_exception(vcpu, vec);
2589 return 1;
2590 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002591 return 0;
2592}
2593
Andi Kleena0861c02009-06-08 17:37:09 +08002594/*
2595 * Trigger machine check on the host. We assume all the MSRs are already set up
2596 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2597 * We pass a fake environment to the machine check handler because we want
2598 * the guest to be always treated like user space, no matter what context
2599 * it used internally.
2600 */
2601static void kvm_machine_check(void)
2602{
2603#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2604 struct pt_regs regs = {
2605 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2606 .flags = X86_EFLAGS_IF,
2607 };
2608
2609 do_machine_check(&regs, 0);
2610#endif
2611}
2612
2613static int handle_machine_check(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2614{
2615 /* already handled by vcpu_run */
2616 return 1;
2617}
2618
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2620{
Avi Kivity1155f762007-11-22 11:30:47 +02002621 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002622 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002623 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624 u32 vect_info;
2625 enum emulation_result er;
2626
Avi Kivity1155f762007-11-22 11:30:47 +02002627 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2629
Andi Kleena0861c02009-06-08 17:37:09 +08002630 if (is_machine_check(intr_info))
2631 return handle_machine_check(vcpu, kvm_run);
2632
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002634 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002635 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002636 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637
Jan Kiszkae4a41882008-09-26 09:30:46 +02002638 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002639 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002640
2641 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002642 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002643 return 1;
2644 }
2645
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002646 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002647 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002648 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002649 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002650 return 1;
2651 }
2652
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002654 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002655 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2657 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002658 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002659 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002660 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002661 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002662 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2663 (u32)((u64)cr2 >> 32), handler);
Gleb Natapov3298b752009-05-11 13:35:46 +03002664 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002665 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002666 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002667 }
2668
Nitin A Kamble56b237e2009-06-04 15:04:08 -07002669 if (vcpu->arch.rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002671 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002672 if (vcpu->arch.halt_request) {
2673 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002674 return kvm_emulate_halt(vcpu);
2675 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002677 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002678
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002679 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002680 switch (ex_no) {
2681 case DB_VECTOR:
2682 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2683 if (!(vcpu->guest_debug &
2684 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2685 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2686 kvm_queue_exception(vcpu, DB_VECTOR);
2687 return 1;
2688 }
2689 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2690 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2691 /* fall through */
2692 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002693 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002694 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2695 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002696 break;
2697 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002698 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2699 kvm_run->ex.exception = ex_no;
2700 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002701 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703 return 0;
2704}
2705
2706static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2707 struct kvm_run *kvm_run)
2708{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002709 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002710 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002711 return 1;
2712}
2713
Avi Kivity988ad742007-02-12 00:54:36 -08002714static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2715{
2716 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2717 return 0;
2718}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719
Avi Kivity6aa8b732006-12-10 02:21:36 -08002720static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2721{
He, Qingbfdaab02007-09-12 14:18:28 +08002722 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002723 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002724 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002725
Avi Kivity1165f5f2007-04-19 17:27:43 +03002726 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002727 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002728 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002729
2730 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002731 if (emulate_instruction(vcpu,
2732 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002733 return 0;
2734 return 1;
2735 }
2736
2737 size = (exit_qualification & 7) + 1;
2738 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002739 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002740
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002741 skip_emulated_instruction(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03002742 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743}
2744
Ingo Molnar102d8322007-02-19 14:37:47 +02002745static void
2746vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2747{
2748 /*
2749 * Patch in the VMCALL instruction:
2750 */
2751 hypercall[0] = 0x0f;
2752 hypercall[1] = 0x01;
2753 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002754}
2755
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2757{
He, Qingbfdaab02007-09-12 14:18:28 +08002758 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002759 int cr;
2760 int reg;
2761
He, Qingbfdaab02007-09-12 14:18:28 +08002762 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763 cr = exit_qualification & 15;
2764 reg = (exit_qualification >> 8) & 15;
2765 switch ((exit_qualification >> 4) & 3) {
2766 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002767 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2768 (u32)kvm_register_read(vcpu, reg),
2769 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2770 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 switch (cr) {
2772 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002773 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 skip_emulated_instruction(vcpu);
2775 return 1;
2776 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002777 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778 skip_emulated_instruction(vcpu);
2779 return 1;
2780 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002781 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002782 skip_emulated_instruction(vcpu);
2783 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002784 case 8: {
2785 u8 cr8_prev = kvm_get_cr8(vcpu);
2786 u8 cr8 = kvm_register_read(vcpu, reg);
2787 kvm_set_cr8(vcpu, cr8);
2788 skip_emulated_instruction(vcpu);
2789 if (irqchip_in_kernel(vcpu->kvm))
2790 return 1;
2791 if (cr8_prev <= cr8)
2792 return 1;
2793 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2794 return 0;
2795 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796 };
2797 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002798 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002799 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002800 vcpu->arch.cr0 &= ~X86_CR0_TS;
2801 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002802 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002803 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002804 skip_emulated_instruction(vcpu);
2805 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806 case 1: /*mov from cr*/
2807 switch (cr) {
2808 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002809 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002810 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002811 (u32)kvm_register_read(vcpu, reg),
2812 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002813 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814 skip_emulated_instruction(vcpu);
2815 return 1;
2816 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002817 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002818 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002819 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 skip_emulated_instruction(vcpu);
2821 return 1;
2822 }
2823 break;
2824 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002825 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826
2827 skip_emulated_instruction(vcpu);
2828 return 1;
2829 default:
2830 break;
2831 }
2832 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002833 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834 (int)(exit_qualification >> 4) & 3, cr);
2835 return 0;
2836}
2837
2838static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2839{
He, Qingbfdaab02007-09-12 14:18:28 +08002840 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 unsigned long val;
2842 int dr, reg;
2843
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002844 dr = vmcs_readl(GUEST_DR7);
2845 if (dr & DR7_GD) {
2846 /*
2847 * As the vm-exit takes precedence over the debug trap, we
2848 * need to emulate the latter, either for the host or the
2849 * guest debugging itself.
2850 */
2851 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
2852 kvm_run->debug.arch.dr6 = vcpu->arch.dr6;
2853 kvm_run->debug.arch.dr7 = dr;
2854 kvm_run->debug.arch.pc =
2855 vmcs_readl(GUEST_CS_BASE) +
2856 vmcs_readl(GUEST_RIP);
2857 kvm_run->debug.arch.exception = DB_VECTOR;
2858 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2859 return 0;
2860 } else {
2861 vcpu->arch.dr7 &= ~DR7_GD;
2862 vcpu->arch.dr6 |= DR6_BD;
2863 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2864 kvm_queue_exception(vcpu, DB_VECTOR);
2865 return 1;
2866 }
2867 }
2868
He, Qingbfdaab02007-09-12 14:18:28 +08002869 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002870 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2871 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2872 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002874 case 0 ... 3:
2875 val = vcpu->arch.db[dr];
2876 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002877 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002878 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879 break;
2880 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002881 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882 break;
2883 default:
2884 val = 0;
2885 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002886 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002887 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002889 val = vcpu->arch.regs[reg];
2890 switch (dr) {
2891 case 0 ... 3:
2892 vcpu->arch.db[dr] = val;
2893 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2894 vcpu->arch.eff_db[dr] = val;
2895 break;
2896 case 4 ... 5:
2897 if (vcpu->arch.cr4 & X86_CR4_DE)
2898 kvm_queue_exception(vcpu, UD_VECTOR);
2899 break;
2900 case 6:
2901 if (val & 0xffffffff00000000ULL) {
2902 kvm_queue_exception(vcpu, GP_VECTOR);
2903 break;
2904 }
2905 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2906 break;
2907 case 7:
2908 if (val & 0xffffffff00000000ULL) {
2909 kvm_queue_exception(vcpu, GP_VECTOR);
2910 break;
2911 }
2912 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
2913 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
2914 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2915 vcpu->arch.switch_db_regs =
2916 (val & DR7_BP_EN_MASK);
2917 }
2918 break;
2919 }
2920 KVMTRACE_2D(DR_WRITE, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002921 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 skip_emulated_instruction(vcpu);
2923 return 1;
2924}
2925
2926static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2927{
Avi Kivity06465c52007-02-28 20:46:53 +02002928 kvm_emulate_cpuid(vcpu);
2929 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930}
2931
2932static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2933{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002934 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935 u64 data;
2936
2937 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002938 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939 return 1;
2940 }
2941
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002942 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2943 handler);
2944
Avi Kivity6aa8b732006-12-10 02:21:36 -08002945 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002946 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2947 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948 skip_emulated_instruction(vcpu);
2949 return 1;
2950}
2951
2952static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2953{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002954 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2955 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2956 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002957
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002958 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2959 handler);
2960
Avi Kivity6aa8b732006-12-10 02:21:36 -08002961 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002962 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963 return 1;
2964 }
2965
2966 skip_emulated_instruction(vcpu);
2967 return 1;
2968}
2969
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002970static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2971 struct kvm_run *kvm_run)
2972{
2973 return 1;
2974}
2975
Avi Kivity6aa8b732006-12-10 02:21:36 -08002976static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2977 struct kvm_run *kvm_run)
2978{
Eddie Dong85f455f2007-07-06 12:20:49 +03002979 u32 cpu_based_vm_exec_control;
2980
2981 /* clear pending irq */
2982 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2983 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2984 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002985
2986 KVMTRACE_0D(PEND_INTR, vcpu, handler);
Jan Kiszkaa26bf122008-09-26 09:30:45 +02002987 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002988
Dor Laorc1150d82007-01-05 16:36:24 -08002989 /*
2990 * If the user space waits to inject interrupts, exit as soon as
2991 * possible
2992 */
Gleb Natapov80618232009-04-21 17:44:56 +03002993 if (!irqchip_in_kernel(vcpu->kvm) &&
2994 kvm_run->request_interrupt_window &&
2995 !kvm_cpu_has_interrupt(vcpu)) {
Dor Laorc1150d82007-01-05 16:36:24 -08002996 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08002997 return 0;
2998 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999 return 1;
3000}
3001
3002static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3003{
3004 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003005 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006}
3007
Ingo Molnarc21415e2007-02-19 14:37:47 +02003008static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3009{
Dor Laor510043d2007-02-19 18:25:43 +02003010 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003011 kvm_emulate_hypercall(vcpu);
3012 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003013}
3014
Marcelo Tosattia7052892008-09-23 13:18:35 -03003015static int handle_invlpg(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3016{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003017 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003018
3019 kvm_mmu_invlpg(vcpu, exit_qualification);
3020 skip_emulated_instruction(vcpu);
3021 return 1;
3022}
3023
Eddie Donge5edaa02007-11-11 12:28:35 +02003024static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3025{
3026 skip_emulated_instruction(vcpu);
3027 /* TODO: Add support for VT-d/pass-through device */
3028 return 1;
3029}
3030
Sheng Yangf78e0e22007-10-29 09:40:42 +08003031static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3032{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003033 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003034 enum emulation_result er;
3035 unsigned long offset;
3036
Sheng Yangf9c617f2009-03-25 10:08:52 +08003037 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003038 offset = exit_qualification & 0xffful;
3039
3040 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3041
3042 if (er != EMULATE_DONE) {
3043 printk(KERN_ERR
3044 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3045 offset);
3046 return -ENOTSUPP;
3047 }
3048 return 1;
3049}
3050
Izik Eidus37817f22008-03-24 23:14:53 +02003051static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3052{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003053 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003054 unsigned long exit_qualification;
3055 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003056 int reason, type, idt_v;
3057
3058 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3059 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003060
3061 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3062
3063 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003064 if (reason == TASK_SWITCH_GATE && idt_v) {
3065 switch (type) {
3066 case INTR_TYPE_NMI_INTR:
3067 vcpu->arch.nmi_injected = false;
3068 if (cpu_has_virtual_nmis())
3069 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3070 GUEST_INTR_STATE_NMI);
3071 break;
3072 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003073 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003074 kvm_clear_interrupt_queue(vcpu);
3075 break;
3076 case INTR_TYPE_HARD_EXCEPTION:
3077 case INTR_TYPE_SOFT_EXCEPTION:
3078 kvm_clear_exception_queue(vcpu);
3079 break;
3080 default:
3081 break;
3082 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003083 }
Izik Eidus37817f22008-03-24 23:14:53 +02003084 tss_selector = exit_qualification;
3085
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003086 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3087 type != INTR_TYPE_EXT_INTR &&
3088 type != INTR_TYPE_NMI_INTR))
3089 skip_emulated_instruction(vcpu);
3090
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003091 if (!kvm_task_switch(vcpu, tss_selector, reason))
3092 return 0;
3093
3094 /* clear all local breakpoint enable flags */
3095 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3096
3097 /*
3098 * TODO: What about debug traps on tss switch?
3099 * Are we supposed to inject them and update dr6?
3100 */
3101
3102 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003103}
3104
Sheng Yang14394422008-04-28 12:24:45 +08003105static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3106{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003107 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003108 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003109 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003110
Sheng Yangf9c617f2009-03-25 10:08:52 +08003111 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003112
3113 if (exit_qualification & (1 << 6)) {
3114 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
3115 return -ENOTSUPP;
3116 }
3117
3118 gla_validity = (exit_qualification >> 7) & 0x3;
3119 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3120 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3121 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3122 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003123 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003124 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3125 (long unsigned int)exit_qualification);
3126 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3127 kvm_run->hw.hardware_exit_reason = 0;
3128 return -ENOTSUPP;
3129 }
3130
3131 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003132 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003133}
3134
Sheng Yangf08864b2008-05-15 18:23:25 +08003135static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3136{
3137 u32 cpu_based_vm_exec_control;
3138
3139 /* clear pending NMI */
3140 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3141 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3142 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3143 ++vcpu->stat.nmi_window_exits;
3144
3145 return 1;
3146}
3147
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003148static void handle_invalid_guest_state(struct kvm_vcpu *vcpu,
3149 struct kvm_run *kvm_run)
3150{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003151 struct vcpu_vmx *vmx = to_vmx(vcpu);
3152 enum emulation_result err = EMULATE_DONE;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003153
3154 preempt_enable();
3155 local_irq_enable();
3156
3157 while (!guest_state_valid(vcpu)) {
3158 err = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3159
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003160 if (err == EMULATE_DO_MMIO)
3161 break;
3162
3163 if (err != EMULATE_DONE) {
3164 kvm_report_emulation_failure(vcpu, "emulation failure");
3165 return;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003166 }
3167
3168 if (signal_pending(current))
3169 break;
3170 if (need_resched())
3171 schedule();
3172 }
3173
3174 local_irq_disable();
3175 preempt_disable();
Avi Kivity8b3079a2009-01-05 12:10:54 +02003176
3177 vmx->invalid_state_emulation_result = err;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003178}
3179
Avi Kivity6aa8b732006-12-10 02:21:36 -08003180/*
3181 * The exit handlers return 1 if the exit was handled fully and guest execution
3182 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3183 * to be done to userspace and return 0.
3184 */
3185static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
3186 struct kvm_run *kvm_run) = {
3187 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3188 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003189 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003190 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003191 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003192 [EXIT_REASON_CR_ACCESS] = handle_cr,
3193 [EXIT_REASON_DR_ACCESS] = handle_dr,
3194 [EXIT_REASON_CPUID] = handle_cpuid,
3195 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3196 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3197 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3198 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003199 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003200 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003201 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3202 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003203 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003204 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08003205 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Andi Kleena0861c02009-06-08 17:37:09 +08003206 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003207};
3208
3209static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003210 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003211
3212/*
3213 * The guest has exited. See if we can fix it or if we need userspace
3214 * assistance.
3215 */
Avi Kivity6062d012009-03-23 17:35:17 +02003216static int vmx_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003217{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003218 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003219 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003220 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003221
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003222 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
3223 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003224
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003225 /* If we need to emulate an MMIO from handle_invalid_guest_state
3226 * we just return 0 */
Avi Kivity10f32d82009-01-05 00:53:19 +02003227 if (vmx->emulation_required && emulate_invalid_guest_state) {
3228 if (guest_state_valid(vcpu))
3229 vmx->emulation_required = 0;
Avi Kivity8b3079a2009-01-05 12:10:54 +02003230 return vmx->invalid_state_emulation_result != EMULATE_DO_MMIO;
Avi Kivity10f32d82009-01-05 00:53:19 +02003231 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003232
Sheng Yang14394422008-04-28 12:24:45 +08003233 /* Access CR3 don't cause VMExit in paging mode, so we need
3234 * to sync with guest real CR3. */
Avi Kivity089d0342009-03-23 18:26:32 +02003235 if (enable_ept && is_paging(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08003236 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3237 ept_load_pdptrs(vcpu);
3238 }
3239
Avi Kivity29bd8a72007-09-10 17:27:03 +03003240 if (unlikely(vmx->fail)) {
3241 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3242 kvm_run->fail_entry.hardware_entry_failure_reason
3243 = vmcs_read32(VM_INSTRUCTION_ERROR);
3244 return 0;
3245 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003246
Mike Dayd77c26f2007-10-08 09:02:08 -04003247 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003248 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003249 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3250 exit_reason != EXIT_REASON_TASK_SWITCH))
3251 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3252 "(0x%x) and exit reason is 0x%x\n",
3253 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003254
3255 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003256 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003257 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003258 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003259 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003260 /*
3261 * This CPU don't support us in finding the end of an
3262 * NMI-blocked window if the guest runs with IRQs
3263 * disabled. So we pull the trigger after 1 s of
3264 * futile waiting, but inform the user about this.
3265 */
3266 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3267 "state on VCPU %d after 1 s timeout\n",
3268 __func__, vcpu->vcpu_id);
3269 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003270 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003271 }
3272
Avi Kivity6aa8b732006-12-10 02:21:36 -08003273 if (exit_reason < kvm_vmx_max_exit_handlers
3274 && kvm_vmx_exit_handlers[exit_reason])
3275 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
3276 else {
3277 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3278 kvm_run->hw.hardware_exit_reason = exit_reason;
3279 }
3280 return 0;
3281}
3282
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003283static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003284{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003285 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003286 vmcs_write32(TPR_THRESHOLD, 0);
3287 return;
3288 }
3289
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003290 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003291}
3292
Avi Kivitycf393f72008-07-01 16:20:21 +03003293static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3294{
3295 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003296 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003297 bool unblock_nmi;
3298 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003299 int type;
3300 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003301
3302 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003303
Andi Kleena0861c02009-06-08 17:37:09 +08003304 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3305
3306 /* Handle machine checks before interrupts are enabled */
3307 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3308 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3309 && is_machine_check(exit_intr_info)))
3310 kvm_machine_check();
3311
Gleb Natapov20f65982009-05-11 13:35:55 +03003312 /* We need to handle NMIs before interrupts are enabled */
3313 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
3314 (exit_intr_info & INTR_INFO_VALID_MASK)) {
3315 KVMTRACE_0D(NMI, &vmx->vcpu, handler);
3316 asm("int $2");
3317 }
3318
3319 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3320
Avi Kivitycf393f72008-07-01 16:20:21 +03003321 if (cpu_has_virtual_nmis()) {
3322 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3323 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3324 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003325 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003326 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3327 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003328 * SDM 3: 23.2.2 (September 2008)
3329 * Bit 12 is undefined in any of the following cases:
3330 * If the VM exit sets the valid bit in the IDT-vectoring
3331 * information field.
3332 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003333 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003334 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3335 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003336 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3337 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003338 } else if (unlikely(vmx->soft_vnmi_blocked))
3339 vmx->vnmi_blocked_time +=
3340 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003341
Gleb Natapov37b96e92009-03-30 16:03:13 +03003342 vmx->vcpu.arch.nmi_injected = false;
3343 kvm_clear_exception_queue(&vmx->vcpu);
3344 kvm_clear_interrupt_queue(&vmx->vcpu);
3345
3346 if (!idtv_info_valid)
3347 return;
3348
Avi Kivity668f6122008-07-02 09:28:55 +03003349 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3350 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003351
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003352 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003353 case INTR_TYPE_NMI_INTR:
3354 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003355 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003356 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003357 * Clear bit "block by NMI" before VM entry if a NMI
3358 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003359 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003360 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3361 GUEST_INTR_STATE_NMI);
3362 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003363 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003364 vmx->vcpu.arch.event_exit_inst_len =
3365 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3366 /* fall through */
3367 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003368 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003369 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3370 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003371 } else
3372 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003373 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003374 case INTR_TYPE_SOFT_INTR:
3375 vmx->vcpu.arch.event_exit_inst_len =
3376 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3377 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003378 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003379 kvm_queue_interrupt(&vmx->vcpu, vector,
3380 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003381 break;
3382 default:
3383 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003384 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003385}
3386
Avi Kivity9c8cba32007-11-22 11:42:59 +02003387/*
3388 * Failure to inject an interrupt should give us the information
3389 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3390 * when fetching the interrupt redirection bitmap in the real-mode
3391 * tss, this doesn't happen. So we do it ourselves.
3392 */
3393static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3394{
3395 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003396 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003397 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003398 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003399 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3400 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3401 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3402 return;
3403 }
3404 vmx->idt_vectoring_info =
3405 VECTORING_INFO_VALID_MASK
3406 | INTR_TYPE_EXT_INTR
3407 | vmx->rmode.irq.vector;
3408}
3409
Avi Kivityc8019492008-07-14 14:44:59 +03003410#ifdef CONFIG_X86_64
3411#define R "r"
3412#define Q "q"
3413#else
3414#define R "e"
3415#define Q "l"
3416#endif
3417
Avi Kivity04d2cc72007-09-10 18:10:54 +03003418static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003420 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003421
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003422 /* Record the guest's net vcpu time for enforced NMI injections. */
3423 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3424 vmx->entry_time = ktime_get();
3425
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003426 /* Handle invalid guest state instead of entering VMX */
3427 if (vmx->emulation_required && emulate_invalid_guest_state) {
3428 handle_invalid_guest_state(vcpu, kvm_run);
3429 return;
3430 }
3431
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003432 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3433 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3434 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3435 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3436
Avi Kivitye6adf282007-04-30 16:07:54 +03003437 /*
3438 * Loading guest fpu may have cleared host cr0.ts
3439 */
3440 vmcs_writel(HOST_CR0, read_cr0());
3441
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003442 set_debugreg(vcpu->arch.dr6, 6);
3443
Mike Dayd77c26f2007-10-08 09:02:08 -04003444 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003445 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003446 "push %%"R"dx; push %%"R"bp;"
3447 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003448 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3449 "je 1f \n\t"
3450 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003451 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003452 "1: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003454 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003455 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003456 "mov %c[cr2](%0), %%"R"ax \n\t"
3457 "mov %%"R"ax, %%cr2 \n\t"
3458 "mov %c[rax](%0), %%"R"ax \n\t"
3459 "mov %c[rbx](%0), %%"R"bx \n\t"
3460 "mov %c[rdx](%0), %%"R"dx \n\t"
3461 "mov %c[rsi](%0), %%"R"si \n\t"
3462 "mov %c[rdi](%0), %%"R"di \n\t"
3463 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003464#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003465 "mov %c[r8](%0), %%r8 \n\t"
3466 "mov %c[r9](%0), %%r9 \n\t"
3467 "mov %c[r10](%0), %%r10 \n\t"
3468 "mov %c[r11](%0), %%r11 \n\t"
3469 "mov %c[r12](%0), %%r12 \n\t"
3470 "mov %c[r13](%0), %%r13 \n\t"
3471 "mov %c[r14](%0), %%r14 \n\t"
3472 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003473#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003474 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3475
Avi Kivity6aa8b732006-12-10 02:21:36 -08003476 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003477 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003478 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003479 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003480 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003481 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003482 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003483 "xchg %0, (%%"R"sp) \n\t"
3484 "mov %%"R"ax, %c[rax](%0) \n\t"
3485 "mov %%"R"bx, %c[rbx](%0) \n\t"
3486 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3487 "mov %%"R"dx, %c[rdx](%0) \n\t"
3488 "mov %%"R"si, %c[rsi](%0) \n\t"
3489 "mov %%"R"di, %c[rdi](%0) \n\t"
3490 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003491#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003492 "mov %%r8, %c[r8](%0) \n\t"
3493 "mov %%r9, %c[r9](%0) \n\t"
3494 "mov %%r10, %c[r10](%0) \n\t"
3495 "mov %%r11, %c[r11](%0) \n\t"
3496 "mov %%r12, %c[r12](%0) \n\t"
3497 "mov %%r13, %c[r13](%0) \n\t"
3498 "mov %%r14, %c[r14](%0) \n\t"
3499 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003500#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003501 "mov %%cr2, %%"R"ax \n\t"
3502 "mov %%"R"ax, %c[cr2](%0) \n\t"
3503
3504 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003505 "setbe %c[fail](%0) \n\t"
3506 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3507 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3508 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003509 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003510 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3511 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3512 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3513 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3514 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3515 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3516 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003517#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003518 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3519 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3520 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3521 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3522 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3523 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3524 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3525 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003526#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003527 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003528 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003529 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003530#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003531 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3532#endif
3533 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003534
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003535 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3536 vcpu->arch.regs_dirty = 0;
3537
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003538 get_debugreg(vcpu->arch.dr6, 6);
3539
Avi Kivity1155f762007-11-22 11:30:47 +02003540 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003541 if (vmx->rmode.irq.pending)
3542 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003543
Mike Dayd77c26f2007-10-08 09:02:08 -04003544 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003545 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003546
Avi Kivitycf393f72008-07-01 16:20:21 +03003547 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003548}
3549
Avi Kivityc8019492008-07-14 14:44:59 +03003550#undef R
3551#undef Q
3552
Avi Kivity6aa8b732006-12-10 02:21:36 -08003553static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3554{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003555 struct vcpu_vmx *vmx = to_vmx(vcpu);
3556
3557 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003558 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003559 free_vmcs(vmx->vmcs);
3560 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003561 }
3562}
3563
3564static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3565{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003566 struct vcpu_vmx *vmx = to_vmx(vcpu);
3567
Sheng Yang2384d2b2008-01-17 15:14:33 +08003568 spin_lock(&vmx_vpid_lock);
3569 if (vmx->vpid != 0)
3570 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3571 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003572 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003573 kfree(vmx->host_msrs);
3574 kfree(vmx->guest_msrs);
3575 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003576 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003577}
3578
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003579static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003581 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003582 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003583 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003585 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003586 return ERR_PTR(-ENOMEM);
3587
Sheng Yang2384d2b2008-01-17 15:14:33 +08003588 allocate_vpid(vmx);
3589
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003590 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3591 if (err)
3592 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003593
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003594 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003595 if (!vmx->guest_msrs) {
3596 err = -ENOMEM;
3597 goto uninit_vcpu;
3598 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003599
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003600 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3601 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003602 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003603
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003604 vmx->vmcs = alloc_vmcs();
3605 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003606 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003607
3608 vmcs_clear(vmx->vmcs);
3609
Avi Kivity15ad7142007-07-11 18:17:21 +03003610 cpu = get_cpu();
3611 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003612 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003613 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003614 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003615 if (err)
3616 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003617 if (vm_need_virtualize_apic_accesses(kvm))
3618 if (alloc_apic_access_page(kvm) != 0)
3619 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003620
Avi Kivity089d0342009-03-23 18:26:32 +02003621 if (enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003622 if (alloc_identity_pagetable(kvm) != 0)
3623 goto free_vmcs;
3624
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003625 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003626
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003627free_vmcs:
3628 free_vmcs(vmx->vmcs);
3629free_msrs:
3630 kfree(vmx->host_msrs);
3631free_guest_msrs:
3632 kfree(vmx->guest_msrs);
3633uninit_vcpu:
3634 kvm_vcpu_uninit(&vmx->vcpu);
3635free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003636 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003637 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003638}
3639
Yang, Sheng002c7f72007-07-31 14:23:01 +03003640static void __init vmx_check_processor_compat(void *rtn)
3641{
3642 struct vmcs_config vmcs_conf;
3643
3644 *(int *)rtn = 0;
3645 if (setup_vmcs_config(&vmcs_conf) < 0)
3646 *(int *)rtn = -EIO;
3647 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3648 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3649 smp_processor_id());
3650 *(int *)rtn = -EIO;
3651 }
3652}
3653
Sheng Yang67253af2008-04-25 10:20:22 +08003654static int get_ept_level(void)
3655{
3656 return VMX_EPT_DEFAULT_GAW + 1;
3657}
3658
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003659static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003660{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003661 u64 ret;
3662
Sheng Yang522c68c2009-04-27 20:35:43 +08003663 /* For VT-d and EPT combination
3664 * 1. MMIO: always map as UC
3665 * 2. EPT with VT-d:
3666 * a. VT-d without snooping control feature: can't guarantee the
3667 * result, try to trust guest.
3668 * b. VT-d with snooping control feature: snooping control feature of
3669 * VT-d engine can guarantee the cache correctness. Just set it
3670 * to WB to keep consistent with host. So the same as item 3.
3671 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3672 * consistent with host MTRR
3673 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003674 if (is_mmio)
3675 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003676 else if (vcpu->kvm->arch.iommu_domain &&
3677 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3678 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3679 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003680 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003681 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3682 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003683
3684 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003685}
3686
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003687static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003688 .cpu_has_kvm_support = cpu_has_kvm_support,
3689 .disabled_by_bios = vmx_disabled_by_bios,
3690 .hardware_setup = hardware_setup,
3691 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003692 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003693 .hardware_enable = hardware_enable,
3694 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003695 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696
3697 .vcpu_create = vmx_create_vcpu,
3698 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003699 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003700
Avi Kivity04d2cc72007-09-10 18:10:54 +03003701 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003702 .vcpu_load = vmx_vcpu_load,
3703 .vcpu_put = vmx_vcpu_put,
3704
3705 .set_guest_debug = set_guest_debug,
3706 .get_msr = vmx_get_msr,
3707 .set_msr = vmx_set_msr,
3708 .get_segment_base = vmx_get_segment_base,
3709 .get_segment = vmx_get_segment,
3710 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003711 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003712 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003713 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003714 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003715 .set_cr3 = vmx_set_cr3,
3716 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003717 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003718 .get_idt = vmx_get_idt,
3719 .set_idt = vmx_set_idt,
3720 .get_gdt = vmx_get_gdt,
3721 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003722 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003723 .get_rflags = vmx_get_rflags,
3724 .set_rflags = vmx_set_rflags,
3725
3726 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003727
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003729 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003730 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003731 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3732 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003733 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003734 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003735 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003736 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003737 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003738 .nmi_allowed = vmx_nmi_allowed,
3739 .enable_nmi_window = enable_nmi_window,
3740 .enable_irq_window = enable_irq_window,
3741 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003742
Izik Eiduscbc94022007-10-25 00:29:55 +02003743 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003744 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003745 .get_mt_mask = vmx_get_mt_mask,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003746};
3747
3748static int __init vmx_init(void)
3749{
He, Qingfdef3ad2007-04-30 09:45:24 +03003750 int r;
3751
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003752 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003753 if (!vmx_io_bitmap_a)
3754 return -ENOMEM;
3755
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003756 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003757 if (!vmx_io_bitmap_b) {
3758 r = -ENOMEM;
3759 goto out;
3760 }
3761
Avi Kivity58972972009-02-24 22:26:47 +02003762 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3763 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003764 r = -ENOMEM;
3765 goto out1;
3766 }
3767
Avi Kivity58972972009-02-24 22:26:47 +02003768 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
3769 if (!vmx_msr_bitmap_longmode) {
3770 r = -ENOMEM;
3771 goto out2;
3772 }
3773
He, Qingfdef3ad2007-04-30 09:45:24 +03003774 /*
3775 * Allow direct access to the PC debug port (it is often used for I/O
3776 * delays, but the vmexits simply slow things down).
3777 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003778 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
3779 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003780
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003781 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003782
Avi Kivity58972972009-02-24 22:26:47 +02003783 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
3784 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08003785
Sheng Yang2384d2b2008-01-17 15:14:33 +08003786 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3787
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003788 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003789 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02003790 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08003791
Avi Kivity58972972009-02-24 22:26:47 +02003792 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
3793 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
3794 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
3795 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
3796 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
3797 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03003798
Avi Kivity089d0342009-03-23 18:26:32 +02003799 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003800 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003801 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08003802 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08003803 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003804 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003805 kvm_enable_tdp();
3806 } else
3807 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003808
Avi Kivityc7addb92007-09-16 18:58:32 +02003809 if (bypass_guest_pf)
3810 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3811
Sheng Yang14394422008-04-28 12:24:45 +08003812 ept_sync_global();
3813
He, Qingfdef3ad2007-04-30 09:45:24 +03003814 return 0;
3815
Avi Kivity58972972009-02-24 22:26:47 +02003816out3:
3817 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08003818out2:
Avi Kivity58972972009-02-24 22:26:47 +02003819 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03003820out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003821 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003822out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003823 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003824 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003825}
3826
3827static void __exit vmx_exit(void)
3828{
Avi Kivity58972972009-02-24 22:26:47 +02003829 free_page((unsigned long)vmx_msr_bitmap_legacy);
3830 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003831 free_page((unsigned long)vmx_io_bitmap_b);
3832 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003833
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003834 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003835}
3836
3837module_init(vmx_init)
3838module_exit(vmx_exit)