blob: 5c9dac567a7407a0fca65e13a361173ac9bb342f [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 Kivity35920a32008-07-03 14:50:12 +030030#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040031
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080033#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080034
Avi Kivity4ecac3f2008-05-13 13:23:38 +030035#define __ex(x) __kvm_handle_fault_on_reboot(x)
36
Avi Kivity6aa8b732006-12-10 02:21:36 -080037MODULE_AUTHOR("Qumranet");
38MODULE_LICENSE("GPL");
39
Avi Kivityc7addb92007-09-16 18:58:32 +020040static int bypass_guest_pf = 1;
41module_param(bypass_guest_pf, bool, 0);
42
Sheng Yang2384d2b2008-01-17 15:14:33 +080043static int enable_vpid = 1;
44module_param(enable_vpid, bool, 0);
45
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020046static int flexpriority_enabled = 1;
47module_param(flexpriority_enabled, bool, 0);
48
Sheng Yang14394422008-04-28 12:24:45 +080049static int enable_ept = 1;
Sheng Yangd56f5462008-04-25 10:13:16 +080050module_param(enable_ept, bool, 0);
51
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040052struct vmcs {
53 u32 revision_id;
54 u32 abort;
55 char data[0];
56};
57
58struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100059 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030060 struct list_head local_vcpus_link;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040061 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030062 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020063 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040064 struct kvm_msr_entry *guest_msrs;
65 struct kvm_msr_entry *host_msrs;
66 int nmsrs;
67 int save_nmsrs;
68 int msr_offset_efer;
69#ifdef CONFIG_X86_64
70 int msr_offset_kernel_gs_base;
71#endif
72 struct vmcs *vmcs;
73 struct {
74 int loaded;
75 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020076 int gs_ldt_reload_needed;
77 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030078 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040079 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020080 struct {
81 struct {
82 bool pending;
83 u8 vector;
84 unsigned rip;
85 } irq;
86 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080087 int vpid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040088};
89
90static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
91{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100092 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040093}
94
Sheng Yangb7ebfb02008-04-25 21:44:52 +080095static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +080096static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +030097
Avi Kivity6aa8b732006-12-10 02:21:36 -080098static DEFINE_PER_CPU(struct vmcs *, vmxarea);
99static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300100static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800101
He, Qingfdef3ad2007-04-30 09:45:24 +0300102static struct page *vmx_io_bitmap_a;
103static struct page *vmx_io_bitmap_b;
Sheng Yang25c5f222008-03-28 13:18:56 +0800104static struct page *vmx_msr_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300105
Sheng Yang2384d2b2008-01-17 15:14:33 +0800106static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
107static DEFINE_SPINLOCK(vmx_vpid_lock);
108
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300109static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110 int size;
111 int order;
112 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300113 u32 pin_based_exec_ctrl;
114 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800115 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300116 u32 vmexit_ctrl;
117 u32 vmentry_ctrl;
118} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800119
Sheng Yangd56f5462008-04-25 10:13:16 +0800120struct vmx_capability {
121 u32 ept;
122 u32 vpid;
123} vmx_capability;
124
Avi Kivity6aa8b732006-12-10 02:21:36 -0800125#define VMX_SEGMENT_FIELD(seg) \
126 [VCPU_SREG_##seg] = { \
127 .selector = GUEST_##seg##_SELECTOR, \
128 .base = GUEST_##seg##_BASE, \
129 .limit = GUEST_##seg##_LIMIT, \
130 .ar_bytes = GUEST_##seg##_AR_BYTES, \
131 }
132
133static struct kvm_vmx_segment_field {
134 unsigned selector;
135 unsigned base;
136 unsigned limit;
137 unsigned ar_bytes;
138} kvm_vmx_segment_fields[] = {
139 VMX_SEGMENT_FIELD(CS),
140 VMX_SEGMENT_FIELD(DS),
141 VMX_SEGMENT_FIELD(ES),
142 VMX_SEGMENT_FIELD(FS),
143 VMX_SEGMENT_FIELD(GS),
144 VMX_SEGMENT_FIELD(SS),
145 VMX_SEGMENT_FIELD(TR),
146 VMX_SEGMENT_FIELD(LDTR),
147};
148
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300149/*
150 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
151 * away by decrementing the array size.
152 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800153static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800154#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800155 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
156#endif
157 MSR_EFER, MSR_K6_STAR,
158};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200159#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800160
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400161static void load_msrs(struct kvm_msr_entry *e, int n)
162{
163 int i;
164
165 for (i = 0; i < n; ++i)
166 wrmsrl(e[i].index, e[i].data);
167}
168
169static void save_msrs(struct kvm_msr_entry *e, int n)
170{
171 int i;
172
173 for (i = 0; i < n; ++i)
174 rdmsrl(e[i].index, e[i].data);
175}
176
Avi Kivity6aa8b732006-12-10 02:21:36 -0800177static inline int is_page_fault(u32 intr_info)
178{
179 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
180 INTR_INFO_VALID_MASK)) ==
181 (INTR_TYPE_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
182}
183
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300184static inline int is_no_device(u32 intr_info)
185{
186 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
187 INTR_INFO_VALID_MASK)) ==
188 (INTR_TYPE_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
189}
190
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500191static inline int is_invalid_opcode(u32 intr_info)
192{
193 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
194 INTR_INFO_VALID_MASK)) ==
195 (INTR_TYPE_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
196}
197
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198static inline int is_external_interrupt(u32 intr_info)
199{
200 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
201 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
202}
203
Sheng Yang25c5f222008-03-28 13:18:56 +0800204static inline int cpu_has_vmx_msr_bitmap(void)
205{
206 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS);
207}
208
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800209static inline int cpu_has_vmx_tpr_shadow(void)
210{
211 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
212}
213
214static inline int vm_need_tpr_shadow(struct kvm *kvm)
215{
216 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
217}
218
Sheng Yangf78e0e22007-10-29 09:40:42 +0800219static inline int cpu_has_secondary_exec_ctrls(void)
220{
221 return (vmcs_config.cpu_based_exec_ctrl &
222 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
223}
224
Avi Kivity774ead32007-12-26 13:57:04 +0200225static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800226{
Avi Kivity4c9fc8e2008-03-24 18:15:14 +0200227 return flexpriority_enabled
228 && (vmcs_config.cpu_based_2nd_exec_ctrl &
229 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800230}
231
Sheng Yangd56f5462008-04-25 10:13:16 +0800232static inline int cpu_has_vmx_invept_individual_addr(void)
233{
234 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT));
235}
236
237static inline int cpu_has_vmx_invept_context(void)
238{
239 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT));
240}
241
242static inline int cpu_has_vmx_invept_global(void)
243{
244 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT));
245}
246
247static inline int cpu_has_vmx_ept(void)
248{
249 return (vmcs_config.cpu_based_2nd_exec_ctrl &
250 SECONDARY_EXEC_ENABLE_EPT);
251}
252
253static inline int vm_need_ept(void)
254{
255 return (cpu_has_vmx_ept() && enable_ept);
256}
257
Sheng Yangf78e0e22007-10-29 09:40:42 +0800258static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
259{
260 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
261 (irqchip_in_kernel(kvm)));
262}
263
Sheng Yang2384d2b2008-01-17 15:14:33 +0800264static inline int cpu_has_vmx_vpid(void)
265{
266 return (vmcs_config.cpu_based_2nd_exec_ctrl &
267 SECONDARY_EXEC_ENABLE_VPID);
268}
269
Sheng Yangf08864b2008-05-15 18:23:25 +0800270static inline int cpu_has_virtual_nmis(void)
271{
272 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
273}
274
Rusty Russell8b9cf982007-07-30 16:31:43 +1000275static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800276{
277 int i;
278
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400279 for (i = 0; i < vmx->nmsrs; ++i)
280 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300281 return i;
282 return -1;
283}
284
Sheng Yang2384d2b2008-01-17 15:14:33 +0800285static inline void __invvpid(int ext, u16 vpid, gva_t gva)
286{
287 struct {
288 u64 vpid : 16;
289 u64 rsvd : 48;
290 u64 gva;
291 } operand = { vpid, 0, gva };
292
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300293 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800294 /* CF==1 or ZF==1 --> rc = -1 */
295 "; ja 1f ; ud2 ; 1:"
296 : : "a"(&operand), "c"(ext) : "cc", "memory");
297}
298
Sheng Yang14394422008-04-28 12:24:45 +0800299static inline void __invept(int ext, u64 eptp, gpa_t gpa)
300{
301 struct {
302 u64 eptp, gpa;
303 } operand = {eptp, gpa};
304
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300305 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800306 /* CF==1 or ZF==1 --> rc = -1 */
307 "; ja 1f ; ud2 ; 1:\n"
308 : : "a" (&operand), "c" (ext) : "cc", "memory");
309}
310
Rusty Russell8b9cf982007-07-30 16:31:43 +1000311static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300312{
313 int i;
314
Rusty Russell8b9cf982007-07-30 16:31:43 +1000315 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300316 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400317 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000318 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800319}
320
Avi Kivity6aa8b732006-12-10 02:21:36 -0800321static void vmcs_clear(struct vmcs *vmcs)
322{
323 u64 phys_addr = __pa(vmcs);
324 u8 error;
325
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300326 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800327 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
328 : "cc", "memory");
329 if (error)
330 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
331 vmcs, phys_addr);
332}
333
334static void __vcpu_clear(void *arg)
335{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000336 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800337 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800338
Rusty Russell8b9cf982007-07-30 16:31:43 +1000339 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400340 vmcs_clear(vmx->vmcs);
341 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800342 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800343 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300344 list_del(&vmx->local_vcpus_link);
345 vmx->vcpu.cpu = -1;
346 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800347}
348
Rusty Russell8b9cf982007-07-30 16:31:43 +1000349static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800350{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200351 if (vmx->vcpu.cpu == -1)
352 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200353 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800354}
355
Sheng Yang2384d2b2008-01-17 15:14:33 +0800356static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
357{
358 if (vmx->vpid == 0)
359 return;
360
361 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
362}
363
Sheng Yang14394422008-04-28 12:24:45 +0800364static inline void ept_sync_global(void)
365{
366 if (cpu_has_vmx_invept_global())
367 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
368}
369
370static inline void ept_sync_context(u64 eptp)
371{
372 if (vm_need_ept()) {
373 if (cpu_has_vmx_invept_context())
374 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
375 else
376 ept_sync_global();
377 }
378}
379
380static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
381{
382 if (vm_need_ept()) {
383 if (cpu_has_vmx_invept_individual_addr())
384 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
385 eptp, gpa);
386 else
387 ept_sync_context(eptp);
388 }
389}
390
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391static unsigned long vmcs_readl(unsigned long field)
392{
393 unsigned long value;
394
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300395 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396 : "=a"(value) : "d"(field) : "cc");
397 return value;
398}
399
400static u16 vmcs_read16(unsigned long field)
401{
402 return vmcs_readl(field);
403}
404
405static u32 vmcs_read32(unsigned long field)
406{
407 return vmcs_readl(field);
408}
409
410static u64 vmcs_read64(unsigned long field)
411{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800412#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800413 return vmcs_readl(field);
414#else
415 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
416#endif
417}
418
Avi Kivitye52de1b2007-01-05 16:36:56 -0800419static noinline void vmwrite_error(unsigned long field, unsigned long value)
420{
421 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
422 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
423 dump_stack();
424}
425
Avi Kivity6aa8b732006-12-10 02:21:36 -0800426static void vmcs_writel(unsigned long field, unsigned long value)
427{
428 u8 error;
429
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300430 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400431 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800432 if (unlikely(error))
433 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800434}
435
436static void vmcs_write16(unsigned long field, u16 value)
437{
438 vmcs_writel(field, value);
439}
440
441static void vmcs_write32(unsigned long field, u32 value)
442{
443 vmcs_writel(field, value);
444}
445
446static void vmcs_write64(unsigned long field, u64 value)
447{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800448 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300449#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800450 asm volatile ("");
451 vmcs_writel(field+1, value >> 32);
452#endif
453}
454
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300455static void vmcs_clear_bits(unsigned long field, u32 mask)
456{
457 vmcs_writel(field, vmcs_readl(field) & ~mask);
458}
459
460static void vmcs_set_bits(unsigned long field, u32 mask)
461{
462 vmcs_writel(field, vmcs_readl(field) | mask);
463}
464
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300465static void update_exception_bitmap(struct kvm_vcpu *vcpu)
466{
467 u32 eb;
468
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500469 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300470 if (!vcpu->fpu_active)
471 eb |= 1u << NM_VECTOR;
472 if (vcpu->guest_debug.enabled)
Jan Kiszka19bd8af2008-07-13 13:40:55 +0200473 eb |= 1u << DB_VECTOR;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800474 if (vcpu->arch.rmode.active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300475 eb = ~0;
Sheng Yang14394422008-04-28 12:24:45 +0800476 if (vm_need_ept())
477 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300478 vmcs_write32(EXCEPTION_BITMAP, eb);
479}
480
Avi Kivity33ed6322007-05-02 16:54:03 +0300481static void reload_tss(void)
482{
Avi Kivity33ed6322007-05-02 16:54:03 +0300483 /*
484 * VT restores TR but not its size. Useless.
485 */
486 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200487 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300488
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300489 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300490 descs = (void *)gdt.base;
491 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
492 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300493}
494
Rusty Russell8b9cf982007-07-30 16:31:43 +1000495static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300496{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400497 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300498 u64 host_efer = vmx->host_msrs[efer_offset].data;
499 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
500 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300501
Avi Kivity51c6cf62007-08-29 03:48:05 +0300502 if (efer_offset < 0)
503 return;
504 /*
505 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
506 * outside long mode
507 */
508 ignore_bits = EFER_NX | EFER_SCE;
509#ifdef CONFIG_X86_64
510 ignore_bits |= EFER_LMA | EFER_LME;
511 /* SCE is meaningful only in long mode on Intel */
512 if (guest_efer & EFER_LMA)
513 ignore_bits &= ~(u64)EFER_SCE;
514#endif
515 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
516 return;
517
518 vmx->host_state.guest_efer_loaded = 1;
519 guest_efer &= ~ignore_bits;
520 guest_efer |= host_efer & ignore_bits;
521 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000522 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300523}
524
Avi Kivity51c6cf62007-08-29 03:48:05 +0300525static void reload_host_efer(struct vcpu_vmx *vmx)
526{
527 if (vmx->host_state.guest_efer_loaded) {
528 vmx->host_state.guest_efer_loaded = 0;
529 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
530 }
531}
532
Avi Kivity04d2cc72007-09-10 18:10:54 +0300533static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300534{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300535 struct vcpu_vmx *vmx = to_vmx(vcpu);
536
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400537 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300538 return;
539
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400540 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300541 /*
542 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
543 * allow segment selectors with cpl > 0 or ti == 1.
544 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300545 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200546 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300547 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200548 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400549 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200550 vmx->host_state.fs_reload_needed = 0;
551 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300552 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200553 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300554 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300555 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400556 if (!(vmx->host_state.gs_sel & 7))
557 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300558 else {
559 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200560 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300561 }
562
563#ifdef CONFIG_X86_64
564 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
565 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
566#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400567 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
568 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300569#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300570
571#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400572 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573 save_msrs(vmx->host_msrs +
574 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400575
Avi Kivity707c0872007-05-02 17:33:43 +0300576#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400577 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300578 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300579}
580
Avi Kivitya9b21b62008-06-24 11:48:49 +0300581static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300582{
Avi Kivity15ad7142007-07-11 18:17:21 +0300583 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300584
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400585 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300586 return;
587
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200588 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400589 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200590 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300591 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200592 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300593 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300594 /*
595 * If we have to reload gs, we must take care to
596 * preserve our gs base.
597 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300598 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300599 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300600#ifdef CONFIG_X86_64
601 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
602#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300603 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300604 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200605 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400606 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
607 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300608 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300609}
610
Avi Kivitya9b21b62008-06-24 11:48:49 +0300611static void vmx_load_host_state(struct vcpu_vmx *vmx)
612{
613 preempt_disable();
614 __vmx_load_host_state(vmx);
615 preempt_enable();
616}
617
Avi Kivity6aa8b732006-12-10 02:21:36 -0800618/*
619 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
620 * vcpu mutex is already taken.
621 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300622static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800623{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400624 struct vcpu_vmx *vmx = to_vmx(vcpu);
625 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200626 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800627
Eddie Donga3d7f852007-09-03 16:15:12 +0300628 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000629 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300630 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800631 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300632 local_irq_disable();
633 list_add(&vmx->local_vcpus_link,
634 &per_cpu(vcpus_on_cpu, cpu));
635 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300636 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800637
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400638 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639 u8 error;
640
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400641 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300642 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800643 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
644 : "cc");
645 if (error)
646 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400647 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800648 }
649
650 if (vcpu->cpu != cpu) {
651 struct descriptor_table dt;
652 unsigned long sysenter_esp;
653
654 vcpu->cpu = cpu;
655 /*
656 * Linux uses per-cpu TSS and GDT, so set these when switching
657 * processors.
658 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300659 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
660 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800661 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
662
663 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
664 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300665
666 /*
667 * Make sure the time stamp counter is monotonous.
668 */
669 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200670 if (tsc_this < vcpu->arch.host_tsc) {
671 delta = vcpu->arch.host_tsc - tsc_this;
672 new_offset = vmcs_read64(TSC_OFFSET) + delta;
673 vmcs_write64(TSC_OFFSET, new_offset);
674 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676}
677
678static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
679{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300680 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681}
682
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300683static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
684{
685 if (vcpu->fpu_active)
686 return;
687 vcpu->fpu_active = 1;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000688 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800689 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92fa2007-07-17 23:19:08 +1000690 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300691 update_exception_bitmap(vcpu);
692}
693
694static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
695{
696 if (!vcpu->fpu_active)
697 return;
698 vcpu->fpu_active = 0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000699 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300700 update_exception_bitmap(vcpu);
701}
702
Avi Kivity6aa8b732006-12-10 02:21:36 -0800703static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
704{
705 return vmcs_readl(GUEST_RFLAGS);
706}
707
708static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
709{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800710 if (vcpu->arch.rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100711 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712 vmcs_writel(GUEST_RFLAGS, rflags);
713}
714
715static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
716{
717 unsigned long rip;
718 u32 interruptibility;
719
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300720 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800721 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300722 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723
724 /*
725 * We emulated an instruction, so temporary interrupt blocking
726 * should be removed, if set.
727 */
728 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
729 if (interruptibility & 3)
730 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
731 interruptibility & ~3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800732 vcpu->arch.interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733}
734
Avi Kivity298101d2007-11-25 13:41:11 +0200735static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
736 bool has_error_code, u32 error_code)
737{
738 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
739 nr | INTR_TYPE_EXCEPTION
Ryan Harper2e113842008-02-11 10:26:38 -0600740 | (has_error_code ? INTR_INFO_DELIVER_CODE_MASK : 0)
Avi Kivity298101d2007-11-25 13:41:11 +0200741 | INTR_INFO_VALID_MASK);
742 if (has_error_code)
743 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
744}
745
746static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
747{
Avi Kivity35920a32008-07-03 14:50:12 +0300748 return false;
Avi Kivity298101d2007-11-25 13:41:11 +0200749}
750
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751/*
Eddie Donga75beee2007-05-17 18:55:15 +0300752 * Swap MSR entry in host/guest MSR entry array.
753 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200754#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000755static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300756{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400757 struct kvm_msr_entry tmp;
758
759 tmp = vmx->guest_msrs[to];
760 vmx->guest_msrs[to] = vmx->guest_msrs[from];
761 vmx->guest_msrs[from] = tmp;
762 tmp = vmx->host_msrs[to];
763 vmx->host_msrs[to] = vmx->host_msrs[from];
764 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300765}
Gabriel C54e11fa2007-08-01 16:23:10 +0200766#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300767
768/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300769 * Set up the vmcs to automatically save and restore system
770 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
771 * mode, as fiddling with msrs is very expensive.
772 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000773static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300774{
Eddie Dong2cc51562007-05-21 07:28:09 +0300775 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300776
Avi Kivity33f9c502008-02-27 16:06:57 +0200777 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300778 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300779#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000780 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300781 int index;
782
Rusty Russell8b9cf982007-07-30 16:31:43 +1000783 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300784 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000785 move_msr_up(vmx, index, save_nmsrs++);
786 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300787 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000788 move_msr_up(vmx, index, save_nmsrs++);
789 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300790 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000791 move_msr_up(vmx, index, save_nmsrs++);
792 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300793 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000794 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300795 /*
796 * MSR_K6_STAR is only needed on long mode guests, and only
797 * if efer.sce is enabled.
798 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000799 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800800 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000801 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300802 }
Eddie Donga75beee2007-05-17 18:55:15 +0300803#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400804 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300805
Eddie Donga75beee2007-05-17 18:55:15 +0300806#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400807 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000808 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300809#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000810 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300811}
812
813/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800814 * reads and returns guest's timestamp counter "register"
815 * guest_tsc = host_tsc + tsc_offset -- 21.3
816 */
817static u64 guest_read_tsc(void)
818{
819 u64 host_tsc, tsc_offset;
820
821 rdtscll(host_tsc);
822 tsc_offset = vmcs_read64(TSC_OFFSET);
823 return host_tsc + tsc_offset;
824}
825
826/*
827 * writes 'guest_tsc' into guest's timestamp counter "register"
828 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
829 */
830static void guest_write_tsc(u64 guest_tsc)
831{
832 u64 host_tsc;
833
834 rdtscll(host_tsc);
835 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
836}
837
Avi Kivity6aa8b732006-12-10 02:21:36 -0800838/*
839 * Reads an msr value (of 'msr_index') into 'pdata'.
840 * Returns 0 on success, non-0 otherwise.
841 * Assumes vcpu_load() was already called.
842 */
843static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
844{
845 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400846 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847
848 if (!pdata) {
849 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
850 return -EINVAL;
851 }
852
853 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800854#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 case MSR_FS_BASE:
856 data = vmcs_readl(GUEST_FS_BASE);
857 break;
858 case MSR_GS_BASE:
859 data = vmcs_readl(GUEST_GS_BASE);
860 break;
861 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800862 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800863#endif
864 case MSR_IA32_TIME_STAMP_COUNTER:
865 data = guest_read_tsc();
866 break;
867 case MSR_IA32_SYSENTER_CS:
868 data = vmcs_read32(GUEST_SYSENTER_CS);
869 break;
870 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200871 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800872 break;
873 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200874 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000877 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800878 if (msr) {
879 data = msr->data;
880 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800882 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883 }
884
885 *pdata = data;
886 return 0;
887}
888
889/*
890 * Writes msr value into into the appropriate "register".
891 * Returns 0 on success, non-0 otherwise.
892 * Assumes vcpu_load() was already called.
893 */
894static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
895{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400896 struct vcpu_vmx *vmx = to_vmx(vcpu);
897 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300898 int ret = 0;
899
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800901#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800902 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300903 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300904 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300905 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 case MSR_FS_BASE:
907 vmcs_writel(GUEST_FS_BASE, data);
908 break;
909 case MSR_GS_BASE:
910 vmcs_writel(GUEST_GS_BASE, data);
911 break;
912#endif
913 case MSR_IA32_SYSENTER_CS:
914 vmcs_write32(GUEST_SYSENTER_CS, data);
915 break;
916 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200917 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 break;
919 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200920 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200922 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 guest_write_tsc(data);
924 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +0200925 case MSR_P6_PERFCTR0:
926 case MSR_P6_PERFCTR1:
927 case MSR_P6_EVNTSEL0:
928 case MSR_P6_EVNTSEL1:
929 /*
930 * Just discard all writes to the performance counters; this
931 * should keep both older linux and windows 64-bit guests
932 * happy
933 */
934 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
935
936 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300938 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000939 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800940 if (msr) {
941 msr->data = data;
942 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300944 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945 }
946
Eddie Dong2cc51562007-05-21 07:28:09 +0300947 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800948}
949
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300950static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800951{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300952 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
953 switch (reg) {
954 case VCPU_REGS_RSP:
955 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
956 break;
957 case VCPU_REGS_RIP:
958 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
959 break;
960 default:
961 break;
962 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963}
964
965static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
966{
967 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 int old_singlestep;
969
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 old_singlestep = vcpu->guest_debug.singlestep;
971
972 vcpu->guest_debug.enabled = dbg->enabled;
973 if (vcpu->guest_debug.enabled) {
974 int i;
975
976 dr7 |= 0x200; /* exact */
977 for (i = 0; i < 4; ++i) {
978 if (!dbg->breakpoints[i].enabled)
979 continue;
980 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
981 dr7 |= 2 << (i*2); /* global enable */
982 dr7 |= 0 << (i*4+16); /* execution breakpoint */
983 }
984
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300986 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988
989 if (old_singlestep && !vcpu->guest_debug.singlestep) {
990 unsigned long flags;
991
992 flags = vmcs_readl(GUEST_RFLAGS);
993 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
994 vmcs_writel(GUEST_RFLAGS, flags);
995 }
996
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300997 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 vmcs_writel(GUEST_DR7, dr7);
999
1000 return 0;
1001}
1002
Eddie Dong2a8067f2007-08-06 16:29:07 +03001003static int vmx_get_irq(struct kvm_vcpu *vcpu)
1004{
Avi Kivityf7d92382008-07-03 16:14:28 +03001005 if (!vcpu->arch.interrupt.pending)
1006 return -1;
1007 return vcpu->arch.interrupt.nr;
Eddie Dong2a8067f2007-08-06 16:29:07 +03001008}
1009
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010static __init int cpu_has_kvm_support(void)
1011{
1012 unsigned long ecx = cpuid_ecx(1);
1013 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
1014}
1015
1016static __init int vmx_disabled_by_bios(void)
1017{
1018 u64 msr;
1019
1020 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001021 return (msr & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1022 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1023 == IA32_FEATURE_CONTROL_LOCKED_BIT;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001024 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025}
1026
Avi Kivity774c47f2007-02-12 00:54:47 -08001027static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028{
1029 int cpu = raw_smp_processor_id();
1030 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1031 u64 old;
1032
Avi Kivity543e4242008-05-13 16:22:47 +03001033 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001035 if ((old & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1036 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1037 != (IA32_FEATURE_CONTROL_LOCKED_BIT |
1038 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001040 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yangca60dfb2008-06-24 17:02:38 +08001041 IA32_FEATURE_CONTROL_LOCKED_BIT |
1042 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT);
Rusty Russell66aee912007-07-17 23:34:16 +10001043 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001044 asm volatile (ASM_VMX_VMXON_RAX
1045 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046 : "memory", "cc");
1047}
1048
Avi Kivity543e4242008-05-13 16:22:47 +03001049static void vmclear_local_vcpus(void)
1050{
1051 int cpu = raw_smp_processor_id();
1052 struct vcpu_vmx *vmx, *n;
1053
1054 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1055 local_vcpus_link)
1056 __vcpu_clear(vmx);
1057}
1058
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059static void hardware_disable(void *garbage)
1060{
Avi Kivity543e4242008-05-13 16:22:47 +03001061 vmclear_local_vcpus();
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001062 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eli Collinse693d712008-06-01 20:24:40 -07001063 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064}
1065
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001066static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001067 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001068{
1069 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001070 u32 ctl = ctl_min | ctl_opt;
1071
1072 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1073
1074 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1075 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1076
1077 /* Ensure minimum (required) set of control bits are supported. */
1078 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001079 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001080
1081 *result = ctl;
1082 return 0;
1083}
1084
Yang, Sheng002c7f72007-07-31 14:23:01 +03001085static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001086{
1087 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001088 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001089 u32 _pin_based_exec_control = 0;
1090 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001091 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001092 u32 _vmexit_control = 0;
1093 u32 _vmentry_control = 0;
1094
1095 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001096 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001097 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1098 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001099 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001100
1101 min = CPU_BASED_HLT_EXITING |
1102#ifdef CONFIG_X86_64
1103 CPU_BASED_CR8_LOAD_EXITING |
1104 CPU_BASED_CR8_STORE_EXITING |
1105#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001106 CPU_BASED_CR3_LOAD_EXITING |
1107 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001108 CPU_BASED_USE_IO_BITMAPS |
1109 CPU_BASED_MOV_DR_EXITING |
1110 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001111 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001112 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001113 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001114 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1115 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001116 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001117#ifdef CONFIG_X86_64
1118 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1119 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1120 ~CPU_BASED_CR8_STORE_EXITING;
1121#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001122 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001123 min2 = 0;
1124 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001125 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001126 SECONDARY_EXEC_ENABLE_VPID |
1127 SECONDARY_EXEC_ENABLE_EPT;
1128 if (adjust_vmx_controls(min2, opt2,
1129 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001130 &_cpu_based_2nd_exec_control) < 0)
1131 return -EIO;
1132 }
1133#ifndef CONFIG_X86_64
1134 if (!(_cpu_based_2nd_exec_control &
1135 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1136 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1137#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001138 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
1139 /* CR3 accesses don't need to cause VM Exits when EPT enabled */
1140 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
1141 CPU_BASED_CR3_STORE_EXITING);
1142 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1143 &_cpu_based_exec_control) < 0)
1144 return -EIO;
1145 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1146 vmx_capability.ept, vmx_capability.vpid);
1147 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001148
1149 min = 0;
1150#ifdef CONFIG_X86_64
1151 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1152#endif
1153 opt = 0;
1154 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1155 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001156 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001157
1158 min = opt = 0;
1159 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1160 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001161 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001162
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001163 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001164
1165 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1166 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001167 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001168
1169#ifdef CONFIG_X86_64
1170 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1171 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001172 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001173#endif
1174
1175 /* Require Write-Back (WB) memory type for VMCS accesses. */
1176 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001177 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001178
Yang, Sheng002c7f72007-07-31 14:23:01 +03001179 vmcs_conf->size = vmx_msr_high & 0x1fff;
1180 vmcs_conf->order = get_order(vmcs_config.size);
1181 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001182
Yang, Sheng002c7f72007-07-31 14:23:01 +03001183 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1184 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001185 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001186 vmcs_conf->vmexit_ctrl = _vmexit_control;
1187 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001188
1189 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001190}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191
1192static struct vmcs *alloc_vmcs_cpu(int cpu)
1193{
1194 int node = cpu_to_node(cpu);
1195 struct page *pages;
1196 struct vmcs *vmcs;
1197
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001198 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001199 if (!pages)
1200 return NULL;
1201 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001202 memset(vmcs, 0, vmcs_config.size);
1203 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001204 return vmcs;
1205}
1206
1207static struct vmcs *alloc_vmcs(void)
1208{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001209 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001210}
1211
1212static void free_vmcs(struct vmcs *vmcs)
1213{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001214 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001215}
1216
Sam Ravnborg39959582007-06-01 00:47:13 -07001217static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218{
1219 int cpu;
1220
1221 for_each_online_cpu(cpu)
1222 free_vmcs(per_cpu(vmxarea, cpu));
1223}
1224
Avi Kivity6aa8b732006-12-10 02:21:36 -08001225static __init int alloc_kvm_area(void)
1226{
1227 int cpu;
1228
1229 for_each_online_cpu(cpu) {
1230 struct vmcs *vmcs;
1231
1232 vmcs = alloc_vmcs_cpu(cpu);
1233 if (!vmcs) {
1234 free_kvm_area();
1235 return -ENOMEM;
1236 }
1237
1238 per_cpu(vmxarea, cpu) = vmcs;
1239 }
1240 return 0;
1241}
1242
1243static __init int hardware_setup(void)
1244{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001245 if (setup_vmcs_config(&vmcs_config) < 0)
1246 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001247
1248 if (boot_cpu_has(X86_FEATURE_NX))
1249 kvm_enable_efer_bits(EFER_NX);
1250
Avi Kivity6aa8b732006-12-10 02:21:36 -08001251 return alloc_kvm_area();
1252}
1253
1254static __exit void hardware_unsetup(void)
1255{
1256 free_kvm_area();
1257}
1258
Avi Kivity6aa8b732006-12-10 02:21:36 -08001259static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1260{
1261 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1262
Avi Kivity6af11b92007-03-19 13:18:10 +02001263 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001264 vmcs_write16(sf->selector, save->selector);
1265 vmcs_writel(sf->base, save->base);
1266 vmcs_write32(sf->limit, save->limit);
1267 vmcs_write32(sf->ar_bytes, save->ar);
1268 } else {
1269 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1270 << AR_DPL_SHIFT;
1271 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1272 }
1273}
1274
1275static void enter_pmode(struct kvm_vcpu *vcpu)
1276{
1277 unsigned long flags;
1278
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001279 vcpu->arch.rmode.active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001280
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001281 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1282 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1283 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001284
1285 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001286 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001287 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001288 vmcs_writel(GUEST_RFLAGS, flags);
1289
Rusty Russell66aee912007-07-17 23:34:16 +10001290 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1291 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001292
1293 update_exception_bitmap(vcpu);
1294
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001295 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1296 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1297 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1298 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001299
1300 vmcs_write16(GUEST_SS_SELECTOR, 0);
1301 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1302
1303 vmcs_write16(GUEST_CS_SELECTOR,
1304 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1305 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1306}
1307
Mike Dayd77c26f2007-10-08 09:02:08 -04001308static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001310 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001311 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1312 kvm->memslots[0].npages - 3;
1313 return base_gfn << PAGE_SHIFT;
1314 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001315 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001316}
1317
1318static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1319{
1320 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1321
1322 save->selector = vmcs_read16(sf->selector);
1323 save->base = vmcs_readl(sf->base);
1324 save->limit = vmcs_read32(sf->limit);
1325 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001326 vmcs_write16(sf->selector, save->base >> 4);
1327 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001328 vmcs_write32(sf->limit, 0xffff);
1329 vmcs_write32(sf->ar_bytes, 0xf3);
1330}
1331
1332static void enter_rmode(struct kvm_vcpu *vcpu)
1333{
1334 unsigned long flags;
1335
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001336 vcpu->arch.rmode.active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001338 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1340
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001341 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001342 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1343
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001344 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1346
1347 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001348 vcpu->arch.rmode.save_iopl
1349 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001351 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001352
1353 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001354 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001355 update_exception_bitmap(vcpu);
1356
1357 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1358 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1359 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1360
1361 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001362 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001363 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1364 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1366
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001367 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1368 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1369 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1370 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001371
Eddie Dong8668a3c2007-10-10 14:26:45 +08001372 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001373 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374}
1375
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001376#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377
1378static void enter_lmode(struct kvm_vcpu *vcpu)
1379{
1380 u32 guest_tr_ar;
1381
1382 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1383 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1384 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001385 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386 vmcs_write32(GUEST_TR_AR_BYTES,
1387 (guest_tr_ar & ~AR_TYPE_MASK)
1388 | AR_TYPE_BUSY_64_TSS);
1389 }
1390
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001391 vcpu->arch.shadow_efer |= EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392
Rusty Russell8b9cf982007-07-30 16:31:43 +10001393 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 vmcs_write32(VM_ENTRY_CONTROLS,
1395 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001396 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397}
1398
1399static void exit_lmode(struct kvm_vcpu *vcpu)
1400{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001401 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001402
1403 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
1408#endif
1409
Sheng Yang2384d2b2008-01-17 15:14:33 +08001410static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1411{
1412 vpid_sync_vcpu_all(to_vmx(vcpu));
Sheng Yang4e1096d2008-07-06 19:16:51 +08001413 if (vm_need_ept())
1414 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001415}
1416
Anthony Liguori25c4c272007-04-27 09:29:21 +03001417static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001418{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001419 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1420 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001421}
1422
Sheng Yang14394422008-04-28 12:24:45 +08001423static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1424{
1425 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1426 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1427 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1428 return;
1429 }
1430 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1431 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1432 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1433 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1434 }
1435}
1436
1437static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1438
1439static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1440 unsigned long cr0,
1441 struct kvm_vcpu *vcpu)
1442{
1443 if (!(cr0 & X86_CR0_PG)) {
1444 /* From paging/starting to nonpaging */
1445 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001446 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001447 (CPU_BASED_CR3_LOAD_EXITING |
1448 CPU_BASED_CR3_STORE_EXITING));
1449 vcpu->arch.cr0 = cr0;
1450 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1451 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1452 *hw_cr0 &= ~X86_CR0_WP;
1453 } else if (!is_paging(vcpu)) {
1454 /* From nonpaging to paging */
1455 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001456 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001457 ~(CPU_BASED_CR3_LOAD_EXITING |
1458 CPU_BASED_CR3_STORE_EXITING));
1459 vcpu->arch.cr0 = cr0;
1460 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1461 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1462 *hw_cr0 &= ~X86_CR0_WP;
1463 }
1464}
1465
1466static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1467 struct kvm_vcpu *vcpu)
1468{
1469 if (!is_paging(vcpu)) {
1470 *hw_cr4 &= ~X86_CR4_PAE;
1471 *hw_cr4 |= X86_CR4_PSE;
1472 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1473 *hw_cr4 &= ~X86_CR4_PAE;
1474}
1475
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1477{
Sheng Yang14394422008-04-28 12:24:45 +08001478 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1479 KVM_VM_CR0_ALWAYS_ON;
1480
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001481 vmx_fpu_deactivate(vcpu);
1482
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001483 if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484 enter_pmode(vcpu);
1485
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001486 if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487 enter_rmode(vcpu);
1488
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001489#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001490 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001491 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001493 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001494 exit_lmode(vcpu);
1495 }
1496#endif
1497
Sheng Yang14394422008-04-28 12:24:45 +08001498 if (vm_need_ept())
1499 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1500
Avi Kivity6aa8b732006-12-10 02:21:36 -08001501 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001502 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001503 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001504
Rusty Russell707d92fa2007-07-17 23:19:08 +10001505 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001506 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507}
1508
Sheng Yang14394422008-04-28 12:24:45 +08001509static u64 construct_eptp(unsigned long root_hpa)
1510{
1511 u64 eptp;
1512
1513 /* TODO write the value reading from MSR */
1514 eptp = VMX_EPT_DEFAULT_MT |
1515 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1516 eptp |= (root_hpa & PAGE_MASK);
1517
1518 return eptp;
1519}
1520
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1522{
Sheng Yang14394422008-04-28 12:24:45 +08001523 unsigned long guest_cr3;
1524 u64 eptp;
1525
1526 guest_cr3 = cr3;
1527 if (vm_need_ept()) {
1528 eptp = construct_eptp(cr3);
1529 vmcs_write64(EPT_POINTER, eptp);
1530 ept_sync_context(eptp);
1531 ept_load_pdptrs(vcpu);
1532 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1533 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1534 }
1535
Sheng Yang2384d2b2008-01-17 15:14:33 +08001536 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001537 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001538 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001539 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001540}
1541
1542static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1543{
Sheng Yang14394422008-04-28 12:24:45 +08001544 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.active ?
1545 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1546
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001547 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08001548 if (vm_need_ept())
1549 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1550
1551 vmcs_writel(CR4_READ_SHADOW, cr4);
1552 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001553}
1554
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1556{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001557 struct vcpu_vmx *vmx = to_vmx(vcpu);
1558 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001560 vcpu->arch.shadow_efer = efer;
Joerg Roedel9f62e192008-01-31 14:57:39 +01001561 if (!msr)
1562 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563 if (efer & EFER_LMA) {
1564 vmcs_write32(VM_ENTRY_CONTROLS,
1565 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001566 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567 msr->data = efer;
1568
1569 } else {
1570 vmcs_write32(VM_ENTRY_CONTROLS,
1571 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001572 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573
1574 msr->data = efer & ~EFER_LME;
1575 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001576 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577}
1578
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1580{
1581 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1582
1583 return vmcs_readl(sf->base);
1584}
1585
1586static void vmx_get_segment(struct kvm_vcpu *vcpu,
1587 struct kvm_segment *var, int seg)
1588{
1589 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1590 u32 ar;
1591
1592 var->base = vmcs_readl(sf->base);
1593 var->limit = vmcs_read32(sf->limit);
1594 var->selector = vmcs_read16(sf->selector);
1595 ar = vmcs_read32(sf->ar_bytes);
1596 if (ar & AR_UNUSABLE_MASK)
1597 ar = 0;
1598 var->type = ar & 15;
1599 var->s = (ar >> 4) & 1;
1600 var->dpl = (ar >> 5) & 3;
1601 var->present = (ar >> 7) & 1;
1602 var->avl = (ar >> 12) & 1;
1603 var->l = (ar >> 13) & 1;
1604 var->db = (ar >> 14) & 1;
1605 var->g = (ar >> 15) & 1;
1606 var->unusable = (ar >> 16) & 1;
1607}
1608
Izik Eidus2e4d2652008-03-24 19:38:34 +02001609static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1610{
1611 struct kvm_segment kvm_seg;
1612
1613 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1614 return 0;
1615
1616 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1617 return 3;
1618
1619 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1620 return kvm_seg.selector & 3;
1621}
1622
Avi Kivity653e3102007-05-07 10:55:37 +03001623static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001624{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625 u32 ar;
1626
Avi Kivity653e3102007-05-07 10:55:37 +03001627 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628 ar = 1 << 16;
1629 else {
1630 ar = var->type & 15;
1631 ar |= (var->s & 1) << 4;
1632 ar |= (var->dpl & 3) << 5;
1633 ar |= (var->present & 1) << 7;
1634 ar |= (var->avl & 1) << 12;
1635 ar |= (var->l & 1) << 13;
1636 ar |= (var->db & 1) << 14;
1637 ar |= (var->g & 1) << 15;
1638 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001639 if (ar == 0) /* a 0 value means unusable */
1640 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001641
1642 return ar;
1643}
1644
1645static void vmx_set_segment(struct kvm_vcpu *vcpu,
1646 struct kvm_segment *var, int seg)
1647{
1648 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1649 u32 ar;
1650
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001651 if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
1652 vcpu->arch.rmode.tr.selector = var->selector;
1653 vcpu->arch.rmode.tr.base = var->base;
1654 vcpu->arch.rmode.tr.limit = var->limit;
1655 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001656 return;
1657 }
1658 vmcs_writel(sf->base, var->base);
1659 vmcs_write32(sf->limit, var->limit);
1660 vmcs_write16(sf->selector, var->selector);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001661 if (vcpu->arch.rmode.active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001662 /*
1663 * Hack real-mode segments into vm86 compatibility.
1664 */
1665 if (var->base == 0xffff0000 && var->selector == 0xf000)
1666 vmcs_writel(sf->base, 0xf0000);
1667 ar = 0xf3;
1668 } else
1669 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001670 vmcs_write32(sf->ar_bytes, ar);
1671}
1672
Avi Kivity6aa8b732006-12-10 02:21:36 -08001673static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1674{
1675 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1676
1677 *db = (ar >> 14) & 1;
1678 *l = (ar >> 13) & 1;
1679}
1680
1681static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1682{
1683 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1684 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1685}
1686
1687static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1688{
1689 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1690 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1691}
1692
1693static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1694{
1695 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1696 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1697}
1698
1699static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1700{
1701 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1702 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1703}
1704
Mike Dayd77c26f2007-10-08 09:02:08 -04001705static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001706{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001708 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001709 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001710 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711
Izik Eidus195aefd2007-10-01 22:14:18 +02001712 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1713 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001714 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001715 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1716 r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
1717 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001718 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001719 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1720 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001721 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001722 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1723 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001724 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001725 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001726 r = kvm_write_guest_page(kvm, fn, &data,
1727 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1728 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02001729 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001730 goto out;
1731
1732 ret = 1;
1733out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001734 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735}
1736
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001737static int init_rmode_identity_map(struct kvm *kvm)
1738{
1739 int i, r, ret;
1740 pfn_t identity_map_pfn;
1741 u32 tmp;
1742
1743 if (!vm_need_ept())
1744 return 1;
1745 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
1746 printk(KERN_ERR "EPT: identity-mapping pagetable "
1747 "haven't been allocated!\n");
1748 return 0;
1749 }
1750 if (likely(kvm->arch.ept_identity_pagetable_done))
1751 return 1;
1752 ret = 0;
1753 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
1754 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
1755 if (r < 0)
1756 goto out;
1757 /* Set up identity-mapping pagetable for EPT in real mode */
1758 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
1759 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
1760 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
1761 r = kvm_write_guest_page(kvm, identity_map_pfn,
1762 &tmp, i * sizeof(tmp), sizeof(tmp));
1763 if (r < 0)
1764 goto out;
1765 }
1766 kvm->arch.ept_identity_pagetable_done = true;
1767 ret = 1;
1768out:
1769 return ret;
1770}
1771
Avi Kivity6aa8b732006-12-10 02:21:36 -08001772static void seg_setup(int seg)
1773{
1774 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1775
1776 vmcs_write16(sf->selector, 0);
1777 vmcs_writel(sf->base, 0);
1778 vmcs_write32(sf->limit, 0xffff);
1779 vmcs_write32(sf->ar_bytes, 0x93);
1780}
1781
Sheng Yangf78e0e22007-10-29 09:40:42 +08001782static int alloc_apic_access_page(struct kvm *kvm)
1783{
1784 struct kvm_userspace_memory_region kvm_userspace_mem;
1785 int r = 0;
1786
Izik Eidus72dc67a2008-02-10 18:04:15 +02001787 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001788 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001789 goto out;
1790 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1791 kvm_userspace_mem.flags = 0;
1792 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1793 kvm_userspace_mem.memory_size = PAGE_SIZE;
1794 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1795 if (r)
1796 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02001797
1798 down_read(&current->mm->mmap_sem);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001799 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001800 up_read(&current->mm->mmap_sem);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001801out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02001802 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001803 return r;
1804}
1805
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001806static int alloc_identity_pagetable(struct kvm *kvm)
1807{
1808 struct kvm_userspace_memory_region kvm_userspace_mem;
1809 int r = 0;
1810
1811 down_write(&kvm->slots_lock);
1812 if (kvm->arch.ept_identity_pagetable)
1813 goto out;
1814 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
1815 kvm_userspace_mem.flags = 0;
1816 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1817 kvm_userspace_mem.memory_size = PAGE_SIZE;
1818 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1819 if (r)
1820 goto out;
1821
1822 down_read(&current->mm->mmap_sem);
1823 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
1824 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
1825 up_read(&current->mm->mmap_sem);
1826out:
1827 up_write(&kvm->slots_lock);
1828 return r;
1829}
1830
Sheng Yang2384d2b2008-01-17 15:14:33 +08001831static void allocate_vpid(struct vcpu_vmx *vmx)
1832{
1833 int vpid;
1834
1835 vmx->vpid = 0;
1836 if (!enable_vpid || !cpu_has_vmx_vpid())
1837 return;
1838 spin_lock(&vmx_vpid_lock);
1839 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
1840 if (vpid < VMX_NR_VPIDS) {
1841 vmx->vpid = vpid;
1842 __set_bit(vpid, vmx_vpid_bitmap);
1843 }
1844 spin_unlock(&vmx_vpid_lock);
1845}
1846
Harvey Harrison8b2cf732008-04-27 12:14:13 -07001847static void vmx_disable_intercept_for_msr(struct page *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08001848{
1849 void *va;
1850
1851 if (!cpu_has_vmx_msr_bitmap())
1852 return;
1853
1854 /*
1855 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
1856 * have the write-low and read-high bitmap offsets the wrong way round.
1857 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
1858 */
1859 va = kmap(msr_bitmap);
1860 if (msr <= 0x1fff) {
1861 __clear_bit(msr, va + 0x000); /* read-low */
1862 __clear_bit(msr, va + 0x800); /* write-low */
1863 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
1864 msr &= 0x1fff;
1865 __clear_bit(msr, va + 0x400); /* read-high */
1866 __clear_bit(msr, va + 0xc00); /* write-high */
1867 }
1868 kunmap(msr_bitmap);
1869}
1870
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871/*
1872 * Sets up the vmcs for emulated real mode.
1873 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001874static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001875{
1876 u32 host_sysenter_cs;
1877 u32 junk;
1878 unsigned long a;
1879 struct descriptor_table dt;
1880 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001881 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001882 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001883
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001885 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1886 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001887
Sheng Yang25c5f222008-03-28 13:18:56 +08001888 if (cpu_has_vmx_msr_bitmap())
1889 vmcs_write64(MSR_BITMAP, page_to_phys(vmx_msr_bitmap));
1890
Avi Kivity6aa8b732006-12-10 02:21:36 -08001891 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1892
Avi Kivity6aa8b732006-12-10 02:21:36 -08001893 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001894 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1895 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001896
1897 exec_control = vmcs_config.cpu_based_exec_ctrl;
1898 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1899 exec_control &= ~CPU_BASED_TPR_SHADOW;
1900#ifdef CONFIG_X86_64
1901 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1902 CPU_BASED_CR8_LOAD_EXITING;
1903#endif
1904 }
Sheng Yangd56f5462008-04-25 10:13:16 +08001905 if (!vm_need_ept())
1906 exec_control |= CPU_BASED_CR3_STORE_EXITING |
1907 CPU_BASED_CR3_LOAD_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001908 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909
Sheng Yang83ff3b92007-11-21 14:33:25 +08001910 if (cpu_has_secondary_exec_ctrls()) {
1911 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
1912 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1913 exec_control &=
1914 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001915 if (vmx->vpid == 0)
1916 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yangd56f5462008-04-25 10:13:16 +08001917 if (!vm_need_ept())
1918 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08001919 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
1920 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08001921
Avi Kivityc7addb92007-09-16 18:58:32 +02001922 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
1923 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001924 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1925
1926 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1927 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1928 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1929
1930 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1931 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1932 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001933 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
1934 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001935 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001936#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001937 rdmsrl(MSR_FS_BASE, a);
1938 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1939 rdmsrl(MSR_GS_BASE, a);
1940 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1941#else
1942 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1943 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1944#endif
1945
1946 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1947
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001948 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1950
Mike Dayd77c26f2007-10-08 09:02:08 -04001951 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03001952 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001953 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1954 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1955 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001956
1957 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1958 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1959 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1960 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1961 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1962 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1963
Avi Kivity6aa8b732006-12-10 02:21:36 -08001964 for (i = 0; i < NR_VMX_MSR; ++i) {
1965 u32 index = vmx_msr_index[i];
1966 u32 data_low, data_high;
1967 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001968 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001969
1970 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1971 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001972 if (wrmsr_safe(index, data_low, data_high) < 0)
1973 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001974 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001975 vmx->host_msrs[j].index = index;
1976 vmx->host_msrs[j].reserved = 0;
1977 vmx->host_msrs[j].data = data;
1978 vmx->guest_msrs[j] = vmx->host_msrs[j];
1979 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001980 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001982 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983
1984 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001985 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1986
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001987 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
1988 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1989
Sheng Yangf78e0e22007-10-29 09:40:42 +08001990
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001991 return 0;
1992}
1993
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001994static int init_rmode(struct kvm *kvm)
1995{
1996 if (!init_rmode_tss(kvm))
1997 return 0;
1998 if (!init_rmode_identity_map(kvm))
1999 return 0;
2000 return 1;
2001}
2002
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002003static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2004{
2005 struct vcpu_vmx *vmx = to_vmx(vcpu);
2006 u64 msr;
2007 int ret;
2008
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002009 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002010 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002011 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002012 ret = -ENOMEM;
2013 goto out;
2014 }
2015
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002016 vmx->vcpu.arch.rmode.active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002017
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002018 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002019 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002020 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2021 if (vmx->vcpu.vcpu_id == 0)
2022 msr |= MSR_IA32_APICBASE_BSP;
2023 kvm_set_apic_base(&vmx->vcpu, msr);
2024
2025 fx_init(&vmx->vcpu);
2026
2027 /*
2028 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2029 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2030 */
2031 if (vmx->vcpu.vcpu_id == 0) {
2032 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2033 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2034 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002035 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2036 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002037 }
2038 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
2039 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2040
2041 seg_setup(VCPU_SREG_DS);
2042 seg_setup(VCPU_SREG_ES);
2043 seg_setup(VCPU_SREG_FS);
2044 seg_setup(VCPU_SREG_GS);
2045 seg_setup(VCPU_SREG_SS);
2046
2047 vmcs_write16(GUEST_TR_SELECTOR, 0);
2048 vmcs_writel(GUEST_TR_BASE, 0);
2049 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2050 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2051
2052 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2053 vmcs_writel(GUEST_LDTR_BASE, 0);
2054 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2055 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2056
2057 vmcs_write32(GUEST_SYSENTER_CS, 0);
2058 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2059 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2060
2061 vmcs_writel(GUEST_RFLAGS, 0x02);
2062 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002063 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002064 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002065 kvm_rip_write(vcpu, 0);
2066 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002067
2068 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
2069 vmcs_writel(GUEST_DR7, 0x400);
2070
2071 vmcs_writel(GUEST_GDTR_BASE, 0);
2072 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2073
2074 vmcs_writel(GUEST_IDTR_BASE, 0);
2075 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2076
2077 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2078 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2079 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2080
2081 guest_write_tsc(0);
2082
2083 /* Special registers */
2084 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2085
2086 setup_msrs(vmx);
2087
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2089
Sheng Yangf78e0e22007-10-29 09:40:42 +08002090 if (cpu_has_vmx_tpr_shadow()) {
2091 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2092 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2093 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002094 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002095 vmcs_write32(TPR_THRESHOLD, 0);
2096 }
2097
2098 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2099 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002100 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002101
Sheng Yang2384d2b2008-01-17 15:14:33 +08002102 if (vmx->vpid != 0)
2103 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2104
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002105 vmx->vcpu.arch.cr0 = 0x60000010;
2106 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002107 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002108 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002109 vmx_fpu_activate(&vmx->vcpu);
2110 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002111
Sheng Yang2384d2b2008-01-17 15:14:33 +08002112 vpid_sync_vcpu_all(vmx);
2113
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002114 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002117 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 return ret;
2119}
2120
Eddie Dong85f455f2007-07-06 12:20:49 +03002121static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
2122{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002123 struct vcpu_vmx *vmx = to_vmx(vcpu);
2124
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002125 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2126
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002127 if (vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002128 vmx->rmode.irq.pending = true;
2129 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002130 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002131 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2132 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2133 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002134 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002135 return;
2136 }
2137 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2138 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
2139}
2140
Sheng Yangf08864b2008-05-15 18:23:25 +08002141static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2142{
2143 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2144 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002145}
2146
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
2148{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002149 int word_index = __ffs(vcpu->arch.irq_summary);
2150 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002151 int irq = word_index * BITS_PER_LONG + bit_index;
2152
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002153 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
2154 if (!vcpu->arch.irq_pending[word_index])
2155 clear_bit(word_index, &vcpu->arch.irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03002156 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002157}
2158
Dor Laorc1150d82007-01-05 16:36:24 -08002159
2160static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2161 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162{
Dor Laorc1150d82007-01-05 16:36:24 -08002163 u32 cpu_based_vm_exec_control;
2164
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002165 vcpu->arch.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08002166 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2167 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
2168
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002169 if (vcpu->arch.interrupt_window_open &&
2170 vcpu->arch.irq_summary &&
Dor Laorc1150d82007-01-05 16:36:24 -08002171 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002172 /*
Dor Laorc1150d82007-01-05 16:36:24 -08002173 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174 */
2175 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08002176
2177 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002178 if (!vcpu->arch.interrupt_window_open &&
2179 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180 /*
2181 * Interrupts blocked. Wait for unblock.
2182 */
Dor Laorc1150d82007-01-05 16:36:24 -08002183 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2184 else
2185 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2186 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187}
2188
Izik Eiduscbc94022007-10-25 00:29:55 +02002189static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2190{
2191 int ret;
2192 struct kvm_userspace_memory_region tss_mem = {
2193 .slot = 8,
2194 .guest_phys_addr = addr,
2195 .memory_size = PAGE_SIZE * 3,
2196 .flags = 0,
2197 };
2198
2199 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2200 if (ret)
2201 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002202 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002203 return 0;
2204}
2205
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
2207{
2208 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
2209
2210 set_debugreg(dbg->bp[0], 0);
2211 set_debugreg(dbg->bp[1], 1);
2212 set_debugreg(dbg->bp[2], 2);
2213 set_debugreg(dbg->bp[3], 3);
2214
2215 if (dbg->singlestep) {
2216 unsigned long flags;
2217
2218 flags = vmcs_readl(GUEST_RFLAGS);
2219 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
2220 vmcs_writel(GUEST_RFLAGS, flags);
2221 }
2222}
2223
2224static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2225 int vec, u32 err_code)
2226{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002227 /*
2228 * Instruction with address size override prefix opcode 0x67
2229 * Cause the #SS fault with 0 error code in VM86 mode.
2230 */
2231 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002232 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002233 return 1;
2234 return 0;
2235}
2236
2237static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2238{
Avi Kivity1155f762007-11-22 11:30:47 +02002239 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002240 u32 intr_info, error_code;
2241 unsigned long cr2, rip;
2242 u32 vect_info;
2243 enum emulation_result er;
2244
Avi Kivity1155f762007-11-22 11:30:47 +02002245 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002246 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2247
2248 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002249 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002250 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002251 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252
Eddie Dong85f455f2007-07-06 12:20:49 +03002253 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002254 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002255 set_bit(irq, vcpu->arch.irq_pending);
2256 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257 }
2258
Avi Kivity1b6269d2007-10-09 12:12:19 +02002259 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2260 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002261
2262 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002263 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002264 return 1;
2265 }
2266
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002267 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002268 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002269 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002270 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002271 return 1;
2272 }
2273
Avi Kivity6aa8b732006-12-10 02:21:36 -08002274 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002275 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002276 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2278 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002279 /* EPT won't cause page fault directly */
2280 if (vm_need_ept())
2281 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002283 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2284 (u32)((u64)cr2 >> 32), handler);
Avi Kivityf7d92382008-07-03 16:14:28 +03002285 if (vcpu->arch.interrupt.pending || vcpu->arch.exception.pending)
Avi Kivity577bdc42008-07-19 08:57:05 +03002286 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002287 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288 }
2289
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002290 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002292 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002293 if (vcpu->arch.halt_request) {
2294 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002295 return kvm_emulate_halt(vcpu);
2296 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002297 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002298 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002299
Mike Dayd77c26f2007-10-08 09:02:08 -04002300 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
2301 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2303 return 0;
2304 }
2305 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2306 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
2307 kvm_run->ex.error_code = error_code;
2308 return 0;
2309}
2310
2311static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2312 struct kvm_run *kvm_run)
2313{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002314 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002315 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002316 return 1;
2317}
2318
Avi Kivity988ad742007-02-12 00:54:36 -08002319static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2320{
2321 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2322 return 0;
2323}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2326{
He, Qingbfdaab02007-09-12 14:18:28 +08002327 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02002328 int size, down, in, string, rep;
2329 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330
Avi Kivity1165f5f2007-04-19 17:27:43 +03002331 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002332 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002333 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002334
2335 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002336 if (emulate_instruction(vcpu,
2337 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002338 return 0;
2339 return 1;
2340 }
2341
2342 size = (exit_qualification & 7) + 1;
2343 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002344 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002345 rep = (exit_qualification & 32) != 0;
2346 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002347
Laurent Vivier3090dd72007-08-05 10:43:32 +03002348 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002349}
2350
Ingo Molnar102d8322007-02-19 14:37:47 +02002351static void
2352vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2353{
2354 /*
2355 * Patch in the VMCALL instruction:
2356 */
2357 hypercall[0] = 0x0f;
2358 hypercall[1] = 0x01;
2359 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002360}
2361
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2363{
He, Qingbfdaab02007-09-12 14:18:28 +08002364 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002365 int cr;
2366 int reg;
2367
He, Qingbfdaab02007-09-12 14:18:28 +08002368 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369 cr = exit_qualification & 15;
2370 reg = (exit_qualification >> 8) & 15;
2371 switch ((exit_qualification >> 4) & 3) {
2372 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002373 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2374 (u32)kvm_register_read(vcpu, reg),
2375 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2376 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377 switch (cr) {
2378 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002379 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380 skip_emulated_instruction(vcpu);
2381 return 1;
2382 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002383 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384 skip_emulated_instruction(vcpu);
2385 return 1;
2386 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002387 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388 skip_emulated_instruction(vcpu);
2389 return 1;
2390 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002391 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002393 if (irqchip_in_kernel(vcpu->kvm))
2394 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002395 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2396 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002397 };
2398 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002399 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002400 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002401 vcpu->arch.cr0 &= ~X86_CR0_TS;
2402 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002403 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002404 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002405 skip_emulated_instruction(vcpu);
2406 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407 case 1: /*mov from cr*/
2408 switch (cr) {
2409 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002410 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002411 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002412 (u32)kvm_register_read(vcpu, reg),
2413 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002414 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002415 skip_emulated_instruction(vcpu);
2416 return 1;
2417 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002418 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002419 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002420 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002421 skip_emulated_instruction(vcpu);
2422 return 1;
2423 }
2424 break;
2425 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002426 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427
2428 skip_emulated_instruction(vcpu);
2429 return 1;
2430 default:
2431 break;
2432 }
2433 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002434 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435 (int)(exit_qualification >> 4) & 3, cr);
2436 return 0;
2437}
2438
2439static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2440{
He, Qingbfdaab02007-09-12 14:18:28 +08002441 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442 unsigned long val;
2443 int dr, reg;
2444
2445 /*
2446 * FIXME: this code assumes the host is debugging the guest.
2447 * need to deal with guest debugging itself too.
2448 */
He, Qingbfdaab02007-09-12 14:18:28 +08002449 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002450 dr = exit_qualification & 7;
2451 reg = (exit_qualification >> 8) & 15;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452 if (exit_qualification & 16) {
2453 /* mov from dr */
2454 switch (dr) {
2455 case 6:
2456 val = 0xffff0ff0;
2457 break;
2458 case 7:
2459 val = 0x400;
2460 break;
2461 default:
2462 val = 0;
2463 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002464 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002465 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002466 } else {
2467 /* mov to dr */
2468 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002469 skip_emulated_instruction(vcpu);
2470 return 1;
2471}
2472
2473static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2474{
Avi Kivity06465c52007-02-28 20:46:53 +02002475 kvm_emulate_cpuid(vcpu);
2476 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002477}
2478
2479static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2480{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002481 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002482 u64 data;
2483
2484 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002485 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002486 return 1;
2487 }
2488
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002489 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2490 handler);
2491
Avi Kivity6aa8b732006-12-10 02:21:36 -08002492 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002493 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2494 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002495 skip_emulated_instruction(vcpu);
2496 return 1;
2497}
2498
2499static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2500{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002501 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2502 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2503 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002505 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2506 handler);
2507
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002509 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510 return 1;
2511 }
2512
2513 skip_emulated_instruction(vcpu);
2514 return 1;
2515}
2516
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002517static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2518 struct kvm_run *kvm_run)
2519{
2520 return 1;
2521}
2522
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2524 struct kvm_run *kvm_run)
2525{
Eddie Dong85f455f2007-07-06 12:20:49 +03002526 u32 cpu_based_vm_exec_control;
2527
2528 /* clear pending irq */
2529 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2530 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2531 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002532
2533 KVMTRACE_0D(PEND_INTR, vcpu, handler);
2534
Dor Laorc1150d82007-01-05 16:36:24 -08002535 /*
2536 * If the user space waits to inject interrupts, exit as soon as
2537 * possible
2538 */
2539 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002540 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002541 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002542 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002543 return 0;
2544 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002545 return 1;
2546}
2547
2548static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2549{
2550 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002551 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552}
2553
Ingo Molnarc21415e2007-02-19 14:37:47 +02002554static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2555{
Dor Laor510043d2007-02-19 18:25:43 +02002556 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002557 kvm_emulate_hypercall(vcpu);
2558 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002559}
2560
Eddie Donge5edaa02007-11-11 12:28:35 +02002561static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2562{
2563 skip_emulated_instruction(vcpu);
2564 /* TODO: Add support for VT-d/pass-through device */
2565 return 1;
2566}
2567
Sheng Yangf78e0e22007-10-29 09:40:42 +08002568static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2569{
2570 u64 exit_qualification;
2571 enum emulation_result er;
2572 unsigned long offset;
2573
2574 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2575 offset = exit_qualification & 0xffful;
2576
2577 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2578
2579 if (er != EMULATE_DONE) {
2580 printk(KERN_ERR
2581 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2582 offset);
2583 return -ENOTSUPP;
2584 }
2585 return 1;
2586}
2587
Izik Eidus37817f22008-03-24 23:14:53 +02002588static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2589{
2590 unsigned long exit_qualification;
2591 u16 tss_selector;
2592 int reason;
2593
2594 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
2595
2596 reason = (u32)exit_qualification >> 30;
2597 tss_selector = exit_qualification;
2598
2599 return kvm_task_switch(vcpu, tss_selector, reason);
2600}
2601
Sheng Yang14394422008-04-28 12:24:45 +08002602static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2603{
2604 u64 exit_qualification;
2605 enum emulation_result er;
2606 gpa_t gpa;
2607 unsigned long hva;
2608 int gla_validity;
2609 int r;
2610
2611 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2612
2613 if (exit_qualification & (1 << 6)) {
2614 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
2615 return -ENOTSUPP;
2616 }
2617
2618 gla_validity = (exit_qualification >> 7) & 0x3;
2619 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
2620 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
2621 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2622 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2623 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2624 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2625 (long unsigned int)exit_qualification);
2626 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2627 kvm_run->hw.hardware_exit_reason = 0;
2628 return -ENOTSUPP;
2629 }
2630
2631 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
2632 hva = gfn_to_hva(vcpu->kvm, gpa >> PAGE_SHIFT);
2633 if (!kvm_is_error_hva(hva)) {
2634 r = kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
2635 if (r < 0) {
2636 printk(KERN_ERR "EPT: Not enough memory!\n");
2637 return -ENOMEM;
2638 }
2639 return 1;
2640 } else {
2641 /* must be MMIO */
2642 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2643
2644 if (er == EMULATE_FAIL) {
2645 printk(KERN_ERR
2646 "EPT: Fail to handle EPT violation vmexit!er is %d\n",
2647 er);
2648 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2649 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2650 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2651 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2652 (long unsigned int)exit_qualification);
2653 return -ENOTSUPP;
2654 } else if (er == EMULATE_DO_MMIO)
2655 return 0;
2656 }
2657 return 1;
2658}
2659
Sheng Yangf08864b2008-05-15 18:23:25 +08002660static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2661{
2662 u32 cpu_based_vm_exec_control;
2663
2664 /* clear pending NMI */
2665 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2666 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
2667 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2668 ++vcpu->stat.nmi_window_exits;
2669
2670 return 1;
2671}
2672
Avi Kivity6aa8b732006-12-10 02:21:36 -08002673/*
2674 * The exit handlers return 1 if the exit was handled fully and guest execution
2675 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2676 * to be done to userspace and return 0.
2677 */
2678static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2679 struct kvm_run *kvm_run) = {
2680 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2681 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002682 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08002683 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685 [EXIT_REASON_CR_ACCESS] = handle_cr,
2686 [EXIT_REASON_DR_ACCESS] = handle_dr,
2687 [EXIT_REASON_CPUID] = handle_cpuid,
2688 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2689 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2690 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2691 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002692 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002693 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2694 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002695 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02002696 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08002697 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002698};
2699
2700static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002701 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702
2703/*
2704 * The guest has exited. See if we can fix it or if we need userspace
2705 * assistance.
2706 */
2707static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2708{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002709 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002710 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002711 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002712
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002713 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
2714 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002715
Sheng Yang14394422008-04-28 12:24:45 +08002716 /* Access CR3 don't cause VMExit in paging mode, so we need
2717 * to sync with guest real CR3. */
2718 if (vm_need_ept() && is_paging(vcpu)) {
2719 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2720 ept_load_pdptrs(vcpu);
2721 }
2722
Avi Kivity29bd8a72007-09-10 17:27:03 +03002723 if (unlikely(vmx->fail)) {
2724 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2725 kvm_run->fail_entry.hardware_entry_failure_reason
2726 = vmcs_read32(VM_INSTRUCTION_ERROR);
2727 return 0;
2728 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729
Mike Dayd77c26f2007-10-08 09:02:08 -04002730 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08002731 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
2732 exit_reason != EXIT_REASON_EPT_VIOLATION))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002734 "exit reason is 0x%x\n", __func__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735 if (exit_reason < kvm_vmx_max_exit_handlers
2736 && kvm_vmx_exit_handlers[exit_reason])
2737 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2738 else {
2739 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2740 kvm_run->hw.hardware_exit_reason = exit_reason;
2741 }
2742 return 0;
2743}
2744
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002745static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2746{
2747 int max_irr, tpr;
2748
2749 if (!vm_need_tpr_shadow(vcpu->kvm))
2750 return;
2751
2752 if (!kvm_lapic_enabled(vcpu) ||
2753 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2754 vmcs_write32(TPR_THRESHOLD, 0);
2755 return;
2756 }
2757
2758 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2759 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2760}
2761
Eddie Dong85f455f2007-07-06 12:20:49 +03002762static void enable_irq_window(struct kvm_vcpu *vcpu)
2763{
2764 u32 cpu_based_vm_exec_control;
2765
2766 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2767 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2768 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2769}
2770
Sheng Yangf08864b2008-05-15 18:23:25 +08002771static void enable_nmi_window(struct kvm_vcpu *vcpu)
2772{
2773 u32 cpu_based_vm_exec_control;
2774
2775 if (!cpu_has_virtual_nmis())
2776 return;
2777
2778 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2779 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2780 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2781}
2782
2783static int vmx_nmi_enabled(struct kvm_vcpu *vcpu)
2784{
2785 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2786 return !(guest_intr & (GUEST_INTR_STATE_NMI |
2787 GUEST_INTR_STATE_MOV_SS |
2788 GUEST_INTR_STATE_STI));
2789}
2790
2791static int vmx_irq_enabled(struct kvm_vcpu *vcpu)
2792{
2793 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2794 return (!(guest_intr & (GUEST_INTR_STATE_MOV_SS |
2795 GUEST_INTR_STATE_STI)) &&
2796 (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF));
2797}
2798
2799static void enable_intr_window(struct kvm_vcpu *vcpu)
2800{
2801 if (vcpu->arch.nmi_pending)
2802 enable_nmi_window(vcpu);
2803 else if (kvm_cpu_has_interrupt(vcpu))
2804 enable_irq_window(vcpu);
2805}
2806
Avi Kivitycf393f72008-07-01 16:20:21 +03002807static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
2808{
2809 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03002810 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03002811 bool unblock_nmi;
2812 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03002813 int type;
2814 bool idtv_info_valid;
Avi Kivity35920a32008-07-03 14:50:12 +03002815 u32 error;
Avi Kivitycf393f72008-07-01 16:20:21 +03002816
2817 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2818 if (cpu_has_virtual_nmis()) {
2819 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
2820 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
2821 /*
2822 * SDM 3: 25.7.1.2
2823 * Re-set bit "block by NMI" before VM entry if vmexit caused by
2824 * a guest IRET fault.
2825 */
2826 if (unblock_nmi && vector != DF_VECTOR)
2827 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2828 GUEST_INTR_STATE_NMI);
2829 }
Avi Kivity668f6122008-07-02 09:28:55 +03002830
2831 idt_vectoring_info = vmx->idt_vectoring_info;
2832 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
2833 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
2834 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
2835 if (vmx->vcpu.arch.nmi_injected) {
2836 /*
2837 * SDM 3: 25.7.1.2
2838 * Clear bit "block by NMI" before VM entry if a NMI delivery
2839 * faulted.
2840 */
2841 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
2842 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2843 GUEST_INTR_STATE_NMI);
2844 else
2845 vmx->vcpu.arch.nmi_injected = false;
2846 }
Avi Kivity35920a32008-07-03 14:50:12 +03002847 kvm_clear_exception_queue(&vmx->vcpu);
2848 if (idtv_info_valid && type == INTR_TYPE_EXCEPTION) {
2849 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
2850 error = vmcs_read32(IDT_VECTORING_ERROR_CODE);
2851 kvm_queue_exception_e(&vmx->vcpu, vector, error);
2852 } else
2853 kvm_queue_exception(&vmx->vcpu, vector);
2854 vmx->idt_vectoring_info = 0;
2855 }
Avi Kivityf7d92382008-07-03 16:14:28 +03002856 kvm_clear_interrupt_queue(&vmx->vcpu);
2857 if (idtv_info_valid && type == INTR_TYPE_EXT_INTR) {
2858 kvm_queue_interrupt(&vmx->vcpu, vector);
2859 vmx->idt_vectoring_info = 0;
2860 }
Avi Kivitycf393f72008-07-01 16:20:21 +03002861}
2862
Eddie Dong85f455f2007-07-06 12:20:49 +03002863static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2864{
Avi Kivityf7d92382008-07-03 16:14:28 +03002865 u32 intr_info_field;
Eddie Dong85f455f2007-07-06 12:20:49 +03002866
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002867 update_tpr_threshold(vcpu);
2868
Eddie Dong85f455f2007-07-06 12:20:49 +03002869 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Sheng Yangf08864b2008-05-15 18:23:25 +08002870 if (cpu_has_virtual_nmis()) {
Avi Kivity668f6122008-07-02 09:28:55 +03002871 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
2872 if (vmx_nmi_enabled(vcpu)) {
2873 vcpu->arch.nmi_pending = false;
2874 vcpu->arch.nmi_injected = true;
2875 } else {
2876 enable_intr_window(vcpu);
2877 return;
2878 }
2879 }
2880 if (vcpu->arch.nmi_injected) {
2881 vmx_inject_nmi(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08002882 enable_intr_window(vcpu);
2883 return;
2884 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002885 }
Avi Kivityf7d92382008-07-03 16:14:28 +03002886 if (!vcpu->arch.interrupt.pending && kvm_cpu_has_interrupt(vcpu)) {
2887 if (vmx_irq_enabled(vcpu))
2888 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
2889 else
2890 enable_irq_window(vcpu);
2891 }
2892 if (vcpu->arch.interrupt.pending) {
2893 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
2894 kvm_timer_intr_post(vcpu, vcpu->arch.interrupt.nr);
2895 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002896}
2897
Avi Kivity9c8cba32007-11-22 11:42:59 +02002898/*
2899 * Failure to inject an interrupt should give us the information
2900 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
2901 * when fetching the interrupt redirection bitmap in the real-mode
2902 * tss, this doesn't happen. So we do it ourselves.
2903 */
2904static void fixup_rmode_irq(struct vcpu_vmx *vmx)
2905{
2906 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002907 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02002908 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002909 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002910 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
2911 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
2912 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
2913 return;
2914 }
2915 vmx->idt_vectoring_info =
2916 VECTORING_INFO_VALID_MASK
2917 | INTR_TYPE_EXT_INTR
2918 | vmx->rmode.irq.vector;
2919}
2920
Avi Kivity04d2cc72007-09-10 18:10:54 +03002921static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002923 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02002924 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03002925
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002926 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
2927 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
2928 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
2929 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
2930
Avi Kivitye6adf282007-04-30 16:07:54 +03002931 /*
2932 * Loading guest fpu may have cleared host cr0.ts
2933 */
2934 vmcs_writel(HOST_CR0, read_cr0());
2935
Mike Dayd77c26f2007-10-08 09:02:08 -04002936 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08002937 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002938#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02002939 "push %%rdx; push %%rbp;"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 "push %%rcx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002941#else
Laurent Vivierff593e52007-10-25 14:18:55 +02002942 "push %%edx; push %%ebp;"
2943 "push %%ecx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944#endif
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002945 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02002947 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002949#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002950 "mov %c[cr2](%0), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002951 "mov %%rax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002952 "mov %c[rax](%0), %%rax \n\t"
2953 "mov %c[rbx](%0), %%rbx \n\t"
2954 "mov %c[rdx](%0), %%rdx \n\t"
2955 "mov %c[rsi](%0), %%rsi \n\t"
2956 "mov %c[rdi](%0), %%rdi \n\t"
2957 "mov %c[rbp](%0), %%rbp \n\t"
2958 "mov %c[r8](%0), %%r8 \n\t"
2959 "mov %c[r9](%0), %%r9 \n\t"
2960 "mov %c[r10](%0), %%r10 \n\t"
2961 "mov %c[r11](%0), %%r11 \n\t"
2962 "mov %c[r12](%0), %%r12 \n\t"
2963 "mov %c[r13](%0), %%r13 \n\t"
2964 "mov %c[r14](%0), %%r14 \n\t"
2965 "mov %c[r15](%0), %%r15 \n\t"
2966 "mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002967#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002968 "mov %c[cr2](%0), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002969 "mov %%eax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002970 "mov %c[rax](%0), %%eax \n\t"
2971 "mov %c[rbx](%0), %%ebx \n\t"
2972 "mov %c[rdx](%0), %%edx \n\t"
2973 "mov %c[rsi](%0), %%esi \n\t"
2974 "mov %c[rdi](%0), %%edi \n\t"
2975 "mov %c[rbp](%0), %%ebp \n\t"
2976 "mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002977#endif
2978 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03002979 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002980 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002981 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002982 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002983 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002985#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002986 "xchg %0, (%%rsp) \n\t"
2987 "mov %%rax, %c[rax](%0) \n\t"
2988 "mov %%rbx, %c[rbx](%0) \n\t"
2989 "pushq (%%rsp); popq %c[rcx](%0) \n\t"
2990 "mov %%rdx, %c[rdx](%0) \n\t"
2991 "mov %%rsi, %c[rsi](%0) \n\t"
2992 "mov %%rdi, %c[rdi](%0) \n\t"
2993 "mov %%rbp, %c[rbp](%0) \n\t"
2994 "mov %%r8, %c[r8](%0) \n\t"
2995 "mov %%r9, %c[r9](%0) \n\t"
2996 "mov %%r10, %c[r10](%0) \n\t"
2997 "mov %%r11, %c[r11](%0) \n\t"
2998 "mov %%r12, %c[r12](%0) \n\t"
2999 "mov %%r13, %c[r13](%0) \n\t"
3000 "mov %%r14, %c[r14](%0) \n\t"
3001 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003002 "mov %%cr2, %%rax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003003 "mov %%rax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003004
Avi Kivitye08aa782007-11-15 18:06:18 +02003005 "pop %%rbp; pop %%rbp; pop %%rdx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006#else
Avi Kivitye08aa782007-11-15 18:06:18 +02003007 "xchg %0, (%%esp) \n\t"
3008 "mov %%eax, %c[rax](%0) \n\t"
3009 "mov %%ebx, %c[rbx](%0) \n\t"
3010 "pushl (%%esp); popl %c[rcx](%0) \n\t"
3011 "mov %%edx, %c[rdx](%0) \n\t"
3012 "mov %%esi, %c[rsi](%0) \n\t"
3013 "mov %%edi, %c[rdi](%0) \n\t"
3014 "mov %%ebp, %c[rbp](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015 "mov %%cr2, %%eax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003016 "mov %%eax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017
Avi Kivitye08aa782007-11-15 18:06:18 +02003018 "pop %%ebp; pop %%ebp; pop %%edx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02003020 "setbe %c[fail](%0) \n\t"
3021 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3022 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3023 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003024 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3025 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3026 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3027 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3028 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3029 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3030 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003031#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003032 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3033 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3034 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3035 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3036 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3037 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3038 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3039 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003040#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003041 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003042 : "cc", "memory"
3043#ifdef CONFIG_X86_64
3044 , "rbx", "rdi", "rsi"
3045 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Laurent Vivierff593e52007-10-25 14:18:55 +02003046#else
3047 , "ebx", "edi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02003048#endif
3049 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003050
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003051 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3052 vcpu->arch.regs_dirty = 0;
3053
Avi Kivity1155f762007-11-22 11:30:47 +02003054 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003055 if (vmx->rmode.irq.pending)
3056 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003057
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003058 vcpu->arch.interrupt_window_open =
Sheng Yangf08864b2008-05-15 18:23:25 +08003059 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3060 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061
Mike Dayd77c26f2007-10-08 09:02:08 -04003062 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003063 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003064
3065 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3066
3067 /* We need to handle NMIs before interrupts are enabled */
Sheng Yangf08864b2008-05-15 18:23:25 +08003068 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200 &&
3069 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003070 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003071 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003072 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003073
3074 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003075}
3076
Avi Kivity6aa8b732006-12-10 02:21:36 -08003077static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3078{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003079 struct vcpu_vmx *vmx = to_vmx(vcpu);
3080
3081 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003082 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003083 free_vmcs(vmx->vmcs);
3084 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085 }
3086}
3087
3088static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3089{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003090 struct vcpu_vmx *vmx = to_vmx(vcpu);
3091
Sheng Yang2384d2b2008-01-17 15:14:33 +08003092 spin_lock(&vmx_vpid_lock);
3093 if (vmx->vpid != 0)
3094 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3095 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003097 kfree(vmx->host_msrs);
3098 kfree(vmx->guest_msrs);
3099 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003100 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003101}
3102
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003103static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003104{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003105 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003106 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003107 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003108
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003109 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003110 return ERR_PTR(-ENOMEM);
3111
Sheng Yang2384d2b2008-01-17 15:14:33 +08003112 allocate_vpid(vmx);
3113
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003114 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3115 if (err)
3116 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003117
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003118 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003119 if (!vmx->guest_msrs) {
3120 err = -ENOMEM;
3121 goto uninit_vcpu;
3122 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003123
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003124 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3125 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003126 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003127
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003128 vmx->vmcs = alloc_vmcs();
3129 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003130 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003131
3132 vmcs_clear(vmx->vmcs);
3133
Avi Kivity15ad7142007-07-11 18:17:21 +03003134 cpu = get_cpu();
3135 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003136 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003137 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003138 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003139 if (err)
3140 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003141 if (vm_need_virtualize_apic_accesses(kvm))
3142 if (alloc_apic_access_page(kvm) != 0)
3143 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003144
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003145 if (vm_need_ept())
3146 if (alloc_identity_pagetable(kvm) != 0)
3147 goto free_vmcs;
3148
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003149 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003150
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003151free_vmcs:
3152 free_vmcs(vmx->vmcs);
3153free_msrs:
3154 kfree(vmx->host_msrs);
3155free_guest_msrs:
3156 kfree(vmx->guest_msrs);
3157uninit_vcpu:
3158 kvm_vcpu_uninit(&vmx->vcpu);
3159free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003160 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003161 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003162}
3163
Yang, Sheng002c7f72007-07-31 14:23:01 +03003164static void __init vmx_check_processor_compat(void *rtn)
3165{
3166 struct vmcs_config vmcs_conf;
3167
3168 *(int *)rtn = 0;
3169 if (setup_vmcs_config(&vmcs_conf) < 0)
3170 *(int *)rtn = -EIO;
3171 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3172 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3173 smp_processor_id());
3174 *(int *)rtn = -EIO;
3175 }
3176}
3177
Sheng Yang67253af2008-04-25 10:20:22 +08003178static int get_ept_level(void)
3179{
3180 return VMX_EPT_DEFAULT_GAW + 1;
3181}
3182
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003183static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003184 .cpu_has_kvm_support = cpu_has_kvm_support,
3185 .disabled_by_bios = vmx_disabled_by_bios,
3186 .hardware_setup = hardware_setup,
3187 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003188 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003189 .hardware_enable = hardware_enable,
3190 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003191 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003192
3193 .vcpu_create = vmx_create_vcpu,
3194 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003195 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196
Avi Kivity04d2cc72007-09-10 18:10:54 +03003197 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003198 .vcpu_load = vmx_vcpu_load,
3199 .vcpu_put = vmx_vcpu_put,
3200
3201 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003202 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003203 .get_msr = vmx_get_msr,
3204 .set_msr = vmx_set_msr,
3205 .get_segment_base = vmx_get_segment_base,
3206 .get_segment = vmx_get_segment,
3207 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003208 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003209 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003210 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003211 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003212 .set_cr3 = vmx_set_cr3,
3213 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003214 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003215 .get_idt = vmx_get_idt,
3216 .set_idt = vmx_set_idt,
3217 .get_gdt = vmx_get_gdt,
3218 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003219 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003220 .get_rflags = vmx_get_rflags,
3221 .set_rflags = vmx_set_rflags,
3222
3223 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003224
Avi Kivity6aa8b732006-12-10 02:21:36 -08003225 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003226 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003228 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003229 .get_irq = vmx_get_irq,
3230 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003231 .queue_exception = vmx_queue_exception,
3232 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003233 .inject_pending_irq = vmx_intr_assist,
3234 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003235
3236 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003237 .get_tdp_level = get_ept_level,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238};
3239
3240static int __init vmx_init(void)
3241{
Sheng Yang25c5f222008-03-28 13:18:56 +08003242 void *va;
He, Qingfdef3ad2007-04-30 09:45:24 +03003243 int r;
3244
3245 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3246 if (!vmx_io_bitmap_a)
3247 return -ENOMEM;
3248
3249 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3250 if (!vmx_io_bitmap_b) {
3251 r = -ENOMEM;
3252 goto out;
3253 }
3254
Sheng Yang25c5f222008-03-28 13:18:56 +08003255 vmx_msr_bitmap = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3256 if (!vmx_msr_bitmap) {
3257 r = -ENOMEM;
3258 goto out1;
3259 }
3260
He, Qingfdef3ad2007-04-30 09:45:24 +03003261 /*
3262 * Allow direct access to the PC debug port (it is often used for I/O
3263 * delays, but the vmexits simply slow things down).
3264 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003265 va = kmap(vmx_io_bitmap_a);
3266 memset(va, 0xff, PAGE_SIZE);
3267 clear_bit(0x80, va);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003268 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003269
Sheng Yang25c5f222008-03-28 13:18:56 +08003270 va = kmap(vmx_io_bitmap_b);
3271 memset(va, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003272 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003273
Sheng Yang25c5f222008-03-28 13:18:56 +08003274 va = kmap(vmx_msr_bitmap);
3275 memset(va, 0xff, PAGE_SIZE);
3276 kunmap(vmx_msr_bitmap);
3277
Sheng Yang2384d2b2008-01-17 15:14:33 +08003278 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3279
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003280 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003281 if (r)
Sheng Yang25c5f222008-03-28 13:18:56 +08003282 goto out2;
3283
3284 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_FS_BASE);
3285 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_GS_BASE);
3286 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_CS);
3287 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_ESP);
3288 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_EIP);
He, Qingfdef3ad2007-04-30 09:45:24 +03003289
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003290 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003291 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003292 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
3293 VMX_EPT_WRITABLE_MASK |
3294 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang534e38b2008-09-08 15:12:30 +08003295 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003296 VMX_EPT_EXECUTABLE_MASK);
3297 kvm_enable_tdp();
3298 } else
3299 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003300
Avi Kivityc7addb92007-09-16 18:58:32 +02003301 if (bypass_guest_pf)
3302 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3303
Sheng Yang14394422008-04-28 12:24:45 +08003304 ept_sync_global();
3305
He, Qingfdef3ad2007-04-30 09:45:24 +03003306 return 0;
3307
Sheng Yang25c5f222008-03-28 13:18:56 +08003308out2:
3309 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003310out1:
3311 __free_page(vmx_io_bitmap_b);
3312out:
3313 __free_page(vmx_io_bitmap_a);
3314 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003315}
3316
3317static void __exit vmx_exit(void)
3318{
Sheng Yang25c5f222008-03-28 13:18:56 +08003319 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003320 __free_page(vmx_io_bitmap_b);
3321 __free_page(vmx_io_bitmap_a);
3322
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003323 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324}
3325
3326module_init(vmx_init)
3327module_exit(vmx_exit)