2 * Kernel-based Virtual Machine driver for Linux
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
7 * Copyright (C) 2006 Qumranet, Inc.
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
20 #include "segment_descriptor.h"
22 #include <linux/module.h>
23 #include <linux/kernel.h>
25 #include <linux/highmem.h>
26 #include <linux/profile.h>
27 #include <linux/sched.h>
32 MODULE_AUTHOR("Qumranet");
33 MODULE_LICENSE("GPL");
35 static int init_rmode_tss(struct kvm
*kvm
);
37 static DEFINE_PER_CPU(struct vmcs
*, vmxarea
);
38 static DEFINE_PER_CPU(struct vmcs
*, current_vmcs
);
40 static struct page
*vmx_io_bitmap_a
;
41 static struct page
*vmx_io_bitmap_b
;
48 #define EFER_SAVE_RESTORE_BITS ((u64)EFER_SCE)
50 static struct vmcs_descriptor
{
56 #define VMX_SEGMENT_FIELD(seg) \
57 [VCPU_SREG_##seg] = { \
58 .selector = GUEST_##seg##_SELECTOR, \
59 .base = GUEST_##seg##_BASE, \
60 .limit = GUEST_##seg##_LIMIT, \
61 .ar_bytes = GUEST_##seg##_AR_BYTES, \
64 static struct kvm_vmx_segment_field
{
69 } kvm_vmx_segment_fields
[] = {
70 VMX_SEGMENT_FIELD(CS
),
71 VMX_SEGMENT_FIELD(DS
),
72 VMX_SEGMENT_FIELD(ES
),
73 VMX_SEGMENT_FIELD(FS
),
74 VMX_SEGMENT_FIELD(GS
),
75 VMX_SEGMENT_FIELD(SS
),
76 VMX_SEGMENT_FIELD(TR
),
77 VMX_SEGMENT_FIELD(LDTR
),
81 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
82 * away by decrementing the array size.
84 static const u32 vmx_msr_index
[] = {
86 MSR_SYSCALL_MASK
, MSR_LSTAR
, MSR_CSTAR
, MSR_KERNEL_GS_BASE
,
88 MSR_EFER
, MSR_K6_STAR
,
90 #define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
92 static inline u64
msr_efer_save_restore_bits(struct vmx_msr_entry msr
)
94 return (u64
)msr
.data
& EFER_SAVE_RESTORE_BITS
;
97 static inline int msr_efer_need_save_restore(struct kvm_vcpu
*vcpu
)
99 int efer_offset
= vcpu
->msr_offset_efer
;
100 return msr_efer_save_restore_bits(vcpu
->host_msrs
[efer_offset
]) !=
101 msr_efer_save_restore_bits(vcpu
->guest_msrs
[efer_offset
]);
104 static inline int is_page_fault(u32 intr_info
)
106 return (intr_info
& (INTR_INFO_INTR_TYPE_MASK
| INTR_INFO_VECTOR_MASK
|
107 INTR_INFO_VALID_MASK
)) ==
108 (INTR_TYPE_EXCEPTION
| PF_VECTOR
| INTR_INFO_VALID_MASK
);
111 static inline int is_no_device(u32 intr_info
)
113 return (intr_info
& (INTR_INFO_INTR_TYPE_MASK
| INTR_INFO_VECTOR_MASK
|
114 INTR_INFO_VALID_MASK
)) ==
115 (INTR_TYPE_EXCEPTION
| NM_VECTOR
| INTR_INFO_VALID_MASK
);
118 static inline int is_external_interrupt(u32 intr_info
)
120 return (intr_info
& (INTR_INFO_INTR_TYPE_MASK
| INTR_INFO_VALID_MASK
))
121 == (INTR_TYPE_EXT_INTR
| INTR_INFO_VALID_MASK
);
124 static int __find_msr_index(struct kvm_vcpu
*vcpu
, u32 msr
)
128 for (i
= 0; i
< vcpu
->nmsrs
; ++i
)
129 if (vcpu
->guest_msrs
[i
].index
== msr
)
134 static struct vmx_msr_entry
*find_msr_entry(struct kvm_vcpu
*vcpu
, u32 msr
)
138 i
= __find_msr_index(vcpu
, msr
);
140 return &vcpu
->guest_msrs
[i
];
144 static void vmcs_clear(struct vmcs
*vmcs
)
146 u64 phys_addr
= __pa(vmcs
);
149 asm volatile (ASM_VMX_VMCLEAR_RAX
"; setna %0"
150 : "=g"(error
) : "a"(&phys_addr
), "m"(phys_addr
)
153 printk(KERN_ERR
"kvm: vmclear fail: %p/%llx\n",
157 static void __vcpu_clear(void *arg
)
159 struct kvm_vcpu
*vcpu
= arg
;
160 int cpu
= raw_smp_processor_id();
162 if (vcpu
->cpu
== cpu
)
163 vmcs_clear(vcpu
->vmcs
);
164 if (per_cpu(current_vmcs
, cpu
) == vcpu
->vmcs
)
165 per_cpu(current_vmcs
, cpu
) = NULL
;
166 rdtscll(vcpu
->host_tsc
);
169 static void vcpu_clear(struct kvm_vcpu
*vcpu
)
171 if (vcpu
->cpu
!= raw_smp_processor_id() && vcpu
->cpu
!= -1)
172 smp_call_function_single(vcpu
->cpu
, __vcpu_clear
, vcpu
, 0, 1);
178 static unsigned long vmcs_readl(unsigned long field
)
182 asm volatile (ASM_VMX_VMREAD_RDX_RAX
183 : "=a"(value
) : "d"(field
) : "cc");
187 static u16
vmcs_read16(unsigned long field
)
189 return vmcs_readl(field
);
192 static u32
vmcs_read32(unsigned long field
)
194 return vmcs_readl(field
);
197 static u64
vmcs_read64(unsigned long field
)
200 return vmcs_readl(field
);
202 return vmcs_readl(field
) | ((u64
)vmcs_readl(field
+1) << 32);
206 static noinline
void vmwrite_error(unsigned long field
, unsigned long value
)
208 printk(KERN_ERR
"vmwrite error: reg %lx value %lx (err %d)\n",
209 field
, value
, vmcs_read32(VM_INSTRUCTION_ERROR
));
213 static void vmcs_writel(unsigned long field
, unsigned long value
)
217 asm volatile (ASM_VMX_VMWRITE_RAX_RDX
"; setna %0"
218 : "=q"(error
) : "a"(value
), "d"(field
) : "cc" );
220 vmwrite_error(field
, value
);
223 static void vmcs_write16(unsigned long field
, u16 value
)
225 vmcs_writel(field
, value
);
228 static void vmcs_write32(unsigned long field
, u32 value
)
230 vmcs_writel(field
, value
);
233 static void vmcs_write64(unsigned long field
, u64 value
)
236 vmcs_writel(field
, value
);
238 vmcs_writel(field
, value
);
240 vmcs_writel(field
+1, value
>> 32);
244 static void vmcs_clear_bits(unsigned long field
, u32 mask
)
246 vmcs_writel(field
, vmcs_readl(field
) & ~mask
);
249 static void vmcs_set_bits(unsigned long field
, u32 mask
)
251 vmcs_writel(field
, vmcs_readl(field
) | mask
);
254 static void update_exception_bitmap(struct kvm_vcpu
*vcpu
)
258 eb
= 1u << PF_VECTOR
;
259 if (!vcpu
->fpu_active
)
260 eb
|= 1u << NM_VECTOR
;
261 if (vcpu
->guest_debug
.enabled
)
263 if (vcpu
->rmode
.active
)
265 vmcs_write32(EXCEPTION_BITMAP
, eb
);
268 static void reload_tss(void)
270 #ifndef CONFIG_X86_64
273 * VT restores TR but not its size. Useless.
275 struct descriptor_table gdt
;
276 struct segment_descriptor
*descs
;
279 descs
= (void *)gdt
.base
;
280 descs
[GDT_ENTRY_TSS
].type
= 9; /* available TSS */
285 static void load_transition_efer(struct kvm_vcpu
*vcpu
)
288 int efer_offset
= vcpu
->msr_offset_efer
;
290 trans_efer
= vcpu
->host_msrs
[efer_offset
].data
;
291 trans_efer
&= ~EFER_SAVE_RESTORE_BITS
;
292 trans_efer
|= msr_efer_save_restore_bits(
293 vcpu
->guest_msrs
[efer_offset
]);
294 wrmsrl(MSR_EFER
, trans_efer
);
295 vcpu
->stat
.efer_reload
++;
298 static void vmx_save_host_state(struct kvm_vcpu
*vcpu
)
300 struct vmx_host_state
*hs
= &vcpu
->vmx_host_state
;
307 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
308 * allow segment selectors with cpl > 0 or ti == 1.
310 hs
->ldt_sel
= read_ldt();
311 hs
->fs_gs_ldt_reload_needed
= hs
->ldt_sel
;
312 hs
->fs_sel
= read_fs();
313 if (!(hs
->fs_sel
& 7))
314 vmcs_write16(HOST_FS_SELECTOR
, hs
->fs_sel
);
316 vmcs_write16(HOST_FS_SELECTOR
, 0);
317 hs
->fs_gs_ldt_reload_needed
= 1;
319 hs
->gs_sel
= read_gs();
320 if (!(hs
->gs_sel
& 7))
321 vmcs_write16(HOST_GS_SELECTOR
, hs
->gs_sel
);
323 vmcs_write16(HOST_GS_SELECTOR
, 0);
324 hs
->fs_gs_ldt_reload_needed
= 1;
328 vmcs_writel(HOST_FS_BASE
, read_msr(MSR_FS_BASE
));
329 vmcs_writel(HOST_GS_BASE
, read_msr(MSR_GS_BASE
));
331 vmcs_writel(HOST_FS_BASE
, segment_base(hs
->fs_sel
));
332 vmcs_writel(HOST_GS_BASE
, segment_base(hs
->gs_sel
));
336 if (is_long_mode(vcpu
)) {
337 save_msrs(vcpu
->host_msrs
+ vcpu
->msr_offset_kernel_gs_base
, 1);
340 load_msrs(vcpu
->guest_msrs
, vcpu
->save_nmsrs
);
341 if (msr_efer_need_save_restore(vcpu
))
342 load_transition_efer(vcpu
);
345 static void vmx_load_host_state(struct kvm_vcpu
*vcpu
)
347 struct vmx_host_state
*hs
= &vcpu
->vmx_host_state
;
353 if (hs
->fs_gs_ldt_reload_needed
) {
354 load_ldt(hs
->ldt_sel
);
357 * If we have to reload gs, we must take care to
358 * preserve our gs base.
363 wrmsrl(MSR_GS_BASE
, vmcs_readl(HOST_GS_BASE
));
369 save_msrs(vcpu
->guest_msrs
, vcpu
->save_nmsrs
);
370 load_msrs(vcpu
->host_msrs
, vcpu
->save_nmsrs
);
371 if (msr_efer_need_save_restore(vcpu
))
372 load_msrs(vcpu
->host_msrs
+ vcpu
->msr_offset_efer
, 1);
376 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
377 * vcpu mutex is already taken.
379 static void vmx_vcpu_load(struct kvm_vcpu
*vcpu
)
381 u64 phys_addr
= __pa(vcpu
->vmcs
);
387 if (vcpu
->cpu
!= cpu
)
390 if (per_cpu(current_vmcs
, cpu
) != vcpu
->vmcs
) {
393 per_cpu(current_vmcs
, cpu
) = vcpu
->vmcs
;
394 asm volatile (ASM_VMX_VMPTRLD_RAX
"; setna %0"
395 : "=g"(error
) : "a"(&phys_addr
), "m"(phys_addr
)
398 printk(KERN_ERR
"kvm: vmptrld %p/%llx fail\n",
399 vcpu
->vmcs
, phys_addr
);
402 if (vcpu
->cpu
!= cpu
) {
403 struct descriptor_table dt
;
404 unsigned long sysenter_esp
;
408 * Linux uses per-cpu TSS and GDT, so set these when switching
411 vmcs_writel(HOST_TR_BASE
, read_tr_base()); /* 22.2.4 */
413 vmcs_writel(HOST_GDTR_BASE
, dt
.base
); /* 22.2.4 */
415 rdmsrl(MSR_IA32_SYSENTER_ESP
, sysenter_esp
);
416 vmcs_writel(HOST_IA32_SYSENTER_ESP
, sysenter_esp
); /* 22.2.3 */
419 * Make sure the time stamp counter is monotonous.
422 delta
= vcpu
->host_tsc
- tsc_this
;
423 vmcs_write64(TSC_OFFSET
, vmcs_read64(TSC_OFFSET
) + delta
);
427 static void vmx_vcpu_put(struct kvm_vcpu
*vcpu
)
429 vmx_load_host_state(vcpu
);
430 kvm_put_guest_fpu(vcpu
);
434 static void vmx_fpu_activate(struct kvm_vcpu
*vcpu
)
436 if (vcpu
->fpu_active
)
438 vcpu
->fpu_active
= 1;
439 vmcs_clear_bits(GUEST_CR0
, CR0_TS_MASK
);
440 if (vcpu
->cr0
& CR0_TS_MASK
)
441 vmcs_set_bits(GUEST_CR0
, CR0_TS_MASK
);
442 update_exception_bitmap(vcpu
);
445 static void vmx_fpu_deactivate(struct kvm_vcpu
*vcpu
)
447 if (!vcpu
->fpu_active
)
449 vcpu
->fpu_active
= 0;
450 vmcs_set_bits(GUEST_CR0
, CR0_TS_MASK
);
451 update_exception_bitmap(vcpu
);
454 static void vmx_vcpu_decache(struct kvm_vcpu
*vcpu
)
459 static unsigned long vmx_get_rflags(struct kvm_vcpu
*vcpu
)
461 return vmcs_readl(GUEST_RFLAGS
);
464 static void vmx_set_rflags(struct kvm_vcpu
*vcpu
, unsigned long rflags
)
466 vmcs_writel(GUEST_RFLAGS
, rflags
);
469 static void skip_emulated_instruction(struct kvm_vcpu
*vcpu
)
472 u32 interruptibility
;
474 rip
= vmcs_readl(GUEST_RIP
);
475 rip
+= vmcs_read32(VM_EXIT_INSTRUCTION_LEN
);
476 vmcs_writel(GUEST_RIP
, rip
);
479 * We emulated an instruction, so temporary interrupt blocking
480 * should be removed, if set.
482 interruptibility
= vmcs_read32(GUEST_INTERRUPTIBILITY_INFO
);
483 if (interruptibility
& 3)
484 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO
,
485 interruptibility
& ~3);
486 vcpu
->interrupt_window_open
= 1;
489 static void vmx_inject_gp(struct kvm_vcpu
*vcpu
, unsigned error_code
)
491 printk(KERN_DEBUG
"inject_general_protection: rip 0x%lx\n",
492 vmcs_readl(GUEST_RIP
));
493 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE
, error_code
);
494 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD
,
496 INTR_TYPE_EXCEPTION
|
497 INTR_INFO_DELIEVER_CODE_MASK
|
498 INTR_INFO_VALID_MASK
);
502 * Swap MSR entry in host/guest MSR entry array.
504 void move_msr_up(struct kvm_vcpu
*vcpu
, int from
, int to
)
506 struct vmx_msr_entry tmp
;
507 tmp
= vcpu
->guest_msrs
[to
];
508 vcpu
->guest_msrs
[to
] = vcpu
->guest_msrs
[from
];
509 vcpu
->guest_msrs
[from
] = tmp
;
510 tmp
= vcpu
->host_msrs
[to
];
511 vcpu
->host_msrs
[to
] = vcpu
->host_msrs
[from
];
512 vcpu
->host_msrs
[from
] = tmp
;
516 * Set up the vmcs to automatically save and restore system
517 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
518 * mode, as fiddling with msrs is very expensive.
520 static void setup_msrs(struct kvm_vcpu
*vcpu
)
526 if (is_long_mode(vcpu
)) {
529 index
= __find_msr_index(vcpu
, MSR_SYSCALL_MASK
);
531 move_msr_up(vcpu
, index
, save_nmsrs
++);
532 index
= __find_msr_index(vcpu
, MSR_LSTAR
);
534 move_msr_up(vcpu
, index
, save_nmsrs
++);
535 index
= __find_msr_index(vcpu
, MSR_CSTAR
);
537 move_msr_up(vcpu
, index
, save_nmsrs
++);
538 index
= __find_msr_index(vcpu
, MSR_KERNEL_GS_BASE
);
540 move_msr_up(vcpu
, index
, save_nmsrs
++);
542 * MSR_K6_STAR is only needed on long mode guests, and only
543 * if efer.sce is enabled.
545 index
= __find_msr_index(vcpu
, MSR_K6_STAR
);
546 if ((index
>= 0) && (vcpu
->shadow_efer
& EFER_SCE
))
547 move_msr_up(vcpu
, index
, save_nmsrs
++);
550 vcpu
->save_nmsrs
= save_nmsrs
;
553 vcpu
->msr_offset_kernel_gs_base
=
554 __find_msr_index(vcpu
, MSR_KERNEL_GS_BASE
);
556 vcpu
->msr_offset_efer
= __find_msr_index(vcpu
, MSR_EFER
);
560 * reads and returns guest's timestamp counter "register"
561 * guest_tsc = host_tsc + tsc_offset -- 21.3
563 static u64
guest_read_tsc(void)
565 u64 host_tsc
, tsc_offset
;
568 tsc_offset
= vmcs_read64(TSC_OFFSET
);
569 return host_tsc
+ tsc_offset
;
573 * writes 'guest_tsc' into guest's timestamp counter "register"
574 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
576 static void guest_write_tsc(u64 guest_tsc
)
581 vmcs_write64(TSC_OFFSET
, guest_tsc
- host_tsc
);
585 * Reads an msr value (of 'msr_index') into 'pdata'.
586 * Returns 0 on success, non-0 otherwise.
587 * Assumes vcpu_load() was already called.
589 static int vmx_get_msr(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64
*pdata
)
592 struct vmx_msr_entry
*msr
;
595 printk(KERN_ERR
"BUG: get_msr called with NULL pdata\n");
602 data
= vmcs_readl(GUEST_FS_BASE
);
605 data
= vmcs_readl(GUEST_GS_BASE
);
608 return kvm_get_msr_common(vcpu
, msr_index
, pdata
);
610 case MSR_IA32_TIME_STAMP_COUNTER
:
611 data
= guest_read_tsc();
613 case MSR_IA32_SYSENTER_CS
:
614 data
= vmcs_read32(GUEST_SYSENTER_CS
);
616 case MSR_IA32_SYSENTER_EIP
:
617 data
= vmcs_readl(GUEST_SYSENTER_EIP
);
619 case MSR_IA32_SYSENTER_ESP
:
620 data
= vmcs_readl(GUEST_SYSENTER_ESP
);
623 msr
= find_msr_entry(vcpu
, msr_index
);
628 return kvm_get_msr_common(vcpu
, msr_index
, pdata
);
636 * Writes msr value into into the appropriate "register".
637 * Returns 0 on success, non-0 otherwise.
638 * Assumes vcpu_load() was already called.
640 static int vmx_set_msr(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64 data
)
642 struct vmx_msr_entry
*msr
;
648 ret
= kvm_set_msr_common(vcpu
, msr_index
, data
);
649 if (vcpu
->vmx_host_state
.loaded
)
650 load_transition_efer(vcpu
);
653 vmcs_writel(GUEST_FS_BASE
, data
);
656 vmcs_writel(GUEST_GS_BASE
, data
);
659 case MSR_IA32_SYSENTER_CS
:
660 vmcs_write32(GUEST_SYSENTER_CS
, data
);
662 case MSR_IA32_SYSENTER_EIP
:
663 vmcs_writel(GUEST_SYSENTER_EIP
, data
);
665 case MSR_IA32_SYSENTER_ESP
:
666 vmcs_writel(GUEST_SYSENTER_ESP
, data
);
668 case MSR_IA32_TIME_STAMP_COUNTER
:
669 guest_write_tsc(data
);
672 msr
= find_msr_entry(vcpu
, msr_index
);
675 if (vcpu
->vmx_host_state
.loaded
)
676 load_msrs(vcpu
->guest_msrs
, vcpu
->save_nmsrs
);
679 ret
= kvm_set_msr_common(vcpu
, msr_index
, data
);
686 * Sync the rsp and rip registers into the vcpu structure. This allows
687 * registers to be accessed by indexing vcpu->regs.
689 static void vcpu_load_rsp_rip(struct kvm_vcpu
*vcpu
)
691 vcpu
->regs
[VCPU_REGS_RSP
] = vmcs_readl(GUEST_RSP
);
692 vcpu
->rip
= vmcs_readl(GUEST_RIP
);
696 * Syncs rsp and rip back into the vmcs. Should be called after possible
699 static void vcpu_put_rsp_rip(struct kvm_vcpu
*vcpu
)
701 vmcs_writel(GUEST_RSP
, vcpu
->regs
[VCPU_REGS_RSP
]);
702 vmcs_writel(GUEST_RIP
, vcpu
->rip
);
705 static int set_guest_debug(struct kvm_vcpu
*vcpu
, struct kvm_debug_guest
*dbg
)
707 unsigned long dr7
= 0x400;
710 old_singlestep
= vcpu
->guest_debug
.singlestep
;
712 vcpu
->guest_debug
.enabled
= dbg
->enabled
;
713 if (vcpu
->guest_debug
.enabled
) {
716 dr7
|= 0x200; /* exact */
717 for (i
= 0; i
< 4; ++i
) {
718 if (!dbg
->breakpoints
[i
].enabled
)
720 vcpu
->guest_debug
.bp
[i
] = dbg
->breakpoints
[i
].address
;
721 dr7
|= 2 << (i
*2); /* global enable */
722 dr7
|= 0 << (i
*4+16); /* execution breakpoint */
725 vcpu
->guest_debug
.singlestep
= dbg
->singlestep
;
727 vcpu
->guest_debug
.singlestep
= 0;
729 if (old_singlestep
&& !vcpu
->guest_debug
.singlestep
) {
732 flags
= vmcs_readl(GUEST_RFLAGS
);
733 flags
&= ~(X86_EFLAGS_TF
| X86_EFLAGS_RF
);
734 vmcs_writel(GUEST_RFLAGS
, flags
);
737 update_exception_bitmap(vcpu
);
738 vmcs_writel(GUEST_DR7
, dr7
);
743 static __init
int cpu_has_kvm_support(void)
745 unsigned long ecx
= cpuid_ecx(1);
746 return test_bit(5, &ecx
); /* CPUID.1:ECX.VMX[bit 5] -> VT */
749 static __init
int vmx_disabled_by_bios(void)
753 rdmsrl(MSR_IA32_FEATURE_CONTROL
, msr
);
754 return (msr
& 5) == 1; /* locked but not enabled */
757 static void hardware_enable(void *garbage
)
759 int cpu
= raw_smp_processor_id();
760 u64 phys_addr
= __pa(per_cpu(vmxarea
, cpu
));
763 rdmsrl(MSR_IA32_FEATURE_CONTROL
, old
);
765 /* enable and lock */
766 wrmsrl(MSR_IA32_FEATURE_CONTROL
, old
| 5);
767 write_cr4(read_cr4() | CR4_VMXE
); /* FIXME: not cpu hotplug safe */
768 asm volatile (ASM_VMX_VMXON_RAX
: : "a"(&phys_addr
), "m"(phys_addr
)
772 static void hardware_disable(void *garbage
)
774 asm volatile (ASM_VMX_VMXOFF
: : : "cc");
777 static __init
void setup_vmcs_descriptor(void)
779 u32 vmx_msr_low
, vmx_msr_high
;
781 rdmsr(MSR_IA32_VMX_BASIC
, vmx_msr_low
, vmx_msr_high
);
782 vmcs_descriptor
.size
= vmx_msr_high
& 0x1fff;
783 vmcs_descriptor
.order
= get_order(vmcs_descriptor
.size
);
784 vmcs_descriptor
.revision_id
= vmx_msr_low
;
787 static struct vmcs
*alloc_vmcs_cpu(int cpu
)
789 int node
= cpu_to_node(cpu
);
793 pages
= alloc_pages_node(node
, GFP_KERNEL
, vmcs_descriptor
.order
);
796 vmcs
= page_address(pages
);
797 memset(vmcs
, 0, vmcs_descriptor
.size
);
798 vmcs
->revision_id
= vmcs_descriptor
.revision_id
; /* vmcs revision id */
802 static struct vmcs
*alloc_vmcs(void)
804 return alloc_vmcs_cpu(raw_smp_processor_id());
807 static void free_vmcs(struct vmcs
*vmcs
)
809 free_pages((unsigned long)vmcs
, vmcs_descriptor
.order
);
812 static void free_kvm_area(void)
816 for_each_online_cpu(cpu
)
817 free_vmcs(per_cpu(vmxarea
, cpu
));
820 extern struct vmcs
*alloc_vmcs_cpu(int cpu
);
822 static __init
int alloc_kvm_area(void)
826 for_each_online_cpu(cpu
) {
829 vmcs
= alloc_vmcs_cpu(cpu
);
835 per_cpu(vmxarea
, cpu
) = vmcs
;
840 static __init
int hardware_setup(void)
842 setup_vmcs_descriptor();
843 return alloc_kvm_area();
846 static __exit
void hardware_unsetup(void)
851 static void fix_pmode_dataseg(int seg
, struct kvm_save_segment
*save
)
853 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
855 if (vmcs_readl(sf
->base
) == save
->base
&& (save
->base
& AR_S_MASK
)) {
856 vmcs_write16(sf
->selector
, save
->selector
);
857 vmcs_writel(sf
->base
, save
->base
);
858 vmcs_write32(sf
->limit
, save
->limit
);
859 vmcs_write32(sf
->ar_bytes
, save
->ar
);
861 u32 dpl
= (vmcs_read16(sf
->selector
) & SELECTOR_RPL_MASK
)
863 vmcs_write32(sf
->ar_bytes
, 0x93 | dpl
);
867 static void enter_pmode(struct kvm_vcpu
*vcpu
)
871 vcpu
->rmode
.active
= 0;
873 vmcs_writel(GUEST_TR_BASE
, vcpu
->rmode
.tr
.base
);
874 vmcs_write32(GUEST_TR_LIMIT
, vcpu
->rmode
.tr
.limit
);
875 vmcs_write32(GUEST_TR_AR_BYTES
, vcpu
->rmode
.tr
.ar
);
877 flags
= vmcs_readl(GUEST_RFLAGS
);
878 flags
&= ~(IOPL_MASK
| X86_EFLAGS_VM
);
879 flags
|= (vcpu
->rmode
.save_iopl
<< IOPL_SHIFT
);
880 vmcs_writel(GUEST_RFLAGS
, flags
);
882 vmcs_writel(GUEST_CR4
, (vmcs_readl(GUEST_CR4
) & ~CR4_VME_MASK
) |
883 (vmcs_readl(CR4_READ_SHADOW
) & CR4_VME_MASK
));
885 update_exception_bitmap(vcpu
);
887 fix_pmode_dataseg(VCPU_SREG_ES
, &vcpu
->rmode
.es
);
888 fix_pmode_dataseg(VCPU_SREG_DS
, &vcpu
->rmode
.ds
);
889 fix_pmode_dataseg(VCPU_SREG_GS
, &vcpu
->rmode
.gs
);
890 fix_pmode_dataseg(VCPU_SREG_FS
, &vcpu
->rmode
.fs
);
892 vmcs_write16(GUEST_SS_SELECTOR
, 0);
893 vmcs_write32(GUEST_SS_AR_BYTES
, 0x93);
895 vmcs_write16(GUEST_CS_SELECTOR
,
896 vmcs_read16(GUEST_CS_SELECTOR
) & ~SELECTOR_RPL_MASK
);
897 vmcs_write32(GUEST_CS_AR_BYTES
, 0x9b);
900 static int rmode_tss_base(struct kvm
* kvm
)
902 gfn_t base_gfn
= kvm
->memslots
[0].base_gfn
+ kvm
->memslots
[0].npages
- 3;
903 return base_gfn
<< PAGE_SHIFT
;
906 static void fix_rmode_seg(int seg
, struct kvm_save_segment
*save
)
908 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
910 save
->selector
= vmcs_read16(sf
->selector
);
911 save
->base
= vmcs_readl(sf
->base
);
912 save
->limit
= vmcs_read32(sf
->limit
);
913 save
->ar
= vmcs_read32(sf
->ar_bytes
);
914 vmcs_write16(sf
->selector
, vmcs_readl(sf
->base
) >> 4);
915 vmcs_write32(sf
->limit
, 0xffff);
916 vmcs_write32(sf
->ar_bytes
, 0xf3);
919 static void enter_rmode(struct kvm_vcpu
*vcpu
)
923 vcpu
->rmode
.active
= 1;
925 vcpu
->rmode
.tr
.base
= vmcs_readl(GUEST_TR_BASE
);
926 vmcs_writel(GUEST_TR_BASE
, rmode_tss_base(vcpu
->kvm
));
928 vcpu
->rmode
.tr
.limit
= vmcs_read32(GUEST_TR_LIMIT
);
929 vmcs_write32(GUEST_TR_LIMIT
, RMODE_TSS_SIZE
- 1);
931 vcpu
->rmode
.tr
.ar
= vmcs_read32(GUEST_TR_AR_BYTES
);
932 vmcs_write32(GUEST_TR_AR_BYTES
, 0x008b);
934 flags
= vmcs_readl(GUEST_RFLAGS
);
935 vcpu
->rmode
.save_iopl
= (flags
& IOPL_MASK
) >> IOPL_SHIFT
;
937 flags
|= IOPL_MASK
| X86_EFLAGS_VM
;
939 vmcs_writel(GUEST_RFLAGS
, flags
);
940 vmcs_writel(GUEST_CR4
, vmcs_readl(GUEST_CR4
) | CR4_VME_MASK
);
941 update_exception_bitmap(vcpu
);
943 vmcs_write16(GUEST_SS_SELECTOR
, vmcs_readl(GUEST_SS_BASE
) >> 4);
944 vmcs_write32(GUEST_SS_LIMIT
, 0xffff);
945 vmcs_write32(GUEST_SS_AR_BYTES
, 0xf3);
947 vmcs_write32(GUEST_CS_AR_BYTES
, 0xf3);
948 vmcs_write32(GUEST_CS_LIMIT
, 0xffff);
949 if (vmcs_readl(GUEST_CS_BASE
) == 0xffff0000)
950 vmcs_writel(GUEST_CS_BASE
, 0xf0000);
951 vmcs_write16(GUEST_CS_SELECTOR
, vmcs_readl(GUEST_CS_BASE
) >> 4);
953 fix_rmode_seg(VCPU_SREG_ES
, &vcpu
->rmode
.es
);
954 fix_rmode_seg(VCPU_SREG_DS
, &vcpu
->rmode
.ds
);
955 fix_rmode_seg(VCPU_SREG_GS
, &vcpu
->rmode
.gs
);
956 fix_rmode_seg(VCPU_SREG_FS
, &vcpu
->rmode
.fs
);
958 init_rmode_tss(vcpu
->kvm
);
963 static void enter_lmode(struct kvm_vcpu
*vcpu
)
967 guest_tr_ar
= vmcs_read32(GUEST_TR_AR_BYTES
);
968 if ((guest_tr_ar
& AR_TYPE_MASK
) != AR_TYPE_BUSY_64_TSS
) {
969 printk(KERN_DEBUG
"%s: tss fixup for long mode. \n",
971 vmcs_write32(GUEST_TR_AR_BYTES
,
972 (guest_tr_ar
& ~AR_TYPE_MASK
)
973 | AR_TYPE_BUSY_64_TSS
);
976 vcpu
->shadow_efer
|= EFER_LMA
;
978 find_msr_entry(vcpu
, MSR_EFER
)->data
|= EFER_LMA
| EFER_LME
;
979 vmcs_write32(VM_ENTRY_CONTROLS
,
980 vmcs_read32(VM_ENTRY_CONTROLS
)
981 | VM_ENTRY_CONTROLS_IA32E_MASK
);
984 static void exit_lmode(struct kvm_vcpu
*vcpu
)
986 vcpu
->shadow_efer
&= ~EFER_LMA
;
988 vmcs_write32(VM_ENTRY_CONTROLS
,
989 vmcs_read32(VM_ENTRY_CONTROLS
)
990 & ~VM_ENTRY_CONTROLS_IA32E_MASK
);
995 static void vmx_decache_cr4_guest_bits(struct kvm_vcpu
*vcpu
)
997 vcpu
->cr4
&= KVM_GUEST_CR4_MASK
;
998 vcpu
->cr4
|= vmcs_readl(GUEST_CR4
) & ~KVM_GUEST_CR4_MASK
;
1001 static void vmx_set_cr0(struct kvm_vcpu
*vcpu
, unsigned long cr0
)
1003 vmx_fpu_deactivate(vcpu
);
1005 if (vcpu
->rmode
.active
&& (cr0
& CR0_PE_MASK
))
1008 if (!vcpu
->rmode
.active
&& !(cr0
& CR0_PE_MASK
))
1011 #ifdef CONFIG_X86_64
1012 if (vcpu
->shadow_efer
& EFER_LME
) {
1013 if (!is_paging(vcpu
) && (cr0
& CR0_PG_MASK
))
1015 if (is_paging(vcpu
) && !(cr0
& CR0_PG_MASK
))
1020 vmcs_writel(CR0_READ_SHADOW
, cr0
);
1021 vmcs_writel(GUEST_CR0
,
1022 (cr0
& ~KVM_GUEST_CR0_MASK
) | KVM_VM_CR0_ALWAYS_ON
);
1025 if (!(cr0
& CR0_TS_MASK
) || !(cr0
& CR0_PE_MASK
))
1026 vmx_fpu_activate(vcpu
);
1029 static void vmx_set_cr3(struct kvm_vcpu
*vcpu
, unsigned long cr3
)
1031 vmcs_writel(GUEST_CR3
, cr3
);
1032 if (vcpu
->cr0
& CR0_PE_MASK
)
1033 vmx_fpu_deactivate(vcpu
);
1036 static void vmx_set_cr4(struct kvm_vcpu
*vcpu
, unsigned long cr4
)
1038 vmcs_writel(CR4_READ_SHADOW
, cr4
);
1039 vmcs_writel(GUEST_CR4
, cr4
| (vcpu
->rmode
.active
?
1040 KVM_RMODE_VM_CR4_ALWAYS_ON
: KVM_PMODE_VM_CR4_ALWAYS_ON
));
1044 #ifdef CONFIG_X86_64
1046 static void vmx_set_efer(struct kvm_vcpu
*vcpu
, u64 efer
)
1048 struct vmx_msr_entry
*msr
= find_msr_entry(vcpu
, MSR_EFER
);
1050 vcpu
->shadow_efer
= efer
;
1051 if (efer
& EFER_LMA
) {
1052 vmcs_write32(VM_ENTRY_CONTROLS
,
1053 vmcs_read32(VM_ENTRY_CONTROLS
) |
1054 VM_ENTRY_CONTROLS_IA32E_MASK
);
1058 vmcs_write32(VM_ENTRY_CONTROLS
,
1059 vmcs_read32(VM_ENTRY_CONTROLS
) &
1060 ~VM_ENTRY_CONTROLS_IA32E_MASK
);
1062 msr
->data
= efer
& ~EFER_LME
;
1069 static u64
vmx_get_segment_base(struct kvm_vcpu
*vcpu
, int seg
)
1071 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
1073 return vmcs_readl(sf
->base
);
1076 static void vmx_get_segment(struct kvm_vcpu
*vcpu
,
1077 struct kvm_segment
*var
, int seg
)
1079 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
1082 var
->base
= vmcs_readl(sf
->base
);
1083 var
->limit
= vmcs_read32(sf
->limit
);
1084 var
->selector
= vmcs_read16(sf
->selector
);
1085 ar
= vmcs_read32(sf
->ar_bytes
);
1086 if (ar
& AR_UNUSABLE_MASK
)
1088 var
->type
= ar
& 15;
1089 var
->s
= (ar
>> 4) & 1;
1090 var
->dpl
= (ar
>> 5) & 3;
1091 var
->present
= (ar
>> 7) & 1;
1092 var
->avl
= (ar
>> 12) & 1;
1093 var
->l
= (ar
>> 13) & 1;
1094 var
->db
= (ar
>> 14) & 1;
1095 var
->g
= (ar
>> 15) & 1;
1096 var
->unusable
= (ar
>> 16) & 1;
1099 static u32
vmx_segment_access_rights(struct kvm_segment
*var
)
1106 ar
= var
->type
& 15;
1107 ar
|= (var
->s
& 1) << 4;
1108 ar
|= (var
->dpl
& 3) << 5;
1109 ar
|= (var
->present
& 1) << 7;
1110 ar
|= (var
->avl
& 1) << 12;
1111 ar
|= (var
->l
& 1) << 13;
1112 ar
|= (var
->db
& 1) << 14;
1113 ar
|= (var
->g
& 1) << 15;
1115 if (ar
== 0) /* a 0 value means unusable */
1116 ar
= AR_UNUSABLE_MASK
;
1121 static void vmx_set_segment(struct kvm_vcpu
*vcpu
,
1122 struct kvm_segment
*var
, int seg
)
1124 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
1127 if (vcpu
->rmode
.active
&& seg
== VCPU_SREG_TR
) {
1128 vcpu
->rmode
.tr
.selector
= var
->selector
;
1129 vcpu
->rmode
.tr
.base
= var
->base
;
1130 vcpu
->rmode
.tr
.limit
= var
->limit
;
1131 vcpu
->rmode
.tr
.ar
= vmx_segment_access_rights(var
);
1134 vmcs_writel(sf
->base
, var
->base
);
1135 vmcs_write32(sf
->limit
, var
->limit
);
1136 vmcs_write16(sf
->selector
, var
->selector
);
1137 if (vcpu
->rmode
.active
&& var
->s
) {
1139 * Hack real-mode segments into vm86 compatibility.
1141 if (var
->base
== 0xffff0000 && var
->selector
== 0xf000)
1142 vmcs_writel(sf
->base
, 0xf0000);
1145 ar
= vmx_segment_access_rights(var
);
1146 vmcs_write32(sf
->ar_bytes
, ar
);
1149 static void vmx_get_cs_db_l_bits(struct kvm_vcpu
*vcpu
, int *db
, int *l
)
1151 u32 ar
= vmcs_read32(GUEST_CS_AR_BYTES
);
1153 *db
= (ar
>> 14) & 1;
1154 *l
= (ar
>> 13) & 1;
1157 static void vmx_get_idt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
1159 dt
->limit
= vmcs_read32(GUEST_IDTR_LIMIT
);
1160 dt
->base
= vmcs_readl(GUEST_IDTR_BASE
);
1163 static void vmx_set_idt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
1165 vmcs_write32(GUEST_IDTR_LIMIT
, dt
->limit
);
1166 vmcs_writel(GUEST_IDTR_BASE
, dt
->base
);
1169 static void vmx_get_gdt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
1171 dt
->limit
= vmcs_read32(GUEST_GDTR_LIMIT
);
1172 dt
->base
= vmcs_readl(GUEST_GDTR_BASE
);
1175 static void vmx_set_gdt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
1177 vmcs_write32(GUEST_GDTR_LIMIT
, dt
->limit
);
1178 vmcs_writel(GUEST_GDTR_BASE
, dt
->base
);
1181 static int init_rmode_tss(struct kvm
* kvm
)
1183 struct page
*p1
, *p2
, *p3
;
1184 gfn_t fn
= rmode_tss_base(kvm
) >> PAGE_SHIFT
;
1187 p1
= gfn_to_page(kvm
, fn
++);
1188 p2
= gfn_to_page(kvm
, fn
++);
1189 p3
= gfn_to_page(kvm
, fn
);
1191 if (!p1
|| !p2
|| !p3
) {
1192 kvm_printf(kvm
,"%s: gfn_to_page failed\n", __FUNCTION__
);
1196 page
= kmap_atomic(p1
, KM_USER0
);
1198 *(u16
*)(page
+ 0x66) = TSS_BASE_SIZE
+ TSS_REDIRECTION_SIZE
;
1199 kunmap_atomic(page
, KM_USER0
);
1201 page
= kmap_atomic(p2
, KM_USER0
);
1203 kunmap_atomic(page
, KM_USER0
);
1205 page
= kmap_atomic(p3
, KM_USER0
);
1207 *(page
+ RMODE_TSS_SIZE
- 2 * PAGE_SIZE
- 1) = ~0;
1208 kunmap_atomic(page
, KM_USER0
);
1213 static void vmcs_write32_fixedbits(u32 msr
, u32 vmcs_field
, u32 val
)
1215 u32 msr_high
, msr_low
;
1217 rdmsr(msr
, msr_low
, msr_high
);
1221 vmcs_write32(vmcs_field
, val
);
1224 static void seg_setup(int seg
)
1226 struct kvm_vmx_segment_field
*sf
= &kvm_vmx_segment_fields
[seg
];
1228 vmcs_write16(sf
->selector
, 0);
1229 vmcs_writel(sf
->base
, 0);
1230 vmcs_write32(sf
->limit
, 0xffff);
1231 vmcs_write32(sf
->ar_bytes
, 0x93);
1235 * Sets up the vmcs for emulated real mode.
1237 static int vmx_vcpu_setup(struct kvm_vcpu
*vcpu
)
1239 u32 host_sysenter_cs
;
1242 struct descriptor_table dt
;
1245 unsigned long kvm_vmx_return
;
1247 if (!init_rmode_tss(vcpu
->kvm
)) {
1252 memset(vcpu
->regs
, 0, sizeof(vcpu
->regs
));
1253 vcpu
->regs
[VCPU_REGS_RDX
] = get_rdx_init_val();
1255 vcpu
->apic_base
= 0xfee00000 | MSR_IA32_APICBASE_ENABLE
;
1256 if (vcpu
== &vcpu
->kvm
->vcpus
[0])
1257 vcpu
->apic_base
|= MSR_IA32_APICBASE_BSP
;
1262 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
1263 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
1265 vmcs_write16(GUEST_CS_SELECTOR
, 0xf000);
1266 vmcs_writel(GUEST_CS_BASE
, 0x000f0000);
1267 vmcs_write32(GUEST_CS_LIMIT
, 0xffff);
1268 vmcs_write32(GUEST_CS_AR_BYTES
, 0x9b);
1270 seg_setup(VCPU_SREG_DS
);
1271 seg_setup(VCPU_SREG_ES
);
1272 seg_setup(VCPU_SREG_FS
);
1273 seg_setup(VCPU_SREG_GS
);
1274 seg_setup(VCPU_SREG_SS
);
1276 vmcs_write16(GUEST_TR_SELECTOR
, 0);
1277 vmcs_writel(GUEST_TR_BASE
, 0);
1278 vmcs_write32(GUEST_TR_LIMIT
, 0xffff);
1279 vmcs_write32(GUEST_TR_AR_BYTES
, 0x008b);
1281 vmcs_write16(GUEST_LDTR_SELECTOR
, 0);
1282 vmcs_writel(GUEST_LDTR_BASE
, 0);
1283 vmcs_write32(GUEST_LDTR_LIMIT
, 0xffff);
1284 vmcs_write32(GUEST_LDTR_AR_BYTES
, 0x00082);
1286 vmcs_write32(GUEST_SYSENTER_CS
, 0);
1287 vmcs_writel(GUEST_SYSENTER_ESP
, 0);
1288 vmcs_writel(GUEST_SYSENTER_EIP
, 0);
1290 vmcs_writel(GUEST_RFLAGS
, 0x02);
1291 vmcs_writel(GUEST_RIP
, 0xfff0);
1292 vmcs_writel(GUEST_RSP
, 0);
1294 //todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0
1295 vmcs_writel(GUEST_DR7
, 0x400);
1297 vmcs_writel(GUEST_GDTR_BASE
, 0);
1298 vmcs_write32(GUEST_GDTR_LIMIT
, 0xffff);
1300 vmcs_writel(GUEST_IDTR_BASE
, 0);
1301 vmcs_write32(GUEST_IDTR_LIMIT
, 0xffff);
1303 vmcs_write32(GUEST_ACTIVITY_STATE
, 0);
1304 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO
, 0);
1305 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS
, 0);
1308 vmcs_write64(IO_BITMAP_A
, page_to_phys(vmx_io_bitmap_a
));
1309 vmcs_write64(IO_BITMAP_B
, page_to_phys(vmx_io_bitmap_b
));
1313 vmcs_write64(VMCS_LINK_POINTER
, -1ull); /* 22.3.1.5 */
1315 /* Special registers */
1316 vmcs_write64(GUEST_IA32_DEBUGCTL
, 0);
1319 vmcs_write32_fixedbits(MSR_IA32_VMX_PINBASED_CTLS
,
1320 PIN_BASED_VM_EXEC_CONTROL
,
1321 PIN_BASED_EXT_INTR_MASK
/* 20.6.1 */
1322 | PIN_BASED_NMI_EXITING
/* 20.6.1 */
1324 vmcs_write32_fixedbits(MSR_IA32_VMX_PROCBASED_CTLS
,
1325 CPU_BASED_VM_EXEC_CONTROL
,
1326 CPU_BASED_HLT_EXITING
/* 20.6.2 */
1327 | CPU_BASED_CR8_LOAD_EXITING
/* 20.6.2 */
1328 | CPU_BASED_CR8_STORE_EXITING
/* 20.6.2 */
1329 | CPU_BASED_ACTIVATE_IO_BITMAP
/* 20.6.2 */
1330 | CPU_BASED_MOV_DR_EXITING
1331 | CPU_BASED_USE_TSC_OFFSETING
/* 21.3 */
1334 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK
, 0);
1335 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH
, 0);
1336 vmcs_write32(CR3_TARGET_COUNT
, 0); /* 22.2.1 */
1338 vmcs_writel(HOST_CR0
, read_cr0()); /* 22.2.3 */
1339 vmcs_writel(HOST_CR4
, read_cr4()); /* 22.2.3, 22.2.5 */
1340 vmcs_writel(HOST_CR3
, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1342 vmcs_write16(HOST_CS_SELECTOR
, __KERNEL_CS
); /* 22.2.4 */
1343 vmcs_write16(HOST_DS_SELECTOR
, __KERNEL_DS
); /* 22.2.4 */
1344 vmcs_write16(HOST_ES_SELECTOR
, __KERNEL_DS
); /* 22.2.4 */
1345 vmcs_write16(HOST_FS_SELECTOR
, read_fs()); /* 22.2.4 */
1346 vmcs_write16(HOST_GS_SELECTOR
, read_gs()); /* 22.2.4 */
1347 vmcs_write16(HOST_SS_SELECTOR
, __KERNEL_DS
); /* 22.2.4 */
1348 #ifdef CONFIG_X86_64
1349 rdmsrl(MSR_FS_BASE
, a
);
1350 vmcs_writel(HOST_FS_BASE
, a
); /* 22.2.4 */
1351 rdmsrl(MSR_GS_BASE
, a
);
1352 vmcs_writel(HOST_GS_BASE
, a
); /* 22.2.4 */
1354 vmcs_writel(HOST_FS_BASE
, 0); /* 22.2.4 */
1355 vmcs_writel(HOST_GS_BASE
, 0); /* 22.2.4 */
1358 vmcs_write16(HOST_TR_SELECTOR
, GDT_ENTRY_TSS
*8); /* 22.2.4 */
1361 vmcs_writel(HOST_IDTR_BASE
, dt
.base
); /* 22.2.4 */
1363 asm ("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return
));
1364 vmcs_writel(HOST_RIP
, kvm_vmx_return
); /* 22.2.5 */
1365 vmcs_write32(VM_EXIT_MSR_STORE_COUNT
, 0);
1366 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT
, 0);
1367 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT
, 0);
1369 rdmsr(MSR_IA32_SYSENTER_CS
, host_sysenter_cs
, junk
);
1370 vmcs_write32(HOST_IA32_SYSENTER_CS
, host_sysenter_cs
);
1371 rdmsrl(MSR_IA32_SYSENTER_ESP
, a
);
1372 vmcs_writel(HOST_IA32_SYSENTER_ESP
, a
); /* 22.2.3 */
1373 rdmsrl(MSR_IA32_SYSENTER_EIP
, a
);
1374 vmcs_writel(HOST_IA32_SYSENTER_EIP
, a
); /* 22.2.3 */
1376 for (i
= 0; i
< NR_VMX_MSR
; ++i
) {
1377 u32 index
= vmx_msr_index
[i
];
1378 u32 data_low
, data_high
;
1380 int j
= vcpu
->nmsrs
;
1382 if (rdmsr_safe(index
, &data_low
, &data_high
) < 0)
1384 if (wrmsr_safe(index
, data_low
, data_high
) < 0)
1386 data
= data_low
| ((u64
)data_high
<< 32);
1387 vcpu
->host_msrs
[j
].index
= index
;
1388 vcpu
->host_msrs
[j
].reserved
= 0;
1389 vcpu
->host_msrs
[j
].data
= data
;
1390 vcpu
->guest_msrs
[j
] = vcpu
->host_msrs
[j
];
1396 vmcs_write32_fixedbits(MSR_IA32_VMX_EXIT_CTLS
, VM_EXIT_CONTROLS
,
1397 (HOST_IS_64
<< 9)); /* 22.2,1, 20.7.1 */
1399 /* 22.2.1, 20.8.1 */
1400 vmcs_write32_fixedbits(MSR_IA32_VMX_ENTRY_CTLS
,
1401 VM_ENTRY_CONTROLS
, 0);
1402 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD
, 0); /* 22.2.1 */
1404 #ifdef CONFIG_X86_64
1405 vmcs_writel(VIRTUAL_APIC_PAGE_ADDR
, 0);
1406 vmcs_writel(TPR_THRESHOLD
, 0);
1409 vmcs_writel(CR0_GUEST_HOST_MASK
, ~0UL);
1410 vmcs_writel(CR4_GUEST_HOST_MASK
, KVM_GUEST_CR4_MASK
);
1412 vcpu
->cr0
= 0x60000010;
1413 vmx_set_cr0(vcpu
, vcpu
->cr0
); // enter rmode
1414 vmx_set_cr4(vcpu
, 0);
1415 #ifdef CONFIG_X86_64
1416 vmx_set_efer(vcpu
, 0);
1418 vmx_fpu_activate(vcpu
);
1419 update_exception_bitmap(vcpu
);
1427 static void inject_rmode_irq(struct kvm_vcpu
*vcpu
, int irq
)
1432 unsigned long flags
;
1433 unsigned long ss_base
= vmcs_readl(GUEST_SS_BASE
);
1434 u16 sp
= vmcs_readl(GUEST_RSP
);
1435 u32 ss_limit
= vmcs_read32(GUEST_SS_LIMIT
);
1437 if (sp
> ss_limit
|| sp
< 6 ) {
1438 vcpu_printf(vcpu
, "%s: #SS, rsp 0x%lx ss 0x%lx limit 0x%x\n",
1440 vmcs_readl(GUEST_RSP
),
1441 vmcs_readl(GUEST_SS_BASE
),
1442 vmcs_read32(GUEST_SS_LIMIT
));
1446 if (kvm_read_guest(vcpu
, irq
* sizeof(ent
), sizeof(ent
), &ent
) !=
1448 vcpu_printf(vcpu
, "%s: read guest err\n", __FUNCTION__
);
1452 flags
= vmcs_readl(GUEST_RFLAGS
);
1453 cs
= vmcs_readl(GUEST_CS_BASE
) >> 4;
1454 ip
= vmcs_readl(GUEST_RIP
);
1457 if (kvm_write_guest(vcpu
, ss_base
+ sp
- 2, 2, &flags
) != 2 ||
1458 kvm_write_guest(vcpu
, ss_base
+ sp
- 4, 2, &cs
) != 2 ||
1459 kvm_write_guest(vcpu
, ss_base
+ sp
- 6, 2, &ip
) != 2) {
1460 vcpu_printf(vcpu
, "%s: write guest err\n", __FUNCTION__
);
1464 vmcs_writel(GUEST_RFLAGS
, flags
&
1465 ~( X86_EFLAGS_IF
| X86_EFLAGS_AC
| X86_EFLAGS_TF
));
1466 vmcs_write16(GUEST_CS_SELECTOR
, ent
[1]) ;
1467 vmcs_writel(GUEST_CS_BASE
, ent
[1] << 4);
1468 vmcs_writel(GUEST_RIP
, ent
[0]);
1469 vmcs_writel(GUEST_RSP
, (vmcs_readl(GUEST_RSP
) & ~0xffff) | (sp
- 6));
1472 static void kvm_do_inject_irq(struct kvm_vcpu
*vcpu
)
1474 int word_index
= __ffs(vcpu
->irq_summary
);
1475 int bit_index
= __ffs(vcpu
->irq_pending
[word_index
]);
1476 int irq
= word_index
* BITS_PER_LONG
+ bit_index
;
1478 clear_bit(bit_index
, &vcpu
->irq_pending
[word_index
]);
1479 if (!vcpu
->irq_pending
[word_index
])
1480 clear_bit(word_index
, &vcpu
->irq_summary
);
1482 if (vcpu
->rmode
.active
) {
1483 inject_rmode_irq(vcpu
, irq
);
1486 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD
,
1487 irq
| INTR_TYPE_EXT_INTR
| INTR_INFO_VALID_MASK
);
1491 static void do_interrupt_requests(struct kvm_vcpu
*vcpu
,
1492 struct kvm_run
*kvm_run
)
1494 u32 cpu_based_vm_exec_control
;
1496 vcpu
->interrupt_window_open
=
1497 ((vmcs_readl(GUEST_RFLAGS
) & X86_EFLAGS_IF
) &&
1498 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO
) & 3) == 0);
1500 if (vcpu
->interrupt_window_open
&&
1501 vcpu
->irq_summary
&&
1502 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD
) & INTR_INFO_VALID_MASK
))
1504 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1506 kvm_do_inject_irq(vcpu
);
1508 cpu_based_vm_exec_control
= vmcs_read32(CPU_BASED_VM_EXEC_CONTROL
);
1509 if (!vcpu
->interrupt_window_open
&&
1510 (vcpu
->irq_summary
|| kvm_run
->request_interrupt_window
))
1512 * Interrupts blocked. Wait for unblock.
1514 cpu_based_vm_exec_control
|= CPU_BASED_VIRTUAL_INTR_PENDING
;
1516 cpu_based_vm_exec_control
&= ~CPU_BASED_VIRTUAL_INTR_PENDING
;
1517 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL
, cpu_based_vm_exec_control
);
1520 static void kvm_guest_debug_pre(struct kvm_vcpu
*vcpu
)
1522 struct kvm_guest_debug
*dbg
= &vcpu
->guest_debug
;
1524 set_debugreg(dbg
->bp
[0], 0);
1525 set_debugreg(dbg
->bp
[1], 1);
1526 set_debugreg(dbg
->bp
[2], 2);
1527 set_debugreg(dbg
->bp
[3], 3);
1529 if (dbg
->singlestep
) {
1530 unsigned long flags
;
1532 flags
= vmcs_readl(GUEST_RFLAGS
);
1533 flags
|= X86_EFLAGS_TF
| X86_EFLAGS_RF
;
1534 vmcs_writel(GUEST_RFLAGS
, flags
);
1538 static int handle_rmode_exception(struct kvm_vcpu
*vcpu
,
1539 int vec
, u32 err_code
)
1541 if (!vcpu
->rmode
.active
)
1545 * Instruction with address size override prefix opcode 0x67
1546 * Cause the #SS fault with 0 error code in VM86 mode.
1548 if (((vec
== GP_VECTOR
) || (vec
== SS_VECTOR
)) && err_code
== 0)
1549 if (emulate_instruction(vcpu
, NULL
, 0, 0) == EMULATE_DONE
)
1554 static int handle_exception(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1556 u32 intr_info
, error_code
;
1557 unsigned long cr2
, rip
;
1559 enum emulation_result er
;
1562 vect_info
= vmcs_read32(IDT_VECTORING_INFO_FIELD
);
1563 intr_info
= vmcs_read32(VM_EXIT_INTR_INFO
);
1565 if ((vect_info
& VECTORING_INFO_VALID_MASK
) &&
1566 !is_page_fault(intr_info
)) {
1567 printk(KERN_ERR
"%s: unexpected, vectoring info 0x%x "
1568 "intr info 0x%x\n", __FUNCTION__
, vect_info
, intr_info
);
1571 if (is_external_interrupt(vect_info
)) {
1572 int irq
= vect_info
& VECTORING_INFO_VECTOR_MASK
;
1573 set_bit(irq
, vcpu
->irq_pending
);
1574 set_bit(irq
/ BITS_PER_LONG
, &vcpu
->irq_summary
);
1577 if ((intr_info
& INTR_INFO_INTR_TYPE_MASK
) == 0x200) { /* nmi */
1582 if (is_no_device(intr_info
)) {
1583 vmx_fpu_activate(vcpu
);
1588 rip
= vmcs_readl(GUEST_RIP
);
1589 if (intr_info
& INTR_INFO_DELIEVER_CODE_MASK
)
1590 error_code
= vmcs_read32(VM_EXIT_INTR_ERROR_CODE
);
1591 if (is_page_fault(intr_info
)) {
1592 cr2
= vmcs_readl(EXIT_QUALIFICATION
);
1594 spin_lock(&vcpu
->kvm
->lock
);
1595 r
= kvm_mmu_page_fault(vcpu
, cr2
, error_code
);
1597 spin_unlock(&vcpu
->kvm
->lock
);
1601 spin_unlock(&vcpu
->kvm
->lock
);
1605 er
= emulate_instruction(vcpu
, kvm_run
, cr2
, error_code
);
1606 spin_unlock(&vcpu
->kvm
->lock
);
1611 case EMULATE_DO_MMIO
:
1612 ++vcpu
->stat
.mmio_exits
;
1613 kvm_run
->exit_reason
= KVM_EXIT_MMIO
;
1616 vcpu_printf(vcpu
, "%s: emulate fail\n", __FUNCTION__
);
1623 if (vcpu
->rmode
.active
&&
1624 handle_rmode_exception(vcpu
, intr_info
& INTR_INFO_VECTOR_MASK
,
1626 if (vcpu
->halt_request
) {
1627 vcpu
->halt_request
= 0;
1628 return kvm_emulate_halt(vcpu
);
1633 if ((intr_info
& (INTR_INFO_INTR_TYPE_MASK
| INTR_INFO_VECTOR_MASK
)) == (INTR_TYPE_EXCEPTION
| 1)) {
1634 kvm_run
->exit_reason
= KVM_EXIT_DEBUG
;
1637 kvm_run
->exit_reason
= KVM_EXIT_EXCEPTION
;
1638 kvm_run
->ex
.exception
= intr_info
& INTR_INFO_VECTOR_MASK
;
1639 kvm_run
->ex
.error_code
= error_code
;
1643 static int handle_external_interrupt(struct kvm_vcpu
*vcpu
,
1644 struct kvm_run
*kvm_run
)
1646 ++vcpu
->stat
.irq_exits
;
1650 static int handle_triple_fault(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1652 kvm_run
->exit_reason
= KVM_EXIT_SHUTDOWN
;
1656 static int get_io_count(struct kvm_vcpu
*vcpu
, unsigned long *count
)
1663 if ((vmcs_readl(GUEST_RFLAGS
) & X86_EFLAGS_VM
)) {
1666 u32 cs_ar
= vmcs_read32(GUEST_CS_AR_BYTES
);
1668 countr_size
= (cs_ar
& AR_L_MASK
) ? 8:
1669 (cs_ar
& AR_DB_MASK
) ? 4: 2;
1672 rip
= vmcs_readl(GUEST_RIP
);
1673 if (countr_size
!= 8)
1674 rip
+= vmcs_readl(GUEST_CS_BASE
);
1676 n
= kvm_read_guest(vcpu
, rip
, sizeof(inst
), &inst
);
1678 for (i
= 0; i
< n
; i
++) {
1679 switch (((u8
*)&inst
)[i
]) {
1692 countr_size
= (countr_size
== 2) ? 4: (countr_size
>> 1);
1700 *count
= vcpu
->regs
[VCPU_REGS_RCX
] & (~0ULL >> (64 - countr_size
));
1701 //printk("cx: %lx\n", vcpu->regs[VCPU_REGS_RCX]);
1705 static int handle_io(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1707 u64 exit_qualification
;
1708 int size
, down
, in
, string
, rep
;
1710 unsigned long count
;
1713 ++vcpu
->stat
.io_exits
;
1714 exit_qualification
= vmcs_read64(EXIT_QUALIFICATION
);
1715 in
= (exit_qualification
& 8) != 0;
1716 size
= (exit_qualification
& 7) + 1;
1717 string
= (exit_qualification
& 16) != 0;
1718 down
= (vmcs_readl(GUEST_RFLAGS
) & X86_EFLAGS_DF
) != 0;
1720 rep
= (exit_qualification
& 32) != 0;
1721 port
= exit_qualification
>> 16;
1724 if (rep
&& !get_io_count(vcpu
, &count
))
1726 address
= vmcs_readl(GUEST_LINEAR_ADDRESS
);
1728 return kvm_setup_pio(vcpu
, kvm_run
, in
, size
, count
, string
, down
,
1729 address
, rep
, port
);
1733 vmx_patch_hypercall(struct kvm_vcpu
*vcpu
, unsigned char *hypercall
)
1736 * Patch in the VMCALL instruction:
1738 hypercall
[0] = 0x0f;
1739 hypercall
[1] = 0x01;
1740 hypercall
[2] = 0xc1;
1741 hypercall
[3] = 0xc3;
1744 static int handle_cr(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1746 u64 exit_qualification
;
1750 exit_qualification
= vmcs_read64(EXIT_QUALIFICATION
);
1751 cr
= exit_qualification
& 15;
1752 reg
= (exit_qualification
>> 8) & 15;
1753 switch ((exit_qualification
>> 4) & 3) {
1754 case 0: /* mov to cr */
1757 vcpu_load_rsp_rip(vcpu
);
1758 set_cr0(vcpu
, vcpu
->regs
[reg
]);
1759 skip_emulated_instruction(vcpu
);
1762 vcpu_load_rsp_rip(vcpu
);
1763 set_cr3(vcpu
, vcpu
->regs
[reg
]);
1764 skip_emulated_instruction(vcpu
);
1767 vcpu_load_rsp_rip(vcpu
);
1768 set_cr4(vcpu
, vcpu
->regs
[reg
]);
1769 skip_emulated_instruction(vcpu
);
1772 vcpu_load_rsp_rip(vcpu
);
1773 set_cr8(vcpu
, vcpu
->regs
[reg
]);
1774 skip_emulated_instruction(vcpu
);
1779 vcpu_load_rsp_rip(vcpu
);
1780 vmx_fpu_deactivate(vcpu
);
1781 vcpu
->cr0
&= ~CR0_TS_MASK
;
1782 vmcs_writel(CR0_READ_SHADOW
, vcpu
->cr0
);
1783 vmx_fpu_activate(vcpu
);
1784 skip_emulated_instruction(vcpu
);
1786 case 1: /*mov from cr*/
1789 vcpu_load_rsp_rip(vcpu
);
1790 vcpu
->regs
[reg
] = vcpu
->cr3
;
1791 vcpu_put_rsp_rip(vcpu
);
1792 skip_emulated_instruction(vcpu
);
1795 vcpu_load_rsp_rip(vcpu
);
1796 vcpu
->regs
[reg
] = vcpu
->cr8
;
1797 vcpu_put_rsp_rip(vcpu
);
1798 skip_emulated_instruction(vcpu
);
1803 lmsw(vcpu
, (exit_qualification
>> LMSW_SOURCE_DATA_SHIFT
) & 0x0f);
1805 skip_emulated_instruction(vcpu
);
1810 kvm_run
->exit_reason
= 0;
1811 printk(KERN_ERR
"kvm: unhandled control register: op %d cr %d\n",
1812 (int)(exit_qualification
>> 4) & 3, cr
);
1816 static int handle_dr(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1818 u64 exit_qualification
;
1823 * FIXME: this code assumes the host is debugging the guest.
1824 * need to deal with guest debugging itself too.
1826 exit_qualification
= vmcs_read64(EXIT_QUALIFICATION
);
1827 dr
= exit_qualification
& 7;
1828 reg
= (exit_qualification
>> 8) & 15;
1829 vcpu_load_rsp_rip(vcpu
);
1830 if (exit_qualification
& 16) {
1842 vcpu
->regs
[reg
] = val
;
1846 vcpu_put_rsp_rip(vcpu
);
1847 skip_emulated_instruction(vcpu
);
1851 static int handle_cpuid(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1853 kvm_emulate_cpuid(vcpu
);
1857 static int handle_rdmsr(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1859 u32 ecx
= vcpu
->regs
[VCPU_REGS_RCX
];
1862 if (vmx_get_msr(vcpu
, ecx
, &data
)) {
1863 vmx_inject_gp(vcpu
, 0);
1867 /* FIXME: handling of bits 32:63 of rax, rdx */
1868 vcpu
->regs
[VCPU_REGS_RAX
] = data
& -1u;
1869 vcpu
->regs
[VCPU_REGS_RDX
] = (data
>> 32) & -1u;
1870 skip_emulated_instruction(vcpu
);
1874 static int handle_wrmsr(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1876 u32 ecx
= vcpu
->regs
[VCPU_REGS_RCX
];
1877 u64 data
= (vcpu
->regs
[VCPU_REGS_RAX
] & -1u)
1878 | ((u64
)(vcpu
->regs
[VCPU_REGS_RDX
] & -1u) << 32);
1880 if (vmx_set_msr(vcpu
, ecx
, data
) != 0) {
1881 vmx_inject_gp(vcpu
, 0);
1885 skip_emulated_instruction(vcpu
);
1889 static void post_kvm_run_save(struct kvm_vcpu
*vcpu
,
1890 struct kvm_run
*kvm_run
)
1892 kvm_run
->if_flag
= (vmcs_readl(GUEST_RFLAGS
) & X86_EFLAGS_IF
) != 0;
1893 kvm_run
->cr8
= vcpu
->cr8
;
1894 kvm_run
->apic_base
= vcpu
->apic_base
;
1895 kvm_run
->ready_for_interrupt_injection
= (vcpu
->interrupt_window_open
&&
1896 vcpu
->irq_summary
== 0);
1899 static int handle_interrupt_window(struct kvm_vcpu
*vcpu
,
1900 struct kvm_run
*kvm_run
)
1903 * If the user space waits to inject interrupts, exit as soon as
1906 if (kvm_run
->request_interrupt_window
&&
1907 !vcpu
->irq_summary
) {
1908 kvm_run
->exit_reason
= KVM_EXIT_IRQ_WINDOW_OPEN
;
1909 ++vcpu
->stat
.irq_window_exits
;
1915 static int handle_halt(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1917 skip_emulated_instruction(vcpu
);
1918 return kvm_emulate_halt(vcpu
);
1921 static int handle_vmcall(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1923 skip_emulated_instruction(vcpu
);
1924 return kvm_hypercall(vcpu
, kvm_run
);
1928 * The exit handlers return 1 if the exit was handled fully and guest execution
1929 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
1930 * to be done to userspace and return 0.
1932 static int (*kvm_vmx_exit_handlers
[])(struct kvm_vcpu
*vcpu
,
1933 struct kvm_run
*kvm_run
) = {
1934 [EXIT_REASON_EXCEPTION_NMI
] = handle_exception
,
1935 [EXIT_REASON_EXTERNAL_INTERRUPT
] = handle_external_interrupt
,
1936 [EXIT_REASON_TRIPLE_FAULT
] = handle_triple_fault
,
1937 [EXIT_REASON_IO_INSTRUCTION
] = handle_io
,
1938 [EXIT_REASON_CR_ACCESS
] = handle_cr
,
1939 [EXIT_REASON_DR_ACCESS
] = handle_dr
,
1940 [EXIT_REASON_CPUID
] = handle_cpuid
,
1941 [EXIT_REASON_MSR_READ
] = handle_rdmsr
,
1942 [EXIT_REASON_MSR_WRITE
] = handle_wrmsr
,
1943 [EXIT_REASON_PENDING_INTERRUPT
] = handle_interrupt_window
,
1944 [EXIT_REASON_HLT
] = handle_halt
,
1945 [EXIT_REASON_VMCALL
] = handle_vmcall
,
1948 static const int kvm_vmx_max_exit_handlers
=
1949 ARRAY_SIZE(kvm_vmx_exit_handlers
);
1952 * The guest has exited. See if we can fix it or if we need userspace
1955 static int kvm_handle_exit(struct kvm_run
*kvm_run
, struct kvm_vcpu
*vcpu
)
1957 u32 vectoring_info
= vmcs_read32(IDT_VECTORING_INFO_FIELD
);
1958 u32 exit_reason
= vmcs_read32(VM_EXIT_REASON
);
1960 if ( (vectoring_info
& VECTORING_INFO_VALID_MASK
) &&
1961 exit_reason
!= EXIT_REASON_EXCEPTION_NMI
)
1962 printk(KERN_WARNING
"%s: unexpected, valid vectoring info and "
1963 "exit reason is 0x%x\n", __FUNCTION__
, exit_reason
);
1964 if (exit_reason
< kvm_vmx_max_exit_handlers
1965 && kvm_vmx_exit_handlers
[exit_reason
])
1966 return kvm_vmx_exit_handlers
[exit_reason
](vcpu
, kvm_run
);
1968 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
1969 kvm_run
->hw
.hardware_exit_reason
= exit_reason
;
1975 * Check if userspace requested an interrupt window, and that the
1976 * interrupt window is open.
1978 * No need to exit to userspace if we already have an interrupt queued.
1980 static int dm_request_for_irq_injection(struct kvm_vcpu
*vcpu
,
1981 struct kvm_run
*kvm_run
)
1983 return (!vcpu
->irq_summary
&&
1984 kvm_run
->request_interrupt_window
&&
1985 vcpu
->interrupt_window_open
&&
1986 (vmcs_readl(GUEST_RFLAGS
) & X86_EFLAGS_IF
));
1989 static void vmx_flush_tlb(struct kvm_vcpu
*vcpu
)
1993 static int vmx_vcpu_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1999 if (vcpu
->guest_debug
.enabled
)
2000 kvm_guest_debug_pre(vcpu
);
2003 if (!vcpu
->mmio_read_completed
)
2004 do_interrupt_requests(vcpu
, kvm_run
);
2006 vmx_save_host_state(vcpu
);
2007 kvm_load_guest_fpu(vcpu
);
2009 r
= kvm_mmu_reload(vcpu
);
2014 * Loading guest fpu may have cleared host cr0.ts
2016 vmcs_writel(HOST_CR0
, read_cr0());
2018 local_irq_disable();
2020 vcpu
->guest_mode
= 1;
2022 if (test_and_clear_bit(KVM_TLB_FLUSH
, &vcpu
->requests
))
2023 vmx_flush_tlb(vcpu
);
2026 /* Store host registers */
2027 #ifdef CONFIG_X86_64
2028 "push %%rax; push %%rbx; push %%rdx;"
2029 "push %%rsi; push %%rdi; push %%rbp;"
2030 "push %%r8; push %%r9; push %%r10; push %%r11;"
2031 "push %%r12; push %%r13; push %%r14; push %%r15;"
2033 ASM_VMX_VMWRITE_RSP_RDX
"\n\t"
2035 "pusha; push %%ecx \n\t"
2036 ASM_VMX_VMWRITE_RSP_RDX
"\n\t"
2038 /* Check if vmlaunch of vmresume is needed */
2040 /* Load guest registers. Don't clobber flags. */
2041 #ifdef CONFIG_X86_64
2042 "mov %c[cr2](%3), %%rax \n\t"
2043 "mov %%rax, %%cr2 \n\t"
2044 "mov %c[rax](%3), %%rax \n\t"
2045 "mov %c[rbx](%3), %%rbx \n\t"
2046 "mov %c[rdx](%3), %%rdx \n\t"
2047 "mov %c[rsi](%3), %%rsi \n\t"
2048 "mov %c[rdi](%3), %%rdi \n\t"
2049 "mov %c[rbp](%3), %%rbp \n\t"
2050 "mov %c[r8](%3), %%r8 \n\t"
2051 "mov %c[r9](%3), %%r9 \n\t"
2052 "mov %c[r10](%3), %%r10 \n\t"
2053 "mov %c[r11](%3), %%r11 \n\t"
2054 "mov %c[r12](%3), %%r12 \n\t"
2055 "mov %c[r13](%3), %%r13 \n\t"
2056 "mov %c[r14](%3), %%r14 \n\t"
2057 "mov %c[r15](%3), %%r15 \n\t"
2058 "mov %c[rcx](%3), %%rcx \n\t" /* kills %3 (rcx) */
2060 "mov %c[cr2](%3), %%eax \n\t"
2061 "mov %%eax, %%cr2 \n\t"
2062 "mov %c[rax](%3), %%eax \n\t"
2063 "mov %c[rbx](%3), %%ebx \n\t"
2064 "mov %c[rdx](%3), %%edx \n\t"
2065 "mov %c[rsi](%3), %%esi \n\t"
2066 "mov %c[rdi](%3), %%edi \n\t"
2067 "mov %c[rbp](%3), %%ebp \n\t"
2068 "mov %c[rcx](%3), %%ecx \n\t" /* kills %3 (ecx) */
2070 /* Enter guest mode */
2071 "jne .Llaunched \n\t"
2072 ASM_VMX_VMLAUNCH
"\n\t"
2073 "jmp .Lkvm_vmx_return \n\t"
2074 ".Llaunched: " ASM_VMX_VMRESUME
"\n\t"
2075 ".Lkvm_vmx_return: "
2076 /* Save guest registers, load host registers, keep flags */
2077 #ifdef CONFIG_X86_64
2078 "xchg %3, (%%rsp) \n\t"
2079 "mov %%rax, %c[rax](%3) \n\t"
2080 "mov %%rbx, %c[rbx](%3) \n\t"
2081 "pushq (%%rsp); popq %c[rcx](%3) \n\t"
2082 "mov %%rdx, %c[rdx](%3) \n\t"
2083 "mov %%rsi, %c[rsi](%3) \n\t"
2084 "mov %%rdi, %c[rdi](%3) \n\t"
2085 "mov %%rbp, %c[rbp](%3) \n\t"
2086 "mov %%r8, %c[r8](%3) \n\t"
2087 "mov %%r9, %c[r9](%3) \n\t"
2088 "mov %%r10, %c[r10](%3) \n\t"
2089 "mov %%r11, %c[r11](%3) \n\t"
2090 "mov %%r12, %c[r12](%3) \n\t"
2091 "mov %%r13, %c[r13](%3) \n\t"
2092 "mov %%r14, %c[r14](%3) \n\t"
2093 "mov %%r15, %c[r15](%3) \n\t"
2094 "mov %%cr2, %%rax \n\t"
2095 "mov %%rax, %c[cr2](%3) \n\t"
2096 "mov (%%rsp), %3 \n\t"
2098 "pop %%rcx; pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
2099 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
2100 "pop %%rbp; pop %%rdi; pop %%rsi;"
2101 "pop %%rdx; pop %%rbx; pop %%rax \n\t"
2103 "xchg %3, (%%esp) \n\t"
2104 "mov %%eax, %c[rax](%3) \n\t"
2105 "mov %%ebx, %c[rbx](%3) \n\t"
2106 "pushl (%%esp); popl %c[rcx](%3) \n\t"
2107 "mov %%edx, %c[rdx](%3) \n\t"
2108 "mov %%esi, %c[rsi](%3) \n\t"
2109 "mov %%edi, %c[rdi](%3) \n\t"
2110 "mov %%ebp, %c[rbp](%3) \n\t"
2111 "mov %%cr2, %%eax \n\t"
2112 "mov %%eax, %c[cr2](%3) \n\t"
2113 "mov (%%esp), %3 \n\t"
2115 "pop %%ecx; popa \n\t"
2119 : "r"(vcpu
->launched
), "d"((unsigned long)HOST_RSP
),
2121 [rax
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RAX
])),
2122 [rbx
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RBX
])),
2123 [rcx
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RCX
])),
2124 [rdx
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RDX
])),
2125 [rsi
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RSI
])),
2126 [rdi
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RDI
])),
2127 [rbp
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_RBP
])),
2128 #ifdef CONFIG_X86_64
2129 [r8
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R8
])),
2130 [r9
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R9
])),
2131 [r10
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R10
])),
2132 [r11
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R11
])),
2133 [r12
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R12
])),
2134 [r13
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R13
])),
2135 [r14
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R14
])),
2136 [r15
]"i"(offsetof(struct kvm_vcpu
, regs
[VCPU_REGS_R15
])),
2138 [cr2
]"i"(offsetof(struct kvm_vcpu
, cr2
))
2141 vcpu
->guest_mode
= 0;
2146 vcpu
->interrupt_window_open
= (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO
) & 3) == 0;
2148 asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS
));
2150 if (unlikely(fail
)) {
2151 kvm_run
->exit_reason
= KVM_EXIT_FAIL_ENTRY
;
2152 kvm_run
->fail_entry
.hardware_entry_failure_reason
2153 = vmcs_read32(VM_INSTRUCTION_ERROR
);
2158 * Profile KVM exit RIPs:
2160 if (unlikely(prof_on
== KVM_PROFILING
))
2161 profile_hit(KVM_PROFILING
, (void *)vmcs_readl(GUEST_RIP
));
2164 r
= kvm_handle_exit(kvm_run
, vcpu
);
2166 /* Give scheduler a change to reschedule. */
2167 if (signal_pending(current
)) {
2169 kvm_run
->exit_reason
= KVM_EXIT_INTR
;
2170 ++vcpu
->stat
.signal_exits
;
2174 if (dm_request_for_irq_injection(vcpu
, kvm_run
)) {
2176 kvm_run
->exit_reason
= KVM_EXIT_INTR
;
2177 ++vcpu
->stat
.request_irq_exits
;
2180 if (!need_resched()) {
2181 ++vcpu
->stat
.light_exits
;
2192 post_kvm_run_save(vcpu
, kvm_run
);
2196 static void vmx_inject_page_fault(struct kvm_vcpu
*vcpu
,
2200 u32 vect_info
= vmcs_read32(IDT_VECTORING_INFO_FIELD
);
2202 ++vcpu
->stat
.pf_guest
;
2204 if (is_page_fault(vect_info
)) {
2205 printk(KERN_DEBUG
"inject_page_fault: "
2206 "double fault 0x%lx @ 0x%lx\n",
2207 addr
, vmcs_readl(GUEST_RIP
));
2208 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE
, 0);
2209 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD
,
2211 INTR_TYPE_EXCEPTION
|
2212 INTR_INFO_DELIEVER_CODE_MASK
|
2213 INTR_INFO_VALID_MASK
);
2217 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE
, err_code
);
2218 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD
,
2220 INTR_TYPE_EXCEPTION
|
2221 INTR_INFO_DELIEVER_CODE_MASK
|
2222 INTR_INFO_VALID_MASK
);
2226 static void vmx_free_vmcs(struct kvm_vcpu
*vcpu
)
2229 on_each_cpu(__vcpu_clear
, vcpu
, 0, 1);
2230 free_vmcs(vcpu
->vmcs
);
2235 static void vmx_free_vcpu(struct kvm_vcpu
*vcpu
)
2237 vmx_free_vmcs(vcpu
);
2240 static int vmx_create_vcpu(struct kvm_vcpu
*vcpu
)
2244 vcpu
->guest_msrs
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
2245 if (!vcpu
->guest_msrs
)
2248 vcpu
->host_msrs
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
2249 if (!vcpu
->host_msrs
)
2250 goto out_free_guest_msrs
;
2252 vmcs
= alloc_vmcs();
2263 kfree(vcpu
->host_msrs
);
2264 vcpu
->host_msrs
= NULL
;
2266 out_free_guest_msrs
:
2267 kfree(vcpu
->guest_msrs
);
2268 vcpu
->guest_msrs
= NULL
;
2273 static struct kvm_arch_ops vmx_arch_ops
= {
2274 .cpu_has_kvm_support
= cpu_has_kvm_support
,
2275 .disabled_by_bios
= vmx_disabled_by_bios
,
2276 .hardware_setup
= hardware_setup
,
2277 .hardware_unsetup
= hardware_unsetup
,
2278 .hardware_enable
= hardware_enable
,
2279 .hardware_disable
= hardware_disable
,
2281 .vcpu_create
= vmx_create_vcpu
,
2282 .vcpu_free
= vmx_free_vcpu
,
2284 .vcpu_load
= vmx_vcpu_load
,
2285 .vcpu_put
= vmx_vcpu_put
,
2286 .vcpu_decache
= vmx_vcpu_decache
,
2288 .set_guest_debug
= set_guest_debug
,
2289 .get_msr
= vmx_get_msr
,
2290 .set_msr
= vmx_set_msr
,
2291 .get_segment_base
= vmx_get_segment_base
,
2292 .get_segment
= vmx_get_segment
,
2293 .set_segment
= vmx_set_segment
,
2294 .get_cs_db_l_bits
= vmx_get_cs_db_l_bits
,
2295 .decache_cr4_guest_bits
= vmx_decache_cr4_guest_bits
,
2296 .set_cr0
= vmx_set_cr0
,
2297 .set_cr3
= vmx_set_cr3
,
2298 .set_cr4
= vmx_set_cr4
,
2299 #ifdef CONFIG_X86_64
2300 .set_efer
= vmx_set_efer
,
2302 .get_idt
= vmx_get_idt
,
2303 .set_idt
= vmx_set_idt
,
2304 .get_gdt
= vmx_get_gdt
,
2305 .set_gdt
= vmx_set_gdt
,
2306 .cache_regs
= vcpu_load_rsp_rip
,
2307 .decache_regs
= vcpu_put_rsp_rip
,
2308 .get_rflags
= vmx_get_rflags
,
2309 .set_rflags
= vmx_set_rflags
,
2311 .tlb_flush
= vmx_flush_tlb
,
2312 .inject_page_fault
= vmx_inject_page_fault
,
2314 .inject_gp
= vmx_inject_gp
,
2316 .run
= vmx_vcpu_run
,
2317 .skip_emulated_instruction
= skip_emulated_instruction
,
2318 .vcpu_setup
= vmx_vcpu_setup
,
2319 .patch_hypercall
= vmx_patch_hypercall
,
2322 static int __init
vmx_init(void)
2327 vmx_io_bitmap_a
= alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
2328 if (!vmx_io_bitmap_a
)
2331 vmx_io_bitmap_b
= alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
2332 if (!vmx_io_bitmap_b
) {
2338 * Allow direct access to the PC debug port (it is often used for I/O
2339 * delays, but the vmexits simply slow things down).
2341 iova
= kmap(vmx_io_bitmap_a
);
2342 memset(iova
, 0xff, PAGE_SIZE
);
2343 clear_bit(0x80, iova
);
2344 kunmap(vmx_io_bitmap_a
);
2346 iova
= kmap(vmx_io_bitmap_b
);
2347 memset(iova
, 0xff, PAGE_SIZE
);
2348 kunmap(vmx_io_bitmap_b
);
2350 r
= kvm_init_arch(&vmx_arch_ops
, THIS_MODULE
);
2357 __free_page(vmx_io_bitmap_b
);
2359 __free_page(vmx_io_bitmap_a
);
2363 static void __exit
vmx_exit(void)
2365 __free_page(vmx_io_bitmap_b
);
2366 __free_page(vmx_io_bitmap_a
);
2371 module_init(vmx_init
)
2372 module_exit(vmx_exit
)