2 * Kernel-based Virtual Machine driver for Linux
6 * Copyright (C) 2006 Qumranet, Inc.
9 * Yaniv Kamay <yaniv@qumranet.com>
10 * Avi Kivity <avi@qumranet.com>
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
16 #include <linux/kvm_host.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/vmalloc.h>
25 #include <linux/highmem.h>
26 #include <linux/sched.h>
30 MODULE_AUTHOR("Qumranet");
31 MODULE_LICENSE("GPL");
33 #define IOPM_ALLOC_ORDER 2
34 #define MSRPM_ALLOC_ORDER 1
40 #define DR7_GD_MASK (1 << 13)
41 #define DR6_BD_MASK (1 << 13)
43 #define SEG_TYPE_LDT 2
44 #define SEG_TYPE_BUSY_TSS16 3
46 #define SVM_FEATURE_NPT (1 << 0)
47 #define SVM_FEATURE_LBRV (1 << 1)
48 #define SVM_DEATURE_SVML (1 << 2)
50 static void kvm_reput_irq(struct vcpu_svm
*svm
);
52 static inline struct vcpu_svm
*to_svm(struct kvm_vcpu
*vcpu
)
54 return container_of(vcpu
, struct vcpu_svm
, vcpu
);
57 unsigned long iopm_base
;
58 unsigned long msrpm_base
;
60 struct kvm_ldttss_desc
{
63 unsigned base1
: 8, type
: 5, dpl
: 2, p
: 1;
64 unsigned limit1
: 4, zero0
: 3, g
: 1, base2
: 8;
67 } __attribute__((packed
));
75 struct kvm_ldttss_desc
*tss_desc
;
77 struct page
*save_area
;
80 static DEFINE_PER_CPU(struct svm_cpu_data
*, svm_data
);
81 static uint32_t svm_features
;
83 struct svm_init_data
{
88 static u32 msrpm_ranges
[] = {0, 0xc0000000, 0xc0010000};
90 #define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
91 #define MSRS_RANGE_SIZE 2048
92 #define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
94 #define MAX_INST_SIZE 15
96 static inline u32
svm_has(u32 feat
)
98 return svm_features
& feat
;
101 static inline u8
pop_irq(struct kvm_vcpu
*vcpu
)
103 int word_index
= __ffs(vcpu
->arch
.irq_summary
);
104 int bit_index
= __ffs(vcpu
->arch
.irq_pending
[word_index
]);
105 int irq
= word_index
* BITS_PER_LONG
+ bit_index
;
107 clear_bit(bit_index
, &vcpu
->arch
.irq_pending
[word_index
]);
108 if (!vcpu
->arch
.irq_pending
[word_index
])
109 clear_bit(word_index
, &vcpu
->arch
.irq_summary
);
113 static inline void push_irq(struct kvm_vcpu
*vcpu
, u8 irq
)
115 set_bit(irq
, vcpu
->arch
.irq_pending
);
116 set_bit(irq
/ BITS_PER_LONG
, &vcpu
->arch
.irq_summary
);
119 static inline void clgi(void)
121 asm volatile (SVM_CLGI
);
124 static inline void stgi(void)
126 asm volatile (SVM_STGI
);
129 static inline void invlpga(unsigned long addr
, u32 asid
)
131 asm volatile (SVM_INVLPGA :: "a"(addr
), "c"(asid
));
134 static inline unsigned long kvm_read_cr2(void)
138 asm volatile ("mov %%cr2, %0" : "=r" (cr2
));
142 static inline void kvm_write_cr2(unsigned long val
)
144 asm volatile ("mov %0, %%cr2" :: "r" (val
));
147 static inline unsigned long read_dr6(void)
151 asm volatile ("mov %%dr6, %0" : "=r" (dr6
));
155 static inline void write_dr6(unsigned long val
)
157 asm volatile ("mov %0, %%dr6" :: "r" (val
));
160 static inline unsigned long read_dr7(void)
164 asm volatile ("mov %%dr7, %0" : "=r" (dr7
));
168 static inline void write_dr7(unsigned long val
)
170 asm volatile ("mov %0, %%dr7" :: "r" (val
));
173 static inline void force_new_asid(struct kvm_vcpu
*vcpu
)
175 to_svm(vcpu
)->asid_generation
--;
178 static inline void flush_guest_tlb(struct kvm_vcpu
*vcpu
)
180 force_new_asid(vcpu
);
183 static void svm_set_efer(struct kvm_vcpu
*vcpu
, u64 efer
)
185 if (!(efer
& EFER_LMA
))
188 to_svm(vcpu
)->vmcb
->save
.efer
= efer
| MSR_EFER_SVME_MASK
;
189 vcpu
->arch
.shadow_efer
= efer
;
192 static void svm_queue_exception(struct kvm_vcpu
*vcpu
, unsigned nr
,
193 bool has_error_code
, u32 error_code
)
195 struct vcpu_svm
*svm
= to_svm(vcpu
);
197 svm
->vmcb
->control
.event_inj
= nr
199 | (has_error_code
? SVM_EVTINJ_VALID_ERR
: 0)
200 | SVM_EVTINJ_TYPE_EXEPT
;
201 svm
->vmcb
->control
.event_inj_err
= error_code
;
204 static bool svm_exception_injected(struct kvm_vcpu
*vcpu
)
206 struct vcpu_svm
*svm
= to_svm(vcpu
);
208 return !(svm
->vmcb
->control
.exit_int_info
& SVM_EXITINTINFO_VALID
);
211 static int is_external_interrupt(u32 info
)
213 info
&= SVM_EVTINJ_TYPE_MASK
| SVM_EVTINJ_VALID
;
214 return info
== (SVM_EVTINJ_VALID
| SVM_EVTINJ_TYPE_INTR
);
217 static void skip_emulated_instruction(struct kvm_vcpu
*vcpu
)
219 struct vcpu_svm
*svm
= to_svm(vcpu
);
221 if (!svm
->next_rip
) {
222 printk(KERN_DEBUG
"%s: NOP\n", __FUNCTION__
);
225 if (svm
->next_rip
- svm
->vmcb
->save
.rip
> MAX_INST_SIZE
)
226 printk(KERN_ERR
"%s: ip 0x%llx next 0x%llx\n",
231 vcpu
->arch
.rip
= svm
->vmcb
->save
.rip
= svm
->next_rip
;
232 svm
->vmcb
->control
.int_state
&= ~SVM_INTERRUPT_SHADOW_MASK
;
234 vcpu
->arch
.interrupt_window_open
= 1;
237 static int has_svm(void)
239 uint32_t eax
, ebx
, ecx
, edx
;
241 if (boot_cpu_data
.x86_vendor
!= X86_VENDOR_AMD
) {
242 printk(KERN_INFO
"has_svm: not amd\n");
246 cpuid(0x80000000, &eax
, &ebx
, &ecx
, &edx
);
247 if (eax
< SVM_CPUID_FUNC
) {
248 printk(KERN_INFO
"has_svm: can't execute cpuid_8000000a\n");
252 cpuid(0x80000001, &eax
, &ebx
, &ecx
, &edx
);
253 if (!(ecx
& (1 << SVM_CPUID_FEATURE_SHIFT
))) {
254 printk(KERN_DEBUG
"has_svm: svm not available\n");
260 static void svm_hardware_disable(void *garbage
)
262 struct svm_cpu_data
*svm_data
263 = per_cpu(svm_data
, raw_smp_processor_id());
268 wrmsrl(MSR_VM_HSAVE_PA
, 0);
269 rdmsrl(MSR_EFER
, efer
);
270 wrmsrl(MSR_EFER
, efer
& ~MSR_EFER_SVME_MASK
);
271 per_cpu(svm_data
, raw_smp_processor_id()) = NULL
;
272 __free_page(svm_data
->save_area
);
277 static void svm_hardware_enable(void *garbage
)
280 struct svm_cpu_data
*svm_data
;
283 struct desc_ptr gdt_descr
;
285 struct desc_ptr gdt_descr
;
287 struct desc_struct
*gdt
;
288 int me
= raw_smp_processor_id();
291 printk(KERN_ERR
"svm_cpu_init: err EOPNOTSUPP on %d\n", me
);
294 svm_data
= per_cpu(svm_data
, me
);
297 printk(KERN_ERR
"svm_cpu_init: svm_data is NULL on %d\n",
302 svm_data
->asid_generation
= 1;
303 svm_data
->max_asid
= cpuid_ebx(SVM_CPUID_FUNC
) - 1;
304 svm_data
->next_asid
= svm_data
->max_asid
+ 1;
305 svm_features
= cpuid_edx(SVM_CPUID_FUNC
);
307 asm volatile ("sgdt %0" : "=m"(gdt_descr
));
308 gdt
= (struct desc_struct
*)gdt_descr
.address
;
309 svm_data
->tss_desc
= (struct kvm_ldttss_desc
*)(gdt
+ GDT_ENTRY_TSS
);
311 rdmsrl(MSR_EFER
, efer
);
312 wrmsrl(MSR_EFER
, efer
| MSR_EFER_SVME_MASK
);
314 wrmsrl(MSR_VM_HSAVE_PA
,
315 page_to_pfn(svm_data
->save_area
) << PAGE_SHIFT
);
318 static int svm_cpu_init(int cpu
)
320 struct svm_cpu_data
*svm_data
;
323 svm_data
= kzalloc(sizeof(struct svm_cpu_data
), GFP_KERNEL
);
327 svm_data
->save_area
= alloc_page(GFP_KERNEL
);
329 if (!svm_data
->save_area
)
332 per_cpu(svm_data
, cpu
) = svm_data
;
342 static void set_msr_interception(u32
*msrpm
, unsigned msr
,
347 for (i
= 0; i
< NUM_MSR_MAPS
; i
++) {
348 if (msr
>= msrpm_ranges
[i
] &&
349 msr
< msrpm_ranges
[i
] + MSRS_IN_RANGE
) {
350 u32 msr_offset
= (i
* MSRS_IN_RANGE
+ msr
-
351 msrpm_ranges
[i
]) * 2;
353 u32
*base
= msrpm
+ (msr_offset
/ 32);
354 u32 msr_shift
= msr_offset
% 32;
355 u32 mask
= ((write
) ? 0 : 2) | ((read
) ? 0 : 1);
356 *base
= (*base
& ~(0x3 << msr_shift
)) |
364 static __init
int svm_hardware_setup(void)
367 struct page
*iopm_pages
;
368 struct page
*msrpm_pages
;
369 void *iopm_va
, *msrpm_va
;
372 iopm_pages
= alloc_pages(GFP_KERNEL
, IOPM_ALLOC_ORDER
);
377 iopm_va
= page_address(iopm_pages
);
378 memset(iopm_va
, 0xff, PAGE_SIZE
* (1 << IOPM_ALLOC_ORDER
));
379 clear_bit(0x80, iopm_va
); /* allow direct access to PC debug port */
380 iopm_base
= page_to_pfn(iopm_pages
) << PAGE_SHIFT
;
383 msrpm_pages
= alloc_pages(GFP_KERNEL
, MSRPM_ALLOC_ORDER
);
389 msrpm_va
= page_address(msrpm_pages
);
390 memset(msrpm_va
, 0xff, PAGE_SIZE
* (1 << MSRPM_ALLOC_ORDER
));
391 msrpm_base
= page_to_pfn(msrpm_pages
) << PAGE_SHIFT
;
394 set_msr_interception(msrpm_va
, MSR_GS_BASE
, 1, 1);
395 set_msr_interception(msrpm_va
, MSR_FS_BASE
, 1, 1);
396 set_msr_interception(msrpm_va
, MSR_KERNEL_GS_BASE
, 1, 1);
397 set_msr_interception(msrpm_va
, MSR_LSTAR
, 1, 1);
398 set_msr_interception(msrpm_va
, MSR_CSTAR
, 1, 1);
399 set_msr_interception(msrpm_va
, MSR_SYSCALL_MASK
, 1, 1);
401 set_msr_interception(msrpm_va
, MSR_K6_STAR
, 1, 1);
402 set_msr_interception(msrpm_va
, MSR_IA32_SYSENTER_CS
, 1, 1);
403 set_msr_interception(msrpm_va
, MSR_IA32_SYSENTER_ESP
, 1, 1);
404 set_msr_interception(msrpm_va
, MSR_IA32_SYSENTER_EIP
, 1, 1);
406 for_each_online_cpu(cpu
) {
407 r
= svm_cpu_init(cpu
);
414 __free_pages(msrpm_pages
, MSRPM_ALLOC_ORDER
);
417 __free_pages(iopm_pages
, IOPM_ALLOC_ORDER
);
422 static __exit
void svm_hardware_unsetup(void)
424 __free_pages(pfn_to_page(msrpm_base
>> PAGE_SHIFT
), MSRPM_ALLOC_ORDER
);
425 __free_pages(pfn_to_page(iopm_base
>> PAGE_SHIFT
), IOPM_ALLOC_ORDER
);
426 iopm_base
= msrpm_base
= 0;
429 static void init_seg(struct vmcb_seg
*seg
)
432 seg
->attrib
= SVM_SELECTOR_P_MASK
| SVM_SELECTOR_S_MASK
|
433 SVM_SELECTOR_WRITE_MASK
; /* Read/Write Data Segment */
438 static void init_sys_seg(struct vmcb_seg
*seg
, uint32_t type
)
441 seg
->attrib
= SVM_SELECTOR_P_MASK
| type
;
446 static void init_vmcb(struct vmcb
*vmcb
)
448 struct vmcb_control_area
*control
= &vmcb
->control
;
449 struct vmcb_save_area
*save
= &vmcb
->save
;
451 control
->intercept_cr_read
= INTERCEPT_CR0_MASK
|
456 control
->intercept_cr_write
= INTERCEPT_CR0_MASK
|
461 control
->intercept_dr_read
= INTERCEPT_DR0_MASK
|
466 control
->intercept_dr_write
= INTERCEPT_DR0_MASK
|
473 control
->intercept_exceptions
= (1 << PF_VECTOR
) |
477 control
->intercept
= (1ULL << INTERCEPT_INTR
) |
478 (1ULL << INTERCEPT_NMI
) |
479 (1ULL << INTERCEPT_SMI
) |
481 * selective cr0 intercept bug?
482 * 0: 0f 22 d8 mov %eax,%cr3
483 * 3: 0f 20 c0 mov %cr0,%eax
484 * 6: 0d 00 00 00 80 or $0x80000000,%eax
485 * b: 0f 22 c0 mov %eax,%cr0
486 * set cr3 ->interception
487 * get cr0 ->interception
488 * set cr0 -> no interception
490 /* (1ULL << INTERCEPT_SELECTIVE_CR0) | */
491 (1ULL << INTERCEPT_CPUID
) |
492 (1ULL << INTERCEPT_INVD
) |
493 (1ULL << INTERCEPT_HLT
) |
494 (1ULL << INTERCEPT_INVLPGA
) |
495 (1ULL << INTERCEPT_IOIO_PROT
) |
496 (1ULL << INTERCEPT_MSR_PROT
) |
497 (1ULL << INTERCEPT_TASK_SWITCH
) |
498 (1ULL << INTERCEPT_SHUTDOWN
) |
499 (1ULL << INTERCEPT_VMRUN
) |
500 (1ULL << INTERCEPT_VMMCALL
) |
501 (1ULL << INTERCEPT_VMLOAD
) |
502 (1ULL << INTERCEPT_VMSAVE
) |
503 (1ULL << INTERCEPT_STGI
) |
504 (1ULL << INTERCEPT_CLGI
) |
505 (1ULL << INTERCEPT_SKINIT
) |
506 (1ULL << INTERCEPT_WBINVD
) |
507 (1ULL << INTERCEPT_MONITOR
) |
508 (1ULL << INTERCEPT_MWAIT
);
510 control
->iopm_base_pa
= iopm_base
;
511 control
->msrpm_base_pa
= msrpm_base
;
512 control
->tsc_offset
= 0;
513 control
->int_ctl
= V_INTR_MASKING_MASK
;
521 save
->cs
.selector
= 0xf000;
522 /* Executable/Readable Code Segment */
523 save
->cs
.attrib
= SVM_SELECTOR_READ_MASK
| SVM_SELECTOR_P_MASK
|
524 SVM_SELECTOR_S_MASK
| SVM_SELECTOR_CODE_MASK
;
525 save
->cs
.limit
= 0xffff;
527 * cs.base should really be 0xffff0000, but vmx can't handle that, so
528 * be consistent with it.
530 * Replace when we have real mode working for vmx.
532 save
->cs
.base
= 0xf0000;
534 save
->gdtr
.limit
= 0xffff;
535 save
->idtr
.limit
= 0xffff;
537 init_sys_seg(&save
->ldtr
, SEG_TYPE_LDT
);
538 init_sys_seg(&save
->tr
, SEG_TYPE_BUSY_TSS16
);
540 save
->efer
= MSR_EFER_SVME_MASK
;
541 save
->dr6
= 0xffff0ff0;
544 save
->rip
= 0x0000fff0;
547 * cr0 val on cpu init should be 0x60000010, we enable cpu
548 * cache by default. the orderly way is to enable cache in bios.
550 save
->cr0
= 0x00000010 | X86_CR0_PG
| X86_CR0_WP
;
551 save
->cr4
= X86_CR4_PAE
;
555 static int svm_vcpu_reset(struct kvm_vcpu
*vcpu
)
557 struct vcpu_svm
*svm
= to_svm(vcpu
);
559 init_vmcb(svm
->vmcb
);
561 if (vcpu
->vcpu_id
!= 0) {
562 svm
->vmcb
->save
.rip
= 0;
563 svm
->vmcb
->save
.cs
.base
= svm
->vcpu
.arch
.sipi_vector
<< 12;
564 svm
->vmcb
->save
.cs
.selector
= svm
->vcpu
.arch
.sipi_vector
<< 8;
570 static struct kvm_vcpu
*svm_create_vcpu(struct kvm
*kvm
, unsigned int id
)
572 struct vcpu_svm
*svm
;
576 svm
= kmem_cache_zalloc(kvm_vcpu_cache
, GFP_KERNEL
);
582 err
= kvm_vcpu_init(&svm
->vcpu
, kvm
, id
);
586 page
= alloc_page(GFP_KERNEL
);
592 svm
->vmcb
= page_address(page
);
593 clear_page(svm
->vmcb
);
594 svm
->vmcb_pa
= page_to_pfn(page
) << PAGE_SHIFT
;
595 svm
->asid_generation
= 0;
596 memset(svm
->db_regs
, 0, sizeof(svm
->db_regs
));
597 init_vmcb(svm
->vmcb
);
600 svm
->vcpu
.fpu_active
= 1;
601 svm
->vcpu
.arch
.apic_base
= 0xfee00000 | MSR_IA32_APICBASE_ENABLE
;
602 if (svm
->vcpu
.vcpu_id
== 0)
603 svm
->vcpu
.arch
.apic_base
|= MSR_IA32_APICBASE_BSP
;
608 kvm_vcpu_uninit(&svm
->vcpu
);
610 kmem_cache_free(kvm_vcpu_cache
, svm
);
615 static void svm_free_vcpu(struct kvm_vcpu
*vcpu
)
617 struct vcpu_svm
*svm
= to_svm(vcpu
);
619 __free_page(pfn_to_page(svm
->vmcb_pa
>> PAGE_SHIFT
));
620 kvm_vcpu_uninit(vcpu
);
621 kmem_cache_free(kvm_vcpu_cache
, svm
);
624 static void svm_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
)
626 struct vcpu_svm
*svm
= to_svm(vcpu
);
629 if (unlikely(cpu
!= vcpu
->cpu
)) {
633 * Make sure that the guest sees a monotonically
637 delta
= vcpu
->arch
.host_tsc
- tsc_this
;
638 svm
->vmcb
->control
.tsc_offset
+= delta
;
640 kvm_migrate_apic_timer(vcpu
);
643 for (i
= 0; i
< NR_HOST_SAVE_USER_MSRS
; i
++)
644 rdmsrl(host_save_user_msrs
[i
], svm
->host_user_msrs
[i
]);
647 static void svm_vcpu_put(struct kvm_vcpu
*vcpu
)
649 struct vcpu_svm
*svm
= to_svm(vcpu
);
652 ++vcpu
->stat
.host_state_reload
;
653 for (i
= 0; i
< NR_HOST_SAVE_USER_MSRS
; i
++)
654 wrmsrl(host_save_user_msrs
[i
], svm
->host_user_msrs
[i
]);
656 rdtscll(vcpu
->arch
.host_tsc
);
659 static void svm_vcpu_decache(struct kvm_vcpu
*vcpu
)
663 static void svm_cache_regs(struct kvm_vcpu
*vcpu
)
665 struct vcpu_svm
*svm
= to_svm(vcpu
);
667 vcpu
->arch
.regs
[VCPU_REGS_RAX
] = svm
->vmcb
->save
.rax
;
668 vcpu
->arch
.regs
[VCPU_REGS_RSP
] = svm
->vmcb
->save
.rsp
;
669 vcpu
->arch
.rip
= svm
->vmcb
->save
.rip
;
672 static void svm_decache_regs(struct kvm_vcpu
*vcpu
)
674 struct vcpu_svm
*svm
= to_svm(vcpu
);
675 svm
->vmcb
->save
.rax
= vcpu
->arch
.regs
[VCPU_REGS_RAX
];
676 svm
->vmcb
->save
.rsp
= vcpu
->arch
.regs
[VCPU_REGS_RSP
];
677 svm
->vmcb
->save
.rip
= vcpu
->arch
.rip
;
680 static unsigned long svm_get_rflags(struct kvm_vcpu
*vcpu
)
682 return to_svm(vcpu
)->vmcb
->save
.rflags
;
685 static void svm_set_rflags(struct kvm_vcpu
*vcpu
, unsigned long rflags
)
687 to_svm(vcpu
)->vmcb
->save
.rflags
= rflags
;
690 static struct vmcb_seg
*svm_seg(struct kvm_vcpu
*vcpu
, int seg
)
692 struct vmcb_save_area
*save
= &to_svm(vcpu
)->vmcb
->save
;
695 case VCPU_SREG_CS
: return &save
->cs
;
696 case VCPU_SREG_DS
: return &save
->ds
;
697 case VCPU_SREG_ES
: return &save
->es
;
698 case VCPU_SREG_FS
: return &save
->fs
;
699 case VCPU_SREG_GS
: return &save
->gs
;
700 case VCPU_SREG_SS
: return &save
->ss
;
701 case VCPU_SREG_TR
: return &save
->tr
;
702 case VCPU_SREG_LDTR
: return &save
->ldtr
;
708 static u64
svm_get_segment_base(struct kvm_vcpu
*vcpu
, int seg
)
710 struct vmcb_seg
*s
= svm_seg(vcpu
, seg
);
715 static void svm_get_segment(struct kvm_vcpu
*vcpu
,
716 struct kvm_segment
*var
, int seg
)
718 struct vmcb_seg
*s
= svm_seg(vcpu
, seg
);
721 var
->limit
= s
->limit
;
722 var
->selector
= s
->selector
;
723 var
->type
= s
->attrib
& SVM_SELECTOR_TYPE_MASK
;
724 var
->s
= (s
->attrib
>> SVM_SELECTOR_S_SHIFT
) & 1;
725 var
->dpl
= (s
->attrib
>> SVM_SELECTOR_DPL_SHIFT
) & 3;
726 var
->present
= (s
->attrib
>> SVM_SELECTOR_P_SHIFT
) & 1;
727 var
->avl
= (s
->attrib
>> SVM_SELECTOR_AVL_SHIFT
) & 1;
728 var
->l
= (s
->attrib
>> SVM_SELECTOR_L_SHIFT
) & 1;
729 var
->db
= (s
->attrib
>> SVM_SELECTOR_DB_SHIFT
) & 1;
730 var
->g
= (s
->attrib
>> SVM_SELECTOR_G_SHIFT
) & 1;
731 var
->unusable
= !var
->present
;
734 static void svm_get_idt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
736 struct vcpu_svm
*svm
= to_svm(vcpu
);
738 dt
->limit
= svm
->vmcb
->save
.idtr
.limit
;
739 dt
->base
= svm
->vmcb
->save
.idtr
.base
;
742 static void svm_set_idt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
744 struct vcpu_svm
*svm
= to_svm(vcpu
);
746 svm
->vmcb
->save
.idtr
.limit
= dt
->limit
;
747 svm
->vmcb
->save
.idtr
.base
= dt
->base
;
750 static void svm_get_gdt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
752 struct vcpu_svm
*svm
= to_svm(vcpu
);
754 dt
->limit
= svm
->vmcb
->save
.gdtr
.limit
;
755 dt
->base
= svm
->vmcb
->save
.gdtr
.base
;
758 static void svm_set_gdt(struct kvm_vcpu
*vcpu
, struct descriptor_table
*dt
)
760 struct vcpu_svm
*svm
= to_svm(vcpu
);
762 svm
->vmcb
->save
.gdtr
.limit
= dt
->limit
;
763 svm
->vmcb
->save
.gdtr
.base
= dt
->base
;
766 static void svm_decache_cr4_guest_bits(struct kvm_vcpu
*vcpu
)
770 static void svm_set_cr0(struct kvm_vcpu
*vcpu
, unsigned long cr0
)
772 struct vcpu_svm
*svm
= to_svm(vcpu
);
775 if (vcpu
->arch
.shadow_efer
& EFER_LME
) {
776 if (!is_paging(vcpu
) && (cr0
& X86_CR0_PG
)) {
777 vcpu
->arch
.shadow_efer
|= EFER_LMA
;
778 svm
->vmcb
->save
.efer
|= EFER_LMA
| EFER_LME
;
781 if (is_paging(vcpu
) && !(cr0
& X86_CR0_PG
)) {
782 vcpu
->arch
.shadow_efer
&= ~EFER_LMA
;
783 svm
->vmcb
->save
.efer
&= ~(EFER_LMA
| EFER_LME
);
787 if ((vcpu
->arch
.cr0
& X86_CR0_TS
) && !(cr0
& X86_CR0_TS
)) {
788 svm
->vmcb
->control
.intercept_exceptions
&= ~(1 << NM_VECTOR
);
789 vcpu
->fpu_active
= 1;
792 vcpu
->arch
.cr0
= cr0
;
793 cr0
|= X86_CR0_PG
| X86_CR0_WP
;
794 cr0
&= ~(X86_CR0_CD
| X86_CR0_NW
);
795 <<<<<<< HEAD
:arch
/x86
/kvm
/svm
.c
797 if (!vcpu
->fpu_active
) {
798 svm
->vmcb
->control
.intercept_exceptions
|= (1 << NM_VECTOR
);
801 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/x86
/kvm
/svm
.c
802 svm
->vmcb
->save
.cr0
= cr0
;
805 static void svm_set_cr4(struct kvm_vcpu
*vcpu
, unsigned long cr4
)
807 vcpu
->arch
.cr4
= cr4
;
808 to_svm(vcpu
)->vmcb
->save
.cr4
= cr4
| X86_CR4_PAE
;
811 static void svm_set_segment(struct kvm_vcpu
*vcpu
,
812 struct kvm_segment
*var
, int seg
)
814 struct vcpu_svm
*svm
= to_svm(vcpu
);
815 struct vmcb_seg
*s
= svm_seg(vcpu
, seg
);
818 s
->limit
= var
->limit
;
819 s
->selector
= var
->selector
;
823 s
->attrib
= (var
->type
& SVM_SELECTOR_TYPE_MASK
);
824 s
->attrib
|= (var
->s
& 1) << SVM_SELECTOR_S_SHIFT
;
825 s
->attrib
|= (var
->dpl
& 3) << SVM_SELECTOR_DPL_SHIFT
;
826 s
->attrib
|= (var
->present
& 1) << SVM_SELECTOR_P_SHIFT
;
827 s
->attrib
|= (var
->avl
& 1) << SVM_SELECTOR_AVL_SHIFT
;
828 s
->attrib
|= (var
->l
& 1) << SVM_SELECTOR_L_SHIFT
;
829 s
->attrib
|= (var
->db
& 1) << SVM_SELECTOR_DB_SHIFT
;
830 s
->attrib
|= (var
->g
& 1) << SVM_SELECTOR_G_SHIFT
;
832 if (seg
== VCPU_SREG_CS
)
834 = (svm
->vmcb
->save
.cs
.attrib
835 >> SVM_SELECTOR_DPL_SHIFT
) & 3;
841 svm(vcpu)->vmcb->control.int_ctl &= ~V_TPR_MASK;
842 svm(vcpu)->vmcb->control.int_ctl |= (sregs->cr8 & V_TPR_MASK);
846 static int svm_guest_debug(struct kvm_vcpu
*vcpu
, struct kvm_debug_guest
*dbg
)
851 static int svm_get_irq(struct kvm_vcpu
*vcpu
)
853 struct vcpu_svm
*svm
= to_svm(vcpu
);
854 u32 exit_int_info
= svm
->vmcb
->control
.exit_int_info
;
856 if (is_external_interrupt(exit_int_info
))
857 return exit_int_info
& SVM_EVTINJ_VEC_MASK
;
861 static void load_host_msrs(struct kvm_vcpu
*vcpu
)
864 wrmsrl(MSR_GS_BASE
, to_svm(vcpu
)->host_gs_base
);
868 static void save_host_msrs(struct kvm_vcpu
*vcpu
)
871 rdmsrl(MSR_GS_BASE
, to_svm(vcpu
)->host_gs_base
);
875 static void new_asid(struct vcpu_svm
*svm
, struct svm_cpu_data
*svm_data
)
877 if (svm_data
->next_asid
> svm_data
->max_asid
) {
878 ++svm_data
->asid_generation
;
879 svm_data
->next_asid
= 1;
880 svm
->vmcb
->control
.tlb_ctl
= TLB_CONTROL_FLUSH_ALL_ASID
;
883 svm
->vcpu
.cpu
= svm_data
->cpu
;
884 svm
->asid_generation
= svm_data
->asid_generation
;
885 svm
->vmcb
->control
.asid
= svm_data
->next_asid
++;
888 static unsigned long svm_get_dr(struct kvm_vcpu
*vcpu
, int dr
)
890 return to_svm(vcpu
)->db_regs
[dr
];
893 static void svm_set_dr(struct kvm_vcpu
*vcpu
, int dr
, unsigned long value
,
896 struct vcpu_svm
*svm
= to_svm(vcpu
);
900 if (svm
->vmcb
->save
.dr7
& DR7_GD_MASK
) {
901 svm
->vmcb
->save
.dr7
&= ~DR7_GD_MASK
;
902 svm
->vmcb
->save
.dr6
|= DR6_BD_MASK
;
903 *exception
= DB_VECTOR
;
909 svm
->db_regs
[dr
] = value
;
912 if (vcpu
->arch
.cr4
& X86_CR4_DE
) {
913 *exception
= UD_VECTOR
;
917 if (value
& ~((1ULL << 32) - 1)) {
918 *exception
= GP_VECTOR
;
921 svm
->vmcb
->save
.dr7
= value
;
925 printk(KERN_DEBUG
"%s: unexpected dr %u\n",
927 *exception
= UD_VECTOR
;
932 static int pf_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
934 u32 exit_int_info
= svm
->vmcb
->control
.exit_int_info
;
935 struct kvm
*kvm
= svm
->vcpu
.kvm
;
939 if (!irqchip_in_kernel(kvm
) &&
940 is_external_interrupt(exit_int_info
))
941 push_irq(&svm
->vcpu
, exit_int_info
& SVM_EVTINJ_VEC_MASK
);
943 fault_address
= svm
->vmcb
->control
.exit_info_2
;
944 error_code
= svm
->vmcb
->control
.exit_info_1
;
945 return kvm_mmu_page_fault(&svm
->vcpu
, fault_address
, error_code
);
948 static int ud_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
952 er
= emulate_instruction(&svm
->vcpu
, kvm_run
, 0, 0, EMULTYPE_TRAP_UD
);
953 if (er
!= EMULATE_DONE
)
954 kvm_queue_exception(&svm
->vcpu
, UD_VECTOR
);
958 static int nm_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
960 svm
->vmcb
->control
.intercept_exceptions
&= ~(1 << NM_VECTOR
);
961 if (!(svm
->vcpu
.arch
.cr0
& X86_CR0_TS
))
962 svm
->vmcb
->save
.cr0
&= ~X86_CR0_TS
;
963 svm
->vcpu
.fpu_active
= 1;
968 static int shutdown_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
971 * VMCB is undefined after a SHUTDOWN intercept
972 * so reinitialize it.
974 clear_page(svm
->vmcb
);
975 init_vmcb(svm
->vmcb
);
977 kvm_run
->exit_reason
= KVM_EXIT_SHUTDOWN
;
981 static int io_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
983 u32 io_info
= svm
->vmcb
->control
.exit_info_1
; /* address size bug? */
984 int size
, down
, in
, string
, rep
;
987 ++svm
->vcpu
.stat
.io_exits
;
989 svm
->next_rip
= svm
->vmcb
->control
.exit_info_2
;
991 string
= (io_info
& SVM_IOIO_STR_MASK
) != 0;
994 if (emulate_instruction(&svm
->vcpu
,
995 kvm_run
, 0, 0, 0) == EMULATE_DO_MMIO
)
1000 in
= (io_info
& SVM_IOIO_TYPE_MASK
) != 0;
1001 port
= io_info
>> 16;
1002 size
= (io_info
& SVM_IOIO_SIZE_MASK
) >> SVM_IOIO_SIZE_SHIFT
;
1003 rep
= (io_info
& SVM_IOIO_REP_MASK
) != 0;
1004 down
= (svm
->vmcb
->save
.rflags
& X86_EFLAGS_DF
) != 0;
1006 return kvm_emulate_pio(&svm
->vcpu
, kvm_run
, in
, size
, port
);
1009 static int nop_on_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1014 static int halt_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1016 svm
->next_rip
= svm
->vmcb
->save
.rip
+ 1;
1017 skip_emulated_instruction(&svm
->vcpu
);
1018 return kvm_emulate_halt(&svm
->vcpu
);
1021 static int vmmcall_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1023 svm
->next_rip
= svm
->vmcb
->save
.rip
+ 3;
1024 skip_emulated_instruction(&svm
->vcpu
);
1025 kvm_emulate_hypercall(&svm
->vcpu
);
1029 static int invalid_op_interception(struct vcpu_svm
*svm
,
1030 struct kvm_run
*kvm_run
)
1032 kvm_queue_exception(&svm
->vcpu
, UD_VECTOR
);
1036 static int task_switch_interception(struct vcpu_svm
*svm
,
1037 struct kvm_run
*kvm_run
)
1039 pr_unimpl(&svm
->vcpu
, "%s: task switch is unsupported\n", __FUNCTION__
);
1040 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
1044 static int cpuid_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1046 svm
->next_rip
= svm
->vmcb
->save
.rip
+ 2;
1047 kvm_emulate_cpuid(&svm
->vcpu
);
1051 static int emulate_on_interception(struct vcpu_svm
*svm
,
1052 struct kvm_run
*kvm_run
)
1054 if (emulate_instruction(&svm
->vcpu
, NULL
, 0, 0, 0) != EMULATE_DONE
)
1055 pr_unimpl(&svm
->vcpu
, "%s: failed\n", __FUNCTION__
);
1059 static int cr8_write_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1061 emulate_instruction(&svm
->vcpu
, NULL
, 0, 0, 0);
1062 if (irqchip_in_kernel(svm
->vcpu
.kvm
))
1064 kvm_run
->exit_reason
= KVM_EXIT_SET_TPR
;
1068 static int svm_get_msr(struct kvm_vcpu
*vcpu
, unsigned ecx
, u64
*data
)
1070 struct vcpu_svm
*svm
= to_svm(vcpu
);
1073 case MSR_IA32_TIME_STAMP_COUNTER
: {
1077 *data
= svm
->vmcb
->control
.tsc_offset
+ tsc
;
1081 *data
= svm
->vmcb
->save
.star
;
1083 #ifdef CONFIG_X86_64
1085 *data
= svm
->vmcb
->save
.lstar
;
1088 *data
= svm
->vmcb
->save
.cstar
;
1090 case MSR_KERNEL_GS_BASE
:
1091 *data
= svm
->vmcb
->save
.kernel_gs_base
;
1093 case MSR_SYSCALL_MASK
:
1094 *data
= svm
->vmcb
->save
.sfmask
;
1097 case MSR_IA32_SYSENTER_CS
:
1098 *data
= svm
->vmcb
->save
.sysenter_cs
;
1100 case MSR_IA32_SYSENTER_EIP
:
1101 *data
= svm
->vmcb
->save
.sysenter_eip
;
1103 case MSR_IA32_SYSENTER_ESP
:
1104 *data
= svm
->vmcb
->save
.sysenter_esp
;
1106 <<<<<<< HEAD
:arch
/x86
/kvm
/svm
.c
1108 /* Nobody will change the following 5 values in the VMCB so
1109 we can safely return them on rdmsr. They will always be 0
1110 until LBRV is implemented. */
1111 case MSR_IA32_DEBUGCTLMSR
:
1112 *data
= svm
->vmcb
->save
.dbgctl
;
1114 case MSR_IA32_LASTBRANCHFROMIP
:
1115 *data
= svm
->vmcb
->save
.br_from
;
1117 case MSR_IA32_LASTBRANCHTOIP
:
1118 *data
= svm
->vmcb
->save
.br_to
;
1120 case MSR_IA32_LASTINTFROMIP
:
1121 *data
= svm
->vmcb
->save
.last_excp_from
;
1123 case MSR_IA32_LASTINTTOIP
:
1124 *data
= svm
->vmcb
->save
.last_excp_to
;
1126 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/x86
/kvm
/svm
.c
1128 return kvm_get_msr_common(vcpu
, ecx
, data
);
1133 static int rdmsr_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1135 u32 ecx
= svm
->vcpu
.arch
.regs
[VCPU_REGS_RCX
];
1138 if (svm_get_msr(&svm
->vcpu
, ecx
, &data
))
1139 kvm_inject_gp(&svm
->vcpu
, 0);
1141 svm
->vmcb
->save
.rax
= data
& 0xffffffff;
1142 svm
->vcpu
.arch
.regs
[VCPU_REGS_RDX
] = data
>> 32;
1143 svm
->next_rip
= svm
->vmcb
->save
.rip
+ 2;
1144 skip_emulated_instruction(&svm
->vcpu
);
1149 static int svm_set_msr(struct kvm_vcpu
*vcpu
, unsigned ecx
, u64 data
)
1151 struct vcpu_svm
*svm
= to_svm(vcpu
);
1154 case MSR_IA32_TIME_STAMP_COUNTER
: {
1158 svm
->vmcb
->control
.tsc_offset
= data
- tsc
;
1162 svm
->vmcb
->save
.star
= data
;
1164 #ifdef CONFIG_X86_64
1166 svm
->vmcb
->save
.lstar
= data
;
1169 svm
->vmcb
->save
.cstar
= data
;
1171 case MSR_KERNEL_GS_BASE
:
1172 svm
->vmcb
->save
.kernel_gs_base
= data
;
1174 case MSR_SYSCALL_MASK
:
1175 svm
->vmcb
->save
.sfmask
= data
;
1178 case MSR_IA32_SYSENTER_CS
:
1179 svm
->vmcb
->save
.sysenter_cs
= data
;
1181 case MSR_IA32_SYSENTER_EIP
:
1182 svm
->vmcb
->save
.sysenter_eip
= data
;
1184 case MSR_IA32_SYSENTER_ESP
:
1185 svm
->vmcb
->save
.sysenter_esp
= data
;
1187 <<<<<<< HEAD
:arch
/x86
/kvm
/svm
.c
1189 case MSR_IA32_DEBUGCTLMSR
:
1190 pr_unimpl(vcpu
, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
1191 __FUNCTION__
, data
);
1193 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/x86
/kvm
/svm
.c
1194 case MSR_K7_EVNTSEL0
:
1195 case MSR_K7_EVNTSEL1
:
1196 case MSR_K7_EVNTSEL2
:
1197 case MSR_K7_EVNTSEL3
:
1199 * only support writing 0 to the performance counters for now
1200 * to make Windows happy. Should be replaced by a real
1201 * performance counter emulation later.
1208 return kvm_set_msr_common(vcpu
, ecx
, data
);
1213 static int wrmsr_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1215 u32 ecx
= svm
->vcpu
.arch
.regs
[VCPU_REGS_RCX
];
1216 u64 data
= (svm
->vmcb
->save
.rax
& -1u)
1217 | ((u64
)(svm
->vcpu
.arch
.regs
[VCPU_REGS_RDX
] & -1u) << 32);
1218 svm
->next_rip
= svm
->vmcb
->save
.rip
+ 2;
1219 if (svm_set_msr(&svm
->vcpu
, ecx
, data
))
1220 kvm_inject_gp(&svm
->vcpu
, 0);
1222 skip_emulated_instruction(&svm
->vcpu
);
1226 static int msr_interception(struct vcpu_svm
*svm
, struct kvm_run
*kvm_run
)
1228 if (svm
->vmcb
->control
.exit_info_1
)
1229 return wrmsr_interception(svm
, kvm_run
);
1231 return rdmsr_interception(svm
, kvm_run
);
1234 static int interrupt_window_interception(struct vcpu_svm
*svm
,
1235 struct kvm_run
*kvm_run
)
1237 svm
->vmcb
->control
.intercept
&= ~(1ULL << INTERCEPT_VINTR
);
1238 svm
->vmcb
->control
.int_ctl
&= ~V_IRQ_MASK
;
1240 * If the user space waits to inject interrupts, exit as soon as
1243 if (kvm_run
->request_interrupt_window
&&
1244 !svm
->vcpu
.arch
.irq_summary
) {
1245 ++svm
->vcpu
.stat
.irq_window_exits
;
1246 kvm_run
->exit_reason
= KVM_EXIT_IRQ_WINDOW_OPEN
;
1253 static int (*svm_exit_handlers
[])(struct vcpu_svm
*svm
,
1254 struct kvm_run
*kvm_run
) = {
1255 [SVM_EXIT_READ_CR0
] = emulate_on_interception
,
1256 [SVM_EXIT_READ_CR3
] = emulate_on_interception
,
1257 [SVM_EXIT_READ_CR4
] = emulate_on_interception
,
1258 [SVM_EXIT_READ_CR8
] = emulate_on_interception
,
1260 [SVM_EXIT_WRITE_CR0
] = emulate_on_interception
,
1261 [SVM_EXIT_WRITE_CR3
] = emulate_on_interception
,
1262 [SVM_EXIT_WRITE_CR4
] = emulate_on_interception
,
1263 [SVM_EXIT_WRITE_CR8
] = cr8_write_interception
,
1264 [SVM_EXIT_READ_DR0
] = emulate_on_interception
,
1265 [SVM_EXIT_READ_DR1
] = emulate_on_interception
,
1266 [SVM_EXIT_READ_DR2
] = emulate_on_interception
,
1267 [SVM_EXIT_READ_DR3
] = emulate_on_interception
,
1268 [SVM_EXIT_WRITE_DR0
] = emulate_on_interception
,
1269 [SVM_EXIT_WRITE_DR1
] = emulate_on_interception
,
1270 [SVM_EXIT_WRITE_DR2
] = emulate_on_interception
,
1271 [SVM_EXIT_WRITE_DR3
] = emulate_on_interception
,
1272 [SVM_EXIT_WRITE_DR5
] = emulate_on_interception
,
1273 [SVM_EXIT_WRITE_DR7
] = emulate_on_interception
,
1274 [SVM_EXIT_EXCP_BASE
+ UD_VECTOR
] = ud_interception
,
1275 [SVM_EXIT_EXCP_BASE
+ PF_VECTOR
] = pf_interception
,
1276 [SVM_EXIT_EXCP_BASE
+ NM_VECTOR
] = nm_interception
,
1277 [SVM_EXIT_INTR
] = nop_on_interception
,
1278 [SVM_EXIT_NMI
] = nop_on_interception
,
1279 [SVM_EXIT_SMI
] = nop_on_interception
,
1280 [SVM_EXIT_INIT
] = nop_on_interception
,
1281 [SVM_EXIT_VINTR
] = interrupt_window_interception
,
1282 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1283 [SVM_EXIT_CPUID
] = cpuid_interception
,
1284 [SVM_EXIT_INVD
] = emulate_on_interception
,
1285 [SVM_EXIT_HLT
] = halt_interception
,
1286 [SVM_EXIT_INVLPG
] = emulate_on_interception
,
1287 [SVM_EXIT_INVLPGA
] = invalid_op_interception
,
1288 [SVM_EXIT_IOIO
] = io_interception
,
1289 [SVM_EXIT_MSR
] = msr_interception
,
1290 [SVM_EXIT_TASK_SWITCH
] = task_switch_interception
,
1291 [SVM_EXIT_SHUTDOWN
] = shutdown_interception
,
1292 [SVM_EXIT_VMRUN
] = invalid_op_interception
,
1293 [SVM_EXIT_VMMCALL
] = vmmcall_interception
,
1294 [SVM_EXIT_VMLOAD
] = invalid_op_interception
,
1295 [SVM_EXIT_VMSAVE
] = invalid_op_interception
,
1296 [SVM_EXIT_STGI
] = invalid_op_interception
,
1297 [SVM_EXIT_CLGI
] = invalid_op_interception
,
1298 [SVM_EXIT_SKINIT
] = invalid_op_interception
,
1299 [SVM_EXIT_WBINVD
] = emulate_on_interception
,
1300 [SVM_EXIT_MONITOR
] = invalid_op_interception
,
1301 [SVM_EXIT_MWAIT
] = invalid_op_interception
,
1305 static int handle_exit(struct kvm_run
*kvm_run
, struct kvm_vcpu
*vcpu
)
1307 struct vcpu_svm
*svm
= to_svm(vcpu
);
1308 u32 exit_code
= svm
->vmcb
->control
.exit_code
;
1312 if (svm
->vmcb
->control
.exit_code
== SVM_EXIT_ERR
) {
1313 kvm_run
->exit_reason
= KVM_EXIT_FAIL_ENTRY
;
1314 kvm_run
->fail_entry
.hardware_entry_failure_reason
1315 = svm
->vmcb
->control
.exit_code
;
1319 if (is_external_interrupt(svm
->vmcb
->control
.exit_int_info
) &&
1320 exit_code
!= SVM_EXIT_EXCP_BASE
+ PF_VECTOR
)
1321 printk(KERN_ERR
"%s: unexpected exit_ini_info 0x%x "
1323 __FUNCTION__
, svm
->vmcb
->control
.exit_int_info
,
1326 if (exit_code
>= ARRAY_SIZE(svm_exit_handlers
)
1327 || !svm_exit_handlers
[exit_code
]) {
1328 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
1329 kvm_run
->hw
.hardware_exit_reason
= exit_code
;
1333 return svm_exit_handlers
[exit_code
](svm
, kvm_run
);
1336 static void reload_tss(struct kvm_vcpu
*vcpu
)
1338 int cpu
= raw_smp_processor_id();
1340 struct svm_cpu_data
*svm_data
= per_cpu(svm_data
, cpu
);
1341 svm_data
->tss_desc
->type
= 9; /* available 32/64-bit TSS */
1345 static void pre_svm_run(struct vcpu_svm
*svm
)
1347 int cpu
= raw_smp_processor_id();
1349 struct svm_cpu_data
*svm_data
= per_cpu(svm_data
, cpu
);
1351 svm
->vmcb
->control
.tlb_ctl
= TLB_CONTROL_DO_NOTHING
;
1352 if (svm
->vcpu
.cpu
!= cpu
||
1353 svm
->asid_generation
!= svm_data
->asid_generation
)
1354 new_asid(svm
, svm_data
);
1358 static inline void svm_inject_irq(struct vcpu_svm
*svm
, int irq
)
1360 struct vmcb_control_area
*control
;
1362 control
= &svm
->vmcb
->control
;
1363 control
->int_vector
= irq
;
1364 control
->int_ctl
&= ~V_INTR_PRIO_MASK
;
1365 control
->int_ctl
|= V_IRQ_MASK
|
1366 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT
);
1369 static void svm_set_irq(struct kvm_vcpu
*vcpu
, int irq
)
1371 struct vcpu_svm
*svm
= to_svm(vcpu
);
1373 svm_inject_irq(svm
, irq
);
1376 static void svm_intr_assist(struct kvm_vcpu
*vcpu
)
1378 struct vcpu_svm
*svm
= to_svm(vcpu
);
1379 struct vmcb
*vmcb
= svm
->vmcb
;
1380 int intr_vector
= -1;
1382 if ((vmcb
->control
.exit_int_info
& SVM_EVTINJ_VALID
) &&
1383 ((vmcb
->control
.exit_int_info
& SVM_EVTINJ_TYPE_MASK
) == 0)) {
1384 intr_vector
= vmcb
->control
.exit_int_info
&
1385 SVM_EVTINJ_VEC_MASK
;
1386 vmcb
->control
.exit_int_info
= 0;
1387 svm_inject_irq(svm
, intr_vector
);
1391 if (vmcb
->control
.int_ctl
& V_IRQ_MASK
)
1394 if (!kvm_cpu_has_interrupt(vcpu
))
1397 if (!(vmcb
->save
.rflags
& X86_EFLAGS_IF
) ||
1398 (vmcb
->control
.int_state
& SVM_INTERRUPT_SHADOW_MASK
) ||
1399 (vmcb
->control
.event_inj
& SVM_EVTINJ_VALID
)) {
1400 /* unable to deliver irq, set pending irq */
1401 vmcb
->control
.intercept
|= (1ULL << INTERCEPT_VINTR
);
1402 svm_inject_irq(svm
, 0x0);
1405 /* Okay, we can deliver the interrupt: grab it and update PIC state. */
1406 intr_vector
= kvm_cpu_get_interrupt(vcpu
);
1407 svm_inject_irq(svm
, intr_vector
);
1408 kvm_timer_intr_post(vcpu
, intr_vector
);
1411 static void kvm_reput_irq(struct vcpu_svm
*svm
)
1413 struct vmcb_control_area
*control
= &svm
->vmcb
->control
;
1415 if ((control
->int_ctl
& V_IRQ_MASK
)
1416 && !irqchip_in_kernel(svm
->vcpu
.kvm
)) {
1417 control
->int_ctl
&= ~V_IRQ_MASK
;
1418 push_irq(&svm
->vcpu
, control
->int_vector
);
1421 svm
->vcpu
.arch
.interrupt_window_open
=
1422 !(control
->int_state
& SVM_INTERRUPT_SHADOW_MASK
);
1425 static void svm_do_inject_vector(struct vcpu_svm
*svm
)
1427 struct kvm_vcpu
*vcpu
= &svm
->vcpu
;
1428 int word_index
= __ffs(vcpu
->arch
.irq_summary
);
1429 int bit_index
= __ffs(vcpu
->arch
.irq_pending
[word_index
]);
1430 int irq
= word_index
* BITS_PER_LONG
+ bit_index
;
1432 clear_bit(bit_index
, &vcpu
->arch
.irq_pending
[word_index
]);
1433 if (!vcpu
->arch
.irq_pending
[word_index
])
1434 clear_bit(word_index
, &vcpu
->arch
.irq_summary
);
1435 svm_inject_irq(svm
, irq
);
1438 static void do_interrupt_requests(struct kvm_vcpu
*vcpu
,
1439 struct kvm_run
*kvm_run
)
1441 struct vcpu_svm
*svm
= to_svm(vcpu
);
1442 struct vmcb_control_area
*control
= &svm
->vmcb
->control
;
1444 svm
->vcpu
.arch
.interrupt_window_open
=
1445 (!(control
->int_state
& SVM_INTERRUPT_SHADOW_MASK
) &&
1446 (svm
->vmcb
->save
.rflags
& X86_EFLAGS_IF
));
1448 if (svm
->vcpu
.arch
.interrupt_window_open
&& svm
->vcpu
.arch
.irq_summary
)
1450 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1452 svm_do_inject_vector(svm
);
1455 * Interrupts blocked. Wait for unblock.
1457 if (!svm
->vcpu
.arch
.interrupt_window_open
&&
1458 (svm
->vcpu
.arch
.irq_summary
|| kvm_run
->request_interrupt_window
))
1459 control
->intercept
|= 1ULL << INTERCEPT_VINTR
;
1461 control
->intercept
&= ~(1ULL << INTERCEPT_VINTR
);
1464 static int svm_set_tss_addr(struct kvm
*kvm
, unsigned int addr
)
1469 static void save_db_regs(unsigned long *db_regs
)
1471 asm volatile ("mov %%dr0, %0" : "=r"(db_regs
[0]));
1472 asm volatile ("mov %%dr1, %0" : "=r"(db_regs
[1]));
1473 asm volatile ("mov %%dr2, %0" : "=r"(db_regs
[2]));
1474 asm volatile ("mov %%dr3, %0" : "=r"(db_regs
[3]));
1477 static void load_db_regs(unsigned long *db_regs
)
1479 asm volatile ("mov %0, %%dr0" : : "r"(db_regs
[0]));
1480 asm volatile ("mov %0, %%dr1" : : "r"(db_regs
[1]));
1481 asm volatile ("mov %0, %%dr2" : : "r"(db_regs
[2]));
1482 asm volatile ("mov %0, %%dr3" : : "r"(db_regs
[3]));
1485 static void svm_flush_tlb(struct kvm_vcpu
*vcpu
)
1487 force_new_asid(vcpu
);
1490 static void svm_prepare_guest_switch(struct kvm_vcpu
*vcpu
)
1494 static void svm_vcpu_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
1496 struct vcpu_svm
*svm
= to_svm(vcpu
);
1503 save_host_msrs(vcpu
);
1504 fs_selector
= read_fs();
1505 gs_selector
= read_gs();
1506 ldt_selector
= read_ldt();
1507 svm
->host_cr2
= kvm_read_cr2();
1508 svm
->host_dr6
= read_dr6();
1509 svm
->host_dr7
= read_dr7();
1510 svm
->vmcb
->save
.cr2
= vcpu
->arch
.cr2
;
1512 if (svm
->vmcb
->save
.dr7
& 0xff) {
1514 save_db_regs(svm
->host_db_regs
);
1515 load_db_regs(svm
->db_regs
);
1523 #ifdef CONFIG_X86_64
1529 #ifdef CONFIG_X86_64
1530 "mov %c[rbx](%[svm]), %%rbx \n\t"
1531 "mov %c[rcx](%[svm]), %%rcx \n\t"
1532 "mov %c[rdx](%[svm]), %%rdx \n\t"
1533 "mov %c[rsi](%[svm]), %%rsi \n\t"
1534 "mov %c[rdi](%[svm]), %%rdi \n\t"
1535 "mov %c[rbp](%[svm]), %%rbp \n\t"
1536 "mov %c[r8](%[svm]), %%r8 \n\t"
1537 "mov %c[r9](%[svm]), %%r9 \n\t"
1538 "mov %c[r10](%[svm]), %%r10 \n\t"
1539 "mov %c[r11](%[svm]), %%r11 \n\t"
1540 "mov %c[r12](%[svm]), %%r12 \n\t"
1541 "mov %c[r13](%[svm]), %%r13 \n\t"
1542 "mov %c[r14](%[svm]), %%r14 \n\t"
1543 "mov %c[r15](%[svm]), %%r15 \n\t"
1545 "mov %c[rbx](%[svm]), %%ebx \n\t"
1546 "mov %c[rcx](%[svm]), %%ecx \n\t"
1547 "mov %c[rdx](%[svm]), %%edx \n\t"
1548 "mov %c[rsi](%[svm]), %%esi \n\t"
1549 "mov %c[rdi](%[svm]), %%edi \n\t"
1550 "mov %c[rbp](%[svm]), %%ebp \n\t"
1553 #ifdef CONFIG_X86_64
1554 /* Enter guest mode */
1556 "mov %c[vmcb](%[svm]), %%rax \n\t"
1562 /* Enter guest mode */
1564 "mov %c[vmcb](%[svm]), %%eax \n\t"
1571 /* Save guest registers, load host registers */
1572 #ifdef CONFIG_X86_64
1573 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1574 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1575 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1576 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1577 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1578 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1579 "mov %%r8, %c[r8](%[svm]) \n\t"
1580 "mov %%r9, %c[r9](%[svm]) \n\t"
1581 "mov %%r10, %c[r10](%[svm]) \n\t"
1582 "mov %%r11, %c[r11](%[svm]) \n\t"
1583 "mov %%r12, %c[r12](%[svm]) \n\t"
1584 "mov %%r13, %c[r13](%[svm]) \n\t"
1585 "mov %%r14, %c[r14](%[svm]) \n\t"
1586 "mov %%r15, %c[r15](%[svm]) \n\t"
1590 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1591 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1592 "mov %%edx, %c[rdx](%[svm]) \n\t"
1593 "mov %%esi, %c[rsi](%[svm]) \n\t"
1594 "mov %%edi, %c[rdi](%[svm]) \n\t"
1595 "mov %%ebp, %c[rbp](%[svm]) \n\t"
1601 [vmcb
]"i"(offsetof(struct vcpu_svm
, vmcb_pa
)),
1602 [rbx
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RBX
])),
1603 [rcx
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RCX
])),
1604 [rdx
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RDX
])),
1605 [rsi
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RSI
])),
1606 [rdi
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RDI
])),
1607 [rbp
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_RBP
]))
1608 #ifdef CONFIG_X86_64
1609 , [r8
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R8
])),
1610 [r9
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R9
])),
1611 [r10
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R10
])),
1612 [r11
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R11
])),
1613 [r12
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R12
])),
1614 [r13
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R13
])),
1615 [r14
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R14
])),
1616 [r15
]"i"(offsetof(struct vcpu_svm
, vcpu
.arch
.regs
[VCPU_REGS_R15
]))
1619 #ifdef CONFIG_X86_64
1620 , "rbx", "rcx", "rdx", "rsi", "rdi"
1621 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
1623 , "ebx", "ecx", "edx" , "esi", "edi"
1627 if ((svm
->vmcb
->save
.dr7
& 0xff))
1628 load_db_regs(svm
->host_db_regs
);
1630 vcpu
->arch
.cr2
= svm
->vmcb
->save
.cr2
;
1632 write_dr6(svm
->host_dr6
);
1633 write_dr7(svm
->host_dr7
);
1634 kvm_write_cr2(svm
->host_cr2
);
1636 load_fs(fs_selector
);
1637 load_gs(gs_selector
);
1638 load_ldt(ldt_selector
);
1639 load_host_msrs(vcpu
);
1643 local_irq_disable();
1650 static void svm_set_cr3(struct kvm_vcpu
*vcpu
, unsigned long root
)
1652 struct vcpu_svm
*svm
= to_svm(vcpu
);
1654 svm
->vmcb
->save
.cr3
= root
;
1655 force_new_asid(vcpu
);
1657 if (vcpu
->fpu_active
) {
1658 svm
->vmcb
->control
.intercept_exceptions
|= (1 << NM_VECTOR
);
1659 svm
->vmcb
->save
.cr0
|= X86_CR0_TS
;
1660 vcpu
->fpu_active
= 0;
1664 static int is_disabled(void)
1668 rdmsrl(MSR_VM_CR
, vm_cr
);
1669 if (vm_cr
& (1 << SVM_VM_CR_SVM_DISABLE
))
1676 svm_patch_hypercall(struct kvm_vcpu
*vcpu
, unsigned char *hypercall
)
1679 * Patch in the VMMCALL instruction:
1681 hypercall
[0] = 0x0f;
1682 hypercall
[1] = 0x01;
1683 hypercall
[2] = 0xd9;
1686 static void svm_check_processor_compat(void *rtn
)
1691 static bool svm_cpu_has_accelerated_tpr(void)
1696 static struct kvm_x86_ops svm_x86_ops
= {
1697 .cpu_has_kvm_support
= has_svm
,
1698 .disabled_by_bios
= is_disabled
,
1699 .hardware_setup
= svm_hardware_setup
,
1700 .hardware_unsetup
= svm_hardware_unsetup
,
1701 .check_processor_compatibility
= svm_check_processor_compat
,
1702 .hardware_enable
= svm_hardware_enable
,
1703 .hardware_disable
= svm_hardware_disable
,
1704 .cpu_has_accelerated_tpr
= svm_cpu_has_accelerated_tpr
,
1706 .vcpu_create
= svm_create_vcpu
,
1707 .vcpu_free
= svm_free_vcpu
,
1708 .vcpu_reset
= svm_vcpu_reset
,
1710 .prepare_guest_switch
= svm_prepare_guest_switch
,
1711 .vcpu_load
= svm_vcpu_load
,
1712 .vcpu_put
= svm_vcpu_put
,
1713 .vcpu_decache
= svm_vcpu_decache
,
1715 .set_guest_debug
= svm_guest_debug
,
1716 .get_msr
= svm_get_msr
,
1717 .set_msr
= svm_set_msr
,
1718 .get_segment_base
= svm_get_segment_base
,
1719 .get_segment
= svm_get_segment
,
1720 .set_segment
= svm_set_segment
,
1721 .get_cs_db_l_bits
= kvm_get_cs_db_l_bits
,
1722 .decache_cr4_guest_bits
= svm_decache_cr4_guest_bits
,
1723 .set_cr0
= svm_set_cr0
,
1724 .set_cr3
= svm_set_cr3
,
1725 .set_cr4
= svm_set_cr4
,
1726 .set_efer
= svm_set_efer
,
1727 .get_idt
= svm_get_idt
,
1728 .set_idt
= svm_set_idt
,
1729 .get_gdt
= svm_get_gdt
,
1730 .set_gdt
= svm_set_gdt
,
1731 .get_dr
= svm_get_dr
,
1732 .set_dr
= svm_set_dr
,
1733 .cache_regs
= svm_cache_regs
,
1734 .decache_regs
= svm_decache_regs
,
1735 .get_rflags
= svm_get_rflags
,
1736 .set_rflags
= svm_set_rflags
,
1738 .tlb_flush
= svm_flush_tlb
,
1740 .run
= svm_vcpu_run
,
1741 .handle_exit
= handle_exit
,
1742 .skip_emulated_instruction
= skip_emulated_instruction
,
1743 .patch_hypercall
= svm_patch_hypercall
,
1744 .get_irq
= svm_get_irq
,
1745 .set_irq
= svm_set_irq
,
1746 .queue_exception
= svm_queue_exception
,
1747 .exception_injected
= svm_exception_injected
,
1748 .inject_pending_irq
= svm_intr_assist
,
1749 .inject_pending_vectors
= do_interrupt_requests
,
1751 .set_tss_addr
= svm_set_tss_addr
,
1754 static int __init
svm_init(void)
1756 return kvm_init(&svm_x86_ops
, sizeof(struct vcpu_svm
),
1760 static void __exit
svm_exit(void)
1765 module_init(svm_init
)
1766 module_exit(svm_exit
)