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 #define __ex(x) __kvm_handle_fault_on_reboot(x)
32 MODULE_AUTHOR("Qumranet");
33 MODULE_LICENSE("GPL");
35 #define IOPM_ALLOC_ORDER 2
36 #define MSRPM_ALLOC_ORDER 1
42 #define DR7_GD_MASK (1 << 13)
43 #define DR6_BD_MASK (1 << 13)
45 #define SEG_TYPE_LDT 2
46 #define SEG_TYPE_BUSY_TSS16 3
48 #define SVM_FEATURE_NPT (1 << 0)
49 #define SVM_FEATURE_LBRV (1 << 1)
50 #define SVM_DEATURE_SVML (1 << 2)
52 #define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
54 /* enable NPT for AMD64 and X86 with PAE */
55 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
56 static bool npt_enabled = true;
58 static bool npt_enabled = false;
62 module_param(npt, int, S_IRUGO);
64 static void kvm_reput_irq(struct vcpu_svm *svm);
66 static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
68 return container_of(vcpu, struct vcpu_svm, vcpu);
71 static unsigned long iopm_base;
73 struct kvm_ldttss_desc {
76 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
77 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
80 } __attribute__((packed));
88 struct kvm_ldttss_desc *tss_desc;
90 struct page *save_area;
93 static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
94 static uint32_t svm_features;
96 struct svm_init_data {
101 static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
103 #define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
104 #define MSRS_RANGE_SIZE 2048
105 #define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
107 #define MAX_INST_SIZE 15
109 static inline u32 svm_has(u32 feat)
111 return svm_features & feat;
114 static inline u8 pop_irq(struct kvm_vcpu *vcpu)
116 int word_index = __ffs(vcpu->arch.irq_summary);
117 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
118 int irq = word_index * BITS_PER_LONG + bit_index;
120 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
121 if (!vcpu->arch.irq_pending[word_index])
122 clear_bit(word_index, &vcpu->arch.irq_summary);
126 static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
128 set_bit(irq, vcpu->arch.irq_pending);
129 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
132 static inline void clgi(void)
134 asm volatile (__ex(SVM_CLGI));
137 static inline void stgi(void)
139 asm volatile (__ex(SVM_STGI));
142 static inline void invlpga(unsigned long addr, u32 asid)
144 asm volatile (__ex(SVM_INVLPGA) :: "a"(addr), "c"(asid));
147 static inline unsigned long kvm_read_cr2(void)
151 asm volatile ("mov %%cr2, %0" : "=r" (cr2));
155 static inline void kvm_write_cr2(unsigned long val)
157 asm volatile ("mov %0, %%cr2" :: "r" (val));
160 static inline unsigned long read_dr6(void)
164 asm volatile ("mov %%dr6, %0" : "=r" (dr6));
168 static inline void write_dr6(unsigned long val)
170 asm volatile ("mov %0, %%dr6" :: "r" (val));
173 static inline unsigned long read_dr7(void)
177 asm volatile ("mov %%dr7, %0" : "=r" (dr7));
181 static inline void write_dr7(unsigned long val)
183 asm volatile ("mov %0, %%dr7" :: "r" (val));
186 static inline void force_new_asid(struct kvm_vcpu *vcpu)
188 to_svm(vcpu)->asid_generation--;
191 static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
193 force_new_asid(vcpu);
196 static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
198 if (!npt_enabled && !(efer & EFER_LMA))
201 to_svm(vcpu)->vmcb->save.efer = efer | MSR_EFER_SVME_MASK;
202 vcpu->arch.shadow_efer = efer;
205 static void svm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
206 bool has_error_code, u32 error_code)
208 struct vcpu_svm *svm = to_svm(vcpu);
210 svm->vmcb->control.event_inj = nr
212 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
213 | SVM_EVTINJ_TYPE_EXEPT;
214 svm->vmcb->control.event_inj_err = error_code;
217 static bool svm_exception_injected(struct kvm_vcpu *vcpu)
219 struct vcpu_svm *svm = to_svm(vcpu);
221 return !(svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID);
224 static int is_external_interrupt(u32 info)
226 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
227 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
230 static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
232 struct vcpu_svm *svm = to_svm(vcpu);
234 if (!svm->next_rip) {
235 printk(KERN_DEBUG "%s: NOP\n", __func__);
238 if (svm->next_rip - svm->vmcb->save.rip > MAX_INST_SIZE)
239 printk(KERN_ERR "%s: ip 0x%llx next 0x%llx\n",
244 vcpu->arch.rip = svm->vmcb->save.rip = svm->next_rip;
245 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
247 vcpu->arch.interrupt_window_open = 1;
250 static int has_svm(void)
252 uint32_t eax, ebx, ecx, edx;
254 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
255 printk(KERN_INFO "has_svm: not amd\n");
259 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
260 if (eax < SVM_CPUID_FUNC) {
261 printk(KERN_INFO "has_svm: can't execute cpuid_8000000a\n");
265 cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
266 if (!(ecx & (1 << SVM_CPUID_FEATURE_SHIFT))) {
267 printk(KERN_DEBUG "has_svm: svm not available\n");
273 static void svm_hardware_disable(void *garbage)
277 wrmsrl(MSR_VM_HSAVE_PA, 0);
278 rdmsrl(MSR_EFER, efer);
279 wrmsrl(MSR_EFER, efer & ~MSR_EFER_SVME_MASK);
282 static void svm_hardware_enable(void *garbage)
285 struct svm_cpu_data *svm_data;
287 struct desc_ptr gdt_descr;
288 struct desc_struct *gdt;
289 int me = raw_smp_processor_id();
292 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
295 svm_data = per_cpu(svm_data, me);
298 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
303 svm_data->asid_generation = 1;
304 svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
305 svm_data->next_asid = svm_data->max_asid + 1;
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 void svm_cpu_uninit(int cpu)
320 struct svm_cpu_data *svm_data
321 = per_cpu(svm_data, raw_smp_processor_id());
326 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
327 __free_page(svm_data->save_area);
331 static int svm_cpu_init(int cpu)
333 struct svm_cpu_data *svm_data;
336 svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
340 svm_data->save_area = alloc_page(GFP_KERNEL);
342 if (!svm_data->save_area)
345 per_cpu(svm_data, cpu) = svm_data;
355 static void set_msr_interception(u32 *msrpm, unsigned msr,
360 for (i = 0; i < NUM_MSR_MAPS; i++) {
361 if (msr >= msrpm_ranges[i] &&
362 msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
363 u32 msr_offset = (i * MSRS_IN_RANGE + msr -
364 msrpm_ranges[i]) * 2;
366 u32 *base = msrpm + (msr_offset / 32);
367 u32 msr_shift = msr_offset % 32;
368 u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
369 *base = (*base & ~(0x3 << msr_shift)) |
377 static void svm_vcpu_init_msrpm(u32 *msrpm)
379 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
382 set_msr_interception(msrpm, MSR_GS_BASE, 1, 1);
383 set_msr_interception(msrpm, MSR_FS_BASE, 1, 1);
384 set_msr_interception(msrpm, MSR_KERNEL_GS_BASE, 1, 1);
385 set_msr_interception(msrpm, MSR_LSTAR, 1, 1);
386 set_msr_interception(msrpm, MSR_CSTAR, 1, 1);
387 set_msr_interception(msrpm, MSR_SYSCALL_MASK, 1, 1);
389 set_msr_interception(msrpm, MSR_K6_STAR, 1, 1);
390 set_msr_interception(msrpm, MSR_IA32_SYSENTER_CS, 1, 1);
391 set_msr_interception(msrpm, MSR_IA32_SYSENTER_ESP, 1, 1);
392 set_msr_interception(msrpm, MSR_IA32_SYSENTER_EIP, 1, 1);
395 static void svm_enable_lbrv(struct vcpu_svm *svm)
397 u32 *msrpm = svm->msrpm;
399 svm->vmcb->control.lbr_ctl = 1;
400 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
401 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
402 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
403 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
406 static void svm_disable_lbrv(struct vcpu_svm *svm)
408 u32 *msrpm = svm->msrpm;
410 svm->vmcb->control.lbr_ctl = 0;
411 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
412 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
413 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
414 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
417 static __init int svm_hardware_setup(void)
420 struct page *iopm_pages;
424 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
429 iopm_va = page_address(iopm_pages);
430 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
431 clear_bit(0x80, iopm_va); /* allow direct access to PC debug port */
432 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
434 if (boot_cpu_has(X86_FEATURE_NX))
435 kvm_enable_efer_bits(EFER_NX);
437 for_each_online_cpu(cpu) {
438 r = svm_cpu_init(cpu);
443 svm_features = cpuid_edx(SVM_CPUID_FUNC);
445 if (!svm_has(SVM_FEATURE_NPT))
448 if (npt_enabled && !npt) {
449 printk(KERN_INFO "kvm: Nested Paging disabled\n");
454 printk(KERN_INFO "kvm: Nested Paging enabled\n");
461 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
466 static __exit void svm_hardware_unsetup(void)
470 for_each_online_cpu(cpu)
473 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
477 static void init_seg(struct vmcb_seg *seg)
480 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
481 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
486 static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
489 seg->attrib = SVM_SELECTOR_P_MASK | type;
494 static void init_vmcb(struct vcpu_svm *svm)
496 struct vmcb_control_area *control = &svm->vmcb->control;
497 struct vmcb_save_area *save = &svm->vmcb->save;
499 control->intercept_cr_read = INTERCEPT_CR0_MASK |
503 control->intercept_cr_write = INTERCEPT_CR0_MASK |
508 control->intercept_dr_read = INTERCEPT_DR0_MASK |
513 control->intercept_dr_write = INTERCEPT_DR0_MASK |
520 control->intercept_exceptions = (1 << PF_VECTOR) |
525 control->intercept = (1ULL << INTERCEPT_INTR) |
526 (1ULL << INTERCEPT_NMI) |
527 (1ULL << INTERCEPT_SMI) |
528 (1ULL << INTERCEPT_CPUID) |
529 (1ULL << INTERCEPT_INVD) |
530 (1ULL << INTERCEPT_HLT) |
531 (1ULL << INTERCEPT_INVLPGA) |
532 (1ULL << INTERCEPT_IOIO_PROT) |
533 (1ULL << INTERCEPT_MSR_PROT) |
534 (1ULL << INTERCEPT_TASK_SWITCH) |
535 (1ULL << INTERCEPT_SHUTDOWN) |
536 (1ULL << INTERCEPT_VMRUN) |
537 (1ULL << INTERCEPT_VMMCALL) |
538 (1ULL << INTERCEPT_VMLOAD) |
539 (1ULL << INTERCEPT_VMSAVE) |
540 (1ULL << INTERCEPT_STGI) |
541 (1ULL << INTERCEPT_CLGI) |
542 (1ULL << INTERCEPT_SKINIT) |
543 (1ULL << INTERCEPT_WBINVD) |
544 (1ULL << INTERCEPT_MONITOR) |
545 (1ULL << INTERCEPT_MWAIT);
547 control->iopm_base_pa = iopm_base;
548 control->msrpm_base_pa = __pa(svm->msrpm);
549 control->tsc_offset = 0;
550 control->int_ctl = V_INTR_MASKING_MASK;
558 save->cs.selector = 0xf000;
559 /* Executable/Readable Code Segment */
560 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
561 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
562 save->cs.limit = 0xffff;
564 * cs.base should really be 0xffff0000, but vmx can't handle that, so
565 * be consistent with it.
567 * Replace when we have real mode working for vmx.
569 save->cs.base = 0xf0000;
571 save->gdtr.limit = 0xffff;
572 save->idtr.limit = 0xffff;
574 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
575 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
577 save->efer = MSR_EFER_SVME_MASK;
578 save->dr6 = 0xffff0ff0;
581 save->rip = 0x0000fff0;
584 * cr0 val on cpu init should be 0x60000010, we enable cpu
585 * cache by default. the orderly way is to enable cache in bios.
587 save->cr0 = 0x00000010 | X86_CR0_PG | X86_CR0_WP;
588 save->cr4 = X86_CR4_PAE;
592 /* Setup VMCB for Nested Paging */
593 control->nested_ctl = 1;
594 control->intercept &= ~(1ULL << INTERCEPT_TASK_SWITCH);
595 control->intercept_exceptions &= ~(1 << PF_VECTOR);
596 control->intercept_cr_read &= ~(INTERCEPT_CR0_MASK|
598 control->intercept_cr_write &= ~(INTERCEPT_CR0_MASK|
600 save->g_pat = 0x0007040600070406ULL;
601 /* enable caching because the QEMU Bios doesn't enable it */
602 save->cr0 = X86_CR0_ET;
606 force_new_asid(&svm->vcpu);
609 static int svm_vcpu_reset(struct kvm_vcpu *vcpu)
611 struct vcpu_svm *svm = to_svm(vcpu);
615 if (vcpu->vcpu_id != 0) {
616 svm->vmcb->save.rip = 0;
617 svm->vmcb->save.cs.base = svm->vcpu.arch.sipi_vector << 12;
618 svm->vmcb->save.cs.selector = svm->vcpu.arch.sipi_vector << 8;
624 static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
626 struct vcpu_svm *svm;
628 struct page *msrpm_pages;
631 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
637 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
641 page = alloc_page(GFP_KERNEL);
648 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
651 svm->msrpm = page_address(msrpm_pages);
652 svm_vcpu_init_msrpm(svm->msrpm);
654 svm->vmcb = page_address(page);
655 clear_page(svm->vmcb);
656 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
657 svm->asid_generation = 0;
658 memset(svm->db_regs, 0, sizeof(svm->db_regs));
662 svm->vcpu.fpu_active = 1;
663 svm->vcpu.arch.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
664 if (svm->vcpu.vcpu_id == 0)
665 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
670 kvm_vcpu_uninit(&svm->vcpu);
672 kmem_cache_free(kvm_vcpu_cache, svm);
677 static void svm_free_vcpu(struct kvm_vcpu *vcpu)
679 struct vcpu_svm *svm = to_svm(vcpu);
681 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
682 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
683 kvm_vcpu_uninit(vcpu);
684 kmem_cache_free(kvm_vcpu_cache, svm);
687 static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
689 struct vcpu_svm *svm = to_svm(vcpu);
692 if (unlikely(cpu != vcpu->cpu)) {
696 * Make sure that the guest sees a monotonically
700 delta = vcpu->arch.host_tsc - tsc_this;
701 svm->vmcb->control.tsc_offset += delta;
703 kvm_migrate_timers(vcpu);
706 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
707 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
710 static void svm_vcpu_put(struct kvm_vcpu *vcpu)
712 struct vcpu_svm *svm = to_svm(vcpu);
715 ++vcpu->stat.host_state_reload;
716 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
717 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
719 rdtscll(vcpu->arch.host_tsc);
722 static void svm_cache_regs(struct kvm_vcpu *vcpu)
724 struct vcpu_svm *svm = to_svm(vcpu);
726 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
727 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
728 vcpu->arch.rip = svm->vmcb->save.rip;
731 static void svm_decache_regs(struct kvm_vcpu *vcpu)
733 struct vcpu_svm *svm = to_svm(vcpu);
734 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
735 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
736 svm->vmcb->save.rip = vcpu->arch.rip;
739 static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
741 return to_svm(vcpu)->vmcb->save.rflags;
744 static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
746 to_svm(vcpu)->vmcb->save.rflags = rflags;
749 static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
751 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
754 case VCPU_SREG_CS: return &save->cs;
755 case VCPU_SREG_DS: return &save->ds;
756 case VCPU_SREG_ES: return &save->es;
757 case VCPU_SREG_FS: return &save->fs;
758 case VCPU_SREG_GS: return &save->gs;
759 case VCPU_SREG_SS: return &save->ss;
760 case VCPU_SREG_TR: return &save->tr;
761 case VCPU_SREG_LDTR: return &save->ldtr;
767 static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
769 struct vmcb_seg *s = svm_seg(vcpu, seg);
774 static void svm_get_segment(struct kvm_vcpu *vcpu,
775 struct kvm_segment *var, int seg)
777 struct vmcb_seg *s = svm_seg(vcpu, seg);
780 var->limit = s->limit;
781 var->selector = s->selector;
782 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
783 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
784 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
785 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
786 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
787 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
788 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
789 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
790 var->unusable = !var->present;
793 static int svm_get_cpl(struct kvm_vcpu *vcpu)
795 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
800 static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
802 struct vcpu_svm *svm = to_svm(vcpu);
804 dt->limit = svm->vmcb->save.idtr.limit;
805 dt->base = svm->vmcb->save.idtr.base;
808 static void svm_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
810 struct vcpu_svm *svm = to_svm(vcpu);
812 svm->vmcb->save.idtr.limit = dt->limit;
813 svm->vmcb->save.idtr.base = dt->base ;
816 static void svm_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
818 struct vcpu_svm *svm = to_svm(vcpu);
820 dt->limit = svm->vmcb->save.gdtr.limit;
821 dt->base = svm->vmcb->save.gdtr.base;
824 static void svm_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
826 struct vcpu_svm *svm = to_svm(vcpu);
828 svm->vmcb->save.gdtr.limit = dt->limit;
829 svm->vmcb->save.gdtr.base = dt->base ;
832 static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
836 static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
838 struct vcpu_svm *svm = to_svm(vcpu);
841 if (vcpu->arch.shadow_efer & EFER_LME) {
842 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
843 vcpu->arch.shadow_efer |= EFER_LMA;
844 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
847 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
848 vcpu->arch.shadow_efer &= ~EFER_LMA;
849 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
856 if ((vcpu->arch.cr0 & X86_CR0_TS) && !(cr0 & X86_CR0_TS)) {
857 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
858 vcpu->fpu_active = 1;
861 vcpu->arch.cr0 = cr0;
862 cr0 |= X86_CR0_PG | X86_CR0_WP;
863 if (!vcpu->fpu_active) {
864 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
869 * re-enable caching here because the QEMU bios
870 * does not do it - this results in some delay at
873 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
874 svm->vmcb->save.cr0 = cr0;
877 static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
879 unsigned long host_cr4_mce = read_cr4() & X86_CR4_MCE;
881 vcpu->arch.cr4 = cr4;
885 to_svm(vcpu)->vmcb->save.cr4 = cr4;
888 static void svm_set_segment(struct kvm_vcpu *vcpu,
889 struct kvm_segment *var, int seg)
891 struct vcpu_svm *svm = to_svm(vcpu);
892 struct vmcb_seg *s = svm_seg(vcpu, seg);
895 s->limit = var->limit;
896 s->selector = var->selector;
900 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
901 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
902 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
903 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
904 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
905 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
906 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
907 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
909 if (seg == VCPU_SREG_CS)
911 = (svm->vmcb->save.cs.attrib
912 >> SVM_SELECTOR_DPL_SHIFT) & 3;
916 static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
921 static int svm_get_irq(struct kvm_vcpu *vcpu)
923 struct vcpu_svm *svm = to_svm(vcpu);
924 u32 exit_int_info = svm->vmcb->control.exit_int_info;
926 if (is_external_interrupt(exit_int_info))
927 return exit_int_info & SVM_EVTINJ_VEC_MASK;
931 static void load_host_msrs(struct kvm_vcpu *vcpu)
934 wrmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
938 static void save_host_msrs(struct kvm_vcpu *vcpu)
941 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
945 static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *svm_data)
947 if (svm_data->next_asid > svm_data->max_asid) {
948 ++svm_data->asid_generation;
949 svm_data->next_asid = 1;
950 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
953 svm->vcpu.cpu = svm_data->cpu;
954 svm->asid_generation = svm_data->asid_generation;
955 svm->vmcb->control.asid = svm_data->next_asid++;
958 static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
960 unsigned long val = to_svm(vcpu)->db_regs[dr];
961 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
965 static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
968 struct vcpu_svm *svm = to_svm(vcpu);
972 if (svm->vmcb->save.dr7 & DR7_GD_MASK) {
973 svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
974 svm->vmcb->save.dr6 |= DR6_BD_MASK;
975 *exception = DB_VECTOR;
981 svm->db_regs[dr] = value;
984 if (vcpu->arch.cr4 & X86_CR4_DE) {
985 *exception = UD_VECTOR;
989 if (value & ~((1ULL << 32) - 1)) {
990 *exception = GP_VECTOR;
993 svm->vmcb->save.dr7 = value;
997 printk(KERN_DEBUG "%s: unexpected dr %u\n",
999 *exception = UD_VECTOR;
1004 static int pf_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1006 u32 exit_int_info = svm->vmcb->control.exit_int_info;
1007 struct kvm *kvm = svm->vcpu.kvm;
1011 if (!irqchip_in_kernel(kvm) &&
1012 is_external_interrupt(exit_int_info))
1013 push_irq(&svm->vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
1015 fault_address = svm->vmcb->control.exit_info_2;
1016 error_code = svm->vmcb->control.exit_info_1;
1019 KVMTRACE_3D(PAGE_FAULT, &svm->vcpu, error_code,
1020 (u32)fault_address, (u32)(fault_address >> 32),
1023 KVMTRACE_3D(TDP_FAULT, &svm->vcpu, error_code,
1024 (u32)fault_address, (u32)(fault_address >> 32),
1027 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code);
1030 static int ud_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1034 er = emulate_instruction(&svm->vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
1035 if (er != EMULATE_DONE)
1036 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
1040 static int nm_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1042 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
1043 if (!(svm->vcpu.arch.cr0 & X86_CR0_TS))
1044 svm->vmcb->save.cr0 &= ~X86_CR0_TS;
1045 svm->vcpu.fpu_active = 1;
1050 static int mc_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1053 * On an #MC intercept the MCE handler is not called automatically in
1054 * the host. So do it by hand here.
1058 /* not sure if we ever come back to this point */
1063 static int shutdown_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1066 * VMCB is undefined after a SHUTDOWN intercept
1067 * so reinitialize it.
1069 clear_page(svm->vmcb);
1072 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1076 static int io_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1078 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
1079 int size, down, in, string, rep;
1082 ++svm->vcpu.stat.io_exits;
1084 svm->next_rip = svm->vmcb->control.exit_info_2;
1086 string = (io_info & SVM_IOIO_STR_MASK) != 0;
1089 if (emulate_instruction(&svm->vcpu,
1090 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
1095 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1096 port = io_info >> 16;
1097 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
1098 rep = (io_info & SVM_IOIO_REP_MASK) != 0;
1099 down = (svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
1101 return kvm_emulate_pio(&svm->vcpu, kvm_run, in, size, port);
1104 static int nmi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1106 KVMTRACE_0D(NMI, &svm->vcpu, handler);
1110 static int intr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1112 ++svm->vcpu.stat.irq_exits;
1113 KVMTRACE_0D(INTR, &svm->vcpu, handler);
1117 static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1122 static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1124 svm->next_rip = svm->vmcb->save.rip + 1;
1125 skip_emulated_instruction(&svm->vcpu);
1126 return kvm_emulate_halt(&svm->vcpu);
1129 static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1131 svm->next_rip = svm->vmcb->save.rip + 3;
1132 skip_emulated_instruction(&svm->vcpu);
1133 kvm_emulate_hypercall(&svm->vcpu);
1137 static int invalid_op_interception(struct vcpu_svm *svm,
1138 struct kvm_run *kvm_run)
1140 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
1144 static int task_switch_interception(struct vcpu_svm *svm,
1145 struct kvm_run *kvm_run)
1149 tss_selector = (u16)svm->vmcb->control.exit_info_1;
1150 if (svm->vmcb->control.exit_info_2 &
1151 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
1152 return kvm_task_switch(&svm->vcpu, tss_selector,
1154 if (svm->vmcb->control.exit_info_2 &
1155 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
1156 return kvm_task_switch(&svm->vcpu, tss_selector,
1158 return kvm_task_switch(&svm->vcpu, tss_selector, TASK_SWITCH_CALL);
1161 static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1163 svm->next_rip = svm->vmcb->save.rip + 2;
1164 kvm_emulate_cpuid(&svm->vcpu);
1168 static int emulate_on_interception(struct vcpu_svm *svm,
1169 struct kvm_run *kvm_run)
1171 if (emulate_instruction(&svm->vcpu, NULL, 0, 0, 0) != EMULATE_DONE)
1172 pr_unimpl(&svm->vcpu, "%s: failed\n", __func__);
1176 static int cr8_write_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1178 emulate_instruction(&svm->vcpu, NULL, 0, 0, 0);
1179 if (irqchip_in_kernel(svm->vcpu.kvm))
1181 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1185 static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1187 struct vcpu_svm *svm = to_svm(vcpu);
1190 case MSR_IA32_TIME_STAMP_COUNTER: {
1194 *data = svm->vmcb->control.tsc_offset + tsc;
1198 *data = svm->vmcb->save.star;
1200 #ifdef CONFIG_X86_64
1202 *data = svm->vmcb->save.lstar;
1205 *data = svm->vmcb->save.cstar;
1207 case MSR_KERNEL_GS_BASE:
1208 *data = svm->vmcb->save.kernel_gs_base;
1210 case MSR_SYSCALL_MASK:
1211 *data = svm->vmcb->save.sfmask;
1214 case MSR_IA32_SYSENTER_CS:
1215 *data = svm->vmcb->save.sysenter_cs;
1217 case MSR_IA32_SYSENTER_EIP:
1218 *data = svm->vmcb->save.sysenter_eip;
1220 case MSR_IA32_SYSENTER_ESP:
1221 *data = svm->vmcb->save.sysenter_esp;
1223 /* Nobody will change the following 5 values in the VMCB so
1224 we can safely return them on rdmsr. They will always be 0
1225 until LBRV is implemented. */
1226 case MSR_IA32_DEBUGCTLMSR:
1227 *data = svm->vmcb->save.dbgctl;
1229 case MSR_IA32_LASTBRANCHFROMIP:
1230 *data = svm->vmcb->save.br_from;
1232 case MSR_IA32_LASTBRANCHTOIP:
1233 *data = svm->vmcb->save.br_to;
1235 case MSR_IA32_LASTINTFROMIP:
1236 *data = svm->vmcb->save.last_excp_from;
1238 case MSR_IA32_LASTINTTOIP:
1239 *data = svm->vmcb->save.last_excp_to;
1242 return kvm_get_msr_common(vcpu, ecx, data);
1247 static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1249 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
1252 if (svm_get_msr(&svm->vcpu, ecx, &data))
1253 kvm_inject_gp(&svm->vcpu, 0);
1255 KVMTRACE_3D(MSR_READ, &svm->vcpu, ecx, (u32)data,
1256 (u32)(data >> 32), handler);
1258 svm->vmcb->save.rax = data & 0xffffffff;
1259 svm->vcpu.arch.regs[VCPU_REGS_RDX] = data >> 32;
1260 svm->next_rip = svm->vmcb->save.rip + 2;
1261 skip_emulated_instruction(&svm->vcpu);
1266 static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1268 struct vcpu_svm *svm = to_svm(vcpu);
1271 case MSR_IA32_TIME_STAMP_COUNTER: {
1275 svm->vmcb->control.tsc_offset = data - tsc;
1279 svm->vmcb->save.star = data;
1281 #ifdef CONFIG_X86_64
1283 svm->vmcb->save.lstar = data;
1286 svm->vmcb->save.cstar = data;
1288 case MSR_KERNEL_GS_BASE:
1289 svm->vmcb->save.kernel_gs_base = data;
1291 case MSR_SYSCALL_MASK:
1292 svm->vmcb->save.sfmask = data;
1295 case MSR_IA32_SYSENTER_CS:
1296 svm->vmcb->save.sysenter_cs = data;
1298 case MSR_IA32_SYSENTER_EIP:
1299 svm->vmcb->save.sysenter_eip = data;
1301 case MSR_IA32_SYSENTER_ESP:
1302 svm->vmcb->save.sysenter_esp = data;
1304 case MSR_IA32_DEBUGCTLMSR:
1305 if (!svm_has(SVM_FEATURE_LBRV)) {
1306 pr_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
1310 if (data & DEBUGCTL_RESERVED_BITS)
1313 svm->vmcb->save.dbgctl = data;
1314 if (data & (1ULL<<0))
1315 svm_enable_lbrv(svm);
1317 svm_disable_lbrv(svm);
1319 case MSR_K7_EVNTSEL0:
1320 case MSR_K7_EVNTSEL1:
1321 case MSR_K7_EVNTSEL2:
1322 case MSR_K7_EVNTSEL3:
1323 case MSR_K7_PERFCTR0:
1324 case MSR_K7_PERFCTR1:
1325 case MSR_K7_PERFCTR2:
1326 case MSR_K7_PERFCTR3:
1328 * Just discard all writes to the performance counters; this
1329 * should keep both older linux and windows 64-bit guests
1332 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", ecx, data);
1336 return kvm_set_msr_common(vcpu, ecx, data);
1341 static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1343 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
1344 u64 data = (svm->vmcb->save.rax & -1u)
1345 | ((u64)(svm->vcpu.arch.regs[VCPU_REGS_RDX] & -1u) << 32);
1347 KVMTRACE_3D(MSR_WRITE, &svm->vcpu, ecx, (u32)data, (u32)(data >> 32),
1350 svm->next_rip = svm->vmcb->save.rip + 2;
1351 if (svm_set_msr(&svm->vcpu, ecx, data))
1352 kvm_inject_gp(&svm->vcpu, 0);
1354 skip_emulated_instruction(&svm->vcpu);
1358 static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1360 if (svm->vmcb->control.exit_info_1)
1361 return wrmsr_interception(svm, kvm_run);
1363 return rdmsr_interception(svm, kvm_run);
1366 static int interrupt_window_interception(struct vcpu_svm *svm,
1367 struct kvm_run *kvm_run)
1369 KVMTRACE_0D(PEND_INTR, &svm->vcpu, handler);
1371 svm->vmcb->control.intercept &= ~(1ULL << INTERCEPT_VINTR);
1372 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
1374 * If the user space waits to inject interrupts, exit as soon as
1377 if (kvm_run->request_interrupt_window &&
1378 !svm->vcpu.arch.irq_summary) {
1379 ++svm->vcpu.stat.irq_window_exits;
1380 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1387 static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
1388 struct kvm_run *kvm_run) = {
1389 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1390 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1391 [SVM_EXIT_READ_CR4] = emulate_on_interception,
1392 [SVM_EXIT_READ_CR8] = emulate_on_interception,
1394 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1395 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1396 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1397 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
1398 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1399 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1400 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1401 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1402 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1403 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1404 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1405 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1406 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1407 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
1408 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
1409 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
1410 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
1411 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
1412 [SVM_EXIT_INTR] = intr_interception,
1413 [SVM_EXIT_NMI] = nmi_interception,
1414 [SVM_EXIT_SMI] = nop_on_interception,
1415 [SVM_EXIT_INIT] = nop_on_interception,
1416 [SVM_EXIT_VINTR] = interrupt_window_interception,
1417 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1418 [SVM_EXIT_CPUID] = cpuid_interception,
1419 [SVM_EXIT_INVD] = emulate_on_interception,
1420 [SVM_EXIT_HLT] = halt_interception,
1421 [SVM_EXIT_INVLPG] = emulate_on_interception,
1422 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1423 [SVM_EXIT_IOIO] = io_interception,
1424 [SVM_EXIT_MSR] = msr_interception,
1425 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
1426 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
1427 [SVM_EXIT_VMRUN] = invalid_op_interception,
1428 [SVM_EXIT_VMMCALL] = vmmcall_interception,
1429 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1430 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1431 [SVM_EXIT_STGI] = invalid_op_interception,
1432 [SVM_EXIT_CLGI] = invalid_op_interception,
1433 [SVM_EXIT_SKINIT] = invalid_op_interception,
1434 [SVM_EXIT_WBINVD] = emulate_on_interception,
1435 [SVM_EXIT_MONITOR] = invalid_op_interception,
1436 [SVM_EXIT_MWAIT] = invalid_op_interception,
1437 [SVM_EXIT_NPF] = pf_interception,
1440 static int handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
1442 struct vcpu_svm *svm = to_svm(vcpu);
1443 u32 exit_code = svm->vmcb->control.exit_code;
1445 KVMTRACE_3D(VMEXIT, vcpu, exit_code, (u32)svm->vmcb->save.rip,
1446 (u32)((u64)svm->vmcb->save.rip >> 32), entryexit);
1450 if ((vcpu->arch.cr0 ^ svm->vmcb->save.cr0) & X86_CR0_PG) {
1451 svm_set_cr0(vcpu, svm->vmcb->save.cr0);
1454 vcpu->arch.cr0 = svm->vmcb->save.cr0;
1455 vcpu->arch.cr3 = svm->vmcb->save.cr3;
1456 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1457 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1458 kvm_inject_gp(vcpu, 0);
1463 kvm_mmu_reset_context(vcpu);
1470 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
1471 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1472 kvm_run->fail_entry.hardware_entry_failure_reason
1473 = svm->vmcb->control.exit_code;
1477 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
1478 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
1479 exit_code != SVM_EXIT_NPF)
1480 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1482 __func__, svm->vmcb->control.exit_int_info,
1485 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
1486 || !svm_exit_handlers[exit_code]) {
1487 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1488 kvm_run->hw.hardware_exit_reason = exit_code;
1492 return svm_exit_handlers[exit_code](svm, kvm_run);
1495 static void reload_tss(struct kvm_vcpu *vcpu)
1497 int cpu = raw_smp_processor_id();
1499 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1500 svm_data->tss_desc->type = 9; /* available 32/64-bit TSS */
1504 static void pre_svm_run(struct vcpu_svm *svm)
1506 int cpu = raw_smp_processor_id();
1508 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1510 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
1511 if (svm->vcpu.cpu != cpu ||
1512 svm->asid_generation != svm_data->asid_generation)
1513 new_asid(svm, svm_data);
1517 static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
1519 struct vmcb_control_area *control;
1521 KVMTRACE_1D(INJ_VIRQ, &svm->vcpu, (u32)irq, handler);
1523 control = &svm->vmcb->control;
1524 control->int_vector = irq;
1525 control->int_ctl &= ~V_INTR_PRIO_MASK;
1526 control->int_ctl |= V_IRQ_MASK |
1527 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1530 static void svm_set_irq(struct kvm_vcpu *vcpu, int irq)
1532 struct vcpu_svm *svm = to_svm(vcpu);
1534 svm_inject_irq(svm, irq);
1537 static void update_cr8_intercept(struct kvm_vcpu *vcpu)
1539 struct vcpu_svm *svm = to_svm(vcpu);
1540 struct vmcb *vmcb = svm->vmcb;
1543 if (!irqchip_in_kernel(vcpu->kvm) || vcpu->arch.apic->vapic_addr)
1546 vmcb->control.intercept_cr_write &= ~INTERCEPT_CR8_MASK;
1548 max_irr = kvm_lapic_find_highest_irr(vcpu);
1552 tpr = kvm_lapic_get_cr8(vcpu) << 4;
1554 if (tpr >= (max_irr & 0xf0))
1555 vmcb->control.intercept_cr_write |= INTERCEPT_CR8_MASK;
1558 static void svm_intr_assist(struct kvm_vcpu *vcpu)
1560 struct vcpu_svm *svm = to_svm(vcpu);
1561 struct vmcb *vmcb = svm->vmcb;
1562 int intr_vector = -1;
1564 if ((vmcb->control.exit_int_info & SVM_EVTINJ_VALID) &&
1565 ((vmcb->control.exit_int_info & SVM_EVTINJ_TYPE_MASK) == 0)) {
1566 intr_vector = vmcb->control.exit_int_info &
1567 SVM_EVTINJ_VEC_MASK;
1568 vmcb->control.exit_int_info = 0;
1569 svm_inject_irq(svm, intr_vector);
1573 if (vmcb->control.int_ctl & V_IRQ_MASK)
1576 if (!kvm_cpu_has_interrupt(vcpu))
1579 if (!(vmcb->save.rflags & X86_EFLAGS_IF) ||
1580 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
1581 (vmcb->control.event_inj & SVM_EVTINJ_VALID)) {
1582 /* unable to deliver irq, set pending irq */
1583 vmcb->control.intercept |= (1ULL << INTERCEPT_VINTR);
1584 svm_inject_irq(svm, 0x0);
1587 /* Okay, we can deliver the interrupt: grab it and update PIC state. */
1588 intr_vector = kvm_cpu_get_interrupt(vcpu);
1589 svm_inject_irq(svm, intr_vector);
1590 kvm_timer_intr_post(vcpu, intr_vector);
1592 update_cr8_intercept(vcpu);
1595 static void kvm_reput_irq(struct vcpu_svm *svm)
1597 struct vmcb_control_area *control = &svm->vmcb->control;
1599 if ((control->int_ctl & V_IRQ_MASK)
1600 && !irqchip_in_kernel(svm->vcpu.kvm)) {
1601 control->int_ctl &= ~V_IRQ_MASK;
1602 push_irq(&svm->vcpu, control->int_vector);
1605 svm->vcpu.arch.interrupt_window_open =
1606 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1609 static void svm_do_inject_vector(struct vcpu_svm *svm)
1611 struct kvm_vcpu *vcpu = &svm->vcpu;
1612 int word_index = __ffs(vcpu->arch.irq_summary);
1613 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
1614 int irq = word_index * BITS_PER_LONG + bit_index;
1616 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
1617 if (!vcpu->arch.irq_pending[word_index])
1618 clear_bit(word_index, &vcpu->arch.irq_summary);
1619 svm_inject_irq(svm, irq);
1622 static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1623 struct kvm_run *kvm_run)
1625 struct vcpu_svm *svm = to_svm(vcpu);
1626 struct vmcb_control_area *control = &svm->vmcb->control;
1628 svm->vcpu.arch.interrupt_window_open =
1629 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
1630 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
1632 if (svm->vcpu.arch.interrupt_window_open && svm->vcpu.arch.irq_summary)
1634 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1636 svm_do_inject_vector(svm);
1639 * Interrupts blocked. Wait for unblock.
1641 if (!svm->vcpu.arch.interrupt_window_open &&
1642 (svm->vcpu.arch.irq_summary || kvm_run->request_interrupt_window))
1643 control->intercept |= 1ULL << INTERCEPT_VINTR;
1645 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1648 static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
1653 static void save_db_regs(unsigned long *db_regs)
1655 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1656 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1657 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1658 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
1661 static void load_db_regs(unsigned long *db_regs)
1663 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1664 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1665 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1666 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
1669 static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1671 force_new_asid(vcpu);
1674 static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
1678 static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
1680 struct vcpu_svm *svm = to_svm(vcpu);
1682 if (!(svm->vmcb->control.intercept_cr_write & INTERCEPT_CR8_MASK)) {
1683 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
1684 kvm_lapic_set_tpr(vcpu, cr8);
1688 static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
1690 struct vcpu_svm *svm = to_svm(vcpu);
1693 if (!irqchip_in_kernel(vcpu->kvm))
1696 cr8 = kvm_get_cr8(vcpu);
1697 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
1698 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
1701 static void svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1703 struct vcpu_svm *svm = to_svm(vcpu);
1710 sync_lapic_to_cr8(vcpu);
1712 save_host_msrs(vcpu);
1713 fs_selector = kvm_read_fs();
1714 gs_selector = kvm_read_gs();
1715 ldt_selector = kvm_read_ldt();
1716 svm->host_cr2 = kvm_read_cr2();
1717 svm->host_dr6 = read_dr6();
1718 svm->host_dr7 = read_dr7();
1719 svm->vmcb->save.cr2 = vcpu->arch.cr2;
1720 /* required for live migration with NPT */
1722 svm->vmcb->save.cr3 = vcpu->arch.cr3;
1724 if (svm->vmcb->save.dr7 & 0xff) {
1726 save_db_regs(svm->host_db_regs);
1727 load_db_regs(svm->db_regs);
1735 #ifdef CONFIG_X86_64
1741 #ifdef CONFIG_X86_64
1742 "mov %c[rbx](%[svm]), %%rbx \n\t"
1743 "mov %c[rcx](%[svm]), %%rcx \n\t"
1744 "mov %c[rdx](%[svm]), %%rdx \n\t"
1745 "mov %c[rsi](%[svm]), %%rsi \n\t"
1746 "mov %c[rdi](%[svm]), %%rdi \n\t"
1747 "mov %c[rbp](%[svm]), %%rbp \n\t"
1748 "mov %c[r8](%[svm]), %%r8 \n\t"
1749 "mov %c[r9](%[svm]), %%r9 \n\t"
1750 "mov %c[r10](%[svm]), %%r10 \n\t"
1751 "mov %c[r11](%[svm]), %%r11 \n\t"
1752 "mov %c[r12](%[svm]), %%r12 \n\t"
1753 "mov %c[r13](%[svm]), %%r13 \n\t"
1754 "mov %c[r14](%[svm]), %%r14 \n\t"
1755 "mov %c[r15](%[svm]), %%r15 \n\t"
1757 "mov %c[rbx](%[svm]), %%ebx \n\t"
1758 "mov %c[rcx](%[svm]), %%ecx \n\t"
1759 "mov %c[rdx](%[svm]), %%edx \n\t"
1760 "mov %c[rsi](%[svm]), %%esi \n\t"
1761 "mov %c[rdi](%[svm]), %%edi \n\t"
1762 "mov %c[rbp](%[svm]), %%ebp \n\t"
1765 #ifdef CONFIG_X86_64
1766 /* Enter guest mode */
1768 "mov %c[vmcb](%[svm]), %%rax \n\t"
1769 __ex(SVM_VMLOAD) "\n\t"
1770 __ex(SVM_VMRUN) "\n\t"
1771 __ex(SVM_VMSAVE) "\n\t"
1774 /* Enter guest mode */
1776 "mov %c[vmcb](%[svm]), %%eax \n\t"
1777 __ex(SVM_VMLOAD) "\n\t"
1778 __ex(SVM_VMRUN) "\n\t"
1779 __ex(SVM_VMSAVE) "\n\t"
1783 /* Save guest registers, load host registers */
1784 #ifdef CONFIG_X86_64
1785 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1786 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1787 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1788 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1789 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1790 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1791 "mov %%r8, %c[r8](%[svm]) \n\t"
1792 "mov %%r9, %c[r9](%[svm]) \n\t"
1793 "mov %%r10, %c[r10](%[svm]) \n\t"
1794 "mov %%r11, %c[r11](%[svm]) \n\t"
1795 "mov %%r12, %c[r12](%[svm]) \n\t"
1796 "mov %%r13, %c[r13](%[svm]) \n\t"
1797 "mov %%r14, %c[r14](%[svm]) \n\t"
1798 "mov %%r15, %c[r15](%[svm]) \n\t"
1802 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1803 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1804 "mov %%edx, %c[rdx](%[svm]) \n\t"
1805 "mov %%esi, %c[rsi](%[svm]) \n\t"
1806 "mov %%edi, %c[rdi](%[svm]) \n\t"
1807 "mov %%ebp, %c[rbp](%[svm]) \n\t"
1813 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
1814 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
1815 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
1816 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
1817 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
1818 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
1819 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
1820 #ifdef CONFIG_X86_64
1821 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
1822 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
1823 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
1824 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
1825 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
1826 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
1827 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
1828 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
1831 #ifdef CONFIG_X86_64
1832 , "rbx", "rcx", "rdx", "rsi", "rdi"
1833 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
1835 , "ebx", "ecx", "edx" , "esi", "edi"
1839 if ((svm->vmcb->save.dr7 & 0xff))
1840 load_db_regs(svm->host_db_regs);
1842 vcpu->arch.cr2 = svm->vmcb->save.cr2;
1844 write_dr6(svm->host_dr6);
1845 write_dr7(svm->host_dr7);
1846 kvm_write_cr2(svm->host_cr2);
1848 kvm_load_fs(fs_selector);
1849 kvm_load_gs(gs_selector);
1850 kvm_load_ldt(ldt_selector);
1851 load_host_msrs(vcpu);
1855 local_irq_disable();
1859 sync_cr8_to_lapic(vcpu);
1864 static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1866 struct vcpu_svm *svm = to_svm(vcpu);
1869 svm->vmcb->control.nested_cr3 = root;
1870 force_new_asid(vcpu);
1874 svm->vmcb->save.cr3 = root;
1875 force_new_asid(vcpu);
1877 if (vcpu->fpu_active) {
1878 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
1879 svm->vmcb->save.cr0 |= X86_CR0_TS;
1880 vcpu->fpu_active = 0;
1884 static int is_disabled(void)
1888 rdmsrl(MSR_VM_CR, vm_cr);
1889 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
1896 svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1899 * Patch in the VMMCALL instruction:
1901 hypercall[0] = 0x0f;
1902 hypercall[1] = 0x01;
1903 hypercall[2] = 0xd9;
1906 static void svm_check_processor_compat(void *rtn)
1911 static bool svm_cpu_has_accelerated_tpr(void)
1916 static int get_npt_level(void)
1918 #ifdef CONFIG_X86_64
1919 return PT64_ROOT_LEVEL;
1921 return PT32E_ROOT_LEVEL;
1925 static struct kvm_x86_ops svm_x86_ops = {
1926 .cpu_has_kvm_support = has_svm,
1927 .disabled_by_bios = is_disabled,
1928 .hardware_setup = svm_hardware_setup,
1929 .hardware_unsetup = svm_hardware_unsetup,
1930 .check_processor_compatibility = svm_check_processor_compat,
1931 .hardware_enable = svm_hardware_enable,
1932 .hardware_disable = svm_hardware_disable,
1933 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
1935 .vcpu_create = svm_create_vcpu,
1936 .vcpu_free = svm_free_vcpu,
1937 .vcpu_reset = svm_vcpu_reset,
1939 .prepare_guest_switch = svm_prepare_guest_switch,
1940 .vcpu_load = svm_vcpu_load,
1941 .vcpu_put = svm_vcpu_put,
1943 .set_guest_debug = svm_guest_debug,
1944 .get_msr = svm_get_msr,
1945 .set_msr = svm_set_msr,
1946 .get_segment_base = svm_get_segment_base,
1947 .get_segment = svm_get_segment,
1948 .set_segment = svm_set_segment,
1949 .get_cpl = svm_get_cpl,
1950 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
1951 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
1952 .set_cr0 = svm_set_cr0,
1953 .set_cr3 = svm_set_cr3,
1954 .set_cr4 = svm_set_cr4,
1955 .set_efer = svm_set_efer,
1956 .get_idt = svm_get_idt,
1957 .set_idt = svm_set_idt,
1958 .get_gdt = svm_get_gdt,
1959 .set_gdt = svm_set_gdt,
1960 .get_dr = svm_get_dr,
1961 .set_dr = svm_set_dr,
1962 .cache_regs = svm_cache_regs,
1963 .decache_regs = svm_decache_regs,
1964 .get_rflags = svm_get_rflags,
1965 .set_rflags = svm_set_rflags,
1967 .tlb_flush = svm_flush_tlb,
1969 .run = svm_vcpu_run,
1970 .handle_exit = handle_exit,
1971 .skip_emulated_instruction = skip_emulated_instruction,
1972 .patch_hypercall = svm_patch_hypercall,
1973 .get_irq = svm_get_irq,
1974 .set_irq = svm_set_irq,
1975 .queue_exception = svm_queue_exception,
1976 .exception_injected = svm_exception_injected,
1977 .inject_pending_irq = svm_intr_assist,
1978 .inject_pending_vectors = do_interrupt_requests,
1980 .set_tss_addr = svm_set_tss_addr,
1981 .get_tdp_level = get_npt_level,
1984 static int __init svm_init(void)
1986 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
1990 static void __exit svm_exit(void)
1995 module_init(svm_init)
1996 module_exit(svm_exit)