blob: ce13b53d21c4ad361fabd06085e9235189429e48 [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"
Avi Kivity6aa8b732006-12-10 02:21:36 -080019#include "vmx.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040021
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020024#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/mm.h>
26#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020028#include <linux/moduleparam.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080033
Avi Kivity4ecac3f2008-05-13 13:23:38 +030034#define __ex(x) __kvm_handle_fault_on_reboot(x)
35
Avi Kivity6aa8b732006-12-10 02:21:36 -080036MODULE_AUTHOR("Qumranet");
37MODULE_LICENSE("GPL");
38
Avi Kivityc7addb92007-09-16 18:58:32 +020039static int bypass_guest_pf = 1;
40module_param(bypass_guest_pf, bool, 0);
41
Sheng Yang2384d2b2008-01-17 15:14:33 +080042static int enable_vpid = 1;
43module_param(enable_vpid, bool, 0);
44
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020045static int flexpriority_enabled = 1;
46module_param(flexpriority_enabled, bool, 0);
47
Sheng Yang14394422008-04-28 12:24:45 +080048static int enable_ept = 1;
Sheng Yangd56f5462008-04-25 10:13:16 +080049module_param(enable_ept, bool, 0);
50
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040051struct vmcs {
52 u32 revision_id;
53 u32 abort;
54 char data[0];
55};
56
57struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100058 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030059 struct list_head local_vcpus_link;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040060 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030061 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020062 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040063 struct kvm_msr_entry *guest_msrs;
64 struct kvm_msr_entry *host_msrs;
65 int nmsrs;
66 int save_nmsrs;
67 int msr_offset_efer;
68#ifdef CONFIG_X86_64
69 int msr_offset_kernel_gs_base;
70#endif
71 struct vmcs *vmcs;
72 struct {
73 int loaded;
74 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020075 int gs_ldt_reload_needed;
76 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030077 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040078 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020079 struct {
80 struct {
81 bool pending;
82 u8 vector;
83 unsigned rip;
84 } irq;
85 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080086 int vpid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040087};
88
89static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
90{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100091 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040092}
93
Sheng Yangb7ebfb02008-04-25 21:44:52 +080094static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +080095static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +030096
Avi Kivity6aa8b732006-12-10 02:21:36 -080097static DEFINE_PER_CPU(struct vmcs *, vmxarea);
98static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +030099static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800100
He, Qingfdef3ad2007-04-30 09:45:24 +0300101static struct page *vmx_io_bitmap_a;
102static struct page *vmx_io_bitmap_b;
Sheng Yang25c5f222008-03-28 13:18:56 +0800103static struct page *vmx_msr_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300104
Sheng Yang2384d2b2008-01-17 15:14:33 +0800105static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
106static DEFINE_SPINLOCK(vmx_vpid_lock);
107
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300108static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800109 int size;
110 int order;
111 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300112 u32 pin_based_exec_ctrl;
113 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800114 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300115 u32 vmexit_ctrl;
116 u32 vmentry_ctrl;
117} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800118
Sheng Yangd56f5462008-04-25 10:13:16 +0800119struct vmx_capability {
120 u32 ept;
121 u32 vpid;
122} vmx_capability;
123
Avi Kivity6aa8b732006-12-10 02:21:36 -0800124#define VMX_SEGMENT_FIELD(seg) \
125 [VCPU_SREG_##seg] = { \
126 .selector = GUEST_##seg##_SELECTOR, \
127 .base = GUEST_##seg##_BASE, \
128 .limit = GUEST_##seg##_LIMIT, \
129 .ar_bytes = GUEST_##seg##_AR_BYTES, \
130 }
131
132static struct kvm_vmx_segment_field {
133 unsigned selector;
134 unsigned base;
135 unsigned limit;
136 unsigned ar_bytes;
137} kvm_vmx_segment_fields[] = {
138 VMX_SEGMENT_FIELD(CS),
139 VMX_SEGMENT_FIELD(DS),
140 VMX_SEGMENT_FIELD(ES),
141 VMX_SEGMENT_FIELD(FS),
142 VMX_SEGMENT_FIELD(GS),
143 VMX_SEGMENT_FIELD(SS),
144 VMX_SEGMENT_FIELD(TR),
145 VMX_SEGMENT_FIELD(LDTR),
146};
147
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300148/*
149 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
150 * away by decrementing the array size.
151 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800152static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800153#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800154 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
155#endif
156 MSR_EFER, MSR_K6_STAR,
157};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200158#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400160static void load_msrs(struct kvm_msr_entry *e, int n)
161{
162 int i;
163
164 for (i = 0; i < n; ++i)
165 wrmsrl(e[i].index, e[i].data);
166}
167
168static void save_msrs(struct kvm_msr_entry *e, int n)
169{
170 int i;
171
172 for (i = 0; i < n; ++i)
173 rdmsrl(e[i].index, e[i].data);
174}
175
Avi Kivity6aa8b732006-12-10 02:21:36 -0800176static inline int is_page_fault(u32 intr_info)
177{
178 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
179 INTR_INFO_VALID_MASK)) ==
180 (INTR_TYPE_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
181}
182
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300183static inline int is_no_device(u32 intr_info)
184{
185 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
186 INTR_INFO_VALID_MASK)) ==
187 (INTR_TYPE_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
188}
189
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500190static inline int is_invalid_opcode(u32 intr_info)
191{
192 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
193 INTR_INFO_VALID_MASK)) ==
194 (INTR_TYPE_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
195}
196
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197static inline int is_external_interrupt(u32 intr_info)
198{
199 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
200 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
201}
202
Sheng Yang25c5f222008-03-28 13:18:56 +0800203static inline int cpu_has_vmx_msr_bitmap(void)
204{
205 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS);
206}
207
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800208static inline int cpu_has_vmx_tpr_shadow(void)
209{
210 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
211}
212
213static inline int vm_need_tpr_shadow(struct kvm *kvm)
214{
215 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
216}
217
Sheng Yangf78e0e22007-10-29 09:40:42 +0800218static inline int cpu_has_secondary_exec_ctrls(void)
219{
220 return (vmcs_config.cpu_based_exec_ctrl &
221 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
222}
223
Avi Kivity774ead32007-12-26 13:57:04 +0200224static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800225{
Avi Kivity4c9fc8e2008-03-24 18:15:14 +0200226 return flexpriority_enabled
227 && (vmcs_config.cpu_based_2nd_exec_ctrl &
228 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800229}
230
Sheng Yangd56f5462008-04-25 10:13:16 +0800231static inline int cpu_has_vmx_invept_individual_addr(void)
232{
233 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT));
234}
235
236static inline int cpu_has_vmx_invept_context(void)
237{
238 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT));
239}
240
241static inline int cpu_has_vmx_invept_global(void)
242{
243 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT));
244}
245
246static inline int cpu_has_vmx_ept(void)
247{
248 return (vmcs_config.cpu_based_2nd_exec_ctrl &
249 SECONDARY_EXEC_ENABLE_EPT);
250}
251
252static inline int vm_need_ept(void)
253{
254 return (cpu_has_vmx_ept() && enable_ept);
255}
256
Sheng Yangf78e0e22007-10-29 09:40:42 +0800257static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
258{
259 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
260 (irqchip_in_kernel(kvm)));
261}
262
Sheng Yang2384d2b2008-01-17 15:14:33 +0800263static inline int cpu_has_vmx_vpid(void)
264{
265 return (vmcs_config.cpu_based_2nd_exec_ctrl &
266 SECONDARY_EXEC_ENABLE_VPID);
267}
268
Sheng Yangf08864b2008-05-15 18:23:25 +0800269static inline int cpu_has_virtual_nmis(void)
270{
271 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
272}
273
Rusty Russell8b9cf982007-07-30 16:31:43 +1000274static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800275{
276 int i;
277
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400278 for (i = 0; i < vmx->nmsrs; ++i)
279 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300280 return i;
281 return -1;
282}
283
Sheng Yang2384d2b2008-01-17 15:14:33 +0800284static inline void __invvpid(int ext, u16 vpid, gva_t gva)
285{
286 struct {
287 u64 vpid : 16;
288 u64 rsvd : 48;
289 u64 gva;
290 } operand = { vpid, 0, gva };
291
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300292 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800293 /* CF==1 or ZF==1 --> rc = -1 */
294 "; ja 1f ; ud2 ; 1:"
295 : : "a"(&operand), "c"(ext) : "cc", "memory");
296}
297
Sheng Yang14394422008-04-28 12:24:45 +0800298static inline void __invept(int ext, u64 eptp, gpa_t gpa)
299{
300 struct {
301 u64 eptp, gpa;
302 } operand = {eptp, gpa};
303
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300304 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800305 /* CF==1 or ZF==1 --> rc = -1 */
306 "; ja 1f ; ud2 ; 1:\n"
307 : : "a" (&operand), "c" (ext) : "cc", "memory");
308}
309
Rusty Russell8b9cf982007-07-30 16:31:43 +1000310static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300311{
312 int i;
313
Rusty Russell8b9cf982007-07-30 16:31:43 +1000314 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300315 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400316 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000317 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800318}
319
Avi Kivity6aa8b732006-12-10 02:21:36 -0800320static void vmcs_clear(struct vmcs *vmcs)
321{
322 u64 phys_addr = __pa(vmcs);
323 u8 error;
324
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300325 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800326 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
327 : "cc", "memory");
328 if (error)
329 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
330 vmcs, phys_addr);
331}
332
333static void __vcpu_clear(void *arg)
334{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000335 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800336 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800337
Rusty Russell8b9cf982007-07-30 16:31:43 +1000338 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400339 vmcs_clear(vmx->vmcs);
340 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800341 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800342 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300343 list_del(&vmx->local_vcpus_link);
344 vmx->vcpu.cpu = -1;
345 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800346}
347
Rusty Russell8b9cf982007-07-30 16:31:43 +1000348static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800349{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200350 if (vmx->vcpu.cpu == -1)
351 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200352 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800353}
354
Sheng Yang2384d2b2008-01-17 15:14:33 +0800355static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
356{
357 if (vmx->vpid == 0)
358 return;
359
360 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
361}
362
Sheng Yang14394422008-04-28 12:24:45 +0800363static inline void ept_sync_global(void)
364{
365 if (cpu_has_vmx_invept_global())
366 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
367}
368
369static inline void ept_sync_context(u64 eptp)
370{
371 if (vm_need_ept()) {
372 if (cpu_has_vmx_invept_context())
373 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
374 else
375 ept_sync_global();
376 }
377}
378
379static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
380{
381 if (vm_need_ept()) {
382 if (cpu_has_vmx_invept_individual_addr())
383 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
384 eptp, gpa);
385 else
386 ept_sync_context(eptp);
387 }
388}
389
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390static unsigned long vmcs_readl(unsigned long field)
391{
392 unsigned long value;
393
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300394 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800395 : "=a"(value) : "d"(field) : "cc");
396 return value;
397}
398
399static u16 vmcs_read16(unsigned long field)
400{
401 return vmcs_readl(field);
402}
403
404static u32 vmcs_read32(unsigned long field)
405{
406 return vmcs_readl(field);
407}
408
409static u64 vmcs_read64(unsigned long field)
410{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800411#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412 return vmcs_readl(field);
413#else
414 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
415#endif
416}
417
Avi Kivitye52de1b2007-01-05 16:36:56 -0800418static noinline void vmwrite_error(unsigned long field, unsigned long value)
419{
420 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
421 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
422 dump_stack();
423}
424
Avi Kivity6aa8b732006-12-10 02:21:36 -0800425static void vmcs_writel(unsigned long field, unsigned long value)
426{
427 u8 error;
428
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300429 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400430 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800431 if (unlikely(error))
432 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800433}
434
435static void vmcs_write16(unsigned long field, u16 value)
436{
437 vmcs_writel(field, value);
438}
439
440static void vmcs_write32(unsigned long field, u32 value)
441{
442 vmcs_writel(field, value);
443}
444
445static void vmcs_write64(unsigned long field, u64 value)
446{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800447 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300448#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800449 asm volatile ("");
450 vmcs_writel(field+1, value >> 32);
451#endif
452}
453
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300454static void vmcs_clear_bits(unsigned long field, u32 mask)
455{
456 vmcs_writel(field, vmcs_readl(field) & ~mask);
457}
458
459static void vmcs_set_bits(unsigned long field, u32 mask)
460{
461 vmcs_writel(field, vmcs_readl(field) | mask);
462}
463
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300464static void update_exception_bitmap(struct kvm_vcpu *vcpu)
465{
466 u32 eb;
467
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500468 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300469 if (!vcpu->fpu_active)
470 eb |= 1u << NM_VECTOR;
471 if (vcpu->guest_debug.enabled)
472 eb |= 1u << 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800473 if (vcpu->arch.rmode.active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300474 eb = ~0;
Sheng Yang14394422008-04-28 12:24:45 +0800475 if (vm_need_ept())
476 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300477 vmcs_write32(EXCEPTION_BITMAP, eb);
478}
479
Avi Kivity33ed6322007-05-02 16:54:03 +0300480static void reload_tss(void)
481{
Avi Kivity33ed6322007-05-02 16:54:03 +0300482 /*
483 * VT restores TR but not its size. Useless.
484 */
485 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200486 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300487
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300488 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300489 descs = (void *)gdt.base;
490 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
491 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300492}
493
Rusty Russell8b9cf982007-07-30 16:31:43 +1000494static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300495{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400496 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300497 u64 host_efer = vmx->host_msrs[efer_offset].data;
498 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
499 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300500
Avi Kivity51c6cf62007-08-29 03:48:05 +0300501 if (efer_offset < 0)
502 return;
503 /*
504 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
505 * outside long mode
506 */
507 ignore_bits = EFER_NX | EFER_SCE;
508#ifdef CONFIG_X86_64
509 ignore_bits |= EFER_LMA | EFER_LME;
510 /* SCE is meaningful only in long mode on Intel */
511 if (guest_efer & EFER_LMA)
512 ignore_bits &= ~(u64)EFER_SCE;
513#endif
514 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
515 return;
516
517 vmx->host_state.guest_efer_loaded = 1;
518 guest_efer &= ~ignore_bits;
519 guest_efer |= host_efer & ignore_bits;
520 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000521 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300522}
523
Avi Kivity51c6cf62007-08-29 03:48:05 +0300524static void reload_host_efer(struct vcpu_vmx *vmx)
525{
526 if (vmx->host_state.guest_efer_loaded) {
527 vmx->host_state.guest_efer_loaded = 0;
528 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
529 }
530}
531
Avi Kivity04d2cc72007-09-10 18:10:54 +0300532static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300533{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300534 struct vcpu_vmx *vmx = to_vmx(vcpu);
535
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300537 return;
538
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400539 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300540 /*
541 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
542 * allow segment selectors with cpl > 0 or ti == 1.
543 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300544 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200545 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300546 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200547 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400548 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200549 vmx->host_state.fs_reload_needed = 0;
550 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300551 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200552 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300553 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300554 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400555 if (!(vmx->host_state.gs_sel & 7))
556 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300557 else {
558 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200559 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300560 }
561
562#ifdef CONFIG_X86_64
563 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
564 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
565#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400566 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
567 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300568#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300569
570#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400571 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400572 save_msrs(vmx->host_msrs +
573 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400574
Avi Kivity707c0872007-05-02 17:33:43 +0300575#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400576 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300577 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300578}
579
Avi Kivitya9b21b62008-06-24 11:48:49 +0300580static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300581{
Avi Kivity15ad7142007-07-11 18:17:21 +0300582 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300583
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400584 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300585 return;
586
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200587 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400588 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200589 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300590 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200591 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300592 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300593 /*
594 * If we have to reload gs, we must take care to
595 * preserve our gs base.
596 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300597 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300598 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300599#ifdef CONFIG_X86_64
600 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
601#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300602 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300603 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200604 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400605 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
606 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300607 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300608}
609
Avi Kivitya9b21b62008-06-24 11:48:49 +0300610static void vmx_load_host_state(struct vcpu_vmx *vmx)
611{
612 preempt_disable();
613 __vmx_load_host_state(vmx);
614 preempt_enable();
615}
616
Avi Kivity6aa8b732006-12-10 02:21:36 -0800617/*
618 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
619 * vcpu mutex is already taken.
620 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300621static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800622{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400623 struct vcpu_vmx *vmx = to_vmx(vcpu);
624 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200625 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800626
Eddie Donga3d7f852007-09-03 16:15:12 +0300627 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000628 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300629 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800630 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300631 local_irq_disable();
632 list_add(&vmx->local_vcpus_link,
633 &per_cpu(vcpus_on_cpu, cpu));
634 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300635 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400637 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800638 u8 error;
639
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400640 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300641 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800642 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
643 : "cc");
644 if (error)
645 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400646 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647 }
648
649 if (vcpu->cpu != cpu) {
650 struct descriptor_table dt;
651 unsigned long sysenter_esp;
652
653 vcpu->cpu = cpu;
654 /*
655 * Linux uses per-cpu TSS and GDT, so set these when switching
656 * processors.
657 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300658 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
659 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800660 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
661
662 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
663 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300664
665 /*
666 * Make sure the time stamp counter is monotonous.
667 */
668 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200669 if (tsc_this < vcpu->arch.host_tsc) {
670 delta = vcpu->arch.host_tsc - tsc_this;
671 new_offset = vmcs_read64(TSC_OFFSET) + delta;
672 vmcs_write64(TSC_OFFSET, new_offset);
673 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675}
676
677static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
678{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300679 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680}
681
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300682static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
683{
684 if (vcpu->fpu_active)
685 return;
686 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000687 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800688 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000689 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300690 update_exception_bitmap(vcpu);
691}
692
693static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
694{
695 if (!vcpu->fpu_active)
696 return;
697 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000698 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300699 update_exception_bitmap(vcpu);
700}
701
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
703{
704 return vmcs_readl(GUEST_RFLAGS);
705}
706
707static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
708{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800709 if (vcpu->arch.rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100710 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711 vmcs_writel(GUEST_RFLAGS, rflags);
712}
713
714static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
715{
716 unsigned long rip;
717 u32 interruptibility;
718
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300719 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300721 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722
723 /*
724 * We emulated an instruction, so temporary interrupt blocking
725 * should be removed, if set.
726 */
727 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
728 if (interruptibility & 3)
729 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
730 interruptibility & ~3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800731 vcpu->arch.interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732}
733
Avi Kivity298101d2007-11-25 13:41:11 +0200734static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
735 bool has_error_code, u32 error_code)
736{
737 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
738 nr | INTR_TYPE_EXCEPTION
Ryan Harper2e113842008-02-11 10:26:38 -0600739 | (has_error_code ? INTR_INFO_DELIVER_CODE_MASK : 0)
Avi Kivity298101d2007-11-25 13:41:11 +0200740 | INTR_INFO_VALID_MASK);
741 if (has_error_code)
742 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
743}
744
745static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
746{
747 struct vcpu_vmx *vmx = to_vmx(vcpu);
748
749 return !(vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
750}
751
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752/*
Eddie Donga75beee2007-05-17 18:55:15 +0300753 * Swap MSR entry in host/guest MSR entry array.
754 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200755#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000756static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300757{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400758 struct kvm_msr_entry tmp;
759
760 tmp = vmx->guest_msrs[to];
761 vmx->guest_msrs[to] = vmx->guest_msrs[from];
762 vmx->guest_msrs[from] = tmp;
763 tmp = vmx->host_msrs[to];
764 vmx->host_msrs[to] = vmx->host_msrs[from];
765 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300766}
Gabriel C54e11fa2007-08-01 16:23:10 +0200767#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300768
769/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300770 * Set up the vmcs to automatically save and restore system
771 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
772 * mode, as fiddling with msrs is very expensive.
773 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000774static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300775{
Eddie Dong2cc51562007-05-21 07:28:09 +0300776 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300777
Avi Kivity33f9c502008-02-27 16:06:57 +0200778 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300779 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300780#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000781 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300782 int index;
783
Rusty Russell8b9cf982007-07-30 16:31:43 +1000784 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300785 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000786 move_msr_up(vmx, index, save_nmsrs++);
787 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300788 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000789 move_msr_up(vmx, index, save_nmsrs++);
790 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300791 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000792 move_msr_up(vmx, index, save_nmsrs++);
793 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300794 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000795 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300796 /*
797 * MSR_K6_STAR is only needed on long mode guests, and only
798 * if efer.sce is enabled.
799 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000800 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800801 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000802 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300803 }
Eddie Donga75beee2007-05-17 18:55:15 +0300804#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400805 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300806
Eddie Donga75beee2007-05-17 18:55:15 +0300807#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400808 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000809 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300810#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000811 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300812}
813
814/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800815 * reads and returns guest's timestamp counter "register"
816 * guest_tsc = host_tsc + tsc_offset -- 21.3
817 */
818static u64 guest_read_tsc(void)
819{
820 u64 host_tsc, tsc_offset;
821
822 rdtscll(host_tsc);
823 tsc_offset = vmcs_read64(TSC_OFFSET);
824 return host_tsc + tsc_offset;
825}
826
827/*
828 * writes 'guest_tsc' into guest's timestamp counter "register"
829 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
830 */
831static void guest_write_tsc(u64 guest_tsc)
832{
833 u64 host_tsc;
834
835 rdtscll(host_tsc);
836 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
837}
838
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839/*
840 * Reads an msr value (of 'msr_index') into 'pdata'.
841 * Returns 0 on success, non-0 otherwise.
842 * Assumes vcpu_load() was already called.
843 */
844static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
845{
846 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400847 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848
849 if (!pdata) {
850 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
851 return -EINVAL;
852 }
853
854 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800855#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800856 case MSR_FS_BASE:
857 data = vmcs_readl(GUEST_FS_BASE);
858 break;
859 case MSR_GS_BASE:
860 data = vmcs_readl(GUEST_GS_BASE);
861 break;
862 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800863 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864#endif
865 case MSR_IA32_TIME_STAMP_COUNTER:
866 data = guest_read_tsc();
867 break;
868 case MSR_IA32_SYSENTER_CS:
869 data = vmcs_read32(GUEST_SYSENTER_CS);
870 break;
871 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200872 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873 break;
874 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200875 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000878 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800879 if (msr) {
880 data = msr->data;
881 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800883 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800884 }
885
886 *pdata = data;
887 return 0;
888}
889
890/*
891 * Writes msr value into into the appropriate "register".
892 * Returns 0 on success, non-0 otherwise.
893 * Assumes vcpu_load() was already called.
894 */
895static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
896{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400897 struct vcpu_vmx *vmx = to_vmx(vcpu);
898 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300899 int ret = 0;
900
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800902#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800903 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300904 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300905 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300906 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 case MSR_FS_BASE:
908 vmcs_writel(GUEST_FS_BASE, data);
909 break;
910 case MSR_GS_BASE:
911 vmcs_writel(GUEST_GS_BASE, data);
912 break;
913#endif
914 case MSR_IA32_SYSENTER_CS:
915 vmcs_write32(GUEST_SYSENTER_CS, data);
916 break;
917 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200918 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 break;
920 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200921 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200923 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800924 guest_write_tsc(data);
925 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +0200926 case MSR_P6_PERFCTR0:
927 case MSR_P6_PERFCTR1:
928 case MSR_P6_EVNTSEL0:
929 case MSR_P6_EVNTSEL1:
930 /*
931 * Just discard all writes to the performance counters; this
932 * should keep both older linux and windows 64-bit guests
933 * happy
934 */
935 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
936
937 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300939 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000940 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800941 if (msr) {
942 msr->data = data;
943 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300945 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946 }
947
Eddie Dong2cc51562007-05-21 07:28:09 +0300948 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949}
950
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300951static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800952{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300953 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
954 switch (reg) {
955 case VCPU_REGS_RSP:
956 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
957 break;
958 case VCPU_REGS_RIP:
959 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
960 break;
961 default:
962 break;
963 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964}
965
966static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
967{
968 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969 int old_singlestep;
970
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 old_singlestep = vcpu->guest_debug.singlestep;
972
973 vcpu->guest_debug.enabled = dbg->enabled;
974 if (vcpu->guest_debug.enabled) {
975 int i;
976
977 dr7 |= 0x200; /* exact */
978 for (i = 0; i < 4; ++i) {
979 if (!dbg->breakpoints[i].enabled)
980 continue;
981 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
982 dr7 |= 2 << (i*2); /* global enable */
983 dr7 |= 0 << (i*4+16); /* execution breakpoint */
984 }
985
Avi Kivity6aa8b732006-12-10 02:21:36 -0800986 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300987 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989
990 if (old_singlestep && !vcpu->guest_debug.singlestep) {
991 unsigned long flags;
992
993 flags = vmcs_readl(GUEST_RFLAGS);
994 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
995 vmcs_writel(GUEST_RFLAGS, flags);
996 }
997
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300998 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 vmcs_writel(GUEST_DR7, dr7);
1000
1001 return 0;
1002}
1003
Eddie Dong2a8067f2007-08-06 16:29:07 +03001004static int vmx_get_irq(struct kvm_vcpu *vcpu)
1005{
Avi Kivity1155f762007-11-22 11:30:47 +02001006 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong2a8067f2007-08-06 16:29:07 +03001007 u32 idtv_info_field;
1008
Avi Kivity1155f762007-11-22 11:30:47 +02001009 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong2a8067f2007-08-06 16:29:07 +03001010 if (idtv_info_field & INTR_INFO_VALID_MASK) {
1011 if (is_external_interrupt(idtv_info_field))
1012 return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
1013 else
Mike Dayd77c26f2007-10-08 09:02:08 -04001014 printk(KERN_DEBUG "pending exception: not handled yet\n");
Eddie Dong2a8067f2007-08-06 16:29:07 +03001015 }
1016 return -1;
1017}
1018
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019static __init int cpu_has_kvm_support(void)
1020{
1021 unsigned long ecx = cpuid_ecx(1);
1022 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
1023}
1024
1025static __init int vmx_disabled_by_bios(void)
1026{
1027 u64 msr;
1028
1029 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001030 return (msr & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1031 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1032 == IA32_FEATURE_CONTROL_LOCKED_BIT;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001033 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034}
1035
Avi Kivity774c47f2007-02-12 00:54:47 -08001036static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037{
1038 int cpu = raw_smp_processor_id();
1039 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1040 u64 old;
1041
Avi Kivity543e4242008-05-13 16:22:47 +03001042 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001044 if ((old & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1045 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1046 != (IA32_FEATURE_CONTROL_LOCKED_BIT |
1047 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001048 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001049 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yangca60dfb2008-06-24 17:02:38 +08001050 IA32_FEATURE_CONTROL_LOCKED_BIT |
1051 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT);
Rusty Russell66aee912007-07-17 23:34:16 +10001052 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001053 asm volatile (ASM_VMX_VMXON_RAX
1054 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 : "memory", "cc");
1056}
1057
Avi Kivity543e4242008-05-13 16:22:47 +03001058static void vmclear_local_vcpus(void)
1059{
1060 int cpu = raw_smp_processor_id();
1061 struct vcpu_vmx *vmx, *n;
1062
1063 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1064 local_vcpus_link)
1065 __vcpu_clear(vmx);
1066}
1067
Avi Kivity6aa8b732006-12-10 02:21:36 -08001068static void hardware_disable(void *garbage)
1069{
Avi Kivity543e4242008-05-13 16:22:47 +03001070 vmclear_local_vcpus();
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001071 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eli Collinse693d712008-06-01 20:24:40 -07001072 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073}
1074
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001075static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001076 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077{
1078 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001079 u32 ctl = ctl_min | ctl_opt;
1080
1081 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1082
1083 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1084 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1085
1086 /* Ensure minimum (required) set of control bits are supported. */
1087 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001088 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001089
1090 *result = ctl;
1091 return 0;
1092}
1093
Yang, Sheng002c7f72007-07-31 14:23:01 +03001094static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001095{
1096 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001097 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001098 u32 _pin_based_exec_control = 0;
1099 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001100 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001101 u32 _vmexit_control = 0;
1102 u32 _vmentry_control = 0;
1103
1104 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001105 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001106 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1107 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001108 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001109
1110 min = CPU_BASED_HLT_EXITING |
1111#ifdef CONFIG_X86_64
1112 CPU_BASED_CR8_LOAD_EXITING |
1113 CPU_BASED_CR8_STORE_EXITING |
1114#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001115 CPU_BASED_CR3_LOAD_EXITING |
1116 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001117 CPU_BASED_USE_IO_BITMAPS |
1118 CPU_BASED_MOV_DR_EXITING |
1119 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001120 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001121 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001122 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001123 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1124 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001125 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001126#ifdef CONFIG_X86_64
1127 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1128 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1129 ~CPU_BASED_CR8_STORE_EXITING;
1130#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001131 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001132 min2 = 0;
1133 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001134 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001135 SECONDARY_EXEC_ENABLE_VPID |
1136 SECONDARY_EXEC_ENABLE_EPT;
1137 if (adjust_vmx_controls(min2, opt2,
1138 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001139 &_cpu_based_2nd_exec_control) < 0)
1140 return -EIO;
1141 }
1142#ifndef CONFIG_X86_64
1143 if (!(_cpu_based_2nd_exec_control &
1144 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1145 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1146#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001147 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
1148 /* CR3 accesses don't need to cause VM Exits when EPT enabled */
1149 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
1150 CPU_BASED_CR3_STORE_EXITING);
1151 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1152 &_cpu_based_exec_control) < 0)
1153 return -EIO;
1154 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1155 vmx_capability.ept, vmx_capability.vpid);
1156 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001157
1158 min = 0;
1159#ifdef CONFIG_X86_64
1160 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1161#endif
1162 opt = 0;
1163 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1164 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001165 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001166
1167 min = opt = 0;
1168 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1169 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001170 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001171
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001172 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001173
1174 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1175 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001176 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001177
1178#ifdef CONFIG_X86_64
1179 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1180 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001181 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001182#endif
1183
1184 /* Require Write-Back (WB) memory type for VMCS accesses. */
1185 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001186 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001187
Yang, Sheng002c7f72007-07-31 14:23:01 +03001188 vmcs_conf->size = vmx_msr_high & 0x1fff;
1189 vmcs_conf->order = get_order(vmcs_config.size);
1190 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001191
Yang, Sheng002c7f72007-07-31 14:23:01 +03001192 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1193 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001194 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001195 vmcs_conf->vmexit_ctrl = _vmexit_control;
1196 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001197
1198 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001199}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001200
1201static struct vmcs *alloc_vmcs_cpu(int cpu)
1202{
1203 int node = cpu_to_node(cpu);
1204 struct page *pages;
1205 struct vmcs *vmcs;
1206
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001207 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001208 if (!pages)
1209 return NULL;
1210 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001211 memset(vmcs, 0, vmcs_config.size);
1212 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001213 return vmcs;
1214}
1215
1216static struct vmcs *alloc_vmcs(void)
1217{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001218 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001219}
1220
1221static void free_vmcs(struct vmcs *vmcs)
1222{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001223 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001224}
1225
Sam Ravnborg39959582007-06-01 00:47:13 -07001226static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001227{
1228 int cpu;
1229
1230 for_each_online_cpu(cpu)
1231 free_vmcs(per_cpu(vmxarea, cpu));
1232}
1233
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234static __init int alloc_kvm_area(void)
1235{
1236 int cpu;
1237
1238 for_each_online_cpu(cpu) {
1239 struct vmcs *vmcs;
1240
1241 vmcs = alloc_vmcs_cpu(cpu);
1242 if (!vmcs) {
1243 free_kvm_area();
1244 return -ENOMEM;
1245 }
1246
1247 per_cpu(vmxarea, cpu) = vmcs;
1248 }
1249 return 0;
1250}
1251
1252static __init int hardware_setup(void)
1253{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001254 if (setup_vmcs_config(&vmcs_config) < 0)
1255 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001256
1257 if (boot_cpu_has(X86_FEATURE_NX))
1258 kvm_enable_efer_bits(EFER_NX);
1259
Avi Kivity6aa8b732006-12-10 02:21:36 -08001260 return alloc_kvm_area();
1261}
1262
1263static __exit void hardware_unsetup(void)
1264{
1265 free_kvm_area();
1266}
1267
Avi Kivity6aa8b732006-12-10 02:21:36 -08001268static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1269{
1270 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1271
Avi Kivity6af11b92007-03-19 13:18:10 +02001272 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001273 vmcs_write16(sf->selector, save->selector);
1274 vmcs_writel(sf->base, save->base);
1275 vmcs_write32(sf->limit, save->limit);
1276 vmcs_write32(sf->ar_bytes, save->ar);
1277 } else {
1278 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1279 << AR_DPL_SHIFT;
1280 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1281 }
1282}
1283
1284static void enter_pmode(struct kvm_vcpu *vcpu)
1285{
1286 unsigned long flags;
1287
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001288 vcpu->arch.rmode.active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001290 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1291 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1292 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001293
1294 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001295 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001296 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 vmcs_writel(GUEST_RFLAGS, flags);
1298
Rusty Russell66aee912007-07-17 23:34:16 +10001299 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1300 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001301
1302 update_exception_bitmap(vcpu);
1303
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001304 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1305 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1306 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1307 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001308
1309 vmcs_write16(GUEST_SS_SELECTOR, 0);
1310 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1311
1312 vmcs_write16(GUEST_CS_SELECTOR,
1313 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1314 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1315}
1316
Mike Dayd77c26f2007-10-08 09:02:08 -04001317static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001318{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001319 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001320 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1321 kvm->memslots[0].npages - 3;
1322 return base_gfn << PAGE_SHIFT;
1323 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001324 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325}
1326
1327static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1328{
1329 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1330
1331 save->selector = vmcs_read16(sf->selector);
1332 save->base = vmcs_readl(sf->base);
1333 save->limit = vmcs_read32(sf->limit);
1334 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001335 vmcs_write16(sf->selector, save->base >> 4);
1336 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337 vmcs_write32(sf->limit, 0xffff);
1338 vmcs_write32(sf->ar_bytes, 0xf3);
1339}
1340
1341static void enter_rmode(struct kvm_vcpu *vcpu)
1342{
1343 unsigned long flags;
1344
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001345 vcpu->arch.rmode.active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001347 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1349
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001350 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1352
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001353 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001354 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1355
1356 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001357 vcpu->arch.rmode.save_iopl
1358 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001359
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001360 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361
1362 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001363 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364 update_exception_bitmap(vcpu);
1365
1366 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1367 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1368 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1369
1370 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001371 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001372 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1373 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1375
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001376 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1377 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1378 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1379 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001380
Eddie Dong8668a3c2007-10-10 14:26:45 +08001381 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001382 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001383}
1384
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001385#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386
1387static void enter_lmode(struct kvm_vcpu *vcpu)
1388{
1389 u32 guest_tr_ar;
1390
1391 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1392 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1393 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001394 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395 vmcs_write32(GUEST_TR_AR_BYTES,
1396 (guest_tr_ar & ~AR_TYPE_MASK)
1397 | AR_TYPE_BUSY_64_TSS);
1398 }
1399
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001400 vcpu->arch.shadow_efer |= EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401
Rusty Russell8b9cf982007-07-30 16:31:43 +10001402 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403 vmcs_write32(VM_ENTRY_CONTROLS,
1404 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001405 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406}
1407
1408static void exit_lmode(struct kvm_vcpu *vcpu)
1409{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001410 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411
1412 vmcs_write32(VM_ENTRY_CONTROLS,
1413 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001414 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415}
1416
1417#endif
1418
Sheng Yang2384d2b2008-01-17 15:14:33 +08001419static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1420{
1421 vpid_sync_vcpu_all(to_vmx(vcpu));
Sheng Yang4e1096d2008-07-06 19:16:51 +08001422 if (vm_need_ept())
1423 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001424}
1425
Anthony Liguori25c4c272007-04-27 09:29:21 +03001426static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001427{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001428 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1429 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001430}
1431
Sheng Yang14394422008-04-28 12:24:45 +08001432static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1433{
1434 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1435 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1436 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1437 return;
1438 }
1439 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1440 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1441 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1442 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1443 }
1444}
1445
1446static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1447
1448static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1449 unsigned long cr0,
1450 struct kvm_vcpu *vcpu)
1451{
1452 if (!(cr0 & X86_CR0_PG)) {
1453 /* From paging/starting to nonpaging */
1454 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001455 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001456 (CPU_BASED_CR3_LOAD_EXITING |
1457 CPU_BASED_CR3_STORE_EXITING));
1458 vcpu->arch.cr0 = cr0;
1459 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1460 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1461 *hw_cr0 &= ~X86_CR0_WP;
1462 } else if (!is_paging(vcpu)) {
1463 /* From nonpaging to paging */
1464 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001465 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001466 ~(CPU_BASED_CR3_LOAD_EXITING |
1467 CPU_BASED_CR3_STORE_EXITING));
1468 vcpu->arch.cr0 = cr0;
1469 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1470 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1471 *hw_cr0 &= ~X86_CR0_WP;
1472 }
1473}
1474
1475static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1476 struct kvm_vcpu *vcpu)
1477{
1478 if (!is_paging(vcpu)) {
1479 *hw_cr4 &= ~X86_CR4_PAE;
1480 *hw_cr4 |= X86_CR4_PSE;
1481 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1482 *hw_cr4 &= ~X86_CR4_PAE;
1483}
1484
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1486{
Sheng Yang14394422008-04-28 12:24:45 +08001487 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1488 KVM_VM_CR0_ALWAYS_ON;
1489
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001490 vmx_fpu_deactivate(vcpu);
1491
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001492 if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493 enter_pmode(vcpu);
1494
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001495 if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496 enter_rmode(vcpu);
1497
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001498#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001499 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001500 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001501 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001502 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503 exit_lmode(vcpu);
1504 }
1505#endif
1506
Sheng Yang14394422008-04-28 12:24:45 +08001507 if (vm_need_ept())
1508 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1509
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001511 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001512 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001513
Rusty Russell707d92f2007-07-17 23:19:08 +10001514 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001515 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001516}
1517
Sheng Yang14394422008-04-28 12:24:45 +08001518static u64 construct_eptp(unsigned long root_hpa)
1519{
1520 u64 eptp;
1521
1522 /* TODO write the value reading from MSR */
1523 eptp = VMX_EPT_DEFAULT_MT |
1524 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1525 eptp |= (root_hpa & PAGE_MASK);
1526
1527 return eptp;
1528}
1529
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1531{
Sheng Yang14394422008-04-28 12:24:45 +08001532 unsigned long guest_cr3;
1533 u64 eptp;
1534
1535 guest_cr3 = cr3;
1536 if (vm_need_ept()) {
1537 eptp = construct_eptp(cr3);
1538 vmcs_write64(EPT_POINTER, eptp);
1539 ept_sync_context(eptp);
1540 ept_load_pdptrs(vcpu);
1541 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1542 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1543 }
1544
Sheng Yang2384d2b2008-01-17 15:14:33 +08001545 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001546 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001547 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001548 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549}
1550
1551static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1552{
Sheng Yang14394422008-04-28 12:24:45 +08001553 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.active ?
1554 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1555
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001556 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08001557 if (vm_need_ept())
1558 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1559
1560 vmcs_writel(CR4_READ_SHADOW, cr4);
1561 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562}
1563
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1565{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001566 struct vcpu_vmx *vmx = to_vmx(vcpu);
1567 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001569 vcpu->arch.shadow_efer = efer;
Joerg Roedel9f62e192008-01-31 14:57:39 +01001570 if (!msr)
1571 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572 if (efer & EFER_LMA) {
1573 vmcs_write32(VM_ENTRY_CONTROLS,
1574 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001575 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576 msr->data = efer;
1577
1578 } else {
1579 vmcs_write32(VM_ENTRY_CONTROLS,
1580 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001581 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582
1583 msr->data = efer & ~EFER_LME;
1584 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001585 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586}
1587
Avi Kivity6aa8b732006-12-10 02:21:36 -08001588static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1589{
1590 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1591
1592 return vmcs_readl(sf->base);
1593}
1594
1595static void vmx_get_segment(struct kvm_vcpu *vcpu,
1596 struct kvm_segment *var, int seg)
1597{
1598 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1599 u32 ar;
1600
1601 var->base = vmcs_readl(sf->base);
1602 var->limit = vmcs_read32(sf->limit);
1603 var->selector = vmcs_read16(sf->selector);
1604 ar = vmcs_read32(sf->ar_bytes);
1605 if (ar & AR_UNUSABLE_MASK)
1606 ar = 0;
1607 var->type = ar & 15;
1608 var->s = (ar >> 4) & 1;
1609 var->dpl = (ar >> 5) & 3;
1610 var->present = (ar >> 7) & 1;
1611 var->avl = (ar >> 12) & 1;
1612 var->l = (ar >> 13) & 1;
1613 var->db = (ar >> 14) & 1;
1614 var->g = (ar >> 15) & 1;
1615 var->unusable = (ar >> 16) & 1;
1616}
1617
Izik Eidus2e4d2652008-03-24 19:38:34 +02001618static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1619{
1620 struct kvm_segment kvm_seg;
1621
1622 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1623 return 0;
1624
1625 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1626 return 3;
1627
1628 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1629 return kvm_seg.selector & 3;
1630}
1631
Avi Kivity653e3102007-05-07 10:55:37 +03001632static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001633{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001634 u32 ar;
1635
Avi Kivity653e3102007-05-07 10:55:37 +03001636 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637 ar = 1 << 16;
1638 else {
1639 ar = var->type & 15;
1640 ar |= (var->s & 1) << 4;
1641 ar |= (var->dpl & 3) << 5;
1642 ar |= (var->present & 1) << 7;
1643 ar |= (var->avl & 1) << 12;
1644 ar |= (var->l & 1) << 13;
1645 ar |= (var->db & 1) << 14;
1646 ar |= (var->g & 1) << 15;
1647 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001648 if (ar == 0) /* a 0 value means unusable */
1649 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001650
1651 return ar;
1652}
1653
1654static void vmx_set_segment(struct kvm_vcpu *vcpu,
1655 struct kvm_segment *var, int seg)
1656{
1657 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1658 u32 ar;
1659
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001660 if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
1661 vcpu->arch.rmode.tr.selector = var->selector;
1662 vcpu->arch.rmode.tr.base = var->base;
1663 vcpu->arch.rmode.tr.limit = var->limit;
1664 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001665 return;
1666 }
1667 vmcs_writel(sf->base, var->base);
1668 vmcs_write32(sf->limit, var->limit);
1669 vmcs_write16(sf->selector, var->selector);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001670 if (vcpu->arch.rmode.active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001671 /*
1672 * Hack real-mode segments into vm86 compatibility.
1673 */
1674 if (var->base == 0xffff0000 && var->selector == 0xf000)
1675 vmcs_writel(sf->base, 0xf0000);
1676 ar = 0xf3;
1677 } else
1678 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001679 vmcs_write32(sf->ar_bytes, ar);
1680}
1681
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1683{
1684 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1685
1686 *db = (ar >> 14) & 1;
1687 *l = (ar >> 13) & 1;
1688}
1689
1690static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1691{
1692 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1693 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1694}
1695
1696static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1697{
1698 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1699 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1700}
1701
1702static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1703{
1704 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1705 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1706}
1707
1708static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1709{
1710 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1711 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1712}
1713
Mike Dayd77c26f2007-10-08 09:02:08 -04001714static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001716 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001717 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001718 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001719 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001720
Izik Eidus195aefd2007-10-01 22:14:18 +02001721 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1722 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001723 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001724 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1725 r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
1726 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001727 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001728 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1729 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001730 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001731 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1732 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001733 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001734 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001735 r = kvm_write_guest_page(kvm, fn, &data,
1736 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1737 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02001738 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001739 goto out;
1740
1741 ret = 1;
1742out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001743 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001744}
1745
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001746static int init_rmode_identity_map(struct kvm *kvm)
1747{
1748 int i, r, ret;
1749 pfn_t identity_map_pfn;
1750 u32 tmp;
1751
1752 if (!vm_need_ept())
1753 return 1;
1754 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
1755 printk(KERN_ERR "EPT: identity-mapping pagetable "
1756 "haven't been allocated!\n");
1757 return 0;
1758 }
1759 if (likely(kvm->arch.ept_identity_pagetable_done))
1760 return 1;
1761 ret = 0;
1762 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
1763 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
1764 if (r < 0)
1765 goto out;
1766 /* Set up identity-mapping pagetable for EPT in real mode */
1767 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
1768 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
1769 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
1770 r = kvm_write_guest_page(kvm, identity_map_pfn,
1771 &tmp, i * sizeof(tmp), sizeof(tmp));
1772 if (r < 0)
1773 goto out;
1774 }
1775 kvm->arch.ept_identity_pagetable_done = true;
1776 ret = 1;
1777out:
1778 return ret;
1779}
1780
Avi Kivity6aa8b732006-12-10 02:21:36 -08001781static void seg_setup(int seg)
1782{
1783 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1784
1785 vmcs_write16(sf->selector, 0);
1786 vmcs_writel(sf->base, 0);
1787 vmcs_write32(sf->limit, 0xffff);
1788 vmcs_write32(sf->ar_bytes, 0x93);
1789}
1790
Sheng Yangf78e0e22007-10-29 09:40:42 +08001791static int alloc_apic_access_page(struct kvm *kvm)
1792{
1793 struct kvm_userspace_memory_region kvm_userspace_mem;
1794 int r = 0;
1795
Izik Eidus72dc67a2008-02-10 18:04:15 +02001796 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001797 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001798 goto out;
1799 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1800 kvm_userspace_mem.flags = 0;
1801 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1802 kvm_userspace_mem.memory_size = PAGE_SIZE;
1803 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1804 if (r)
1805 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02001806
1807 down_read(&current->mm->mmap_sem);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001808 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001809 up_read(&current->mm->mmap_sem);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001810out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02001811 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001812 return r;
1813}
1814
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001815static int alloc_identity_pagetable(struct kvm *kvm)
1816{
1817 struct kvm_userspace_memory_region kvm_userspace_mem;
1818 int r = 0;
1819
1820 down_write(&kvm->slots_lock);
1821 if (kvm->arch.ept_identity_pagetable)
1822 goto out;
1823 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
1824 kvm_userspace_mem.flags = 0;
1825 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1826 kvm_userspace_mem.memory_size = PAGE_SIZE;
1827 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1828 if (r)
1829 goto out;
1830
1831 down_read(&current->mm->mmap_sem);
1832 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
1833 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
1834 up_read(&current->mm->mmap_sem);
1835out:
1836 up_write(&kvm->slots_lock);
1837 return r;
1838}
1839
Sheng Yang2384d2b2008-01-17 15:14:33 +08001840static void allocate_vpid(struct vcpu_vmx *vmx)
1841{
1842 int vpid;
1843
1844 vmx->vpid = 0;
1845 if (!enable_vpid || !cpu_has_vmx_vpid())
1846 return;
1847 spin_lock(&vmx_vpid_lock);
1848 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
1849 if (vpid < VMX_NR_VPIDS) {
1850 vmx->vpid = vpid;
1851 __set_bit(vpid, vmx_vpid_bitmap);
1852 }
1853 spin_unlock(&vmx_vpid_lock);
1854}
1855
Harvey Harrison8b2cf732008-04-27 12:14:13 -07001856static void vmx_disable_intercept_for_msr(struct page *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08001857{
1858 void *va;
1859
1860 if (!cpu_has_vmx_msr_bitmap())
1861 return;
1862
1863 /*
1864 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
1865 * have the write-low and read-high bitmap offsets the wrong way round.
1866 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
1867 */
1868 va = kmap(msr_bitmap);
1869 if (msr <= 0x1fff) {
1870 __clear_bit(msr, va + 0x000); /* read-low */
1871 __clear_bit(msr, va + 0x800); /* write-low */
1872 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
1873 msr &= 0x1fff;
1874 __clear_bit(msr, va + 0x400); /* read-high */
1875 __clear_bit(msr, va + 0xc00); /* write-high */
1876 }
1877 kunmap(msr_bitmap);
1878}
1879
Avi Kivity6aa8b732006-12-10 02:21:36 -08001880/*
1881 * Sets up the vmcs for emulated real mode.
1882 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001883static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884{
1885 u32 host_sysenter_cs;
1886 u32 junk;
1887 unsigned long a;
1888 struct descriptor_table dt;
1889 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001890 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001891 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892
Avi Kivity6aa8b732006-12-10 02:21:36 -08001893 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001894 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1895 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001896
Sheng Yang25c5f222008-03-28 13:18:56 +08001897 if (cpu_has_vmx_msr_bitmap())
1898 vmcs_write64(MSR_BITMAP, page_to_phys(vmx_msr_bitmap));
1899
Avi Kivity6aa8b732006-12-10 02:21:36 -08001900 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1901
Avi Kivity6aa8b732006-12-10 02:21:36 -08001902 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001903 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1904 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001905
1906 exec_control = vmcs_config.cpu_based_exec_ctrl;
1907 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1908 exec_control &= ~CPU_BASED_TPR_SHADOW;
1909#ifdef CONFIG_X86_64
1910 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1911 CPU_BASED_CR8_LOAD_EXITING;
1912#endif
1913 }
Sheng Yangd56f5462008-04-25 10:13:16 +08001914 if (!vm_need_ept())
1915 exec_control |= CPU_BASED_CR3_STORE_EXITING |
1916 CPU_BASED_CR3_LOAD_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001917 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001918
Sheng Yang83ff3b92007-11-21 14:33:25 +08001919 if (cpu_has_secondary_exec_ctrls()) {
1920 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
1921 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1922 exec_control &=
1923 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001924 if (vmx->vpid == 0)
1925 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yangd56f5462008-04-25 10:13:16 +08001926 if (!vm_need_ept())
1927 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08001928 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
1929 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08001930
Avi Kivityc7addb92007-09-16 18:58:32 +02001931 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
1932 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001933 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1934
1935 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1936 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1937 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1938
1939 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1940 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1941 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001942 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
1943 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001944 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001945#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001946 rdmsrl(MSR_FS_BASE, a);
1947 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1948 rdmsrl(MSR_GS_BASE, a);
1949 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1950#else
1951 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1952 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1953#endif
1954
1955 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1956
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001957 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1959
Mike Dayd77c26f2007-10-08 09:02:08 -04001960 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03001961 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001962 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1963 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1964 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965
1966 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1967 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1968 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1969 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1970 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1971 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1972
Avi Kivity6aa8b732006-12-10 02:21:36 -08001973 for (i = 0; i < NR_VMX_MSR; ++i) {
1974 u32 index = vmx_msr_index[i];
1975 u32 data_low, data_high;
1976 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001977 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001978
1979 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1980 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001981 if (wrmsr_safe(index, data_low, data_high) < 0)
1982 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001984 vmx->host_msrs[j].index = index;
1985 vmx->host_msrs[j].reserved = 0;
1986 vmx->host_msrs[j].data = data;
1987 vmx->guest_msrs[j] = vmx->host_msrs[j];
1988 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001989 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001991 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992
1993 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001994 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1995
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001996 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
1997 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1998
Sheng Yangf78e0e22007-10-29 09:40:42 +08001999
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002000 return 0;
2001}
2002
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002003static int init_rmode(struct kvm *kvm)
2004{
2005 if (!init_rmode_tss(kvm))
2006 return 0;
2007 if (!init_rmode_identity_map(kvm))
2008 return 0;
2009 return 1;
2010}
2011
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002012static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2013{
2014 struct vcpu_vmx *vmx = to_vmx(vcpu);
2015 u64 msr;
2016 int ret;
2017
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002018 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002019 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002020 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002021 ret = -ENOMEM;
2022 goto out;
2023 }
2024
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002025 vmx->vcpu.arch.rmode.active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002026
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002027 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002028 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002029 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2030 if (vmx->vcpu.vcpu_id == 0)
2031 msr |= MSR_IA32_APICBASE_BSP;
2032 kvm_set_apic_base(&vmx->vcpu, msr);
2033
2034 fx_init(&vmx->vcpu);
2035
2036 /*
2037 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2038 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2039 */
2040 if (vmx->vcpu.vcpu_id == 0) {
2041 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2042 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2043 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002044 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2045 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002046 }
2047 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
2048 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2049
2050 seg_setup(VCPU_SREG_DS);
2051 seg_setup(VCPU_SREG_ES);
2052 seg_setup(VCPU_SREG_FS);
2053 seg_setup(VCPU_SREG_GS);
2054 seg_setup(VCPU_SREG_SS);
2055
2056 vmcs_write16(GUEST_TR_SELECTOR, 0);
2057 vmcs_writel(GUEST_TR_BASE, 0);
2058 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2059 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2060
2061 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2062 vmcs_writel(GUEST_LDTR_BASE, 0);
2063 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2064 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2065
2066 vmcs_write32(GUEST_SYSENTER_CS, 0);
2067 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2068 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2069
2070 vmcs_writel(GUEST_RFLAGS, 0x02);
2071 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002072 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002073 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002074 kvm_rip_write(vcpu, 0);
2075 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002076
2077 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
2078 vmcs_writel(GUEST_DR7, 0x400);
2079
2080 vmcs_writel(GUEST_GDTR_BASE, 0);
2081 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2082
2083 vmcs_writel(GUEST_IDTR_BASE, 0);
2084 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2085
2086 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2087 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2088 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2089
2090 guest_write_tsc(0);
2091
2092 /* Special registers */
2093 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2094
2095 setup_msrs(vmx);
2096
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2098
Sheng Yangf78e0e22007-10-29 09:40:42 +08002099 if (cpu_has_vmx_tpr_shadow()) {
2100 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2101 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2102 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002103 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002104 vmcs_write32(TPR_THRESHOLD, 0);
2105 }
2106
2107 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2108 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002109 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110
Sheng Yang2384d2b2008-01-17 15:14:33 +08002111 if (vmx->vpid != 0)
2112 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2113
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002114 vmx->vcpu.arch.cr0 = 0x60000010;
2115 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002116 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002117 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002118 vmx_fpu_activate(&vmx->vcpu);
2119 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002120
Sheng Yang2384d2b2008-01-17 15:14:33 +08002121 vpid_sync_vcpu_all(vmx);
2122
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002123 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002124
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002126 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127 return ret;
2128}
2129
Eddie Dong85f455f2007-07-06 12:20:49 +03002130static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
2131{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002132 struct vcpu_vmx *vmx = to_vmx(vcpu);
2133
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002134 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2135
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002136 if (vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002137 vmx->rmode.irq.pending = true;
2138 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002139 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002140 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2141 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2142 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002143 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002144 return;
2145 }
2146 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2147 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
2148}
2149
Sheng Yangf08864b2008-05-15 18:23:25 +08002150static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2151{
2152 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2153 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002154}
2155
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
2157{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002158 int word_index = __ffs(vcpu->arch.irq_summary);
2159 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002160 int irq = word_index * BITS_PER_LONG + bit_index;
2161
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002162 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
2163 if (!vcpu->arch.irq_pending[word_index])
2164 clear_bit(word_index, &vcpu->arch.irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03002165 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166}
2167
Dor Laorc1150d82007-01-05 16:36:24 -08002168
2169static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2170 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171{
Dor Laorc1150d82007-01-05 16:36:24 -08002172 u32 cpu_based_vm_exec_control;
2173
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002174 vcpu->arch.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08002175 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2176 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
2177
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002178 if (vcpu->arch.interrupt_window_open &&
2179 vcpu->arch.irq_summary &&
Dor Laorc1150d82007-01-05 16:36:24 -08002180 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002181 /*
Dor Laorc1150d82007-01-05 16:36:24 -08002182 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183 */
2184 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08002185
2186 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002187 if (!vcpu->arch.interrupt_window_open &&
2188 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002189 /*
2190 * Interrupts blocked. Wait for unblock.
2191 */
Dor Laorc1150d82007-01-05 16:36:24 -08002192 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2193 else
2194 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2195 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196}
2197
Izik Eiduscbc94022007-10-25 00:29:55 +02002198static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2199{
2200 int ret;
2201 struct kvm_userspace_memory_region tss_mem = {
2202 .slot = 8,
2203 .guest_phys_addr = addr,
2204 .memory_size = PAGE_SIZE * 3,
2205 .flags = 0,
2206 };
2207
2208 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2209 if (ret)
2210 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002211 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002212 return 0;
2213}
2214
Avi Kivity6aa8b732006-12-10 02:21:36 -08002215static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
2216{
2217 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
2218
2219 set_debugreg(dbg->bp[0], 0);
2220 set_debugreg(dbg->bp[1], 1);
2221 set_debugreg(dbg->bp[2], 2);
2222 set_debugreg(dbg->bp[3], 3);
2223
2224 if (dbg->singlestep) {
2225 unsigned long flags;
2226
2227 flags = vmcs_readl(GUEST_RFLAGS);
2228 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
2229 vmcs_writel(GUEST_RFLAGS, flags);
2230 }
2231}
2232
2233static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2234 int vec, u32 err_code)
2235{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002236 if (!vcpu->arch.rmode.active)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002237 return 0;
2238
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002239 /*
2240 * Instruction with address size override prefix opcode 0x67
2241 * Cause the #SS fault with 0 error code in VM86 mode.
2242 */
2243 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002244 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002245 return 1;
2246 return 0;
2247}
2248
2249static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2250{
Avi Kivity1155f762007-11-22 11:30:47 +02002251 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252 u32 intr_info, error_code;
2253 unsigned long cr2, rip;
2254 u32 vect_info;
2255 enum emulation_result er;
2256
Avi Kivity1155f762007-11-22 11:30:47 +02002257 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002258 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2259
2260 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002261 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002263 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002264
Eddie Dong85f455f2007-07-06 12:20:49 +03002265 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002267 set_bit(irq, vcpu->arch.irq_pending);
2268 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002269 }
2270
Avi Kivity1b6269d2007-10-09 12:12:19 +02002271 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2272 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002273
2274 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002275 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002276 return 1;
2277 }
2278
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002279 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002280 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002281 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002282 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002283 return 1;
2284 }
2285
Avi Kivity6aa8b732006-12-10 02:21:36 -08002286 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002287 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002288 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2290 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002291 /* EPT won't cause page fault directly */
2292 if (vm_need_ept())
2293 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002295 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2296 (u32)((u64)cr2 >> 32), handler);
Avi Kivity577bdc42008-07-19 08:57:05 +03002297 if (vect_info & VECTORING_INFO_VALID_MASK)
2298 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002299 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300 }
2301
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002302 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002303 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002304 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002305 if (vcpu->arch.halt_request) {
2306 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002307 return kvm_emulate_halt(vcpu);
2308 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002310 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002311
Mike Dayd77c26f2007-10-08 09:02:08 -04002312 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
2313 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2315 return 0;
2316 }
2317 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2318 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
2319 kvm_run->ex.error_code = error_code;
2320 return 0;
2321}
2322
2323static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2324 struct kvm_run *kvm_run)
2325{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002326 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002327 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328 return 1;
2329}
2330
Avi Kivity988ad742007-02-12 00:54:36 -08002331static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2332{
2333 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2334 return 0;
2335}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2338{
He, Qingbfdaab02007-09-12 14:18:28 +08002339 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02002340 int size, down, in, string, rep;
2341 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002342
Avi Kivity1165f5f2007-04-19 17:27:43 +03002343 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002344 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002345 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002346
2347 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002348 if (emulate_instruction(vcpu,
2349 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002350 return 0;
2351 return 1;
2352 }
2353
2354 size = (exit_qualification & 7) + 1;
2355 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002356 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002357 rep = (exit_qualification & 32) != 0;
2358 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002359
Laurent Vivier3090dd72007-08-05 10:43:32 +03002360 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002361}
2362
Ingo Molnar102d8322007-02-19 14:37:47 +02002363static void
2364vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2365{
2366 /*
2367 * Patch in the VMCALL instruction:
2368 */
2369 hypercall[0] = 0x0f;
2370 hypercall[1] = 0x01;
2371 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002372}
2373
Avi Kivity6aa8b732006-12-10 02:21:36 -08002374static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2375{
He, Qingbfdaab02007-09-12 14:18:28 +08002376 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377 int cr;
2378 int reg;
2379
He, Qingbfdaab02007-09-12 14:18:28 +08002380 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381 cr = exit_qualification & 15;
2382 reg = (exit_qualification >> 8) & 15;
2383 switch ((exit_qualification >> 4) & 3) {
2384 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002385 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2386 (u32)kvm_register_read(vcpu, reg),
2387 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2388 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389 switch (cr) {
2390 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002391 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392 skip_emulated_instruction(vcpu);
2393 return 1;
2394 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002395 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396 skip_emulated_instruction(vcpu);
2397 return 1;
2398 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002399 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400 skip_emulated_instruction(vcpu);
2401 return 1;
2402 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002403 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002404 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002405 if (irqchip_in_kernel(vcpu->kvm))
2406 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002407 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2408 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002409 };
2410 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002411 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002412 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002413 vcpu->arch.cr0 &= ~X86_CR0_TS;
2414 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002415 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002416 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002417 skip_emulated_instruction(vcpu);
2418 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002419 case 1: /*mov from cr*/
2420 switch (cr) {
2421 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002422 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002423 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002424 (u32)kvm_register_read(vcpu, reg),
2425 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002426 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427 skip_emulated_instruction(vcpu);
2428 return 1;
2429 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002430 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002431 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002432 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002433 skip_emulated_instruction(vcpu);
2434 return 1;
2435 }
2436 break;
2437 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002438 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439
2440 skip_emulated_instruction(vcpu);
2441 return 1;
2442 default:
2443 break;
2444 }
2445 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002446 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447 (int)(exit_qualification >> 4) & 3, cr);
2448 return 0;
2449}
2450
2451static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2452{
He, Qingbfdaab02007-09-12 14:18:28 +08002453 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002454 unsigned long val;
2455 int dr, reg;
2456
2457 /*
2458 * FIXME: this code assumes the host is debugging the guest.
2459 * need to deal with guest debugging itself too.
2460 */
He, Qingbfdaab02007-09-12 14:18:28 +08002461 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002462 dr = exit_qualification & 7;
2463 reg = (exit_qualification >> 8) & 15;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002464 if (exit_qualification & 16) {
2465 /* mov from dr */
2466 switch (dr) {
2467 case 6:
2468 val = 0xffff0ff0;
2469 break;
2470 case 7:
2471 val = 0x400;
2472 break;
2473 default:
2474 val = 0;
2475 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002476 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002477 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478 } else {
2479 /* mov to dr */
2480 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002481 skip_emulated_instruction(vcpu);
2482 return 1;
2483}
2484
2485static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2486{
Avi Kivity06465c52007-02-28 20:46:53 +02002487 kvm_emulate_cpuid(vcpu);
2488 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002489}
2490
2491static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2492{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002493 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002494 u64 data;
2495
2496 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002497 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002498 return 1;
2499 }
2500
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002501 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2502 handler);
2503
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002505 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2506 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002507 skip_emulated_instruction(vcpu);
2508 return 1;
2509}
2510
2511static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2512{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002513 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2514 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2515 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002516
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002517 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2518 handler);
2519
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002521 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522 return 1;
2523 }
2524
2525 skip_emulated_instruction(vcpu);
2526 return 1;
2527}
2528
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002529static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2530 struct kvm_run *kvm_run)
2531{
2532 return 1;
2533}
2534
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2536 struct kvm_run *kvm_run)
2537{
Eddie Dong85f455f2007-07-06 12:20:49 +03002538 u32 cpu_based_vm_exec_control;
2539
2540 /* clear pending irq */
2541 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2542 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2543 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002544
2545 KVMTRACE_0D(PEND_INTR, vcpu, handler);
2546
Dor Laorc1150d82007-01-05 16:36:24 -08002547 /*
2548 * If the user space waits to inject interrupts, exit as soon as
2549 * possible
2550 */
2551 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002552 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002553 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002554 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002555 return 0;
2556 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 return 1;
2558}
2559
2560static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2561{
2562 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002563 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564}
2565
Ingo Molnarc21415e2007-02-19 14:37:47 +02002566static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2567{
Dor Laor510043d2007-02-19 18:25:43 +02002568 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002569 kvm_emulate_hypercall(vcpu);
2570 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002571}
2572
Eddie Donge5edaa02007-11-11 12:28:35 +02002573static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2574{
2575 skip_emulated_instruction(vcpu);
2576 /* TODO: Add support for VT-d/pass-through device */
2577 return 1;
2578}
2579
Sheng Yangf78e0e22007-10-29 09:40:42 +08002580static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2581{
2582 u64 exit_qualification;
2583 enum emulation_result er;
2584 unsigned long offset;
2585
2586 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2587 offset = exit_qualification & 0xffful;
2588
2589 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2590
2591 if (er != EMULATE_DONE) {
2592 printk(KERN_ERR
2593 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2594 offset);
2595 return -ENOTSUPP;
2596 }
2597 return 1;
2598}
2599
Izik Eidus37817f22008-03-24 23:14:53 +02002600static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2601{
2602 unsigned long exit_qualification;
2603 u16 tss_selector;
2604 int reason;
2605
2606 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
2607
2608 reason = (u32)exit_qualification >> 30;
2609 tss_selector = exit_qualification;
2610
2611 return kvm_task_switch(vcpu, tss_selector, reason);
2612}
2613
Sheng Yang14394422008-04-28 12:24:45 +08002614static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2615{
2616 u64 exit_qualification;
2617 enum emulation_result er;
2618 gpa_t gpa;
2619 unsigned long hva;
2620 int gla_validity;
2621 int r;
2622
2623 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2624
2625 if (exit_qualification & (1 << 6)) {
2626 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
2627 return -ENOTSUPP;
2628 }
2629
2630 gla_validity = (exit_qualification >> 7) & 0x3;
2631 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
2632 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
2633 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2634 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2635 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2636 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2637 (long unsigned int)exit_qualification);
2638 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2639 kvm_run->hw.hardware_exit_reason = 0;
2640 return -ENOTSUPP;
2641 }
2642
2643 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
2644 hva = gfn_to_hva(vcpu->kvm, gpa >> PAGE_SHIFT);
2645 if (!kvm_is_error_hva(hva)) {
2646 r = kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
2647 if (r < 0) {
2648 printk(KERN_ERR "EPT: Not enough memory!\n");
2649 return -ENOMEM;
2650 }
2651 return 1;
2652 } else {
2653 /* must be MMIO */
2654 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2655
2656 if (er == EMULATE_FAIL) {
2657 printk(KERN_ERR
2658 "EPT: Fail to handle EPT violation vmexit!er is %d\n",
2659 er);
2660 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2661 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2662 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2663 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2664 (long unsigned int)exit_qualification);
2665 return -ENOTSUPP;
2666 } else if (er == EMULATE_DO_MMIO)
2667 return 0;
2668 }
2669 return 1;
2670}
2671
Sheng Yangf08864b2008-05-15 18:23:25 +08002672static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2673{
2674 u32 cpu_based_vm_exec_control;
2675
2676 /* clear pending NMI */
2677 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2678 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
2679 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2680 ++vcpu->stat.nmi_window_exits;
2681
2682 return 1;
2683}
2684
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685/*
2686 * The exit handlers return 1 if the exit was handled fully and guest execution
2687 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2688 * to be done to userspace and return 0.
2689 */
2690static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2691 struct kvm_run *kvm_run) = {
2692 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2693 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002694 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08002695 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002696 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697 [EXIT_REASON_CR_ACCESS] = handle_cr,
2698 [EXIT_REASON_DR_ACCESS] = handle_dr,
2699 [EXIT_REASON_CPUID] = handle_cpuid,
2700 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2701 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2702 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2703 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002704 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002705 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2706 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002707 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02002708 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08002709 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710};
2711
2712static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002713 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002714
2715/*
2716 * The guest has exited. See if we can fix it or if we need userspace
2717 * assistance.
2718 */
2719static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2720{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002722 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002723 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002724
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002725 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
2726 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002727
Sheng Yang14394422008-04-28 12:24:45 +08002728 /* Access CR3 don't cause VMExit in paging mode, so we need
2729 * to sync with guest real CR3. */
2730 if (vm_need_ept() && is_paging(vcpu)) {
2731 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2732 ept_load_pdptrs(vcpu);
2733 }
2734
Avi Kivity29bd8a72007-09-10 17:27:03 +03002735 if (unlikely(vmx->fail)) {
2736 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2737 kvm_run->fail_entry.hardware_entry_failure_reason
2738 = vmcs_read32(VM_INSTRUCTION_ERROR);
2739 return 0;
2740 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002741
Mike Dayd77c26f2007-10-08 09:02:08 -04002742 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08002743 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
2744 exit_reason != EXIT_REASON_EPT_VIOLATION))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002746 "exit reason is 0x%x\n", __func__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747 if (exit_reason < kvm_vmx_max_exit_handlers
2748 && kvm_vmx_exit_handlers[exit_reason])
2749 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2750 else {
2751 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2752 kvm_run->hw.hardware_exit_reason = exit_reason;
2753 }
2754 return 0;
2755}
2756
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002757static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2758{
2759 int max_irr, tpr;
2760
2761 if (!vm_need_tpr_shadow(vcpu->kvm))
2762 return;
2763
2764 if (!kvm_lapic_enabled(vcpu) ||
2765 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2766 vmcs_write32(TPR_THRESHOLD, 0);
2767 return;
2768 }
2769
2770 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2771 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2772}
2773
Eddie Dong85f455f2007-07-06 12:20:49 +03002774static void enable_irq_window(struct kvm_vcpu *vcpu)
2775{
2776 u32 cpu_based_vm_exec_control;
2777
2778 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2779 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2780 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2781}
2782
Sheng Yangf08864b2008-05-15 18:23:25 +08002783static void enable_nmi_window(struct kvm_vcpu *vcpu)
2784{
2785 u32 cpu_based_vm_exec_control;
2786
2787 if (!cpu_has_virtual_nmis())
2788 return;
2789
2790 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2791 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2792 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2793}
2794
2795static int vmx_nmi_enabled(struct kvm_vcpu *vcpu)
2796{
2797 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2798 return !(guest_intr & (GUEST_INTR_STATE_NMI |
2799 GUEST_INTR_STATE_MOV_SS |
2800 GUEST_INTR_STATE_STI));
2801}
2802
2803static int vmx_irq_enabled(struct kvm_vcpu *vcpu)
2804{
2805 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2806 return (!(guest_intr & (GUEST_INTR_STATE_MOV_SS |
2807 GUEST_INTR_STATE_STI)) &&
2808 (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF));
2809}
2810
2811static void enable_intr_window(struct kvm_vcpu *vcpu)
2812{
2813 if (vcpu->arch.nmi_pending)
2814 enable_nmi_window(vcpu);
2815 else if (kvm_cpu_has_interrupt(vcpu))
2816 enable_irq_window(vcpu);
2817}
2818
Avi Kivitycf393f72008-07-01 16:20:21 +03002819static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
2820{
2821 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03002822 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03002823 bool unblock_nmi;
2824 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03002825 int type;
2826 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03002827
2828 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2829 if (cpu_has_virtual_nmis()) {
2830 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
2831 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
2832 /*
2833 * SDM 3: 25.7.1.2
2834 * Re-set bit "block by NMI" before VM entry if vmexit caused by
2835 * a guest IRET fault.
2836 */
2837 if (unblock_nmi && vector != DF_VECTOR)
2838 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2839 GUEST_INTR_STATE_NMI);
2840 }
Avi Kivity668f6122008-07-02 09:28:55 +03002841
2842 idt_vectoring_info = vmx->idt_vectoring_info;
2843 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
2844 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
2845 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
2846 if (vmx->vcpu.arch.nmi_injected) {
2847 /*
2848 * SDM 3: 25.7.1.2
2849 * Clear bit "block by NMI" before VM entry if a NMI delivery
2850 * faulted.
2851 */
2852 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
2853 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2854 GUEST_INTR_STATE_NMI);
2855 else
2856 vmx->vcpu.arch.nmi_injected = false;
2857 }
Avi Kivitycf393f72008-07-01 16:20:21 +03002858}
2859
Eddie Dong85f455f2007-07-06 12:20:49 +03002860static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2861{
Avi Kivity1155f762007-11-22 11:30:47 +02002862 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity668f6122008-07-02 09:28:55 +03002863 u32 idtv_info_field, intr_info_field;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002864 int vector;
Eddie Dong85f455f2007-07-06 12:20:49 +03002865
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002866 update_tpr_threshold(vcpu);
2867
Eddie Dong85f455f2007-07-06 12:20:49 +03002868 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Avi Kivity1155f762007-11-22 11:30:47 +02002869 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong85f455f2007-07-06 12:20:49 +03002870 if (intr_info_field & INTR_INFO_VALID_MASK) {
2871 if (idtv_info_field & INTR_INFO_VALID_MASK) {
2872 /* TODO: fault when IDT_Vectoring */
Ryan Harper9584bf22007-12-13 10:21:10 -06002873 if (printk_ratelimit())
2874 printk(KERN_ERR "Fault when IDT_Vectoring\n");
Eddie Dong85f455f2007-07-06 12:20:49 +03002875 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002876 enable_intr_window(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03002877 return;
2878 }
2879 if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002880 if ((idtv_info_field & VECTORING_INFO_TYPE_MASK)
2881 == INTR_TYPE_EXT_INTR
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002882 && vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002883 u8 vect = idtv_info_field & VECTORING_INFO_VECTOR_MASK;
2884
2885 vmx_inject_irq(vcpu, vect);
Sheng Yangf08864b2008-05-15 18:23:25 +08002886 enable_intr_window(vcpu);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002887 return;
2888 }
2889
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002890 KVMTRACE_1D(REDELIVER_EVT, vcpu, idtv_info_field, handler);
2891
Sheng Yangf08864b2008-05-15 18:23:25 +08002892 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field
2893 & ~INTR_INFO_RESVD_BITS_MASK);
Eddie Dong85f455f2007-07-06 12:20:49 +03002894 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2895 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
2896
Ryan Harper2e113842008-02-11 10:26:38 -06002897 if (unlikely(idtv_info_field & INTR_INFO_DELIVER_CODE_MASK))
Eddie Dong85f455f2007-07-06 12:20:49 +03002898 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2899 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Sheng Yangf08864b2008-05-15 18:23:25 +08002900 enable_intr_window(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03002901 return;
2902 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002903 if (cpu_has_virtual_nmis()) {
Avi Kivity668f6122008-07-02 09:28:55 +03002904 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
2905 if (vmx_nmi_enabled(vcpu)) {
2906 vcpu->arch.nmi_pending = false;
2907 vcpu->arch.nmi_injected = true;
2908 } else {
2909 enable_intr_window(vcpu);
2910 return;
2911 }
2912 }
2913 if (vcpu->arch.nmi_injected) {
2914 vmx_inject_nmi(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08002915 enable_intr_window(vcpu);
2916 return;
2917 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002918 }
2919 if (!kvm_cpu_has_interrupt(vcpu))
Eddie Dong85f455f2007-07-06 12:20:49 +03002920 return;
Sheng Yangf08864b2008-05-15 18:23:25 +08002921 if (vmx_irq_enabled(vcpu)) {
Eddie Dong1b9778d2007-09-03 16:56:58 +03002922 vector = kvm_cpu_get_interrupt(vcpu);
2923 vmx_inject_irq(vcpu, vector);
2924 kvm_timer_intr_post(vcpu, vector);
2925 } else
Eddie Dong85f455f2007-07-06 12:20:49 +03002926 enable_irq_window(vcpu);
2927}
2928
Avi Kivity9c8cba32007-11-22 11:42:59 +02002929/*
2930 * Failure to inject an interrupt should give us the information
2931 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
2932 * when fetching the interrupt redirection bitmap in the real-mode
2933 * tss, this doesn't happen. So we do it ourselves.
2934 */
2935static void fixup_rmode_irq(struct vcpu_vmx *vmx)
2936{
2937 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002938 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02002939 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002940 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002941 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
2942 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
2943 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
2944 return;
2945 }
2946 vmx->idt_vectoring_info =
2947 VECTORING_INFO_VALID_MASK
2948 | INTR_TYPE_EXT_INTR
2949 | vmx->rmode.irq.vector;
2950}
2951
Avi Kivity04d2cc72007-09-10 18:10:54 +03002952static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002954 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02002955 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03002956
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002957 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
2958 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
2959 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
2960 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
2961
Avi Kivitye6adf282007-04-30 16:07:54 +03002962 /*
2963 * Loading guest fpu may have cleared host cr0.ts
2964 */
2965 vmcs_writel(HOST_CR0, read_cr0());
2966
Mike Dayd77c26f2007-10-08 09:02:08 -04002967 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002969#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02002970 "push %%rdx; push %%rbp;"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002971 "push %%rcx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972#else
Laurent Vivierff593e52007-10-25 14:18:55 +02002973 "push %%edx; push %%ebp;"
2974 "push %%ecx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975#endif
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002976 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002977 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02002978 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002979 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002980#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002981 "mov %c[cr2](%0), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 "mov %%rax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002983 "mov %c[rax](%0), %%rax \n\t"
2984 "mov %c[rbx](%0), %%rbx \n\t"
2985 "mov %c[rdx](%0), %%rdx \n\t"
2986 "mov %c[rsi](%0), %%rsi \n\t"
2987 "mov %c[rdi](%0), %%rdi \n\t"
2988 "mov %c[rbp](%0), %%rbp \n\t"
2989 "mov %c[r8](%0), %%r8 \n\t"
2990 "mov %c[r9](%0), %%r9 \n\t"
2991 "mov %c[r10](%0), %%r10 \n\t"
2992 "mov %c[r11](%0), %%r11 \n\t"
2993 "mov %c[r12](%0), %%r12 \n\t"
2994 "mov %c[r13](%0), %%r13 \n\t"
2995 "mov %c[r14](%0), %%r14 \n\t"
2996 "mov %c[r15](%0), %%r15 \n\t"
2997 "mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002998#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002999 "mov %c[cr2](%0), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003000 "mov %%eax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003001 "mov %c[rax](%0), %%eax \n\t"
3002 "mov %c[rbx](%0), %%ebx \n\t"
3003 "mov %c[rdx](%0), %%edx \n\t"
3004 "mov %c[rsi](%0), %%esi \n\t"
3005 "mov %c[rdi](%0), %%edi \n\t"
3006 "mov %c[rbp](%0), %%ebp \n\t"
3007 "mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003008#endif
3009 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003010 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003011 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003012 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003013 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003014 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003016#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003017 "xchg %0, (%%rsp) \n\t"
3018 "mov %%rax, %c[rax](%0) \n\t"
3019 "mov %%rbx, %c[rbx](%0) \n\t"
3020 "pushq (%%rsp); popq %c[rcx](%0) \n\t"
3021 "mov %%rdx, %c[rdx](%0) \n\t"
3022 "mov %%rsi, %c[rsi](%0) \n\t"
3023 "mov %%rdi, %c[rdi](%0) \n\t"
3024 "mov %%rbp, %c[rbp](%0) \n\t"
3025 "mov %%r8, %c[r8](%0) \n\t"
3026 "mov %%r9, %c[r9](%0) \n\t"
3027 "mov %%r10, %c[r10](%0) \n\t"
3028 "mov %%r11, %c[r11](%0) \n\t"
3029 "mov %%r12, %c[r12](%0) \n\t"
3030 "mov %%r13, %c[r13](%0) \n\t"
3031 "mov %%r14, %c[r14](%0) \n\t"
3032 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003033 "mov %%cr2, %%rax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003034 "mov %%rax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035
Avi Kivitye08aa782007-11-15 18:06:18 +02003036 "pop %%rbp; pop %%rbp; pop %%rdx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037#else
Avi Kivitye08aa782007-11-15 18:06:18 +02003038 "xchg %0, (%%esp) \n\t"
3039 "mov %%eax, %c[rax](%0) \n\t"
3040 "mov %%ebx, %c[rbx](%0) \n\t"
3041 "pushl (%%esp); popl %c[rcx](%0) \n\t"
3042 "mov %%edx, %c[rdx](%0) \n\t"
3043 "mov %%esi, %c[rsi](%0) \n\t"
3044 "mov %%edi, %c[rdi](%0) \n\t"
3045 "mov %%ebp, %c[rbp](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003046 "mov %%cr2, %%eax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003047 "mov %%eax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003048
Avi Kivitye08aa782007-11-15 18:06:18 +02003049 "pop %%ebp; pop %%ebp; pop %%edx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003050#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02003051 "setbe %c[fail](%0) \n\t"
3052 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3053 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3054 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003055 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3056 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3057 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3058 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3059 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3060 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3061 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003062#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003063 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3064 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3065 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3066 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3067 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3068 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3069 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3070 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003071#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003072 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003073 : "cc", "memory"
3074#ifdef CONFIG_X86_64
3075 , "rbx", "rdi", "rsi"
3076 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Laurent Vivierff593e52007-10-25 14:18:55 +02003077#else
3078 , "ebx", "edi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02003079#endif
3080 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003081
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003082 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3083 vcpu->arch.regs_dirty = 0;
3084
Avi Kivity1155f762007-11-22 11:30:47 +02003085 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003086 if (vmx->rmode.irq.pending)
3087 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003088
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003089 vcpu->arch.interrupt_window_open =
Sheng Yangf08864b2008-05-15 18:23:25 +08003090 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3091 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003092
Mike Dayd77c26f2007-10-08 09:02:08 -04003093 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003094 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003095
3096 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3097
3098 /* We need to handle NMIs before interrupts are enabled */
Sheng Yangf08864b2008-05-15 18:23:25 +08003099 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200 &&
3100 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003101 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003102 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003103 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003104
3105 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106}
3107
Avi Kivity6aa8b732006-12-10 02:21:36 -08003108static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3109{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003110 struct vcpu_vmx *vmx = to_vmx(vcpu);
3111
3112 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003113 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003114 free_vmcs(vmx->vmcs);
3115 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003116 }
3117}
3118
3119static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3120{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003121 struct vcpu_vmx *vmx = to_vmx(vcpu);
3122
Sheng Yang2384d2b2008-01-17 15:14:33 +08003123 spin_lock(&vmx_vpid_lock);
3124 if (vmx->vpid != 0)
3125 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3126 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003127 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003128 kfree(vmx->host_msrs);
3129 kfree(vmx->guest_msrs);
3130 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003131 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003132}
3133
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003134static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003135{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003136 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003137 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003138 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003139
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003140 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003141 return ERR_PTR(-ENOMEM);
3142
Sheng Yang2384d2b2008-01-17 15:14:33 +08003143 allocate_vpid(vmx);
3144
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003145 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3146 if (err)
3147 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003148
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003149 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003150 if (!vmx->guest_msrs) {
3151 err = -ENOMEM;
3152 goto uninit_vcpu;
3153 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003154
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003155 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3156 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003157 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003158
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003159 vmx->vmcs = alloc_vmcs();
3160 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003161 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003162
3163 vmcs_clear(vmx->vmcs);
3164
Avi Kivity15ad7142007-07-11 18:17:21 +03003165 cpu = get_cpu();
3166 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003167 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003168 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003169 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003170 if (err)
3171 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003172 if (vm_need_virtualize_apic_accesses(kvm))
3173 if (alloc_apic_access_page(kvm) != 0)
3174 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003175
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003176 if (vm_need_ept())
3177 if (alloc_identity_pagetable(kvm) != 0)
3178 goto free_vmcs;
3179
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003180 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003181
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003182free_vmcs:
3183 free_vmcs(vmx->vmcs);
3184free_msrs:
3185 kfree(vmx->host_msrs);
3186free_guest_msrs:
3187 kfree(vmx->guest_msrs);
3188uninit_vcpu:
3189 kvm_vcpu_uninit(&vmx->vcpu);
3190free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003191 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003192 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003193}
3194
Yang, Sheng002c7f72007-07-31 14:23:01 +03003195static void __init vmx_check_processor_compat(void *rtn)
3196{
3197 struct vmcs_config vmcs_conf;
3198
3199 *(int *)rtn = 0;
3200 if (setup_vmcs_config(&vmcs_conf) < 0)
3201 *(int *)rtn = -EIO;
3202 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3203 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3204 smp_processor_id());
3205 *(int *)rtn = -EIO;
3206 }
3207}
3208
Sheng Yang67253af2008-04-25 10:20:22 +08003209static int get_ept_level(void)
3210{
3211 return VMX_EPT_DEFAULT_GAW + 1;
3212}
3213
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003214static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003215 .cpu_has_kvm_support = cpu_has_kvm_support,
3216 .disabled_by_bios = vmx_disabled_by_bios,
3217 .hardware_setup = hardware_setup,
3218 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003219 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003220 .hardware_enable = hardware_enable,
3221 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003222 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003223
3224 .vcpu_create = vmx_create_vcpu,
3225 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003226 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227
Avi Kivity04d2cc72007-09-10 18:10:54 +03003228 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003229 .vcpu_load = vmx_vcpu_load,
3230 .vcpu_put = vmx_vcpu_put,
3231
3232 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003233 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234 .get_msr = vmx_get_msr,
3235 .set_msr = vmx_set_msr,
3236 .get_segment_base = vmx_get_segment_base,
3237 .get_segment = vmx_get_segment,
3238 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003239 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003241 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003242 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243 .set_cr3 = vmx_set_cr3,
3244 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003246 .get_idt = vmx_get_idt,
3247 .set_idt = vmx_set_idt,
3248 .get_gdt = vmx_get_gdt,
3249 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003250 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251 .get_rflags = vmx_get_rflags,
3252 .set_rflags = vmx_set_rflags,
3253
3254 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003255
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003257 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003259 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003260 .get_irq = vmx_get_irq,
3261 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003262 .queue_exception = vmx_queue_exception,
3263 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003264 .inject_pending_irq = vmx_intr_assist,
3265 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003266
3267 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003268 .get_tdp_level = get_ept_level,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003269};
3270
3271static int __init vmx_init(void)
3272{
Sheng Yang25c5f222008-03-28 13:18:56 +08003273 void *va;
He, Qingfdef3ad2007-04-30 09:45:24 +03003274 int r;
3275
3276 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3277 if (!vmx_io_bitmap_a)
3278 return -ENOMEM;
3279
3280 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3281 if (!vmx_io_bitmap_b) {
3282 r = -ENOMEM;
3283 goto out;
3284 }
3285
Sheng Yang25c5f222008-03-28 13:18:56 +08003286 vmx_msr_bitmap = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3287 if (!vmx_msr_bitmap) {
3288 r = -ENOMEM;
3289 goto out1;
3290 }
3291
He, Qingfdef3ad2007-04-30 09:45:24 +03003292 /*
3293 * Allow direct access to the PC debug port (it is often used for I/O
3294 * delays, but the vmexits simply slow things down).
3295 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003296 va = kmap(vmx_io_bitmap_a);
3297 memset(va, 0xff, PAGE_SIZE);
3298 clear_bit(0x80, va);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003299 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003300
Sheng Yang25c5f222008-03-28 13:18:56 +08003301 va = kmap(vmx_io_bitmap_b);
3302 memset(va, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003303 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003304
Sheng Yang25c5f222008-03-28 13:18:56 +08003305 va = kmap(vmx_msr_bitmap);
3306 memset(va, 0xff, PAGE_SIZE);
3307 kunmap(vmx_msr_bitmap);
3308
Sheng Yang2384d2b2008-01-17 15:14:33 +08003309 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3310
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003311 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003312 if (r)
Sheng Yang25c5f222008-03-28 13:18:56 +08003313 goto out2;
3314
3315 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_FS_BASE);
3316 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_GS_BASE);
3317 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_CS);
3318 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_ESP);
3319 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_EIP);
He, Qingfdef3ad2007-04-30 09:45:24 +03003320
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003321 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003322 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003323 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
3324 VMX_EPT_WRITABLE_MASK |
3325 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang534e38b2008-09-08 15:12:30 +08003326 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003327 VMX_EPT_EXECUTABLE_MASK);
3328 kvm_enable_tdp();
3329 } else
3330 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003331
Avi Kivityc7addb92007-09-16 18:58:32 +02003332 if (bypass_guest_pf)
3333 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3334
Sheng Yang14394422008-04-28 12:24:45 +08003335 ept_sync_global();
3336
He, Qingfdef3ad2007-04-30 09:45:24 +03003337 return 0;
3338
Sheng Yang25c5f222008-03-28 13:18:56 +08003339out2:
3340 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003341out1:
3342 __free_page(vmx_io_bitmap_b);
3343out:
3344 __free_page(vmx_io_bitmap_a);
3345 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003346}
3347
3348static void __exit vmx_exit(void)
3349{
Sheng Yang25c5f222008-03-28 13:18:56 +08003350 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003351 __free_page(vmx_io_bitmap_b);
3352 __free_page(vmx_io_bitmap_a);
3353
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003354 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003355}
3356
3357module_init(vmx_init)
3358module_exit(vmx_exit)