blob: bb481330716f5eb92108aa4fbc4b93549211ceec [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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080035
Avi Kivity4ecac3f2008-05-13 13:23:38 +030036#define __ex(x) __kvm_handle_fault_on_reboot(x)
37
Avi Kivity6aa8b732006-12-10 02:21:36 -080038MODULE_AUTHOR("Qumranet");
39MODULE_LICENSE("GPL");
40
Avi Kivityc7addb92007-09-16 18:58:32 +020041static int bypass_guest_pf = 1;
42module_param(bypass_guest_pf, bool, 0);
43
Sheng Yang2384d2b2008-01-17 15:14:33 +080044static int enable_vpid = 1;
45module_param(enable_vpid, bool, 0);
46
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020047static int flexpriority_enabled = 1;
48module_param(flexpriority_enabled, bool, 0);
49
Sheng Yang14394422008-04-28 12:24:45 +080050static int enable_ept = 1;
Sheng Yangd56f5462008-04-25 10:13:16 +080051module_param(enable_ept, bool, 0);
52
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030053static int emulate_invalid_guest_state = 0;
54module_param(emulate_invalid_guest_state, bool, 0);
55
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040056struct vmcs {
57 u32 revision_id;
58 u32 abort;
59 char data[0];
60};
61
62struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100063 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030064 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030065 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040066 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030067 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020068 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040069 struct kvm_msr_entry *guest_msrs;
70 struct kvm_msr_entry *host_msrs;
71 int nmsrs;
72 int save_nmsrs;
73 int msr_offset_efer;
74#ifdef CONFIG_X86_64
75 int msr_offset_kernel_gs_base;
76#endif
77 struct vmcs *vmcs;
78 struct {
79 int loaded;
80 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020081 int gs_ldt_reload_needed;
82 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030083 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040084 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020085 struct {
86 struct {
87 bool pending;
88 u8 vector;
89 unsigned rip;
90 } irq;
91 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080092 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030093 bool emulation_required;
Avi Kivity8b3079a2009-01-05 12:10:54 +020094 enum emulation_result invalid_state_emulation_result;
Jan Kiszka3b86cd92008-09-26 09:30:57 +020095
96 /* Support for vnmi-less CPUs */
97 int soft_vnmi_blocked;
98 ktime_t entry_time;
99 s64 vnmi_blocked_time;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400100};
101
102static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
103{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000104 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400105}
106
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800107static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800108static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300109
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110static DEFINE_PER_CPU(struct vmcs *, vmxarea);
111static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300112static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113
He, Qingfdef3ad2007-04-30 09:45:24 +0300114static struct page *vmx_io_bitmap_a;
115static struct page *vmx_io_bitmap_b;
Sheng Yang25c5f222008-03-28 13:18:56 +0800116static struct page *vmx_msr_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300117
Sheng Yang2384d2b2008-01-17 15:14:33 +0800118static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
119static DEFINE_SPINLOCK(vmx_vpid_lock);
120
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300121static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800122 int size;
123 int order;
124 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300125 u32 pin_based_exec_ctrl;
126 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800127 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300128 u32 vmexit_ctrl;
129 u32 vmentry_ctrl;
130} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131
Hannes Ederefff9e52008-11-28 17:02:06 +0100132static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800133 u32 ept;
134 u32 vpid;
135} vmx_capability;
136
Avi Kivity6aa8b732006-12-10 02:21:36 -0800137#define VMX_SEGMENT_FIELD(seg) \
138 [VCPU_SREG_##seg] = { \
139 .selector = GUEST_##seg##_SELECTOR, \
140 .base = GUEST_##seg##_BASE, \
141 .limit = GUEST_##seg##_LIMIT, \
142 .ar_bytes = GUEST_##seg##_AR_BYTES, \
143 }
144
145static struct kvm_vmx_segment_field {
146 unsigned selector;
147 unsigned base;
148 unsigned limit;
149 unsigned ar_bytes;
150} kvm_vmx_segment_fields[] = {
151 VMX_SEGMENT_FIELD(CS),
152 VMX_SEGMENT_FIELD(DS),
153 VMX_SEGMENT_FIELD(ES),
154 VMX_SEGMENT_FIELD(FS),
155 VMX_SEGMENT_FIELD(GS),
156 VMX_SEGMENT_FIELD(SS),
157 VMX_SEGMENT_FIELD(TR),
158 VMX_SEGMENT_FIELD(LDTR),
159};
160
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300161/*
162 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
163 * away by decrementing the array size.
164 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800165static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800166#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
168#endif
169 MSR_EFER, MSR_K6_STAR,
170};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200171#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800172
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400173static void load_msrs(struct kvm_msr_entry *e, int n)
174{
175 int i;
176
177 for (i = 0; i < n; ++i)
178 wrmsrl(e[i].index, e[i].data);
179}
180
181static void save_msrs(struct kvm_msr_entry *e, int n)
182{
183 int i;
184
185 for (i = 0; i < n; ++i)
186 rdmsrl(e[i].index, e[i].data);
187}
188
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189static inline int is_page_fault(u32 intr_info)
190{
191 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
192 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100193 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800194}
195
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300196static inline int is_no_device(u32 intr_info)
197{
198 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
199 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100200 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300201}
202
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500203static inline int is_invalid_opcode(u32 intr_info)
204{
205 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
206 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100207 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500208}
209
Avi Kivity6aa8b732006-12-10 02:21:36 -0800210static inline int is_external_interrupt(u32 intr_info)
211{
212 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
213 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
214}
215
Sheng Yang25c5f222008-03-28 13:18:56 +0800216static inline int cpu_has_vmx_msr_bitmap(void)
217{
218 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS);
219}
220
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800221static inline int cpu_has_vmx_tpr_shadow(void)
222{
223 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
224}
225
226static inline int vm_need_tpr_shadow(struct kvm *kvm)
227{
228 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
229}
230
Sheng Yangf78e0e22007-10-29 09:40:42 +0800231static inline int cpu_has_secondary_exec_ctrls(void)
232{
233 return (vmcs_config.cpu_based_exec_ctrl &
234 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
235}
236
Avi Kivity774ead32007-12-26 13:57:04 +0200237static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800238{
Avi Kivity4c9fc8e2008-03-24 18:15:14 +0200239 return flexpriority_enabled
240 && (vmcs_config.cpu_based_2nd_exec_ctrl &
241 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800242}
243
Sheng Yangd56f5462008-04-25 10:13:16 +0800244static inline int cpu_has_vmx_invept_individual_addr(void)
245{
246 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT));
247}
248
249static inline int cpu_has_vmx_invept_context(void)
250{
251 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT));
252}
253
254static inline int cpu_has_vmx_invept_global(void)
255{
256 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT));
257}
258
259static inline int cpu_has_vmx_ept(void)
260{
261 return (vmcs_config.cpu_based_2nd_exec_ctrl &
262 SECONDARY_EXEC_ENABLE_EPT);
263}
264
265static inline int vm_need_ept(void)
266{
267 return (cpu_has_vmx_ept() && enable_ept);
268}
269
Sheng Yangf78e0e22007-10-29 09:40:42 +0800270static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
271{
272 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
273 (irqchip_in_kernel(kvm)));
274}
275
Sheng Yang2384d2b2008-01-17 15:14:33 +0800276static inline int cpu_has_vmx_vpid(void)
277{
278 return (vmcs_config.cpu_based_2nd_exec_ctrl &
279 SECONDARY_EXEC_ENABLE_VPID);
280}
281
Sheng Yangf08864b2008-05-15 18:23:25 +0800282static inline int cpu_has_virtual_nmis(void)
283{
284 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
285}
286
Rusty Russell8b9cf982007-07-30 16:31:43 +1000287static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800288{
289 int i;
290
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400291 for (i = 0; i < vmx->nmsrs; ++i)
292 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300293 return i;
294 return -1;
295}
296
Sheng Yang2384d2b2008-01-17 15:14:33 +0800297static inline void __invvpid(int ext, u16 vpid, gva_t gva)
298{
299 struct {
300 u64 vpid : 16;
301 u64 rsvd : 48;
302 u64 gva;
303 } operand = { vpid, 0, gva };
304
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300305 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800306 /* CF==1 or ZF==1 --> rc = -1 */
307 "; ja 1f ; ud2 ; 1:"
308 : : "a"(&operand), "c"(ext) : "cc", "memory");
309}
310
Sheng Yang14394422008-04-28 12:24:45 +0800311static inline void __invept(int ext, u64 eptp, gpa_t gpa)
312{
313 struct {
314 u64 eptp, gpa;
315 } operand = {eptp, gpa};
316
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300317 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800318 /* CF==1 or ZF==1 --> rc = -1 */
319 "; ja 1f ; ud2 ; 1:\n"
320 : : "a" (&operand), "c" (ext) : "cc", "memory");
321}
322
Rusty Russell8b9cf982007-07-30 16:31:43 +1000323static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300324{
325 int i;
326
Rusty Russell8b9cf982007-07-30 16:31:43 +1000327 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300328 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400329 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000330 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800331}
332
Avi Kivity6aa8b732006-12-10 02:21:36 -0800333static void vmcs_clear(struct vmcs *vmcs)
334{
335 u64 phys_addr = __pa(vmcs);
336 u8 error;
337
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300338 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800339 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
340 : "cc", "memory");
341 if (error)
342 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
343 vmcs, phys_addr);
344}
345
346static void __vcpu_clear(void *arg)
347{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000348 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800349 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800350
Rusty Russell8b9cf982007-07-30 16:31:43 +1000351 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400352 vmcs_clear(vmx->vmcs);
353 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800354 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800355 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300356 list_del(&vmx->local_vcpus_link);
357 vmx->vcpu.cpu = -1;
358 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359}
360
Rusty Russell8b9cf982007-07-30 16:31:43 +1000361static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800362{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200363 if (vmx->vcpu.cpu == -1)
364 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200365 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800366}
367
Sheng Yang2384d2b2008-01-17 15:14:33 +0800368static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
369{
370 if (vmx->vpid == 0)
371 return;
372
373 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
374}
375
Sheng Yang14394422008-04-28 12:24:45 +0800376static inline void ept_sync_global(void)
377{
378 if (cpu_has_vmx_invept_global())
379 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
380}
381
382static inline void ept_sync_context(u64 eptp)
383{
384 if (vm_need_ept()) {
385 if (cpu_has_vmx_invept_context())
386 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
387 else
388 ept_sync_global();
389 }
390}
391
392static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
393{
394 if (vm_need_ept()) {
395 if (cpu_has_vmx_invept_individual_addr())
396 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
397 eptp, gpa);
398 else
399 ept_sync_context(eptp);
400 }
401}
402
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403static unsigned long vmcs_readl(unsigned long field)
404{
405 unsigned long value;
406
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300407 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800408 : "=a"(value) : "d"(field) : "cc");
409 return value;
410}
411
412static u16 vmcs_read16(unsigned long field)
413{
414 return vmcs_readl(field);
415}
416
417static u32 vmcs_read32(unsigned long field)
418{
419 return vmcs_readl(field);
420}
421
422static u64 vmcs_read64(unsigned long field)
423{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800424#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800425 return vmcs_readl(field);
426#else
427 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
428#endif
429}
430
Avi Kivitye52de1b2007-01-05 16:36:56 -0800431static noinline void vmwrite_error(unsigned long field, unsigned long value)
432{
433 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
434 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
435 dump_stack();
436}
437
Avi Kivity6aa8b732006-12-10 02:21:36 -0800438static void vmcs_writel(unsigned long field, unsigned long value)
439{
440 u8 error;
441
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300442 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400443 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800444 if (unlikely(error))
445 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446}
447
448static void vmcs_write16(unsigned long field, u16 value)
449{
450 vmcs_writel(field, value);
451}
452
453static void vmcs_write32(unsigned long field, u32 value)
454{
455 vmcs_writel(field, value);
456}
457
458static void vmcs_write64(unsigned long field, u64 value)
459{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800460 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300461#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800462 asm volatile ("");
463 vmcs_writel(field+1, value >> 32);
464#endif
465}
466
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300467static void vmcs_clear_bits(unsigned long field, u32 mask)
468{
469 vmcs_writel(field, vmcs_readl(field) & ~mask);
470}
471
472static void vmcs_set_bits(unsigned long field, u32 mask)
473{
474 vmcs_writel(field, vmcs_readl(field) | mask);
475}
476
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300477static void update_exception_bitmap(struct kvm_vcpu *vcpu)
478{
479 u32 eb;
480
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500481 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300482 if (!vcpu->fpu_active)
483 eb |= 1u << NM_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100484 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
485 if (vcpu->guest_debug &
486 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
487 eb |= 1u << DB_VECTOR;
488 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
489 eb |= 1u << BP_VECTOR;
490 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800491 if (vcpu->arch.rmode.active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300492 eb = ~0;
Sheng Yang14394422008-04-28 12:24:45 +0800493 if (vm_need_ept())
494 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300495 vmcs_write32(EXCEPTION_BITMAP, eb);
496}
497
Avi Kivity33ed6322007-05-02 16:54:03 +0300498static void reload_tss(void)
499{
Avi Kivity33ed6322007-05-02 16:54:03 +0300500 /*
501 * VT restores TR but not its size. Useless.
502 */
503 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200504 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300505
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300506 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300507 descs = (void *)gdt.base;
508 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
509 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300510}
511
Rusty Russell8b9cf982007-07-30 16:31:43 +1000512static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300513{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400514 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300515 u64 host_efer = vmx->host_msrs[efer_offset].data;
516 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
517 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300518
Avi Kivity51c6cf62007-08-29 03:48:05 +0300519 if (efer_offset < 0)
520 return;
521 /*
522 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
523 * outside long mode
524 */
525 ignore_bits = EFER_NX | EFER_SCE;
526#ifdef CONFIG_X86_64
527 ignore_bits |= EFER_LMA | EFER_LME;
528 /* SCE is meaningful only in long mode on Intel */
529 if (guest_efer & EFER_LMA)
530 ignore_bits &= ~(u64)EFER_SCE;
531#endif
532 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
533 return;
534
535 vmx->host_state.guest_efer_loaded = 1;
536 guest_efer &= ~ignore_bits;
537 guest_efer |= host_efer & ignore_bits;
538 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000539 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300540}
541
Avi Kivity51c6cf62007-08-29 03:48:05 +0300542static void reload_host_efer(struct vcpu_vmx *vmx)
543{
544 if (vmx->host_state.guest_efer_loaded) {
545 vmx->host_state.guest_efer_loaded = 0;
546 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
547 }
548}
549
Avi Kivity04d2cc72007-09-10 18:10:54 +0300550static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300551{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300552 struct vcpu_vmx *vmx = to_vmx(vcpu);
553
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400554 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300555 return;
556
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400557 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300558 /*
559 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
560 * allow segment selectors with cpl > 0 or ti == 1.
561 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300562 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200563 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300564 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200565 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400566 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200567 vmx->host_state.fs_reload_needed = 0;
568 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300569 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200570 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300571 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300572 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573 if (!(vmx->host_state.gs_sel & 7))
574 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300575 else {
576 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200577 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300578 }
579
580#ifdef CONFIG_X86_64
581 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
582 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
583#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400584 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
585 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300586#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300587
588#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400589 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400590 save_msrs(vmx->host_msrs +
591 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400592
Avi Kivity707c0872007-05-02 17:33:43 +0300593#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400594 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300595 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300596}
597
Avi Kivitya9b21b62008-06-24 11:48:49 +0300598static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300599{
Avi Kivity15ad7142007-07-11 18:17:21 +0300600 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300601
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400602 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300603 return;
604
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200605 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400606 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200607 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300608 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200609 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300610 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300611 /*
612 * If we have to reload gs, we must take care to
613 * preserve our gs base.
614 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300615 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300616 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300617#ifdef CONFIG_X86_64
618 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
619#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300620 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300621 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200622 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400623 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
624 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300625 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300626}
627
Avi Kivitya9b21b62008-06-24 11:48:49 +0300628static void vmx_load_host_state(struct vcpu_vmx *vmx)
629{
630 preempt_disable();
631 __vmx_load_host_state(vmx);
632 preempt_enable();
633}
634
Avi Kivity6aa8b732006-12-10 02:21:36 -0800635/*
636 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
637 * vcpu mutex is already taken.
638 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300639static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800640{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400641 struct vcpu_vmx *vmx = to_vmx(vcpu);
642 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200643 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800644
Eddie Donga3d7f852007-09-03 16:15:12 +0300645 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000646 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300647 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800648 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300649 local_irq_disable();
650 list_add(&vmx->local_vcpus_link,
651 &per_cpu(vcpus_on_cpu, cpu));
652 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300653 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800654
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400655 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656 u8 error;
657
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400658 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300659 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800660 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
661 : "cc");
662 if (error)
663 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400664 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800665 }
666
667 if (vcpu->cpu != cpu) {
668 struct descriptor_table dt;
669 unsigned long sysenter_esp;
670
671 vcpu->cpu = cpu;
672 /*
673 * Linux uses per-cpu TSS and GDT, so set these when switching
674 * processors.
675 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300676 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
677 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800678 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
679
680 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
681 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300682
683 /*
684 * Make sure the time stamp counter is monotonous.
685 */
686 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200687 if (tsc_this < vcpu->arch.host_tsc) {
688 delta = vcpu->arch.host_tsc - tsc_this;
689 new_offset = vmcs_read64(TSC_OFFSET) + delta;
690 vmcs_write64(TSC_OFFSET, new_offset);
691 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800692 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800693}
694
695static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
696{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300697 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800698}
699
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300700static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
701{
702 if (vcpu->fpu_active)
703 return;
704 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000705 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800706 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000707 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300708 update_exception_bitmap(vcpu);
709}
710
711static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
712{
713 if (!vcpu->fpu_active)
714 return;
715 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000716 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300717 update_exception_bitmap(vcpu);
718}
719
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
721{
722 return vmcs_readl(GUEST_RFLAGS);
723}
724
725static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
726{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800727 if (vcpu->arch.rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100728 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729 vmcs_writel(GUEST_RFLAGS, rflags);
730}
731
732static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
733{
734 unsigned long rip;
735 u32 interruptibility;
736
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300737 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800738 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300739 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740
741 /*
742 * We emulated an instruction, so temporary interrupt blocking
743 * should be removed, if set.
744 */
745 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
746 if (interruptibility & 3)
747 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
748 interruptibility & ~3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800749 vcpu->arch.interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750}
751
Avi Kivity298101d2007-11-25 13:41:11 +0200752static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
753 bool has_error_code, u32 error_code)
754{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200755 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100756 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200757
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100758 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200759 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100760 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
761 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200762
763 if (vcpu->arch.rmode.active) {
764 vmx->rmode.irq.pending = true;
765 vmx->rmode.irq.vector = nr;
766 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100767 if (nr == BP_VECTOR || nr == OF_VECTOR)
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200768 vmx->rmode.irq.rip++;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100769 intr_info |= INTR_TYPE_SOFT_INTR;
770 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200771 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
772 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
773 return;
774 }
775
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100776 if (nr == BP_VECTOR || nr == OF_VECTOR) {
777 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
778 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
779 } else
780 intr_info |= INTR_TYPE_HARD_EXCEPTION;
781
782 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200783}
784
785static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
786{
Avi Kivity35920a32008-07-03 14:50:12 +0300787 return false;
Avi Kivity298101d2007-11-25 13:41:11 +0200788}
789
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790/*
Eddie Donga75beee2007-05-17 18:55:15 +0300791 * Swap MSR entry in host/guest MSR entry array.
792 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200793#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000794static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300795{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400796 struct kvm_msr_entry tmp;
797
798 tmp = vmx->guest_msrs[to];
799 vmx->guest_msrs[to] = vmx->guest_msrs[from];
800 vmx->guest_msrs[from] = tmp;
801 tmp = vmx->host_msrs[to];
802 vmx->host_msrs[to] = vmx->host_msrs[from];
803 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300804}
Gabriel C54e11fa2007-08-01 16:23:10 +0200805#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300806
807/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300808 * Set up the vmcs to automatically save and restore system
809 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
810 * mode, as fiddling with msrs is very expensive.
811 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000812static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300813{
Eddie Dong2cc51562007-05-21 07:28:09 +0300814 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300815
Avi Kivity33f9c502008-02-27 16:06:57 +0200816 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300817 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300818#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000819 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300820 int index;
821
Rusty Russell8b9cf982007-07-30 16:31:43 +1000822 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300823 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000824 move_msr_up(vmx, index, save_nmsrs++);
825 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300826 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000827 move_msr_up(vmx, index, save_nmsrs++);
828 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300829 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000830 move_msr_up(vmx, index, save_nmsrs++);
831 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300832 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000833 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300834 /*
835 * MSR_K6_STAR is only needed on long mode guests, and only
836 * if efer.sce is enabled.
837 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000838 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800839 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000840 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300841 }
Eddie Donga75beee2007-05-17 18:55:15 +0300842#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400843 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300844
Eddie Donga75beee2007-05-17 18:55:15 +0300845#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400846 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000847 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300848#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000849 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300850}
851
852/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853 * reads and returns guest's timestamp counter "register"
854 * guest_tsc = host_tsc + tsc_offset -- 21.3
855 */
856static u64 guest_read_tsc(void)
857{
858 u64 host_tsc, tsc_offset;
859
860 rdtscll(host_tsc);
861 tsc_offset = vmcs_read64(TSC_OFFSET);
862 return host_tsc + tsc_offset;
863}
864
865/*
866 * writes 'guest_tsc' into guest's timestamp counter "register"
867 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
868 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100869static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
872}
873
Avi Kivity6aa8b732006-12-10 02:21:36 -0800874/*
875 * Reads an msr value (of 'msr_index') into 'pdata'.
876 * Returns 0 on success, non-0 otherwise.
877 * Assumes vcpu_load() was already called.
878 */
879static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
880{
881 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400882 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883
884 if (!pdata) {
885 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
886 return -EINVAL;
887 }
888
889 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800890#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 case MSR_FS_BASE:
892 data = vmcs_readl(GUEST_FS_BASE);
893 break;
894 case MSR_GS_BASE:
895 data = vmcs_readl(GUEST_GS_BASE);
896 break;
897 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800898 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899#endif
900 case MSR_IA32_TIME_STAMP_COUNTER:
901 data = guest_read_tsc();
902 break;
903 case MSR_IA32_SYSENTER_CS:
904 data = vmcs_read32(GUEST_SYSENTER_CS);
905 break;
906 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200907 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 break;
909 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200910 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 default:
Avi Kivity516a1a72009-02-15 02:32:07 +0200913 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +1000914 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800915 if (msr) {
916 data = msr->data;
917 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800919 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 }
921
922 *pdata = data;
923 return 0;
924}
925
926/*
927 * Writes msr value into into the appropriate "register".
928 * Returns 0 on success, non-0 otherwise.
929 * Assumes vcpu_load() was already called.
930 */
931static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
932{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400933 struct vcpu_vmx *vmx = to_vmx(vcpu);
934 struct kvm_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100935 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +0300936 int ret = 0;
937
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -0800939 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300940 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300941 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300942 break;
Avi Kivity16175a72009-03-23 22:13:44 +0200943#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944 case MSR_FS_BASE:
945 vmcs_writel(GUEST_FS_BASE, data);
946 break;
947 case MSR_GS_BASE:
948 vmcs_writel(GUEST_GS_BASE, data);
949 break;
950#endif
951 case MSR_IA32_SYSENTER_CS:
952 vmcs_write32(GUEST_SYSENTER_CS, data);
953 break;
954 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200955 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956 break;
957 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200958 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200960 case MSR_IA32_TIME_STAMP_COUNTER:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100961 rdtscll(host_tsc);
962 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +0200964 case MSR_P6_PERFCTR0:
965 case MSR_P6_PERFCTR1:
966 case MSR_P6_EVNTSEL0:
967 case MSR_P6_EVNTSEL1:
968 /*
969 * Just discard all writes to the performance counters; this
970 * should keep both older linux and windows 64-bit guests
971 * happy
972 */
973 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
974
975 break;
Sheng Yang468d4722008-10-09 16:01:55 +0800976 case MSR_IA32_CR_PAT:
977 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
978 vmcs_write64(GUEST_IA32_PAT, data);
979 vcpu->arch.pat = data;
980 break;
981 }
982 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300984 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000985 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800986 if (msr) {
987 msr->data = data;
988 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300990 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 }
992
Eddie Dong2cc51562007-05-21 07:28:09 +0300993 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994}
995
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300996static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300998 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
999 switch (reg) {
1000 case VCPU_REGS_RSP:
1001 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1002 break;
1003 case VCPU_REGS_RIP:
1004 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1005 break;
1006 default:
1007 break;
1008 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009}
1010
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001011static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001013 int old_debug = vcpu->guest_debug;
1014 unsigned long flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001016 vcpu->guest_debug = dbg->control;
1017 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
1018 vcpu->guest_debug = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001020 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1021 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1022 else
1023 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1024
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001025 flags = vmcs_readl(GUEST_RFLAGS);
1026 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1027 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1028 else if (old_debug & KVM_GUESTDBG_SINGLESTEP)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001030 vmcs_writel(GUEST_RFLAGS, flags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001032 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033
1034 return 0;
1035}
1036
Eddie Dong2a8067f2007-08-06 16:29:07 +03001037static int vmx_get_irq(struct kvm_vcpu *vcpu)
1038{
Avi Kivityf7d92382008-07-03 16:14:28 +03001039 if (!vcpu->arch.interrupt.pending)
1040 return -1;
1041 return vcpu->arch.interrupt.nr;
Eddie Dong2a8067f2007-08-06 16:29:07 +03001042}
1043
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044static __init int cpu_has_kvm_support(void)
1045{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001046 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001047}
1048
1049static __init int vmx_disabled_by_bios(void)
1050{
1051 u64 msr;
1052
1053 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001054 return (msr & (FEATURE_CONTROL_LOCKED |
1055 FEATURE_CONTROL_VMXON_ENABLED))
1056 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001057 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058}
1059
Avi Kivity774c47f2007-02-12 00:54:47 -08001060static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061{
1062 int cpu = raw_smp_processor_id();
1063 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1064 u64 old;
1065
Avi Kivity543e4242008-05-13 16:22:47 +03001066 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001068 if ((old & (FEATURE_CONTROL_LOCKED |
1069 FEATURE_CONTROL_VMXON_ENABLED))
1070 != (FEATURE_CONTROL_LOCKED |
1071 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001073 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001074 FEATURE_CONTROL_LOCKED |
1075 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001076 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001077 asm volatile (ASM_VMX_VMXON_RAX
1078 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079 : "memory", "cc");
1080}
1081
Avi Kivity543e4242008-05-13 16:22:47 +03001082static void vmclear_local_vcpus(void)
1083{
1084 int cpu = raw_smp_processor_id();
1085 struct vcpu_vmx *vmx, *n;
1086
1087 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1088 local_vcpus_link)
1089 __vcpu_clear(vmx);
1090}
1091
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001092
1093/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1094 * tricks.
1095 */
1096static void kvm_cpu_vmxoff(void)
1097{
1098 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1099 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1100}
1101
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102static void hardware_disable(void *garbage)
1103{
Avi Kivity543e4242008-05-13 16:22:47 +03001104 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001105 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106}
1107
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001108static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001109 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001110{
1111 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001112 u32 ctl = ctl_min | ctl_opt;
1113
1114 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1115
1116 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1117 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1118
1119 /* Ensure minimum (required) set of control bits are supported. */
1120 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001121 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001122
1123 *result = ctl;
1124 return 0;
1125}
1126
Yang, Sheng002c7f72007-07-31 14:23:01 +03001127static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001128{
1129 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001130 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001131 u32 _pin_based_exec_control = 0;
1132 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001133 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001134 u32 _vmexit_control = 0;
1135 u32 _vmentry_control = 0;
1136
1137 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001138 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001139 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1140 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001141 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001142
1143 min = CPU_BASED_HLT_EXITING |
1144#ifdef CONFIG_X86_64
1145 CPU_BASED_CR8_LOAD_EXITING |
1146 CPU_BASED_CR8_STORE_EXITING |
1147#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001148 CPU_BASED_CR3_LOAD_EXITING |
1149 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001150 CPU_BASED_USE_IO_BITMAPS |
1151 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001152 CPU_BASED_USE_TSC_OFFSETING |
1153 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001154 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001155 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001156 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001157 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1158 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001159 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001160#ifdef CONFIG_X86_64
1161 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1162 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1163 ~CPU_BASED_CR8_STORE_EXITING;
1164#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001165 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001166 min2 = 0;
1167 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001168 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001169 SECONDARY_EXEC_ENABLE_VPID |
1170 SECONDARY_EXEC_ENABLE_EPT;
1171 if (adjust_vmx_controls(min2, opt2,
1172 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001173 &_cpu_based_2nd_exec_control) < 0)
1174 return -EIO;
1175 }
1176#ifndef CONFIG_X86_64
1177 if (!(_cpu_based_2nd_exec_control &
1178 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1179 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1180#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001181 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001182 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1183 enabled */
Sheng Yangd56f5462008-04-25 10:13:16 +08001184 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001185 CPU_BASED_CR3_STORE_EXITING |
1186 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001187 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1188 &_cpu_based_exec_control) < 0)
1189 return -EIO;
1190 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1191 vmx_capability.ept, vmx_capability.vpid);
1192 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001193
1194 min = 0;
1195#ifdef CONFIG_X86_64
1196 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1197#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001198 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001199 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1200 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001201 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001202
Sheng Yang468d4722008-10-09 16:01:55 +08001203 min = 0;
1204 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001205 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1206 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001207 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001208
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001209 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001210
1211 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1212 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001213 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001214
1215#ifdef CONFIG_X86_64
1216 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1217 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001218 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001219#endif
1220
1221 /* Require Write-Back (WB) memory type for VMCS accesses. */
1222 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001223 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001224
Yang, Sheng002c7f72007-07-31 14:23:01 +03001225 vmcs_conf->size = vmx_msr_high & 0x1fff;
1226 vmcs_conf->order = get_order(vmcs_config.size);
1227 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001228
Yang, Sheng002c7f72007-07-31 14:23:01 +03001229 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1230 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001231 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001232 vmcs_conf->vmexit_ctrl = _vmexit_control;
1233 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001234
1235 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001236}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001237
1238static struct vmcs *alloc_vmcs_cpu(int cpu)
1239{
1240 int node = cpu_to_node(cpu);
1241 struct page *pages;
1242 struct vmcs *vmcs;
1243
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001244 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001245 if (!pages)
1246 return NULL;
1247 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001248 memset(vmcs, 0, vmcs_config.size);
1249 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001250 return vmcs;
1251}
1252
1253static struct vmcs *alloc_vmcs(void)
1254{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001255 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001256}
1257
1258static void free_vmcs(struct vmcs *vmcs)
1259{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001260 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001261}
1262
Sam Ravnborg39959582007-06-01 00:47:13 -07001263static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001264{
1265 int cpu;
1266
1267 for_each_online_cpu(cpu)
1268 free_vmcs(per_cpu(vmxarea, cpu));
1269}
1270
Avi Kivity6aa8b732006-12-10 02:21:36 -08001271static __init int alloc_kvm_area(void)
1272{
1273 int cpu;
1274
1275 for_each_online_cpu(cpu) {
1276 struct vmcs *vmcs;
1277
1278 vmcs = alloc_vmcs_cpu(cpu);
1279 if (!vmcs) {
1280 free_kvm_area();
1281 return -ENOMEM;
1282 }
1283
1284 per_cpu(vmxarea, cpu) = vmcs;
1285 }
1286 return 0;
1287}
1288
1289static __init int hardware_setup(void)
1290{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001291 if (setup_vmcs_config(&vmcs_config) < 0)
1292 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001293
1294 if (boot_cpu_has(X86_FEATURE_NX))
1295 kvm_enable_efer_bits(EFER_NX);
1296
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 return alloc_kvm_area();
1298}
1299
1300static __exit void hardware_unsetup(void)
1301{
1302 free_kvm_area();
1303}
1304
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1306{
1307 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1308
Avi Kivity6af11b92007-03-19 13:18:10 +02001309 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310 vmcs_write16(sf->selector, save->selector);
1311 vmcs_writel(sf->base, save->base);
1312 vmcs_write32(sf->limit, save->limit);
1313 vmcs_write32(sf->ar_bytes, save->ar);
1314 } else {
1315 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1316 << AR_DPL_SHIFT;
1317 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1318 }
1319}
1320
1321static void enter_pmode(struct kvm_vcpu *vcpu)
1322{
1323 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001324 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001326 vmx->emulation_required = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001327 vcpu->arch.rmode.active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001328
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001329 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1330 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1331 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332
1333 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001334 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001335 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001336 vmcs_writel(GUEST_RFLAGS, flags);
1337
Rusty Russell66aee912007-07-17 23:34:16 +10001338 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1339 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340
1341 update_exception_bitmap(vcpu);
1342
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001343 if (emulate_invalid_guest_state)
1344 return;
1345
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001346 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1347 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1348 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1349 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350
1351 vmcs_write16(GUEST_SS_SELECTOR, 0);
1352 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1353
1354 vmcs_write16(GUEST_CS_SELECTOR,
1355 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1356 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1357}
1358
Mike Dayd77c26f2007-10-08 09:02:08 -04001359static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001360{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001361 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001362 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1363 kvm->memslots[0].npages - 3;
1364 return base_gfn << PAGE_SHIFT;
1365 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001366 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001367}
1368
1369static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1370{
1371 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1372
1373 save->selector = vmcs_read16(sf->selector);
1374 save->base = vmcs_readl(sf->base);
1375 save->limit = vmcs_read32(sf->limit);
1376 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001377 vmcs_write16(sf->selector, save->base >> 4);
1378 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379 vmcs_write32(sf->limit, 0xffff);
1380 vmcs_write32(sf->ar_bytes, 0xf3);
1381}
1382
1383static void enter_rmode(struct kvm_vcpu *vcpu)
1384{
1385 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001386 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001388 vmx->emulation_required = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001389 vcpu->arch.rmode.active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001391 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1393
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001394 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1396
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001397 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1399
1400 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001401 vcpu->arch.rmode.save_iopl
1402 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001404 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001405
1406 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001407 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 update_exception_bitmap(vcpu);
1409
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001410 if (emulate_invalid_guest_state)
1411 goto continue_rmode;
1412
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1414 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1415 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1416
1417 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001418 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001419 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1420 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1422
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001423 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1424 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1425 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1426 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001427
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001428continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001429 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001430 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001431}
1432
Amit Shah401d10d2009-02-20 22:53:37 +05301433static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1434{
1435 struct vcpu_vmx *vmx = to_vmx(vcpu);
1436 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1437
1438 vcpu->arch.shadow_efer = efer;
1439 if (!msr)
1440 return;
1441 if (efer & EFER_LMA) {
1442 vmcs_write32(VM_ENTRY_CONTROLS,
1443 vmcs_read32(VM_ENTRY_CONTROLS) |
1444 VM_ENTRY_IA32E_MODE);
1445 msr->data = efer;
1446 } else {
1447 vmcs_write32(VM_ENTRY_CONTROLS,
1448 vmcs_read32(VM_ENTRY_CONTROLS) &
1449 ~VM_ENTRY_IA32E_MODE);
1450
1451 msr->data = efer & ~EFER_LME;
1452 }
1453 setup_msrs(vmx);
1454}
1455
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001456#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001457
1458static void enter_lmode(struct kvm_vcpu *vcpu)
1459{
1460 u32 guest_tr_ar;
1461
1462 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1463 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1464 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001465 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466 vmcs_write32(GUEST_TR_AR_BYTES,
1467 (guest_tr_ar & ~AR_TYPE_MASK)
1468 | AR_TYPE_BUSY_64_TSS);
1469 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001470 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301471 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472}
1473
1474static void exit_lmode(struct kvm_vcpu *vcpu)
1475{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001476 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477
1478 vmcs_write32(VM_ENTRY_CONTROLS,
1479 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001480 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001481}
1482
1483#endif
1484
Sheng Yang2384d2b2008-01-17 15:14:33 +08001485static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1486{
1487 vpid_sync_vcpu_all(to_vmx(vcpu));
Sheng Yang4e1096d2008-07-06 19:16:51 +08001488 if (vm_need_ept())
1489 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001490}
1491
Anthony Liguori25c4c272007-04-27 09:29:21 +03001492static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001493{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001494 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1495 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001496}
1497
Sheng Yang14394422008-04-28 12:24:45 +08001498static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1499{
1500 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1501 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1502 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1503 return;
1504 }
1505 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1506 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1507 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1508 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1509 }
1510}
1511
1512static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1513
1514static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1515 unsigned long cr0,
1516 struct kvm_vcpu *vcpu)
1517{
1518 if (!(cr0 & X86_CR0_PG)) {
1519 /* From paging/starting to nonpaging */
1520 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001521 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001522 (CPU_BASED_CR3_LOAD_EXITING |
1523 CPU_BASED_CR3_STORE_EXITING));
1524 vcpu->arch.cr0 = cr0;
1525 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1526 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1527 *hw_cr0 &= ~X86_CR0_WP;
1528 } else if (!is_paging(vcpu)) {
1529 /* From nonpaging to paging */
1530 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001531 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001532 ~(CPU_BASED_CR3_LOAD_EXITING |
1533 CPU_BASED_CR3_STORE_EXITING));
1534 vcpu->arch.cr0 = cr0;
1535 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1536 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1537 *hw_cr0 &= ~X86_CR0_WP;
1538 }
1539}
1540
1541static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1542 struct kvm_vcpu *vcpu)
1543{
1544 if (!is_paging(vcpu)) {
1545 *hw_cr4 &= ~X86_CR4_PAE;
1546 *hw_cr4 |= X86_CR4_PSE;
1547 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1548 *hw_cr4 &= ~X86_CR4_PAE;
1549}
1550
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1552{
Sheng Yang14394422008-04-28 12:24:45 +08001553 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1554 KVM_VM_CR0_ALWAYS_ON;
1555
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001556 vmx_fpu_deactivate(vcpu);
1557
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001558 if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559 enter_pmode(vcpu);
1560
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001561 if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562 enter_rmode(vcpu);
1563
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001564#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001565 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001566 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001568 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569 exit_lmode(vcpu);
1570 }
1571#endif
1572
Sheng Yang14394422008-04-28 12:24:45 +08001573 if (vm_need_ept())
1574 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1575
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001577 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001578 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001579
Rusty Russell707d92f2007-07-17 23:19:08 +10001580 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001581 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582}
1583
Sheng Yang14394422008-04-28 12:24:45 +08001584static u64 construct_eptp(unsigned long root_hpa)
1585{
1586 u64 eptp;
1587
1588 /* TODO write the value reading from MSR */
1589 eptp = VMX_EPT_DEFAULT_MT |
1590 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1591 eptp |= (root_hpa & PAGE_MASK);
1592
1593 return eptp;
1594}
1595
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1597{
Sheng Yang14394422008-04-28 12:24:45 +08001598 unsigned long guest_cr3;
1599 u64 eptp;
1600
1601 guest_cr3 = cr3;
1602 if (vm_need_ept()) {
1603 eptp = construct_eptp(cr3);
1604 vmcs_write64(EPT_POINTER, eptp);
1605 ept_sync_context(eptp);
1606 ept_load_pdptrs(vcpu);
1607 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1608 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1609 }
1610
Sheng Yang2384d2b2008-01-17 15:14:33 +08001611 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001612 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001613 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001614 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615}
1616
1617static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1618{
Sheng Yang14394422008-04-28 12:24:45 +08001619 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.active ?
1620 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1621
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001622 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08001623 if (vm_need_ept())
1624 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1625
1626 vmcs_writel(CR4_READ_SHADOW, cr4);
1627 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628}
1629
Avi Kivity6aa8b732006-12-10 02:21:36 -08001630static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1631{
1632 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1633
1634 return vmcs_readl(sf->base);
1635}
1636
1637static void vmx_get_segment(struct kvm_vcpu *vcpu,
1638 struct kvm_segment *var, int seg)
1639{
1640 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1641 u32 ar;
1642
1643 var->base = vmcs_readl(sf->base);
1644 var->limit = vmcs_read32(sf->limit);
1645 var->selector = vmcs_read16(sf->selector);
1646 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001647 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648 ar = 0;
1649 var->type = ar & 15;
1650 var->s = (ar >> 4) & 1;
1651 var->dpl = (ar >> 5) & 3;
1652 var->present = (ar >> 7) & 1;
1653 var->avl = (ar >> 12) & 1;
1654 var->l = (ar >> 13) & 1;
1655 var->db = (ar >> 14) & 1;
1656 var->g = (ar >> 15) & 1;
1657 var->unusable = (ar >> 16) & 1;
1658}
1659
Izik Eidus2e4d2652008-03-24 19:38:34 +02001660static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1661{
1662 struct kvm_segment kvm_seg;
1663
1664 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1665 return 0;
1666
1667 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1668 return 3;
1669
1670 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1671 return kvm_seg.selector & 3;
1672}
1673
Avi Kivity653e3102007-05-07 10:55:37 +03001674static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001675{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676 u32 ar;
1677
Avi Kivity653e3102007-05-07 10:55:37 +03001678 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001679 ar = 1 << 16;
1680 else {
1681 ar = var->type & 15;
1682 ar |= (var->s & 1) << 4;
1683 ar |= (var->dpl & 3) << 5;
1684 ar |= (var->present & 1) << 7;
1685 ar |= (var->avl & 1) << 12;
1686 ar |= (var->l & 1) << 13;
1687 ar |= (var->db & 1) << 14;
1688 ar |= (var->g & 1) << 15;
1689 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001690 if (ar == 0) /* a 0 value means unusable */
1691 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001692
1693 return ar;
1694}
1695
1696static void vmx_set_segment(struct kvm_vcpu *vcpu,
1697 struct kvm_segment *var, int seg)
1698{
1699 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1700 u32 ar;
1701
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001702 if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
1703 vcpu->arch.rmode.tr.selector = var->selector;
1704 vcpu->arch.rmode.tr.base = var->base;
1705 vcpu->arch.rmode.tr.limit = var->limit;
1706 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001707 return;
1708 }
1709 vmcs_writel(sf->base, var->base);
1710 vmcs_write32(sf->limit, var->limit);
1711 vmcs_write16(sf->selector, var->selector);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001712 if (vcpu->arch.rmode.active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001713 /*
1714 * Hack real-mode segments into vm86 compatibility.
1715 */
1716 if (var->base == 0xffff0000 && var->selector == 0xf000)
1717 vmcs_writel(sf->base, 0xf0000);
1718 ar = 0xf3;
1719 } else
1720 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001721 vmcs_write32(sf->ar_bytes, ar);
1722}
1723
Avi Kivity6aa8b732006-12-10 02:21:36 -08001724static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1725{
1726 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1727
1728 *db = (ar >> 14) & 1;
1729 *l = (ar >> 13) & 1;
1730}
1731
1732static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1733{
1734 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1735 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1736}
1737
1738static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1739{
1740 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1741 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1742}
1743
1744static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1745{
1746 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1747 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1748}
1749
1750static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1751{
1752 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1753 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1754}
1755
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001756static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1757{
1758 struct kvm_segment var;
1759 u32 ar;
1760
1761 vmx_get_segment(vcpu, &var, seg);
1762 ar = vmx_segment_access_rights(&var);
1763
1764 if (var.base != (var.selector << 4))
1765 return false;
1766 if (var.limit != 0xffff)
1767 return false;
1768 if (ar != 0xf3)
1769 return false;
1770
1771 return true;
1772}
1773
1774static bool code_segment_valid(struct kvm_vcpu *vcpu)
1775{
1776 struct kvm_segment cs;
1777 unsigned int cs_rpl;
1778
1779 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1780 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1781
Avi Kivity1872a3f2009-01-04 23:26:52 +02001782 if (cs.unusable)
1783 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001784 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1785 return false;
1786 if (!cs.s)
1787 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001788 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001789 if (cs.dpl > cs_rpl)
1790 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001791 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001792 if (cs.dpl != cs_rpl)
1793 return false;
1794 }
1795 if (!cs.present)
1796 return false;
1797
1798 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1799 return true;
1800}
1801
1802static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1803{
1804 struct kvm_segment ss;
1805 unsigned int ss_rpl;
1806
1807 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1808 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1809
Avi Kivity1872a3f2009-01-04 23:26:52 +02001810 if (ss.unusable)
1811 return true;
1812 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001813 return false;
1814 if (!ss.s)
1815 return false;
1816 if (ss.dpl != ss_rpl) /* DPL != RPL */
1817 return false;
1818 if (!ss.present)
1819 return false;
1820
1821 return true;
1822}
1823
1824static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1825{
1826 struct kvm_segment var;
1827 unsigned int rpl;
1828
1829 vmx_get_segment(vcpu, &var, seg);
1830 rpl = var.selector & SELECTOR_RPL_MASK;
1831
Avi Kivity1872a3f2009-01-04 23:26:52 +02001832 if (var.unusable)
1833 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001834 if (!var.s)
1835 return false;
1836 if (!var.present)
1837 return false;
1838 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1839 if (var.dpl < rpl) /* DPL < RPL */
1840 return false;
1841 }
1842
1843 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1844 * rights flags
1845 */
1846 return true;
1847}
1848
1849static bool tr_valid(struct kvm_vcpu *vcpu)
1850{
1851 struct kvm_segment tr;
1852
1853 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1854
Avi Kivity1872a3f2009-01-04 23:26:52 +02001855 if (tr.unusable)
1856 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001857 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1858 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001859 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001860 return false;
1861 if (!tr.present)
1862 return false;
1863
1864 return true;
1865}
1866
1867static bool ldtr_valid(struct kvm_vcpu *vcpu)
1868{
1869 struct kvm_segment ldtr;
1870
1871 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
1872
Avi Kivity1872a3f2009-01-04 23:26:52 +02001873 if (ldtr.unusable)
1874 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001875 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1876 return false;
1877 if (ldtr.type != 2)
1878 return false;
1879 if (!ldtr.present)
1880 return false;
1881
1882 return true;
1883}
1884
1885static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
1886{
1887 struct kvm_segment cs, ss;
1888
1889 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1890 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1891
1892 return ((cs.selector & SELECTOR_RPL_MASK) ==
1893 (ss.selector & SELECTOR_RPL_MASK));
1894}
1895
1896/*
1897 * Check if guest state is valid. Returns true if valid, false if
1898 * not.
1899 * We assume that registers are always usable
1900 */
1901static bool guest_state_valid(struct kvm_vcpu *vcpu)
1902{
1903 /* real mode guest state checks */
1904 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
1905 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
1906 return false;
1907 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
1908 return false;
1909 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
1910 return false;
1911 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
1912 return false;
1913 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
1914 return false;
1915 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
1916 return false;
1917 } else {
1918 /* protected mode guest state checks */
1919 if (!cs_ss_rpl_check(vcpu))
1920 return false;
1921 if (!code_segment_valid(vcpu))
1922 return false;
1923 if (!stack_segment_valid(vcpu))
1924 return false;
1925 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
1926 return false;
1927 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
1928 return false;
1929 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
1930 return false;
1931 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
1932 return false;
1933 if (!tr_valid(vcpu))
1934 return false;
1935 if (!ldtr_valid(vcpu))
1936 return false;
1937 }
1938 /* TODO:
1939 * - Add checks on RIP
1940 * - Add checks on RFLAGS
1941 */
1942
1943 return true;
1944}
1945
Mike Dayd77c26f2007-10-08 09:02:08 -04001946static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001947{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001948 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001949 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001950 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001951 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001952
Izik Eidus195aefd2007-10-01 22:14:18 +02001953 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1954 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001955 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001956 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08001957 r = kvm_write_guest_page(kvm, fn++, &data,
1958 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02001959 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001960 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001961 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1962 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001963 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001964 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1965 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001966 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001967 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001968 r = kvm_write_guest_page(kvm, fn, &data,
1969 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1970 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02001971 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001972 goto out;
1973
1974 ret = 1;
1975out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001976 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977}
1978
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001979static int init_rmode_identity_map(struct kvm *kvm)
1980{
1981 int i, r, ret;
1982 pfn_t identity_map_pfn;
1983 u32 tmp;
1984
1985 if (!vm_need_ept())
1986 return 1;
1987 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
1988 printk(KERN_ERR "EPT: identity-mapping pagetable "
1989 "haven't been allocated!\n");
1990 return 0;
1991 }
1992 if (likely(kvm->arch.ept_identity_pagetable_done))
1993 return 1;
1994 ret = 0;
1995 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
1996 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
1997 if (r < 0)
1998 goto out;
1999 /* Set up identity-mapping pagetable for EPT in real mode */
2000 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2001 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2002 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2003 r = kvm_write_guest_page(kvm, identity_map_pfn,
2004 &tmp, i * sizeof(tmp), sizeof(tmp));
2005 if (r < 0)
2006 goto out;
2007 }
2008 kvm->arch.ept_identity_pagetable_done = true;
2009 ret = 1;
2010out:
2011 return ret;
2012}
2013
Avi Kivity6aa8b732006-12-10 02:21:36 -08002014static void seg_setup(int seg)
2015{
2016 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2017
2018 vmcs_write16(sf->selector, 0);
2019 vmcs_writel(sf->base, 0);
2020 vmcs_write32(sf->limit, 0xffff);
Avi Kivitya16b20d2008-08-20 15:48:27 +03002021 vmcs_write32(sf->ar_bytes, 0xf3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002022}
2023
Sheng Yangf78e0e22007-10-29 09:40:42 +08002024static int alloc_apic_access_page(struct kvm *kvm)
2025{
2026 struct kvm_userspace_memory_region kvm_userspace_mem;
2027 int r = 0;
2028
Izik Eidus72dc67a2008-02-10 18:04:15 +02002029 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002030 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002031 goto out;
2032 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2033 kvm_userspace_mem.flags = 0;
2034 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2035 kvm_userspace_mem.memory_size = PAGE_SIZE;
2036 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2037 if (r)
2038 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002039
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002040 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002041out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002042 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002043 return r;
2044}
2045
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002046static int alloc_identity_pagetable(struct kvm *kvm)
2047{
2048 struct kvm_userspace_memory_region kvm_userspace_mem;
2049 int r = 0;
2050
2051 down_write(&kvm->slots_lock);
2052 if (kvm->arch.ept_identity_pagetable)
2053 goto out;
2054 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2055 kvm_userspace_mem.flags = 0;
2056 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
2057 kvm_userspace_mem.memory_size = PAGE_SIZE;
2058 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2059 if (r)
2060 goto out;
2061
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002062 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
2063 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002064out:
2065 up_write(&kvm->slots_lock);
2066 return r;
2067}
2068
Sheng Yang2384d2b2008-01-17 15:14:33 +08002069static void allocate_vpid(struct vcpu_vmx *vmx)
2070{
2071 int vpid;
2072
2073 vmx->vpid = 0;
2074 if (!enable_vpid || !cpu_has_vmx_vpid())
2075 return;
2076 spin_lock(&vmx_vpid_lock);
2077 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2078 if (vpid < VMX_NR_VPIDS) {
2079 vmx->vpid = vpid;
2080 __set_bit(vpid, vmx_vpid_bitmap);
2081 }
2082 spin_unlock(&vmx_vpid_lock);
2083}
2084
Harvey Harrison8b2cf732008-04-27 12:14:13 -07002085static void vmx_disable_intercept_for_msr(struct page *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002086{
2087 void *va;
2088
2089 if (!cpu_has_vmx_msr_bitmap())
2090 return;
2091
2092 /*
2093 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2094 * have the write-low and read-high bitmap offsets the wrong way round.
2095 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2096 */
2097 va = kmap(msr_bitmap);
2098 if (msr <= 0x1fff) {
2099 __clear_bit(msr, va + 0x000); /* read-low */
2100 __clear_bit(msr, va + 0x800); /* write-low */
2101 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2102 msr &= 0x1fff;
2103 __clear_bit(msr, va + 0x400); /* read-high */
2104 __clear_bit(msr, va + 0xc00); /* write-high */
2105 }
2106 kunmap(msr_bitmap);
2107}
2108
Avi Kivity6aa8b732006-12-10 02:21:36 -08002109/*
2110 * Sets up the vmcs for emulated real mode.
2111 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002112static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002113{
Sheng Yang468d4722008-10-09 16:01:55 +08002114 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002116 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002117 unsigned long a;
2118 struct descriptor_table dt;
2119 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002120 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002121 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03002124 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
2125 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002126
Sheng Yang25c5f222008-03-28 13:18:56 +08002127 if (cpu_has_vmx_msr_bitmap())
2128 vmcs_write64(MSR_BITMAP, page_to_phys(vmx_msr_bitmap));
2129
Avi Kivity6aa8b732006-12-10 02:21:36 -08002130 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2131
Avi Kivity6aa8b732006-12-10 02:21:36 -08002132 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002133 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2134 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002135
2136 exec_control = vmcs_config.cpu_based_exec_ctrl;
2137 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2138 exec_control &= ~CPU_BASED_TPR_SHADOW;
2139#ifdef CONFIG_X86_64
2140 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2141 CPU_BASED_CR8_LOAD_EXITING;
2142#endif
2143 }
Sheng Yangd56f5462008-04-25 10:13:16 +08002144 if (!vm_need_ept())
2145 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002146 CPU_BASED_CR3_LOAD_EXITING |
2147 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002148 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002149
Sheng Yang83ff3b92007-11-21 14:33:25 +08002150 if (cpu_has_secondary_exec_ctrls()) {
2151 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2152 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2153 exec_control &=
2154 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002155 if (vmx->vpid == 0)
2156 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yangd56f5462008-04-25 10:13:16 +08002157 if (!vm_need_ept())
2158 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002159 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2160 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002161
Avi Kivityc7addb92007-09-16 18:58:32 +02002162 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2163 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002164 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2165
2166 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2167 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2168 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2169
2170 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2171 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2172 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002173 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2174 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002176#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002177 rdmsrl(MSR_FS_BASE, a);
2178 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2179 rdmsrl(MSR_GS_BASE, a);
2180 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2181#else
2182 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2183 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2184#endif
2185
2186 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2187
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002188 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002189 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2190
Mike Dayd77c26f2007-10-08 09:02:08 -04002191 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002192 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002193 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2194 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2195 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196
2197 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2198 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2199 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2200 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2201 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2202 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2203
Sheng Yang468d4722008-10-09 16:01:55 +08002204 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2205 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2206 host_pat = msr_low | ((u64) msr_high << 32);
2207 vmcs_write64(HOST_IA32_PAT, host_pat);
2208 }
2209 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2210 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2211 host_pat = msr_low | ((u64) msr_high << 32);
2212 /* Write the default value follow host pat */
2213 vmcs_write64(GUEST_IA32_PAT, host_pat);
2214 /* Keep arch.pat sync with GUEST_IA32_PAT */
2215 vmx->vcpu.arch.pat = host_pat;
2216 }
2217
Avi Kivity6aa8b732006-12-10 02:21:36 -08002218 for (i = 0; i < NR_VMX_MSR; ++i) {
2219 u32 index = vmx_msr_index[i];
2220 u32 data_low, data_high;
2221 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002222 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223
2224 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2225 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002226 if (wrmsr_safe(index, data_low, data_high) < 0)
2227 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002228 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002229 vmx->host_msrs[j].index = index;
2230 vmx->host_msrs[j].reserved = 0;
2231 vmx->host_msrs[j].data = data;
2232 vmx->guest_msrs[j] = vmx->host_msrs[j];
2233 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002235
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002236 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002237
2238 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002239 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2240
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002241 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2242 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2243
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002244 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2245 rdtscll(tsc_this);
2246 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2247 tsc_base = tsc_this;
2248
2249 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002250
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002251 return 0;
2252}
2253
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002254static int init_rmode(struct kvm *kvm)
2255{
2256 if (!init_rmode_tss(kvm))
2257 return 0;
2258 if (!init_rmode_identity_map(kvm))
2259 return 0;
2260 return 1;
2261}
2262
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002263static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2264{
2265 struct vcpu_vmx *vmx = to_vmx(vcpu);
2266 u64 msr;
2267 int ret;
2268
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002269 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002270 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002271 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002272 ret = -ENOMEM;
2273 goto out;
2274 }
2275
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002276 vmx->vcpu.arch.rmode.active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002277
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002278 vmx->soft_vnmi_blocked = 0;
2279
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002280 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002281 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002282 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2283 if (vmx->vcpu.vcpu_id == 0)
2284 msr |= MSR_IA32_APICBASE_BSP;
2285 kvm_set_apic_base(&vmx->vcpu, msr);
2286
2287 fx_init(&vmx->vcpu);
2288
Avi Kivity5706be02008-08-20 15:07:31 +03002289 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002290 /*
2291 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2292 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2293 */
2294 if (vmx->vcpu.vcpu_id == 0) {
2295 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2296 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2297 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002298 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2299 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002300 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002301
2302 seg_setup(VCPU_SREG_DS);
2303 seg_setup(VCPU_SREG_ES);
2304 seg_setup(VCPU_SREG_FS);
2305 seg_setup(VCPU_SREG_GS);
2306 seg_setup(VCPU_SREG_SS);
2307
2308 vmcs_write16(GUEST_TR_SELECTOR, 0);
2309 vmcs_writel(GUEST_TR_BASE, 0);
2310 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2311 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2312
2313 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2314 vmcs_writel(GUEST_LDTR_BASE, 0);
2315 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2316 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2317
2318 vmcs_write32(GUEST_SYSENTER_CS, 0);
2319 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2320 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2321
2322 vmcs_writel(GUEST_RFLAGS, 0x02);
2323 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002324 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002325 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002326 kvm_rip_write(vcpu, 0);
2327 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002328
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002329 vmcs_writel(GUEST_DR7, 0x400);
2330
2331 vmcs_writel(GUEST_GDTR_BASE, 0);
2332 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2333
2334 vmcs_writel(GUEST_IDTR_BASE, 0);
2335 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2336
2337 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2338 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2339 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2340
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002341 /* Special registers */
2342 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2343
2344 setup_msrs(vmx);
2345
Avi Kivity6aa8b732006-12-10 02:21:36 -08002346 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2347
Sheng Yangf78e0e22007-10-29 09:40:42 +08002348 if (cpu_has_vmx_tpr_shadow()) {
2349 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2350 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2351 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002352 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002353 vmcs_write32(TPR_THRESHOLD, 0);
2354 }
2355
2356 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2357 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002358 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002359
Sheng Yang2384d2b2008-01-17 15:14:33 +08002360 if (vmx->vpid != 0)
2361 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2362
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002363 vmx->vcpu.arch.cr0 = 0x60000010;
2364 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002365 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002366 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002367 vmx_fpu_activate(&vmx->vcpu);
2368 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369
Sheng Yang2384d2b2008-01-17 15:14:33 +08002370 vpid_sync_vcpu_all(vmx);
2371
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002372 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002374 /* HACK: Don't enable emulation on guest boot/reset */
2375 vmx->emulation_required = 0;
2376
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002378 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379 return ret;
2380}
2381
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002382static void enable_irq_window(struct kvm_vcpu *vcpu)
2383{
2384 u32 cpu_based_vm_exec_control;
2385
2386 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2387 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2388 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2389}
2390
2391static void enable_nmi_window(struct kvm_vcpu *vcpu)
2392{
2393 u32 cpu_based_vm_exec_control;
2394
2395 if (!cpu_has_virtual_nmis()) {
2396 enable_irq_window(vcpu);
2397 return;
2398 }
2399
2400 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2401 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2402 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2403}
2404
Eddie Dong85f455f2007-07-06 12:20:49 +03002405static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
2406{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002407 struct vcpu_vmx *vmx = to_vmx(vcpu);
2408
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002409 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2410
Avi Kivityfa89a812008-09-01 15:57:51 +03002411 ++vcpu->stat.irq_injections;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002412 if (vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002413 vmx->rmode.irq.pending = true;
2414 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002415 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002416 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2417 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2418 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002419 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002420 return;
2421 }
2422 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2423 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
2424}
2425
Sheng Yangf08864b2008-05-15 18:23:25 +08002426static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2427{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002428 struct vcpu_vmx *vmx = to_vmx(vcpu);
2429
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002430 if (!cpu_has_virtual_nmis()) {
2431 /*
2432 * Tracking the NMI-blocked state in software is built upon
2433 * finding the next open IRQ window. This, in turn, depends on
2434 * well-behaving guests: They have to keep IRQs disabled at
2435 * least as long as the NMI handler runs. Otherwise we may
2436 * cause NMI nesting, maybe breaking the guest. But as this is
2437 * highly unlikely, we can live with the residual risk.
2438 */
2439 vmx->soft_vnmi_blocked = 1;
2440 vmx->vnmi_blocked_time = 0;
2441 }
2442
Jan Kiszka487b3912008-09-26 09:30:56 +02002443 ++vcpu->stat.nmi_injections;
Jan Kiszka66a5a342008-09-26 09:30:51 +02002444 if (vcpu->arch.rmode.active) {
2445 vmx->rmode.irq.pending = true;
2446 vmx->rmode.irq.vector = NMI_VECTOR;
2447 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2448 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2449 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2450 INTR_INFO_VALID_MASK);
2451 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2452 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2453 return;
2454 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002455 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2456 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002457}
2458
Jan Kiszka33f089c2008-09-26 09:30:49 +02002459static void vmx_update_window_states(struct kvm_vcpu *vcpu)
2460{
2461 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2462
2463 vcpu->arch.nmi_window_open =
2464 !(guest_intr & (GUEST_INTR_STATE_STI |
2465 GUEST_INTR_STATE_MOV_SS |
2466 GUEST_INTR_STATE_NMI));
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002467 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
2468 vcpu->arch.nmi_window_open = 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002469
2470 vcpu->arch.interrupt_window_open =
2471 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2472 !(guest_intr & (GUEST_INTR_STATE_STI |
2473 GUEST_INTR_STATE_MOV_SS)));
2474}
2475
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
2477{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002478 int word_index = __ffs(vcpu->arch.irq_summary);
2479 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002480 int irq = word_index * BITS_PER_LONG + bit_index;
2481
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002482 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
2483 if (!vcpu->arch.irq_pending[word_index])
2484 clear_bit(word_index, &vcpu->arch.irq_summary);
Avi Kivityecfc79c2008-08-14 11:13:16 +03002485 kvm_queue_interrupt(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002486}
2487
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002488static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2489 struct kvm_run *kvm_run)
2490{
2491 vmx_update_window_states(vcpu);
2492
Jan Kiszka55934c02008-12-15 13:52:10 +01002493 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
2494 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2495 GUEST_INTR_STATE_STI |
2496 GUEST_INTR_STATE_MOV_SS);
2497
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002498 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
Jan Kiszka264ff012008-11-24 12:26:19 +01002499 if (vcpu->arch.interrupt.pending) {
2500 enable_nmi_window(vcpu);
2501 } else if (vcpu->arch.nmi_window_open) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002502 vcpu->arch.nmi_pending = false;
2503 vcpu->arch.nmi_injected = true;
2504 } else {
2505 enable_nmi_window(vcpu);
Jan Kiszka487b3912008-09-26 09:30:56 +02002506 return;
2507 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002508 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002509 if (vcpu->arch.nmi_injected) {
2510 vmx_inject_nmi(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01002511 if (vcpu->arch.nmi_pending)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002512 enable_nmi_window(vcpu);
2513 else if (vcpu->arch.irq_summary
2514 || kvm_run->request_interrupt_window)
2515 enable_irq_window(vcpu);
2516 return;
2517 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002518
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002519 if (vcpu->arch.interrupt_window_open) {
2520 if (vcpu->arch.irq_summary && !vcpu->arch.interrupt.pending)
2521 kvm_do_inject_irq(vcpu);
2522
2523 if (vcpu->arch.interrupt.pending)
2524 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
2525 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002526 if (!vcpu->arch.interrupt_window_open &&
2527 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002528 enable_irq_window(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529}
2530
Izik Eiduscbc94022007-10-25 00:29:55 +02002531static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2532{
2533 int ret;
2534 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002535 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002536 .guest_phys_addr = addr,
2537 .memory_size = PAGE_SIZE * 3,
2538 .flags = 0,
2539 };
2540
2541 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2542 if (ret)
2543 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002544 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002545 return 0;
2546}
2547
Avi Kivity6aa8b732006-12-10 02:21:36 -08002548static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2549 int vec, u32 err_code)
2550{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002551 /*
2552 * Instruction with address size override prefix opcode 0x67
2553 * Cause the #SS fault with 0 error code in VM86 mode.
2554 */
2555 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002556 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002558 /*
2559 * Forward all other exceptions that are valid in real mode.
2560 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2561 * the required debugging infrastructure rework.
2562 */
2563 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002564 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002565 if (vcpu->guest_debug &
2566 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2567 return 0;
2568 kvm_queue_exception(vcpu, vec);
2569 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002570 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002571 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2572 return 0;
2573 /* fall through */
2574 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002575 case OF_VECTOR:
2576 case BR_VECTOR:
2577 case UD_VECTOR:
2578 case DF_VECTOR:
2579 case SS_VECTOR:
2580 case GP_VECTOR:
2581 case MF_VECTOR:
2582 kvm_queue_exception(vcpu, vec);
2583 return 1;
2584 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002585 return 0;
2586}
2587
2588static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2589{
Avi Kivity1155f762007-11-22 11:30:47 +02002590 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002591 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002592 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593 u32 vect_info;
2594 enum emulation_result er;
2595
Avi Kivity1155f762007-11-22 11:30:47 +02002596 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2598
2599 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002600 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002602 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603
Eddie Dong85f455f2007-07-06 12:20:49 +03002604 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002606 set_bit(irq, vcpu->arch.irq_pending);
2607 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002608 }
2609
Jan Kiszkae4a41882008-09-26 09:30:46 +02002610 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002611 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002612
2613 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002614 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002615 return 1;
2616 }
2617
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002618 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002619 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002620 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002621 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002622 return 1;
2623 }
2624
Avi Kivity6aa8b732006-12-10 02:21:36 -08002625 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002626 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002627 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2629 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002630 /* EPT won't cause page fault directly */
2631 if (vm_need_ept())
2632 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002634 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2635 (u32)((u64)cr2 >> 32), handler);
Avi Kivityf7d92382008-07-03 16:14:28 +03002636 if (vcpu->arch.interrupt.pending || vcpu->arch.exception.pending)
Avi Kivity577bdc42008-07-19 08:57:05 +03002637 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002638 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639 }
2640
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002641 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002643 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002644 if (vcpu->arch.halt_request) {
2645 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002646 return kvm_emulate_halt(vcpu);
2647 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002649 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002651 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002652 switch (ex_no) {
2653 case DB_VECTOR:
2654 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2655 if (!(vcpu->guest_debug &
2656 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2657 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2658 kvm_queue_exception(vcpu, DB_VECTOR);
2659 return 1;
2660 }
2661 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2662 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2663 /* fall through */
2664 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002666 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2667 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002668 break;
2669 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002670 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2671 kvm_run->ex.exception = ex_no;
2672 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002673 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002675 return 0;
2676}
2677
2678static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2679 struct kvm_run *kvm_run)
2680{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002681 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002682 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683 return 1;
2684}
2685
Avi Kivity988ad742007-02-12 00:54:36 -08002686static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2687{
2688 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2689 return 0;
2690}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2693{
He, Qingbfdaab02007-09-12 14:18:28 +08002694 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002695 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002696 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697
Avi Kivity1165f5f2007-04-19 17:27:43 +03002698 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002699 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002700 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002701
2702 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002703 if (emulate_instruction(vcpu,
2704 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002705 return 0;
2706 return 1;
2707 }
2708
2709 size = (exit_qualification & 7) + 1;
2710 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002711 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002712
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002713 skip_emulated_instruction(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03002714 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715}
2716
Ingo Molnar102d8322007-02-19 14:37:47 +02002717static void
2718vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2719{
2720 /*
2721 * Patch in the VMCALL instruction:
2722 */
2723 hypercall[0] = 0x0f;
2724 hypercall[1] = 0x01;
2725 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002726}
2727
Avi Kivity6aa8b732006-12-10 02:21:36 -08002728static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2729{
He, Qingbfdaab02007-09-12 14:18:28 +08002730 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731 int cr;
2732 int reg;
2733
He, Qingbfdaab02007-09-12 14:18:28 +08002734 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735 cr = exit_qualification & 15;
2736 reg = (exit_qualification >> 8) & 15;
2737 switch ((exit_qualification >> 4) & 3) {
2738 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002739 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2740 (u32)kvm_register_read(vcpu, reg),
2741 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2742 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743 switch (cr) {
2744 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002745 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746 skip_emulated_instruction(vcpu);
2747 return 1;
2748 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002749 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002750 skip_emulated_instruction(vcpu);
2751 return 1;
2752 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002753 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 skip_emulated_instruction(vcpu);
2755 return 1;
2756 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002757 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002758 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002759 if (irqchip_in_kernel(vcpu->kvm))
2760 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002761 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2762 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763 };
2764 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002765 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002766 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002767 vcpu->arch.cr0 &= ~X86_CR0_TS;
2768 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002769 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002770 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002771 skip_emulated_instruction(vcpu);
2772 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002773 case 1: /*mov from cr*/
2774 switch (cr) {
2775 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002776 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002777 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002778 (u32)kvm_register_read(vcpu, reg),
2779 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002780 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781 skip_emulated_instruction(vcpu);
2782 return 1;
2783 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002784 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002785 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002786 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787 skip_emulated_instruction(vcpu);
2788 return 1;
2789 }
2790 break;
2791 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002792 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793
2794 skip_emulated_instruction(vcpu);
2795 return 1;
2796 default:
2797 break;
2798 }
2799 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002800 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801 (int)(exit_qualification >> 4) & 3, cr);
2802 return 0;
2803}
2804
2805static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2806{
He, Qingbfdaab02007-09-12 14:18:28 +08002807 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808 unsigned long val;
2809 int dr, reg;
2810
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002811 dr = vmcs_readl(GUEST_DR7);
2812 if (dr & DR7_GD) {
2813 /*
2814 * As the vm-exit takes precedence over the debug trap, we
2815 * need to emulate the latter, either for the host or the
2816 * guest debugging itself.
2817 */
2818 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
2819 kvm_run->debug.arch.dr6 = vcpu->arch.dr6;
2820 kvm_run->debug.arch.dr7 = dr;
2821 kvm_run->debug.arch.pc =
2822 vmcs_readl(GUEST_CS_BASE) +
2823 vmcs_readl(GUEST_RIP);
2824 kvm_run->debug.arch.exception = DB_VECTOR;
2825 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2826 return 0;
2827 } else {
2828 vcpu->arch.dr7 &= ~DR7_GD;
2829 vcpu->arch.dr6 |= DR6_BD;
2830 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2831 kvm_queue_exception(vcpu, DB_VECTOR);
2832 return 1;
2833 }
2834 }
2835
He, Qingbfdaab02007-09-12 14:18:28 +08002836 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002837 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2838 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2839 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002840 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002841 case 0 ... 3:
2842 val = vcpu->arch.db[dr];
2843 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002844 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002845 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846 break;
2847 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002848 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002849 break;
2850 default:
2851 val = 0;
2852 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002853 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002854 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002856 val = vcpu->arch.regs[reg];
2857 switch (dr) {
2858 case 0 ... 3:
2859 vcpu->arch.db[dr] = val;
2860 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2861 vcpu->arch.eff_db[dr] = val;
2862 break;
2863 case 4 ... 5:
2864 if (vcpu->arch.cr4 & X86_CR4_DE)
2865 kvm_queue_exception(vcpu, UD_VECTOR);
2866 break;
2867 case 6:
2868 if (val & 0xffffffff00000000ULL) {
2869 kvm_queue_exception(vcpu, GP_VECTOR);
2870 break;
2871 }
2872 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2873 break;
2874 case 7:
2875 if (val & 0xffffffff00000000ULL) {
2876 kvm_queue_exception(vcpu, GP_VECTOR);
2877 break;
2878 }
2879 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
2880 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
2881 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2882 vcpu->arch.switch_db_regs =
2883 (val & DR7_BP_EN_MASK);
2884 }
2885 break;
2886 }
2887 KVMTRACE_2D(DR_WRITE, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889 skip_emulated_instruction(vcpu);
2890 return 1;
2891}
2892
2893static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2894{
Avi Kivity06465c52007-02-28 20:46:53 +02002895 kvm_emulate_cpuid(vcpu);
2896 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002897}
2898
2899static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2900{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002901 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902 u64 data;
2903
2904 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002905 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906 return 1;
2907 }
2908
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002909 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2910 handler);
2911
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002913 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2914 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915 skip_emulated_instruction(vcpu);
2916 return 1;
2917}
2918
2919static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2920{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002921 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2922 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2923 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002924
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002925 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2926 handler);
2927
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002929 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930 return 1;
2931 }
2932
2933 skip_emulated_instruction(vcpu);
2934 return 1;
2935}
2936
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002937static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2938 struct kvm_run *kvm_run)
2939{
2940 return 1;
2941}
2942
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2944 struct kvm_run *kvm_run)
2945{
Eddie Dong85f455f2007-07-06 12:20:49 +03002946 u32 cpu_based_vm_exec_control;
2947
2948 /* clear pending irq */
2949 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2950 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2951 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002952
2953 KVMTRACE_0D(PEND_INTR, vcpu, handler);
Jan Kiszkaa26bf122008-09-26 09:30:45 +02002954 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002955
Dor Laorc1150d82007-01-05 16:36:24 -08002956 /*
2957 * If the user space waits to inject interrupts, exit as soon as
2958 * possible
2959 */
2960 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002961 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002962 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08002963 return 0;
2964 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965 return 1;
2966}
2967
2968static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2969{
2970 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002971 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972}
2973
Ingo Molnarc21415e2007-02-19 14:37:47 +02002974static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2975{
Dor Laor510043d2007-02-19 18:25:43 +02002976 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002977 kvm_emulate_hypercall(vcpu);
2978 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002979}
2980
Marcelo Tosattia7052892008-09-23 13:18:35 -03002981static int handle_invlpg(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2982{
2983 u64 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2984
2985 kvm_mmu_invlpg(vcpu, exit_qualification);
2986 skip_emulated_instruction(vcpu);
2987 return 1;
2988}
2989
Eddie Donge5edaa02007-11-11 12:28:35 +02002990static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2991{
2992 skip_emulated_instruction(vcpu);
2993 /* TODO: Add support for VT-d/pass-through device */
2994 return 1;
2995}
2996
Sheng Yangf78e0e22007-10-29 09:40:42 +08002997static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2998{
2999 u64 exit_qualification;
3000 enum emulation_result er;
3001 unsigned long offset;
3002
3003 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3004 offset = exit_qualification & 0xffful;
3005
3006 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3007
3008 if (er != EMULATE_DONE) {
3009 printk(KERN_ERR
3010 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3011 offset);
3012 return -ENOTSUPP;
3013 }
3014 return 1;
3015}
3016
Izik Eidus37817f22008-03-24 23:14:53 +02003017static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3018{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003019 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003020 unsigned long exit_qualification;
3021 u16 tss_selector;
3022 int reason;
3023
3024 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3025
3026 reason = (u32)exit_qualification >> 30;
Jan Kiszka60637aa2008-09-26 09:30:47 +02003027 if (reason == TASK_SWITCH_GATE && vmx->vcpu.arch.nmi_injected &&
3028 (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
3029 (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK)
3030 == INTR_TYPE_NMI_INTR) {
3031 vcpu->arch.nmi_injected = false;
3032 if (cpu_has_virtual_nmis())
3033 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3034 GUEST_INTR_STATE_NMI);
3035 }
Izik Eidus37817f22008-03-24 23:14:53 +02003036 tss_selector = exit_qualification;
3037
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003038 if (!kvm_task_switch(vcpu, tss_selector, reason))
3039 return 0;
3040
3041 /* clear all local breakpoint enable flags */
3042 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3043
3044 /*
3045 * TODO: What about debug traps on tss switch?
3046 * Are we supposed to inject them and update dr6?
3047 */
3048
3049 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003050}
3051
Sheng Yang14394422008-04-28 12:24:45 +08003052static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3053{
3054 u64 exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003055 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003056 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003057
3058 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3059
3060 if (exit_qualification & (1 << 6)) {
3061 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
3062 return -ENOTSUPP;
3063 }
3064
3065 gla_validity = (exit_qualification >> 7) & 0x3;
3066 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3067 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3068 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3069 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
3070 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
3071 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3072 (long unsigned int)exit_qualification);
3073 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3074 kvm_run->hw.hardware_exit_reason = 0;
3075 return -ENOTSUPP;
3076 }
3077
3078 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003079 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003080}
3081
Sheng Yangf08864b2008-05-15 18:23:25 +08003082static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3083{
3084 u32 cpu_based_vm_exec_control;
3085
3086 /* clear pending NMI */
3087 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3088 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3089 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3090 ++vcpu->stat.nmi_window_exits;
3091
3092 return 1;
3093}
3094
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003095static void handle_invalid_guest_state(struct kvm_vcpu *vcpu,
3096 struct kvm_run *kvm_run)
3097{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003098 struct vcpu_vmx *vmx = to_vmx(vcpu);
3099 enum emulation_result err = EMULATE_DONE;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003100
3101 preempt_enable();
3102 local_irq_enable();
3103
3104 while (!guest_state_valid(vcpu)) {
3105 err = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3106
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003107 if (err == EMULATE_DO_MMIO)
3108 break;
3109
3110 if (err != EMULATE_DONE) {
3111 kvm_report_emulation_failure(vcpu, "emulation failure");
3112 return;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003113 }
3114
3115 if (signal_pending(current))
3116 break;
3117 if (need_resched())
3118 schedule();
3119 }
3120
3121 local_irq_disable();
3122 preempt_disable();
Avi Kivity8b3079a2009-01-05 12:10:54 +02003123
3124 vmx->invalid_state_emulation_result = err;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003125}
3126
Avi Kivity6aa8b732006-12-10 02:21:36 -08003127/*
3128 * The exit handlers return 1 if the exit was handled fully and guest execution
3129 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3130 * to be done to userspace and return 0.
3131 */
3132static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
3133 struct kvm_run *kvm_run) = {
3134 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3135 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003136 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003137 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003138 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003139 [EXIT_REASON_CR_ACCESS] = handle_cr,
3140 [EXIT_REASON_DR_ACCESS] = handle_dr,
3141 [EXIT_REASON_CPUID] = handle_cpuid,
3142 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3143 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3144 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3145 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003146 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003147 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003148 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3149 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003150 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003151 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08003152 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003153};
3154
3155static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003156 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003157
3158/*
3159 * The guest has exited. See if we can fix it or if we need userspace
3160 * assistance.
3161 */
3162static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3163{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003164 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03003165 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02003166 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003167
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003168 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
3169 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003170
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003171 /* If we need to emulate an MMIO from handle_invalid_guest_state
3172 * we just return 0 */
Avi Kivity10f32d82009-01-05 00:53:19 +02003173 if (vmx->emulation_required && emulate_invalid_guest_state) {
3174 if (guest_state_valid(vcpu))
3175 vmx->emulation_required = 0;
Avi Kivity8b3079a2009-01-05 12:10:54 +02003176 return vmx->invalid_state_emulation_result != EMULATE_DO_MMIO;
Avi Kivity10f32d82009-01-05 00:53:19 +02003177 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003178
Sheng Yang14394422008-04-28 12:24:45 +08003179 /* Access CR3 don't cause VMExit in paging mode, so we need
3180 * to sync with guest real CR3. */
3181 if (vm_need_ept() && is_paging(vcpu)) {
3182 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3183 ept_load_pdptrs(vcpu);
3184 }
3185
Avi Kivity29bd8a72007-09-10 17:27:03 +03003186 if (unlikely(vmx->fail)) {
3187 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3188 kvm_run->fail_entry.hardware_entry_failure_reason
3189 = vmcs_read32(VM_INSTRUCTION_ERROR);
3190 return 0;
3191 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003192
Mike Dayd77c26f2007-10-08 09:02:08 -04003193 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003194 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003195 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3196 exit_reason != EXIT_REASON_TASK_SWITCH))
3197 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3198 "(0x%x) and exit reason is 0x%x\n",
3199 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003200
3201 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
3202 if (vcpu->arch.interrupt_window_open) {
3203 vmx->soft_vnmi_blocked = 0;
3204 vcpu->arch.nmi_window_open = 1;
3205 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003206 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003207 /*
3208 * This CPU don't support us in finding the end of an
3209 * NMI-blocked window if the guest runs with IRQs
3210 * disabled. So we pull the trigger after 1 s of
3211 * futile waiting, but inform the user about this.
3212 */
3213 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3214 "state on VCPU %d after 1 s timeout\n",
3215 __func__, vcpu->vcpu_id);
3216 vmx->soft_vnmi_blocked = 0;
3217 vmx->vcpu.arch.nmi_window_open = 1;
3218 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003219 }
3220
Avi Kivity6aa8b732006-12-10 02:21:36 -08003221 if (exit_reason < kvm_vmx_max_exit_handlers
3222 && kvm_vmx_exit_handlers[exit_reason])
3223 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
3224 else {
3225 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3226 kvm_run->hw.hardware_exit_reason = exit_reason;
3227 }
3228 return 0;
3229}
3230
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003231static void update_tpr_threshold(struct kvm_vcpu *vcpu)
3232{
3233 int max_irr, tpr;
3234
3235 if (!vm_need_tpr_shadow(vcpu->kvm))
3236 return;
3237
3238 if (!kvm_lapic_enabled(vcpu) ||
3239 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
3240 vmcs_write32(TPR_THRESHOLD, 0);
3241 return;
3242 }
3243
3244 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
3245 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
3246}
3247
Avi Kivitycf393f72008-07-01 16:20:21 +03003248static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3249{
3250 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03003251 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003252 bool unblock_nmi;
3253 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003254 int type;
3255 bool idtv_info_valid;
Avi Kivity35920a32008-07-03 14:50:12 +03003256 u32 error;
Avi Kivitycf393f72008-07-01 16:20:21 +03003257
3258 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3259 if (cpu_has_virtual_nmis()) {
3260 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3261 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3262 /*
3263 * SDM 3: 25.7.1.2
3264 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3265 * a guest IRET fault.
3266 */
3267 if (unblock_nmi && vector != DF_VECTOR)
3268 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3269 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003270 } else if (unlikely(vmx->soft_vnmi_blocked))
3271 vmx->vnmi_blocked_time +=
3272 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003273
3274 idt_vectoring_info = vmx->idt_vectoring_info;
3275 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3276 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3277 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
3278 if (vmx->vcpu.arch.nmi_injected) {
3279 /*
3280 * SDM 3: 25.7.1.2
3281 * Clear bit "block by NMI" before VM entry if a NMI delivery
3282 * faulted.
3283 */
3284 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
3285 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3286 GUEST_INTR_STATE_NMI);
3287 else
3288 vmx->vcpu.arch.nmi_injected = false;
3289 }
Avi Kivity35920a32008-07-03 14:50:12 +03003290 kvm_clear_exception_queue(&vmx->vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003291 if (idtv_info_valid && (type == INTR_TYPE_HARD_EXCEPTION ||
3292 type == INTR_TYPE_SOFT_EXCEPTION)) {
Avi Kivity35920a32008-07-03 14:50:12 +03003293 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
3294 error = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3295 kvm_queue_exception_e(&vmx->vcpu, vector, error);
3296 } else
3297 kvm_queue_exception(&vmx->vcpu, vector);
3298 vmx->idt_vectoring_info = 0;
3299 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003300 kvm_clear_interrupt_queue(&vmx->vcpu);
3301 if (idtv_info_valid && type == INTR_TYPE_EXT_INTR) {
3302 kvm_queue_interrupt(&vmx->vcpu, vector);
3303 vmx->idt_vectoring_info = 0;
3304 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003305}
3306
Eddie Dong85f455f2007-07-06 12:20:49 +03003307static void vmx_intr_assist(struct kvm_vcpu *vcpu)
3308{
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003309 update_tpr_threshold(vcpu);
3310
Jan Kiszka33f089c2008-09-26 09:30:49 +02003311 vmx_update_window_states(vcpu);
3312
Jan Kiszka55934c02008-12-15 13:52:10 +01003313 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3314 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3315 GUEST_INTR_STATE_STI |
3316 GUEST_INTR_STATE_MOV_SS);
3317
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003318 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
3319 if (vcpu->arch.interrupt.pending) {
3320 enable_nmi_window(vcpu);
3321 } else if (vcpu->arch.nmi_window_open) {
3322 vcpu->arch.nmi_pending = false;
3323 vcpu->arch.nmi_injected = true;
3324 } else {
3325 enable_nmi_window(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003326 return;
3327 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003328 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003329 if (vcpu->arch.nmi_injected) {
3330 vmx_inject_nmi(vcpu);
3331 if (vcpu->arch.nmi_pending)
3332 enable_nmi_window(vcpu);
3333 else if (kvm_cpu_has_interrupt(vcpu))
3334 enable_irq_window(vcpu);
3335 return;
3336 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003337 if (!vcpu->arch.interrupt.pending && kvm_cpu_has_interrupt(vcpu)) {
Jan Kiszka33f089c2008-09-26 09:30:49 +02003338 if (vcpu->arch.interrupt_window_open)
Avi Kivityf7d92382008-07-03 16:14:28 +03003339 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
3340 else
3341 enable_irq_window(vcpu);
3342 }
3343 if (vcpu->arch.interrupt.pending) {
3344 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
Avi Kivitydf203ec2008-11-23 18:08:57 +02003345 if (kvm_cpu_has_interrupt(vcpu))
3346 enable_irq_window(vcpu);
Avi Kivityf7d92382008-07-03 16:14:28 +03003347 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003348}
3349
Avi Kivity9c8cba32007-11-22 11:42:59 +02003350/*
3351 * Failure to inject an interrupt should give us the information
3352 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3353 * when fetching the interrupt redirection bitmap in the real-mode
3354 * tss, this doesn't happen. So we do it ourselves.
3355 */
3356static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3357{
3358 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003359 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003360 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003361 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003362 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3363 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3364 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3365 return;
3366 }
3367 vmx->idt_vectoring_info =
3368 VECTORING_INFO_VALID_MASK
3369 | INTR_TYPE_EXT_INTR
3370 | vmx->rmode.irq.vector;
3371}
3372
Avi Kivityc8019492008-07-14 14:44:59 +03003373#ifdef CONFIG_X86_64
3374#define R "r"
3375#define Q "q"
3376#else
3377#define R "e"
3378#define Q "l"
3379#endif
3380
Avi Kivity04d2cc72007-09-10 18:10:54 +03003381static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003382{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003383 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003384 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03003385
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003386 /* Record the guest's net vcpu time for enforced NMI injections. */
3387 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3388 vmx->entry_time = ktime_get();
3389
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003390 /* Handle invalid guest state instead of entering VMX */
3391 if (vmx->emulation_required && emulate_invalid_guest_state) {
3392 handle_invalid_guest_state(vcpu, kvm_run);
3393 return;
3394 }
3395
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003396 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3397 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3398 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3399 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3400
Avi Kivitye6adf282007-04-30 16:07:54 +03003401 /*
3402 * Loading guest fpu may have cleared host cr0.ts
3403 */
3404 vmcs_writel(HOST_CR0, read_cr0());
3405
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003406 set_debugreg(vcpu->arch.dr6, 6);
3407
Mike Dayd77c26f2007-10-08 09:02:08 -04003408 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003409 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003410 "push %%"R"dx; push %%"R"bp;"
3411 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003412 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3413 "je 1f \n\t"
3414 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003415 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003416 "1: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003417 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003418 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003420 "mov %c[cr2](%0), %%"R"ax \n\t"
3421 "mov %%"R"ax, %%cr2 \n\t"
3422 "mov %c[rax](%0), %%"R"ax \n\t"
3423 "mov %c[rbx](%0), %%"R"bx \n\t"
3424 "mov %c[rdx](%0), %%"R"dx \n\t"
3425 "mov %c[rsi](%0), %%"R"si \n\t"
3426 "mov %c[rdi](%0), %%"R"di \n\t"
3427 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003428#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003429 "mov %c[r8](%0), %%r8 \n\t"
3430 "mov %c[r9](%0), %%r9 \n\t"
3431 "mov %c[r10](%0), %%r10 \n\t"
3432 "mov %c[r11](%0), %%r11 \n\t"
3433 "mov %c[r12](%0), %%r12 \n\t"
3434 "mov %c[r13](%0), %%r13 \n\t"
3435 "mov %c[r14](%0), %%r14 \n\t"
3436 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003437#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003438 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3439
Avi Kivity6aa8b732006-12-10 02:21:36 -08003440 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003441 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003442 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003443 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003444 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003445 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003446 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003447 "xchg %0, (%%"R"sp) \n\t"
3448 "mov %%"R"ax, %c[rax](%0) \n\t"
3449 "mov %%"R"bx, %c[rbx](%0) \n\t"
3450 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3451 "mov %%"R"dx, %c[rdx](%0) \n\t"
3452 "mov %%"R"si, %c[rsi](%0) \n\t"
3453 "mov %%"R"di, %c[rdi](%0) \n\t"
3454 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003455#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003456 "mov %%r8, %c[r8](%0) \n\t"
3457 "mov %%r9, %c[r9](%0) \n\t"
3458 "mov %%r10, %c[r10](%0) \n\t"
3459 "mov %%r11, %c[r11](%0) \n\t"
3460 "mov %%r12, %c[r12](%0) \n\t"
3461 "mov %%r13, %c[r13](%0) \n\t"
3462 "mov %%r14, %c[r14](%0) \n\t"
3463 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003464#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003465 "mov %%cr2, %%"R"ax \n\t"
3466 "mov %%"R"ax, %c[cr2](%0) \n\t"
3467
3468 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003469 "setbe %c[fail](%0) \n\t"
3470 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3471 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3472 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003473 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003474 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3475 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3476 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3477 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3478 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3479 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3480 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003481#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003482 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3483 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3484 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3485 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3486 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3487 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3488 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3489 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003490#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003491 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003492 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003493 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003494#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003495 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3496#endif
3497 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003498
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003499 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3500 vcpu->arch.regs_dirty = 0;
3501
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003502 get_debugreg(vcpu->arch.dr6, 6);
3503
Avi Kivity1155f762007-11-22 11:30:47 +02003504 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003505 if (vmx->rmode.irq.pending)
3506 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003507
Jan Kiszka33f089c2008-09-26 09:30:49 +02003508 vmx_update_window_states(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509
Mike Dayd77c26f2007-10-08 09:02:08 -04003510 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003511 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003512
3513 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3514
3515 /* We need to handle NMIs before interrupts are enabled */
Jan Kiszkae4a41882008-09-26 09:30:46 +02003516 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Sheng Yangf08864b2008-05-15 18:23:25 +08003517 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003518 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003519 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003520 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003521
3522 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003523}
3524
Avi Kivityc8019492008-07-14 14:44:59 +03003525#undef R
3526#undef Q
3527
Avi Kivity6aa8b732006-12-10 02:21:36 -08003528static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3529{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003530 struct vcpu_vmx *vmx = to_vmx(vcpu);
3531
3532 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003533 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003534 free_vmcs(vmx->vmcs);
3535 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003536 }
3537}
3538
3539static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3540{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003541 struct vcpu_vmx *vmx = to_vmx(vcpu);
3542
Sheng Yang2384d2b2008-01-17 15:14:33 +08003543 spin_lock(&vmx_vpid_lock);
3544 if (vmx->vpid != 0)
3545 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3546 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003547 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003548 kfree(vmx->host_msrs);
3549 kfree(vmx->guest_msrs);
3550 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003551 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552}
3553
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003554static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003555{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003556 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003557 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003558 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003559
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003560 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003561 return ERR_PTR(-ENOMEM);
3562
Sheng Yang2384d2b2008-01-17 15:14:33 +08003563 allocate_vpid(vmx);
3564
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003565 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3566 if (err)
3567 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003568
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003569 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003570 if (!vmx->guest_msrs) {
3571 err = -ENOMEM;
3572 goto uninit_vcpu;
3573 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003574
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003575 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3576 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003577 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003578
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003579 vmx->vmcs = alloc_vmcs();
3580 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003581 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003582
3583 vmcs_clear(vmx->vmcs);
3584
Avi Kivity15ad7142007-07-11 18:17:21 +03003585 cpu = get_cpu();
3586 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003587 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003588 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003589 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003590 if (err)
3591 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003592 if (vm_need_virtualize_apic_accesses(kvm))
3593 if (alloc_apic_access_page(kvm) != 0)
3594 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003595
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003596 if (vm_need_ept())
3597 if (alloc_identity_pagetable(kvm) != 0)
3598 goto free_vmcs;
3599
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003600 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003601
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003602free_vmcs:
3603 free_vmcs(vmx->vmcs);
3604free_msrs:
3605 kfree(vmx->host_msrs);
3606free_guest_msrs:
3607 kfree(vmx->guest_msrs);
3608uninit_vcpu:
3609 kvm_vcpu_uninit(&vmx->vcpu);
3610free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003611 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003612 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003613}
3614
Yang, Sheng002c7f72007-07-31 14:23:01 +03003615static void __init vmx_check_processor_compat(void *rtn)
3616{
3617 struct vmcs_config vmcs_conf;
3618
3619 *(int *)rtn = 0;
3620 if (setup_vmcs_config(&vmcs_conf) < 0)
3621 *(int *)rtn = -EIO;
3622 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3623 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3624 smp_processor_id());
3625 *(int *)rtn = -EIO;
3626 }
3627}
3628
Sheng Yang67253af2008-04-25 10:20:22 +08003629static int get_ept_level(void)
3630{
3631 return VMX_EPT_DEFAULT_GAW + 1;
3632}
3633
Sheng Yang64d4d522008-10-09 16:01:57 +08003634static int vmx_get_mt_mask_shift(void)
3635{
3636 return VMX_EPT_MT_EPTE_SHIFT;
3637}
3638
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003639static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003640 .cpu_has_kvm_support = cpu_has_kvm_support,
3641 .disabled_by_bios = vmx_disabled_by_bios,
3642 .hardware_setup = hardware_setup,
3643 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003644 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003645 .hardware_enable = hardware_enable,
3646 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003647 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003648
3649 .vcpu_create = vmx_create_vcpu,
3650 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003651 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003652
Avi Kivity04d2cc72007-09-10 18:10:54 +03003653 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003654 .vcpu_load = vmx_vcpu_load,
3655 .vcpu_put = vmx_vcpu_put,
3656
3657 .set_guest_debug = set_guest_debug,
3658 .get_msr = vmx_get_msr,
3659 .set_msr = vmx_set_msr,
3660 .get_segment_base = vmx_get_segment_base,
3661 .get_segment = vmx_get_segment,
3662 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003663 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003664 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003665 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003666 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003667 .set_cr3 = vmx_set_cr3,
3668 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003670 .get_idt = vmx_get_idt,
3671 .set_idt = vmx_set_idt,
3672 .get_gdt = vmx_get_gdt,
3673 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003674 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003675 .get_rflags = vmx_get_rflags,
3676 .set_rflags = vmx_set_rflags,
3677
3678 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003679
Avi Kivity6aa8b732006-12-10 02:21:36 -08003680 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003681 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003682 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003683 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003684 .get_irq = vmx_get_irq,
3685 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003686 .queue_exception = vmx_queue_exception,
3687 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003688 .inject_pending_irq = vmx_intr_assist,
3689 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003690
3691 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003692 .get_tdp_level = get_ept_level,
Sheng Yang64d4d522008-10-09 16:01:57 +08003693 .get_mt_mask_shift = vmx_get_mt_mask_shift,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003694};
3695
3696static int __init vmx_init(void)
3697{
Sheng Yang25c5f222008-03-28 13:18:56 +08003698 void *va;
He, Qingfdef3ad2007-04-30 09:45:24 +03003699 int r;
3700
3701 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3702 if (!vmx_io_bitmap_a)
3703 return -ENOMEM;
3704
3705 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3706 if (!vmx_io_bitmap_b) {
3707 r = -ENOMEM;
3708 goto out;
3709 }
3710
Sheng Yang25c5f222008-03-28 13:18:56 +08003711 vmx_msr_bitmap = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3712 if (!vmx_msr_bitmap) {
3713 r = -ENOMEM;
3714 goto out1;
3715 }
3716
He, Qingfdef3ad2007-04-30 09:45:24 +03003717 /*
3718 * Allow direct access to the PC debug port (it is often used for I/O
3719 * delays, but the vmexits simply slow things down).
3720 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003721 va = kmap(vmx_io_bitmap_a);
3722 memset(va, 0xff, PAGE_SIZE);
3723 clear_bit(0x80, va);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003724 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003725
Sheng Yang25c5f222008-03-28 13:18:56 +08003726 va = kmap(vmx_io_bitmap_b);
3727 memset(va, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003728 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003729
Sheng Yang25c5f222008-03-28 13:18:56 +08003730 va = kmap(vmx_msr_bitmap);
3731 memset(va, 0xff, PAGE_SIZE);
3732 kunmap(vmx_msr_bitmap);
3733
Sheng Yang2384d2b2008-01-17 15:14:33 +08003734 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3735
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003736 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003737 if (r)
Sheng Yang25c5f222008-03-28 13:18:56 +08003738 goto out2;
3739
3740 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_FS_BASE);
3741 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_GS_BASE);
3742 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_CS);
3743 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_ESP);
3744 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_EIP);
He, Qingfdef3ad2007-04-30 09:45:24 +03003745
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003746 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003747 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003748 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08003749 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08003750 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang64d4d522008-10-09 16:01:57 +08003751 VMX_EPT_EXECUTABLE_MASK,
3752 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003753 kvm_enable_tdp();
3754 } else
3755 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003756
Avi Kivityc7addb92007-09-16 18:58:32 +02003757 if (bypass_guest_pf)
3758 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3759
Sheng Yang14394422008-04-28 12:24:45 +08003760 ept_sync_global();
3761
He, Qingfdef3ad2007-04-30 09:45:24 +03003762 return 0;
3763
Sheng Yang25c5f222008-03-28 13:18:56 +08003764out2:
3765 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003766out1:
3767 __free_page(vmx_io_bitmap_b);
3768out:
3769 __free_page(vmx_io_bitmap_a);
3770 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003771}
3772
3773static void __exit vmx_exit(void)
3774{
Sheng Yang25c5f222008-03-28 13:18:56 +08003775 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003776 __free_page(vmx_io_bitmap_b);
3777 __free_page(vmx_io_bitmap_a);
3778
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003779 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003780}
3781
3782module_init(vmx_init)
3783module_exit(vmx_exit)