]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/kvm/svm.c
KVM: SVM: enable LBRV virtualization if available
[net-next-2.6.git] / drivers / kvm / svm.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
7 *
8 * Authors:
9 * Yaniv Kamay <yaniv@qumranet.com>
10 * Avi Kivity <avi@qumranet.com>
11 *
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
14 *
15 */
16
17#include <linux/module.h>
9d8f549d 18#include <linux/kernel.h>
6aa8b732
AK
19#include <linux/vmalloc.h>
20#include <linux/highmem.h>
07031e14 21#include <linux/profile.h>
6aa8b732
AK
22#include <asm/desc.h>
23
24#include "kvm_svm.h"
25#include "x86_emulate.h"
26
27MODULE_AUTHOR("Qumranet");
28MODULE_LICENSE("GPL");
29
30#define IOPM_ALLOC_ORDER 2
31#define MSRPM_ALLOC_ORDER 1
32
33#define DB_VECTOR 1
34#define UD_VECTOR 6
35#define GP_VECTOR 13
36
37#define DR7_GD_MASK (1 << 13)
38#define DR6_BD_MASK (1 << 13)
39#define CR4_DE_MASK (1UL << 3)
40
41#define SEG_TYPE_LDT 2
42#define SEG_TYPE_BUSY_TSS16 3
43
44#define KVM_EFER_LMA (1 << 10)
45#define KVM_EFER_LME (1 << 8)
46
80b7706e
JR
47#define SVM_FEATURE_NPT (1 << 0)
48#define SVM_FEATURE_LBRV (1 << 1)
49#define SVM_DEATURE_SVML (1 << 2)
50
6aa8b732
AK
51unsigned long iopm_base;
52unsigned long msrpm_base;
53
54struct kvm_ldttss_desc {
55 u16 limit0;
56 u16 base0;
57 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
58 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
59 u32 base3;
60 u32 zero1;
61} __attribute__((packed));
62
63struct svm_cpu_data {
64 int cpu;
65
66 uint64_t asid_generation;
67 uint32_t max_asid;
68 uint32_t next_asid;
69 struct kvm_ldttss_desc *tss_desc;
70
71 struct page *save_area;
72};
73
74static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
80b7706e 75static uint32_t svm_features;
6aa8b732
AK
76
77struct svm_init_data {
78 int cpu;
79 int r;
80};
81
82static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
83
9d8f549d 84#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
85#define MSRS_RANGE_SIZE 2048
86#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
87
88#define MAX_INST_SIZE 15
89
80b7706e
JR
90static inline u32 svm_has(u32 feat)
91{
92 return svm_features & feat;
93}
94
6aa8b732
AK
95static unsigned get_addr_size(struct kvm_vcpu *vcpu)
96{
97 struct vmcb_save_area *sa = &vcpu->svm->vmcb->save;
98 u16 cs_attrib;
99
100 if (!(sa->cr0 & CR0_PE_MASK) || (sa->rflags & X86_EFLAGS_VM))
101 return 2;
102
103 cs_attrib = sa->cs.attrib;
104
105 return (cs_attrib & SVM_SELECTOR_L_MASK) ? 8 :
106 (cs_attrib & SVM_SELECTOR_DB_MASK) ? 4 : 2;
107}
108
109static inline u8 pop_irq(struct kvm_vcpu *vcpu)
110{
111 int word_index = __ffs(vcpu->irq_summary);
112 int bit_index = __ffs(vcpu->irq_pending[word_index]);
113 int irq = word_index * BITS_PER_LONG + bit_index;
114
115 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
116 if (!vcpu->irq_pending[word_index])
117 clear_bit(word_index, &vcpu->irq_summary);
118 return irq;
119}
120
121static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
122{
123 set_bit(irq, vcpu->irq_pending);
124 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
125}
126
127static inline void clgi(void)
128{
129 asm volatile (SVM_CLGI);
130}
131
132static inline void stgi(void)
133{
134 asm volatile (SVM_STGI);
135}
136
137static inline void invlpga(unsigned long addr, u32 asid)
138{
139 asm volatile (SVM_INVLPGA :: "a"(addr), "c"(asid));
140}
141
142static inline unsigned long kvm_read_cr2(void)
143{
144 unsigned long cr2;
145
146 asm volatile ("mov %%cr2, %0" : "=r" (cr2));
147 return cr2;
148}
149
150static inline void kvm_write_cr2(unsigned long val)
151{
152 asm volatile ("mov %0, %%cr2" :: "r" (val));
153}
154
155static inline unsigned long read_dr6(void)
156{
157 unsigned long dr6;
158
159 asm volatile ("mov %%dr6, %0" : "=r" (dr6));
160 return dr6;
161}
162
163static inline void write_dr6(unsigned long val)
164{
165 asm volatile ("mov %0, %%dr6" :: "r" (val));
166}
167
168static inline unsigned long read_dr7(void)
169{
170 unsigned long dr7;
171
172 asm volatile ("mov %%dr7, %0" : "=r" (dr7));
173 return dr7;
174}
175
176static inline void write_dr7(unsigned long val)
177{
178 asm volatile ("mov %0, %%dr7" :: "r" (val));
179}
180
6aa8b732
AK
181static inline void force_new_asid(struct kvm_vcpu *vcpu)
182{
183 vcpu->svm->asid_generation--;
184}
185
186static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
187{
188 force_new_asid(vcpu);
189}
190
191static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
192{
193 if (!(efer & KVM_EFER_LMA))
194 efer &= ~KVM_EFER_LME;
195
196 vcpu->svm->vmcb->save.efer = efer | MSR_EFER_SVME_MASK;
197 vcpu->shadow_efer = efer;
198}
199
200static void svm_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
201{
202 vcpu->svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
203 SVM_EVTINJ_VALID_ERR |
204 SVM_EVTINJ_TYPE_EXEPT |
205 GP_VECTOR;
206 vcpu->svm->vmcb->control.event_inj_err = error_code;
207}
208
209static void inject_ud(struct kvm_vcpu *vcpu)
210{
211 vcpu->svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
212 SVM_EVTINJ_TYPE_EXEPT |
213 UD_VECTOR;
214}
215
6aa8b732
AK
216static int is_page_fault(uint32_t info)
217{
218 info &= SVM_EVTINJ_VEC_MASK | SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
219 return info == (PF_VECTOR | SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_EXEPT);
220}
221
222static int is_external_interrupt(u32 info)
223{
224 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
225 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
226}
227
228static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
229{
230 if (!vcpu->svm->next_rip) {
231 printk(KERN_DEBUG "%s: NOP\n", __FUNCTION__);
232 return;
233 }
234 if (vcpu->svm->next_rip - vcpu->svm->vmcb->save.rip > 15) {
235 printk(KERN_ERR "%s: ip 0x%llx next 0x%llx\n",
236 __FUNCTION__,
237 vcpu->svm->vmcb->save.rip,
238 vcpu->svm->next_rip);
239 }
240
241 vcpu->rip = vcpu->svm->vmcb->save.rip = vcpu->svm->next_rip;
242 vcpu->svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
c1150d8c
DL
243
244 vcpu->interrupt_window_open = 1;
6aa8b732
AK
245}
246
247static int has_svm(void)
248{
249 uint32_t eax, ebx, ecx, edx;
250
1e885461 251 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
6aa8b732
AK
252 printk(KERN_INFO "has_svm: not amd\n");
253 return 0;
254 }
255
256 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
257 if (eax < SVM_CPUID_FUNC) {
258 printk(KERN_INFO "has_svm: can't execute cpuid_8000000a\n");
259 return 0;
260 }
261
262 cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
263 if (!(ecx & (1 << SVM_CPUID_FEATURE_SHIFT))) {
264 printk(KERN_DEBUG "has_svm: svm not available\n");
265 return 0;
266 }
267 return 1;
268}
269
270static void svm_hardware_disable(void *garbage)
271{
272 struct svm_cpu_data *svm_data
273 = per_cpu(svm_data, raw_smp_processor_id());
274
275 if (svm_data) {
276 uint64_t efer;
277
278 wrmsrl(MSR_VM_HSAVE_PA, 0);
279 rdmsrl(MSR_EFER, efer);
280 wrmsrl(MSR_EFER, efer & ~MSR_EFER_SVME_MASK);
8b6d44c7 281 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
6aa8b732
AK
282 __free_page(svm_data->save_area);
283 kfree(svm_data);
284 }
285}
286
287static void svm_hardware_enable(void *garbage)
288{
289
290 struct svm_cpu_data *svm_data;
291 uint64_t efer;
05b3e0c2 292#ifdef CONFIG_X86_64
6aa8b732
AK
293 struct desc_ptr gdt_descr;
294#else
295 struct Xgt_desc_struct gdt_descr;
296#endif
297 struct desc_struct *gdt;
298 int me = raw_smp_processor_id();
299
300 if (!has_svm()) {
301 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
302 return;
303 }
304 svm_data = per_cpu(svm_data, me);
305
306 if (!svm_data) {
307 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
308 me);
309 return;
310 }
311
312 svm_data->asid_generation = 1;
313 svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
314 svm_data->next_asid = svm_data->max_asid + 1;
80b7706e 315 svm_features = cpuid_edx(SVM_CPUID_FUNC);
6aa8b732
AK
316
317 asm volatile ( "sgdt %0" : "=m"(gdt_descr) );
318 gdt = (struct desc_struct *)gdt_descr.address;
319 svm_data->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
320
321 rdmsrl(MSR_EFER, efer);
322 wrmsrl(MSR_EFER, efer | MSR_EFER_SVME_MASK);
323
324 wrmsrl(MSR_VM_HSAVE_PA,
325 page_to_pfn(svm_data->save_area) << PAGE_SHIFT);
326}
327
328static int svm_cpu_init(int cpu)
329{
330 struct svm_cpu_data *svm_data;
331 int r;
332
333 svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
334 if (!svm_data)
335 return -ENOMEM;
336 svm_data->cpu = cpu;
337 svm_data->save_area = alloc_page(GFP_KERNEL);
338 r = -ENOMEM;
339 if (!svm_data->save_area)
340 goto err_1;
341
342 per_cpu(svm_data, cpu) = svm_data;
343
344 return 0;
345
346err_1:
347 kfree(svm_data);
348 return r;
349
350}
351
352static int set_msr_interception(u32 *msrpm, unsigned msr,
353 int read, int write)
354{
355 int i;
356
357 for (i = 0; i < NUM_MSR_MAPS; i++) {
358 if (msr >= msrpm_ranges[i] &&
359 msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
360 u32 msr_offset = (i * MSRS_IN_RANGE + msr -
361 msrpm_ranges[i]) * 2;
362
363 u32 *base = msrpm + (msr_offset / 32);
364 u32 msr_shift = msr_offset % 32;
365 u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
366 *base = (*base & ~(0x3 << msr_shift)) |
367 (mask << msr_shift);
368 return 1;
369 }
370 }
371 printk(KERN_DEBUG "%s: not found 0x%x\n", __FUNCTION__, msr);
372 return 0;
373}
374
375static __init int svm_hardware_setup(void)
376{
377 int cpu;
378 struct page *iopm_pages;
379 struct page *msrpm_pages;
380 void *msrpm_va;
381 int r;
382
873a7c42 383 kvm_emulator_want_group7_invlpg();
6aa8b732
AK
384
385 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
386
387 if (!iopm_pages)
388 return -ENOMEM;
389 memset(page_address(iopm_pages), 0xff,
390 PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
391 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
392
393
394 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
395
396 r = -ENOMEM;
397 if (!msrpm_pages)
398 goto err_1;
399
400 msrpm_va = page_address(msrpm_pages);
401 memset(msrpm_va, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
402 msrpm_base = page_to_pfn(msrpm_pages) << PAGE_SHIFT;
403
05b3e0c2 404#ifdef CONFIG_X86_64
6aa8b732
AK
405 set_msr_interception(msrpm_va, MSR_GS_BASE, 1, 1);
406 set_msr_interception(msrpm_va, MSR_FS_BASE, 1, 1);
407 set_msr_interception(msrpm_va, MSR_KERNEL_GS_BASE, 1, 1);
6aa8b732
AK
408 set_msr_interception(msrpm_va, MSR_LSTAR, 1, 1);
409 set_msr_interception(msrpm_va, MSR_CSTAR, 1, 1);
410 set_msr_interception(msrpm_va, MSR_SYSCALL_MASK, 1, 1);
411#endif
0e859cac 412 set_msr_interception(msrpm_va, MSR_K6_STAR, 1, 1);
6aa8b732
AK
413 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_CS, 1, 1);
414 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_ESP, 1, 1);
415 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_EIP, 1, 1);
416
417 for_each_online_cpu(cpu) {
418 r = svm_cpu_init(cpu);
419 if (r)
420 goto err_2;
421 }
422 return 0;
423
424err_2:
425 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
426 msrpm_base = 0;
427err_1:
428 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
429 iopm_base = 0;
430 return r;
431}
432
433static __exit void svm_hardware_unsetup(void)
434{
435 __free_pages(pfn_to_page(msrpm_base >> PAGE_SHIFT), MSRPM_ALLOC_ORDER);
436 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
437 iopm_base = msrpm_base = 0;
438}
439
440static void init_seg(struct vmcb_seg *seg)
441{
442 seg->selector = 0;
443 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
444 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
445 seg->limit = 0xffff;
446 seg->base = 0;
447}
448
449static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
450{
451 seg->selector = 0;
452 seg->attrib = SVM_SELECTOR_P_MASK | type;
453 seg->limit = 0xffff;
454 seg->base = 0;
455}
456
457static int svm_vcpu_setup(struct kvm_vcpu *vcpu)
458{
459 return 0;
460}
461
462static void init_vmcb(struct vmcb *vmcb)
463{
464 struct vmcb_control_area *control = &vmcb->control;
465 struct vmcb_save_area *save = &vmcb->save;
6aa8b732
AK
466
467 control->intercept_cr_read = INTERCEPT_CR0_MASK |
468 INTERCEPT_CR3_MASK |
469 INTERCEPT_CR4_MASK;
470
471 control->intercept_cr_write = INTERCEPT_CR0_MASK |
472 INTERCEPT_CR3_MASK |
473 INTERCEPT_CR4_MASK;
474
475 control->intercept_dr_read = INTERCEPT_DR0_MASK |
476 INTERCEPT_DR1_MASK |
477 INTERCEPT_DR2_MASK |
478 INTERCEPT_DR3_MASK;
479
480 control->intercept_dr_write = INTERCEPT_DR0_MASK |
481 INTERCEPT_DR1_MASK |
482 INTERCEPT_DR2_MASK |
483 INTERCEPT_DR3_MASK |
484 INTERCEPT_DR5_MASK |
485 INTERCEPT_DR7_MASK;
486
487 control->intercept_exceptions = 1 << PF_VECTOR;
488
489
490 control->intercept = (1ULL << INTERCEPT_INTR) |
491 (1ULL << INTERCEPT_NMI) |
0152527b 492 (1ULL << INTERCEPT_SMI) |
6aa8b732
AK
493 /*
494 * selective cr0 intercept bug?
495 * 0: 0f 22 d8 mov %eax,%cr3
496 * 3: 0f 20 c0 mov %cr0,%eax
497 * 6: 0d 00 00 00 80 or $0x80000000,%eax
498 * b: 0f 22 c0 mov %eax,%cr0
499 * set cr3 ->interception
500 * get cr0 ->interception
501 * set cr0 -> no interception
502 */
503 /* (1ULL << INTERCEPT_SELECTIVE_CR0) | */
504 (1ULL << INTERCEPT_CPUID) |
505 (1ULL << INTERCEPT_HLT) |
6aa8b732
AK
506 (1ULL << INTERCEPT_INVLPGA) |
507 (1ULL << INTERCEPT_IOIO_PROT) |
508 (1ULL << INTERCEPT_MSR_PROT) |
509 (1ULL << INTERCEPT_TASK_SWITCH) |
46fe4ddd 510 (1ULL << INTERCEPT_SHUTDOWN) |
6aa8b732
AK
511 (1ULL << INTERCEPT_VMRUN) |
512 (1ULL << INTERCEPT_VMMCALL) |
513 (1ULL << INTERCEPT_VMLOAD) |
514 (1ULL << INTERCEPT_VMSAVE) |
515 (1ULL << INTERCEPT_STGI) |
516 (1ULL << INTERCEPT_CLGI) |
916ce236
JR
517 (1ULL << INTERCEPT_SKINIT) |
518 (1ULL << INTERCEPT_MONITOR) |
519 (1ULL << INTERCEPT_MWAIT);
6aa8b732
AK
520
521 control->iopm_base_pa = iopm_base;
522 control->msrpm_base_pa = msrpm_base;
0cc5064d 523 control->tsc_offset = 0;
6aa8b732 524 control->int_ctl = V_INTR_MASKING_MASK;
80b7706e
JR
525 if (svm_has(SVM_FEATURE_LBRV))
526 control->lbr_ctl = 1ULL;
6aa8b732
AK
527
528 init_seg(&save->es);
529 init_seg(&save->ss);
530 init_seg(&save->ds);
531 init_seg(&save->fs);
532 init_seg(&save->gs);
533
534 save->cs.selector = 0xf000;
535 /* Executable/Readable Code Segment */
536 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
537 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
538 save->cs.limit = 0xffff;
d92899a0
AK
539 /*
540 * cs.base should really be 0xffff0000, but vmx can't handle that, so
541 * be consistent with it.
542 *
543 * Replace when we have real mode working for vmx.
544 */
545 save->cs.base = 0xf0000;
6aa8b732
AK
546
547 save->gdtr.limit = 0xffff;
548 save->idtr.limit = 0xffff;
549
550 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
551 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
552
553 save->efer = MSR_EFER_SVME_MASK;
554
555 save->dr6 = 0xffff0ff0;
556 save->dr7 = 0x400;
557 save->rflags = 2;
558 save->rip = 0x0000fff0;
559
560 /*
561 * cr0 val on cpu init should be 0x60000010, we enable cpu
562 * cache by default. the orderly way is to enable cache in bios.
563 */
cd205625 564 save->cr0 = 0x00000010 | CR0_PG_MASK | CR0_WP_MASK;
6aa8b732
AK
565 save->cr4 = CR4_PAE_MASK;
566 /* rdx = ?? */
567}
568
569static int svm_create_vcpu(struct kvm_vcpu *vcpu)
570{
571 struct page *page;
572 int r;
573
574 r = -ENOMEM;
575 vcpu->svm = kzalloc(sizeof *vcpu->svm, GFP_KERNEL);
576 if (!vcpu->svm)
577 goto out1;
578 page = alloc_page(GFP_KERNEL);
579 if (!page)
580 goto out2;
581
582 vcpu->svm->vmcb = page_address(page);
583 memset(vcpu->svm->vmcb, 0, PAGE_SIZE);
584 vcpu->svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
6aa8b732
AK
585 vcpu->svm->asid_generation = 0;
586 memset(vcpu->svm->db_regs, 0, sizeof(vcpu->svm->db_regs));
587 init_vmcb(vcpu->svm->vmcb);
588
36241b8c 589 fx_init(vcpu);
6722c51c
AK
590 vcpu->apic_base = 0xfee00000 |
591 /*for vcpu 0*/ MSR_IA32_APICBASE_BSP |
592 MSR_IA32_APICBASE_ENABLE;
36241b8c 593
6aa8b732
AK
594 return 0;
595
596out2:
597 kfree(vcpu->svm);
598out1:
599 return r;
600}
601
602static void svm_free_vcpu(struct kvm_vcpu *vcpu)
603{
604 if (!vcpu->svm)
605 return;
606 if (vcpu->svm->vmcb)
607 __free_page(pfn_to_page(vcpu->svm->vmcb_pa >> PAGE_SHIFT));
608 kfree(vcpu->svm);
609}
610
bccf2150 611static void svm_vcpu_load(struct kvm_vcpu *vcpu)
6aa8b732 612{
0cc5064d
AK
613 int cpu;
614
615 cpu = get_cpu();
616 if (unlikely(cpu != vcpu->cpu)) {
617 u64 tsc_this, delta;
618
619 /*
620 * Make sure that the guest sees a monotonically
621 * increasing TSC.
622 */
623 rdtscll(tsc_this);
624 delta = vcpu->host_tsc - tsc_this;
625 vcpu->svm->vmcb->control.tsc_offset += delta;
626 vcpu->cpu = cpu;
627 }
6aa8b732
AK
628}
629
630static void svm_vcpu_put(struct kvm_vcpu *vcpu)
631{
0cc5064d 632 rdtscll(vcpu->host_tsc);
6aa8b732
AK
633 put_cpu();
634}
635
774c47f1
AK
636static void svm_vcpu_decache(struct kvm_vcpu *vcpu)
637{
638}
639
6aa8b732
AK
640static void svm_cache_regs(struct kvm_vcpu *vcpu)
641{
642 vcpu->regs[VCPU_REGS_RAX] = vcpu->svm->vmcb->save.rax;
643 vcpu->regs[VCPU_REGS_RSP] = vcpu->svm->vmcb->save.rsp;
644 vcpu->rip = vcpu->svm->vmcb->save.rip;
645}
646
647static void svm_decache_regs(struct kvm_vcpu *vcpu)
648{
649 vcpu->svm->vmcb->save.rax = vcpu->regs[VCPU_REGS_RAX];
650 vcpu->svm->vmcb->save.rsp = vcpu->regs[VCPU_REGS_RSP];
651 vcpu->svm->vmcb->save.rip = vcpu->rip;
652}
653
654static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
655{
656 return vcpu->svm->vmcb->save.rflags;
657}
658
659static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
660{
661 vcpu->svm->vmcb->save.rflags = rflags;
662}
663
664static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
665{
666 struct vmcb_save_area *save = &vcpu->svm->vmcb->save;
667
668 switch (seg) {
669 case VCPU_SREG_CS: return &save->cs;
670 case VCPU_SREG_DS: return &save->ds;
671 case VCPU_SREG_ES: return &save->es;
672 case VCPU_SREG_FS: return &save->fs;
673 case VCPU_SREG_GS: return &save->gs;
674 case VCPU_SREG_SS: return &save->ss;
675 case VCPU_SREG_TR: return &save->tr;
676 case VCPU_SREG_LDTR: return &save->ldtr;
677 }
678 BUG();
8b6d44c7 679 return NULL;
6aa8b732
AK
680}
681
682static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
683{
684 struct vmcb_seg *s = svm_seg(vcpu, seg);
685
686 return s->base;
687}
688
689static void svm_get_segment(struct kvm_vcpu *vcpu,
690 struct kvm_segment *var, int seg)
691{
692 struct vmcb_seg *s = svm_seg(vcpu, seg);
693
694 var->base = s->base;
695 var->limit = s->limit;
696 var->selector = s->selector;
697 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
698 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
699 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
700 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
701 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
702 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
703 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
704 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
705 var->unusable = !var->present;
706}
707
708static void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
709{
710 struct vmcb_seg *s = svm_seg(vcpu, VCPU_SREG_CS);
711
712 *db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
713 *l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
714}
715
716static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
717{
bce66ca4
LN
718 dt->limit = vcpu->svm->vmcb->save.idtr.limit;
719 dt->base = vcpu->svm->vmcb->save.idtr.base;
6aa8b732
AK
720}
721
722static void svm_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
723{
bce66ca4
LN
724 vcpu->svm->vmcb->save.idtr.limit = dt->limit;
725 vcpu->svm->vmcb->save.idtr.base = dt->base ;
6aa8b732
AK
726}
727
728static void svm_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
729{
730 dt->limit = vcpu->svm->vmcb->save.gdtr.limit;
731 dt->base = vcpu->svm->vmcb->save.gdtr.base;
732}
733
734static void svm_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
735{
736 vcpu->svm->vmcb->save.gdtr.limit = dt->limit;
737 vcpu->svm->vmcb->save.gdtr.base = dt->base ;
738}
739
399badf3
AK
740static void svm_decache_cr0_cr4_guest_bits(struct kvm_vcpu *vcpu)
741{
742}
743
6aa8b732
AK
744static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
745{
05b3e0c2 746#ifdef CONFIG_X86_64
6aa8b732
AK
747 if (vcpu->shadow_efer & KVM_EFER_LME) {
748 if (!is_paging(vcpu) && (cr0 & CR0_PG_MASK)) {
749 vcpu->shadow_efer |= KVM_EFER_LMA;
750 vcpu->svm->vmcb->save.efer |= KVM_EFER_LMA | KVM_EFER_LME;
751 }
752
753 if (is_paging(vcpu) && !(cr0 & CR0_PG_MASK) ) {
754 vcpu->shadow_efer &= ~KVM_EFER_LMA;
755 vcpu->svm->vmcb->save.efer &= ~(KVM_EFER_LMA | KVM_EFER_LME);
756 }
757 }
758#endif
6aa8b732 759 vcpu->cr0 = cr0;
6da63cf9
AK
760 cr0 |= CR0_PG_MASK | CR0_WP_MASK;
761 cr0 &= ~(CR0_CD_MASK | CR0_NW_MASK);
762 vcpu->svm->vmcb->save.cr0 = cr0;
6aa8b732
AK
763}
764
765static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
766{
767 vcpu->cr4 = cr4;
768 vcpu->svm->vmcb->save.cr4 = cr4 | CR4_PAE_MASK;
769}
770
771static void svm_set_segment(struct kvm_vcpu *vcpu,
772 struct kvm_segment *var, int seg)
773{
774 struct vmcb_seg *s = svm_seg(vcpu, seg);
775
776 s->base = var->base;
777 s->limit = var->limit;
778 s->selector = var->selector;
779 if (var->unusable)
780 s->attrib = 0;
781 else {
782 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
783 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
784 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
785 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
786 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
787 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
788 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
789 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
790 }
791 if (seg == VCPU_SREG_CS)
792 vcpu->svm->vmcb->save.cpl
793 = (vcpu->svm->vmcb->save.cs.attrib
794 >> SVM_SELECTOR_DPL_SHIFT) & 3;
795
796}
797
798/* FIXME:
799
800 vcpu->svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
801 vcpu->svm->vmcb->control.int_ctl |= (sregs->cr8 & V_TPR_MASK);
802
803*/
804
805static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
806{
807 return -EOPNOTSUPP;
808}
809
810static void load_host_msrs(struct kvm_vcpu *vcpu)
811{
812 int i;
813
814 for ( i = 0; i < NR_HOST_SAVE_MSRS; i++)
815 wrmsrl(host_save_msrs[i], vcpu->svm->host_msrs[i]);
816}
817
818static void save_host_msrs(struct kvm_vcpu *vcpu)
819{
820 int i;
821
822 for ( i = 0; i < NR_HOST_SAVE_MSRS; i++)
823 rdmsrl(host_save_msrs[i], vcpu->svm->host_msrs[i]);
824}
825
826static void new_asid(struct kvm_vcpu *vcpu, struct svm_cpu_data *svm_data)
827{
828 if (svm_data->next_asid > svm_data->max_asid) {
829 ++svm_data->asid_generation;
830 svm_data->next_asid = 1;
831 vcpu->svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
832 }
833
834 vcpu->cpu = svm_data->cpu;
835 vcpu->svm->asid_generation = svm_data->asid_generation;
836 vcpu->svm->vmcb->control.asid = svm_data->next_asid++;
837}
838
839static void svm_invlpg(struct kvm_vcpu *vcpu, gva_t address)
840{
841 invlpga(address, vcpu->svm->vmcb->control.asid); // is needed?
842}
843
844static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
845{
846 return vcpu->svm->db_regs[dr];
847}
848
849static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
850 int *exception)
851{
852 *exception = 0;
853
854 if (vcpu->svm->vmcb->save.dr7 & DR7_GD_MASK) {
855 vcpu->svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
856 vcpu->svm->vmcb->save.dr6 |= DR6_BD_MASK;
857 *exception = DB_VECTOR;
858 return;
859 }
860
861 switch (dr) {
862 case 0 ... 3:
863 vcpu->svm->db_regs[dr] = value;
864 return;
865 case 4 ... 5:
866 if (vcpu->cr4 & CR4_DE_MASK) {
867 *exception = UD_VECTOR;
868 return;
869 }
870 case 7: {
871 if (value & ~((1ULL << 32) - 1)) {
872 *exception = GP_VECTOR;
873 return;
874 }
875 vcpu->svm->vmcb->save.dr7 = value;
876 return;
877 }
878 default:
879 printk(KERN_DEBUG "%s: unexpected dr %u\n",
880 __FUNCTION__, dr);
881 *exception = UD_VECTOR;
882 return;
883 }
884}
885
886static int pf_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
887{
888 u32 exit_int_info = vcpu->svm->vmcb->control.exit_int_info;
889 u64 fault_address;
890 u32 error_code;
891 enum emulation_result er;
e2dec939 892 int r;
6aa8b732
AK
893
894 if (is_external_interrupt(exit_int_info))
895 push_irq(vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
896
897 spin_lock(&vcpu->kvm->lock);
898
899 fault_address = vcpu->svm->vmcb->control.exit_info_2;
900 error_code = vcpu->svm->vmcb->control.exit_info_1;
e2dec939
AK
901 r = kvm_mmu_page_fault(vcpu, fault_address, error_code);
902 if (r < 0) {
903 spin_unlock(&vcpu->kvm->lock);
904 return r;
905 }
906 if (!r) {
6aa8b732
AK
907 spin_unlock(&vcpu->kvm->lock);
908 return 1;
909 }
910 er = emulate_instruction(vcpu, kvm_run, fault_address, error_code);
911 spin_unlock(&vcpu->kvm->lock);
912
913 switch (er) {
914 case EMULATE_DONE:
915 return 1;
916 case EMULATE_DO_MMIO:
917 ++kvm_stat.mmio_exits;
918 kvm_run->exit_reason = KVM_EXIT_MMIO;
919 return 0;
920 case EMULATE_FAIL:
921 vcpu_printf(vcpu, "%s: emulate fail\n", __FUNCTION__);
922 break;
923 default:
924 BUG();
925 }
926
927 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
928 return 0;
929}
930
46fe4ddd
JR
931static int shutdown_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
932{
933 /*
934 * VMCB is undefined after a SHUTDOWN intercept
935 * so reinitialize it.
936 */
937 memset(vcpu->svm->vmcb, 0, PAGE_SIZE);
938 init_vmcb(vcpu->svm->vmcb);
939
940 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
941 return 0;
942}
943
6aa8b732
AK
944static int io_get_override(struct kvm_vcpu *vcpu,
945 struct vmcb_seg **seg,
946 int *addr_override)
947{
948 u8 inst[MAX_INST_SIZE];
949 unsigned ins_length;
950 gva_t rip;
951 int i;
952
953 rip = vcpu->svm->vmcb->save.rip;
954 ins_length = vcpu->svm->next_rip - rip;
955 rip += vcpu->svm->vmcb->save.cs.base;
956
957 if (ins_length > MAX_INST_SIZE)
958 printk(KERN_DEBUG
959 "%s: inst length err, cs base 0x%llx rip 0x%llx "
960 "next rip 0x%llx ins_length %u\n",
961 __FUNCTION__,
962 vcpu->svm->vmcb->save.cs.base,
963 vcpu->svm->vmcb->save.rip,
964 vcpu->svm->vmcb->control.exit_info_2,
965 ins_length);
966
967 if (kvm_read_guest(vcpu, rip, ins_length, inst) != ins_length)
968 /* #PF */
969 return 0;
970
971 *addr_override = 0;
8b6d44c7 972 *seg = NULL;
6aa8b732
AK
973 for (i = 0; i < ins_length; i++)
974 switch (inst[i]) {
975 case 0xf0:
976 case 0xf2:
977 case 0xf3:
978 case 0x66:
979 continue;
980 case 0x67:
981 *addr_override = 1;
982 continue;
983 case 0x2e:
984 *seg = &vcpu->svm->vmcb->save.cs;
985 continue;
986 case 0x36:
987 *seg = &vcpu->svm->vmcb->save.ss;
988 continue;
989 case 0x3e:
990 *seg = &vcpu->svm->vmcb->save.ds;
991 continue;
992 case 0x26:
993 *seg = &vcpu->svm->vmcb->save.es;
994 continue;
995 case 0x64:
996 *seg = &vcpu->svm->vmcb->save.fs;
997 continue;
998 case 0x65:
999 *seg = &vcpu->svm->vmcb->save.gs;
1000 continue;
1001 default:
1002 return 1;
1003 }
1004 printk(KERN_DEBUG "%s: unexpected\n", __FUNCTION__);
1005 return 0;
1006}
1007
039576c0 1008static unsigned long io_adress(struct kvm_vcpu *vcpu, int ins, gva_t *address)
6aa8b732
AK
1009{
1010 unsigned long addr_mask;
1011 unsigned long *reg;
1012 struct vmcb_seg *seg;
1013 int addr_override;
1014 struct vmcb_save_area *save_area = &vcpu->svm->vmcb->save;
1015 u16 cs_attrib = save_area->cs.attrib;
1016 unsigned addr_size = get_addr_size(vcpu);
1017
1018 if (!io_get_override(vcpu, &seg, &addr_override))
1019 return 0;
1020
1021 if (addr_override)
1022 addr_size = (addr_size == 2) ? 4: (addr_size >> 1);
1023
1024 if (ins) {
1025 reg = &vcpu->regs[VCPU_REGS_RDI];
1026 seg = &vcpu->svm->vmcb->save.es;
1027 } else {
1028 reg = &vcpu->regs[VCPU_REGS_RSI];
1029 seg = (seg) ? seg : &vcpu->svm->vmcb->save.ds;
1030 }
1031
1032 addr_mask = ~0ULL >> (64 - (addr_size * 8));
1033
1034 if ((cs_attrib & SVM_SELECTOR_L_MASK) &&
1035 !(vcpu->svm->vmcb->save.rflags & X86_EFLAGS_VM)) {
1036 *address = (*reg & addr_mask);
1037 return addr_mask;
1038 }
1039
1040 if (!(seg->attrib & SVM_SELECTOR_P_SHIFT)) {
1041 svm_inject_gp(vcpu, 0);
1042 return 0;
1043 }
1044
1045 *address = (*reg & addr_mask) + seg->base;
1046 return addr_mask;
1047}
1048
1049static int io_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1050{
1051 u32 io_info = vcpu->svm->vmcb->control.exit_info_1; //address size bug?
039576c0
AK
1052 int size, down, in, string, rep;
1053 unsigned port;
1054 unsigned long count;
1055 gva_t address = 0;
6aa8b732
AK
1056
1057 ++kvm_stat.io_exits;
1058
1059 vcpu->svm->next_rip = vcpu->svm->vmcb->control.exit_info_2;
1060
039576c0
AK
1061 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1062 port = io_info >> 16;
1063 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
1064 string = (io_info & SVM_IOIO_STR_MASK) != 0;
1065 rep = (io_info & SVM_IOIO_REP_MASK) != 0;
1066 count = 1;
1067 down = (vcpu->svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
6aa8b732 1068
039576c0 1069 if (string) {
6aa8b732
AK
1070 unsigned addr_mask;
1071
039576c0 1072 addr_mask = io_adress(vcpu, in, &address);
6aa8b732 1073 if (!addr_mask) {
d27d4aca
AK
1074 printk(KERN_DEBUG "%s: get io address failed\n",
1075 __FUNCTION__);
6aa8b732
AK
1076 return 1;
1077 }
1078
039576c0
AK
1079 if (rep)
1080 count = vcpu->regs[VCPU_REGS_RCX] & addr_mask;
1081 }
1082 return kvm_setup_pio(vcpu, kvm_run, in, size, count, string, down,
1083 address, rep, port);
6aa8b732
AK
1084}
1085
6aa8b732
AK
1086static int nop_on_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1087{
1088 return 1;
1089}
1090
1091static int halt_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1092{
1093 vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 1;
1094 skip_emulated_instruction(vcpu);
c1150d8c 1095 if (vcpu->irq_summary)
6aa8b732
AK
1096 return 1;
1097
1098 kvm_run->exit_reason = KVM_EXIT_HLT;
c1150d8c 1099 ++kvm_stat.halt_exits;
6aa8b732
AK
1100 return 0;
1101}
1102
02e235bc
AK
1103static int vmmcall_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1104{
510043da
DL
1105 vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 3;
1106 skip_emulated_instruction(vcpu);
270fd9b9 1107 return kvm_hypercall(vcpu, kvm_run);
02e235bc
AK
1108}
1109
6aa8b732
AK
1110static int invalid_op_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1111{
1112 inject_ud(vcpu);
1113 return 1;
1114}
1115
1116static int task_switch_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1117{
1118 printk(KERN_DEBUG "%s: task swiche is unsupported\n", __FUNCTION__);
1119 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1120 return 0;
1121}
1122
1123static int cpuid_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1124{
1125 vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 2;
06465c5a
AK
1126 kvm_emulate_cpuid(vcpu);
1127 return 1;
6aa8b732
AK
1128}
1129
1130static int emulate_on_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1131{
8b6d44c7 1132 if (emulate_instruction(vcpu, NULL, 0, 0) != EMULATE_DONE)
6aa8b732
AK
1133 printk(KERN_ERR "%s: failed\n", __FUNCTION__);
1134 return 1;
1135}
1136
1137static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1138{
1139 switch (ecx) {
6aa8b732
AK
1140 case MSR_IA32_TIME_STAMP_COUNTER: {
1141 u64 tsc;
1142
1143 rdtscll(tsc);
1144 *data = vcpu->svm->vmcb->control.tsc_offset + tsc;
1145 break;
1146 }
0e859cac 1147 case MSR_K6_STAR:
6aa8b732
AK
1148 *data = vcpu->svm->vmcb->save.star;
1149 break;
0e859cac 1150#ifdef CONFIG_X86_64
6aa8b732
AK
1151 case MSR_LSTAR:
1152 *data = vcpu->svm->vmcb->save.lstar;
1153 break;
1154 case MSR_CSTAR:
1155 *data = vcpu->svm->vmcb->save.cstar;
1156 break;
1157 case MSR_KERNEL_GS_BASE:
1158 *data = vcpu->svm->vmcb->save.kernel_gs_base;
1159 break;
1160 case MSR_SYSCALL_MASK:
1161 *data = vcpu->svm->vmcb->save.sfmask;
1162 break;
1163#endif
1164 case MSR_IA32_SYSENTER_CS:
1165 *data = vcpu->svm->vmcb->save.sysenter_cs;
1166 break;
1167 case MSR_IA32_SYSENTER_EIP:
1168 *data = vcpu->svm->vmcb->save.sysenter_eip;
1169 break;
1170 case MSR_IA32_SYSENTER_ESP:
1171 *data = vcpu->svm->vmcb->save.sysenter_esp;
1172 break;
1173 default:
3bab1f5d 1174 return kvm_get_msr_common(vcpu, ecx, data);
6aa8b732
AK
1175 }
1176 return 0;
1177}
1178
1179static int rdmsr_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1180{
1181 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
1182 u64 data;
1183
1184 if (svm_get_msr(vcpu, ecx, &data))
1185 svm_inject_gp(vcpu, 0);
1186 else {
1187 vcpu->svm->vmcb->save.rax = data & 0xffffffff;
1188 vcpu->regs[VCPU_REGS_RDX] = data >> 32;
1189 vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 2;
1190 skip_emulated_instruction(vcpu);
1191 }
1192 return 1;
1193}
1194
1195static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1196{
1197 switch (ecx) {
6aa8b732
AK
1198 case MSR_IA32_TIME_STAMP_COUNTER: {
1199 u64 tsc;
1200
1201 rdtscll(tsc);
1202 vcpu->svm->vmcb->control.tsc_offset = data - tsc;
1203 break;
1204 }
0e859cac 1205 case MSR_K6_STAR:
6aa8b732
AK
1206 vcpu->svm->vmcb->save.star = data;
1207 break;
49b14f24 1208#ifdef CONFIG_X86_64
6aa8b732
AK
1209 case MSR_LSTAR:
1210 vcpu->svm->vmcb->save.lstar = data;
1211 break;
1212 case MSR_CSTAR:
1213 vcpu->svm->vmcb->save.cstar = data;
1214 break;
1215 case MSR_KERNEL_GS_BASE:
1216 vcpu->svm->vmcb->save.kernel_gs_base = data;
1217 break;
1218 case MSR_SYSCALL_MASK:
1219 vcpu->svm->vmcb->save.sfmask = data;
1220 break;
1221#endif
1222 case MSR_IA32_SYSENTER_CS:
1223 vcpu->svm->vmcb->save.sysenter_cs = data;
1224 break;
1225 case MSR_IA32_SYSENTER_EIP:
1226 vcpu->svm->vmcb->save.sysenter_eip = data;
1227 break;
1228 case MSR_IA32_SYSENTER_ESP:
1229 vcpu->svm->vmcb->save.sysenter_esp = data;
1230 break;
1231 default:
3bab1f5d 1232 return kvm_set_msr_common(vcpu, ecx, data);
6aa8b732
AK
1233 }
1234 return 0;
1235}
1236
1237static int wrmsr_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1238{
1239 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
1240 u64 data = (vcpu->svm->vmcb->save.rax & -1u)
1241 | ((u64)(vcpu->regs[VCPU_REGS_RDX] & -1u) << 32);
1242 vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 2;
1243 if (svm_set_msr(vcpu, ecx, data))
1244 svm_inject_gp(vcpu, 0);
1245 else
1246 skip_emulated_instruction(vcpu);
1247 return 1;
1248}
1249
1250static int msr_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1251{
1252 if (vcpu->svm->vmcb->control.exit_info_1)
1253 return wrmsr_interception(vcpu, kvm_run);
1254 else
1255 return rdmsr_interception(vcpu, kvm_run);
1256}
1257
c1150d8c
DL
1258static int interrupt_window_interception(struct kvm_vcpu *vcpu,
1259 struct kvm_run *kvm_run)
1260{
1261 /*
1262 * If the user space waits to inject interrupts, exit as soon as
1263 * possible
1264 */
1265 if (kvm_run->request_interrupt_window &&
022a9308 1266 !vcpu->irq_summary) {
c1150d8c
DL
1267 ++kvm_stat.irq_window_exits;
1268 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1269 return 0;
1270 }
1271
1272 return 1;
1273}
1274
6aa8b732
AK
1275static int (*svm_exit_handlers[])(struct kvm_vcpu *vcpu,
1276 struct kvm_run *kvm_run) = {
1277 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1278 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1279 [SVM_EXIT_READ_CR4] = emulate_on_interception,
1280 /* for now: */
1281 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1282 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1283 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1284 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1285 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1286 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1287 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1288 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1289 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1290 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1291 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1292 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1293 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
1294 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
1295 [SVM_EXIT_INTR] = nop_on_interception,
1296 [SVM_EXIT_NMI] = nop_on_interception,
1297 [SVM_EXIT_SMI] = nop_on_interception,
1298 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 1299 [SVM_EXIT_VINTR] = interrupt_window_interception,
6aa8b732
AK
1300 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1301 [SVM_EXIT_CPUID] = cpuid_interception,
1302 [SVM_EXIT_HLT] = halt_interception,
1303 [SVM_EXIT_INVLPG] = emulate_on_interception,
1304 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1305 [SVM_EXIT_IOIO] = io_interception,
1306 [SVM_EXIT_MSR] = msr_interception,
1307 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 1308 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
6aa8b732 1309 [SVM_EXIT_VMRUN] = invalid_op_interception,
02e235bc 1310 [SVM_EXIT_VMMCALL] = vmmcall_interception,
6aa8b732
AK
1311 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1312 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1313 [SVM_EXIT_STGI] = invalid_op_interception,
1314 [SVM_EXIT_CLGI] = invalid_op_interception,
1315 [SVM_EXIT_SKINIT] = invalid_op_interception,
916ce236
JR
1316 [SVM_EXIT_MONITOR] = invalid_op_interception,
1317 [SVM_EXIT_MWAIT] = invalid_op_interception,
6aa8b732
AK
1318};
1319
1320
1321static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1322{
1323 u32 exit_code = vcpu->svm->vmcb->control.exit_code;
1324
6aa8b732
AK
1325 if (is_external_interrupt(vcpu->svm->vmcb->control.exit_int_info) &&
1326 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR)
1327 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1328 "exit_code 0x%x\n",
1329 __FUNCTION__, vcpu->svm->vmcb->control.exit_int_info,
1330 exit_code);
1331
9d8f549d 1332 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
6aa8b732
AK
1333 || svm_exit_handlers[exit_code] == 0) {
1334 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1335 printk(KERN_ERR "%s: 0x%x @ 0x%llx cr0 0x%lx rflags 0x%llx\n",
1336 __FUNCTION__,
1337 exit_code,
1338 vcpu->svm->vmcb->save.rip,
1339 vcpu->cr0,
1340 vcpu->svm->vmcb->save.rflags);
1341 return 0;
1342 }
1343
1344 return svm_exit_handlers[exit_code](vcpu, kvm_run);
1345}
1346
1347static void reload_tss(struct kvm_vcpu *vcpu)
1348{
1349 int cpu = raw_smp_processor_id();
1350
1351 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1352 svm_data->tss_desc->type = 9; //available 32/64-bit TSS
1353 load_TR_desc();
1354}
1355
1356static void pre_svm_run(struct kvm_vcpu *vcpu)
1357{
1358 int cpu = raw_smp_processor_id();
1359
1360 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1361
1362 vcpu->svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
1363 if (vcpu->cpu != cpu ||
1364 vcpu->svm->asid_generation != svm_data->asid_generation)
1365 new_asid(vcpu, svm_data);
1366}
1367
1368
c1150d8c 1369static inline void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
6aa8b732
AK
1370{
1371 struct vmcb_control_area *control;
1372
6aa8b732 1373 control = &vcpu->svm->vmcb->control;
6aa8b732
AK
1374 control->int_vector = pop_irq(vcpu);
1375 control->int_ctl &= ~V_INTR_PRIO_MASK;
1376 control->int_ctl |= V_IRQ_MASK |
1377 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1378}
1379
1380static void kvm_reput_irq(struct kvm_vcpu *vcpu)
1381{
1382 struct vmcb_control_area *control = &vcpu->svm->vmcb->control;
1383
1384 if (control->int_ctl & V_IRQ_MASK) {
1385 control->int_ctl &= ~V_IRQ_MASK;
1386 push_irq(vcpu, control->int_vector);
1387 }
c1150d8c
DL
1388
1389 vcpu->interrupt_window_open =
1390 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1391}
1392
1393static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1394 struct kvm_run *kvm_run)
1395{
1396 struct vmcb_control_area *control = &vcpu->svm->vmcb->control;
1397
1398 vcpu->interrupt_window_open =
1399 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
1400 (vcpu->svm->vmcb->save.rflags & X86_EFLAGS_IF));
1401
1402 if (vcpu->interrupt_window_open && vcpu->irq_summary)
1403 /*
1404 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1405 */
1406 kvm_do_inject_irq(vcpu);
1407
1408 /*
1409 * Interrupts blocked. Wait for unblock.
1410 */
1411 if (!vcpu->interrupt_window_open &&
1412 (vcpu->irq_summary || kvm_run->request_interrupt_window)) {
1413 control->intercept |= 1ULL << INTERCEPT_VINTR;
1414 } else
1415 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1416}
1417
1418static void post_kvm_run_save(struct kvm_vcpu *vcpu,
1419 struct kvm_run *kvm_run)
1420{
1421 kvm_run->ready_for_interrupt_injection = (vcpu->interrupt_window_open &&
1422 vcpu->irq_summary == 0);
1423 kvm_run->if_flag = (vcpu->svm->vmcb->save.rflags & X86_EFLAGS_IF) != 0;
1424 kvm_run->cr8 = vcpu->cr8;
1425 kvm_run->apic_base = vcpu->apic_base;
1426}
1427
1428/*
1429 * Check if userspace requested an interrupt window, and that the
1430 * interrupt window is open.
1431 *
1432 * No need to exit to userspace if we already have an interrupt queued.
1433 */
1434static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu,
1435 struct kvm_run *kvm_run)
1436{
1437 return (!vcpu->irq_summary &&
1438 kvm_run->request_interrupt_window &&
1439 vcpu->interrupt_window_open &&
1440 (vcpu->svm->vmcb->save.rflags & X86_EFLAGS_IF));
6aa8b732
AK
1441}
1442
1443static void save_db_regs(unsigned long *db_regs)
1444{
5aff458e
AK
1445 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1446 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1447 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1448 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
6aa8b732
AK
1449}
1450
1451static void load_db_regs(unsigned long *db_regs)
1452{
5aff458e
AK
1453 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1454 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1455 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1456 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
6aa8b732
AK
1457}
1458
1459static int svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1460{
1461 u16 fs_selector;
1462 u16 gs_selector;
1463 u16 ldt_selector;
e2dec939 1464 int r;
6aa8b732
AK
1465
1466again:
cccf748b
AK
1467 if (!vcpu->mmio_read_completed)
1468 do_interrupt_requests(vcpu, kvm_run);
6aa8b732
AK
1469
1470 clgi();
1471
1472 pre_svm_run(vcpu);
1473
1474 save_host_msrs(vcpu);
1475 fs_selector = read_fs();
1476 gs_selector = read_gs();
1477 ldt_selector = read_ldt();
1478 vcpu->svm->host_cr2 = kvm_read_cr2();
1479 vcpu->svm->host_dr6 = read_dr6();
1480 vcpu->svm->host_dr7 = read_dr7();
1481 vcpu->svm->vmcb->save.cr2 = vcpu->cr2;
1482
1483 if (vcpu->svm->vmcb->save.dr7 & 0xff) {
1484 write_dr7(0);
1485 save_db_regs(vcpu->svm->host_db_regs);
1486 load_db_regs(vcpu->svm->db_regs);
1487 }
36241b8c
AK
1488
1489 fx_save(vcpu->host_fx_image);
1490 fx_restore(vcpu->guest_fx_image);
1491
6aa8b732 1492 asm volatile (
05b3e0c2 1493#ifdef CONFIG_X86_64
6aa8b732
AK
1494 "push %%rbx; push %%rcx; push %%rdx;"
1495 "push %%rsi; push %%rdi; push %%rbp;"
1496 "push %%r8; push %%r9; push %%r10; push %%r11;"
1497 "push %%r12; push %%r13; push %%r14; push %%r15;"
1498#else
1499 "push %%ebx; push %%ecx; push %%edx;"
1500 "push %%esi; push %%edi; push %%ebp;"
1501#endif
1502
05b3e0c2 1503#ifdef CONFIG_X86_64
6aa8b732
AK
1504 "mov %c[rbx](%[vcpu]), %%rbx \n\t"
1505 "mov %c[rcx](%[vcpu]), %%rcx \n\t"
1506 "mov %c[rdx](%[vcpu]), %%rdx \n\t"
1507 "mov %c[rsi](%[vcpu]), %%rsi \n\t"
1508 "mov %c[rdi](%[vcpu]), %%rdi \n\t"
1509 "mov %c[rbp](%[vcpu]), %%rbp \n\t"
1510 "mov %c[r8](%[vcpu]), %%r8 \n\t"
1511 "mov %c[r9](%[vcpu]), %%r9 \n\t"
1512 "mov %c[r10](%[vcpu]), %%r10 \n\t"
1513 "mov %c[r11](%[vcpu]), %%r11 \n\t"
1514 "mov %c[r12](%[vcpu]), %%r12 \n\t"
1515 "mov %c[r13](%[vcpu]), %%r13 \n\t"
1516 "mov %c[r14](%[vcpu]), %%r14 \n\t"
1517 "mov %c[r15](%[vcpu]), %%r15 \n\t"
1518#else
1519 "mov %c[rbx](%[vcpu]), %%ebx \n\t"
1520 "mov %c[rcx](%[vcpu]), %%ecx \n\t"
1521 "mov %c[rdx](%[vcpu]), %%edx \n\t"
1522 "mov %c[rsi](%[vcpu]), %%esi \n\t"
1523 "mov %c[rdi](%[vcpu]), %%edi \n\t"
1524 "mov %c[rbp](%[vcpu]), %%ebp \n\t"
1525#endif
1526
05b3e0c2 1527#ifdef CONFIG_X86_64
6aa8b732
AK
1528 /* Enter guest mode */
1529 "push %%rax \n\t"
1530 "mov %c[svm](%[vcpu]), %%rax \n\t"
1531 "mov %c[vmcb](%%rax), %%rax \n\t"
1532 SVM_VMLOAD "\n\t"
1533 SVM_VMRUN "\n\t"
1534 SVM_VMSAVE "\n\t"
1535 "pop %%rax \n\t"
1536#else
1537 /* Enter guest mode */
1538 "push %%eax \n\t"
1539 "mov %c[svm](%[vcpu]), %%eax \n\t"
1540 "mov %c[vmcb](%%eax), %%eax \n\t"
1541 SVM_VMLOAD "\n\t"
1542 SVM_VMRUN "\n\t"
1543 SVM_VMSAVE "\n\t"
1544 "pop %%eax \n\t"
1545#endif
1546
1547 /* Save guest registers, load host registers */
05b3e0c2 1548#ifdef CONFIG_X86_64
6aa8b732
AK
1549 "mov %%rbx, %c[rbx](%[vcpu]) \n\t"
1550 "mov %%rcx, %c[rcx](%[vcpu]) \n\t"
1551 "mov %%rdx, %c[rdx](%[vcpu]) \n\t"
1552 "mov %%rsi, %c[rsi](%[vcpu]) \n\t"
1553 "mov %%rdi, %c[rdi](%[vcpu]) \n\t"
1554 "mov %%rbp, %c[rbp](%[vcpu]) \n\t"
1555 "mov %%r8, %c[r8](%[vcpu]) \n\t"
1556 "mov %%r9, %c[r9](%[vcpu]) \n\t"
1557 "mov %%r10, %c[r10](%[vcpu]) \n\t"
1558 "mov %%r11, %c[r11](%[vcpu]) \n\t"
1559 "mov %%r12, %c[r12](%[vcpu]) \n\t"
1560 "mov %%r13, %c[r13](%[vcpu]) \n\t"
1561 "mov %%r14, %c[r14](%[vcpu]) \n\t"
1562 "mov %%r15, %c[r15](%[vcpu]) \n\t"
1563
1564 "pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
1565 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
1566 "pop %%rbp; pop %%rdi; pop %%rsi;"
1567 "pop %%rdx; pop %%rcx; pop %%rbx; \n\t"
1568#else
1569 "mov %%ebx, %c[rbx](%[vcpu]) \n\t"
1570 "mov %%ecx, %c[rcx](%[vcpu]) \n\t"
1571 "mov %%edx, %c[rdx](%[vcpu]) \n\t"
1572 "mov %%esi, %c[rsi](%[vcpu]) \n\t"
1573 "mov %%edi, %c[rdi](%[vcpu]) \n\t"
1574 "mov %%ebp, %c[rbp](%[vcpu]) \n\t"
1575
1576 "pop %%ebp; pop %%edi; pop %%esi;"
1577 "pop %%edx; pop %%ecx; pop %%ebx; \n\t"
1578#endif
1579 :
1580 : [vcpu]"a"(vcpu),
1581 [svm]"i"(offsetof(struct kvm_vcpu, svm)),
1582 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
1583 [rbx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RBX])),
1584 [rcx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RCX])),
1585 [rdx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RDX])),
1586 [rsi]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RSI])),
1587 [rdi]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RDI])),
1588 [rbp]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RBP]))
05b3e0c2 1589#ifdef CONFIG_X86_64
6aa8b732
AK
1590 ,[r8 ]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R8 ])),
1591 [r9 ]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R9 ])),
1592 [r10]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R10])),
1593 [r11]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R11])),
1594 [r12]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R12])),
1595 [r13]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R13])),
1596 [r14]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R14])),
1597 [r15]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R15]))
1598#endif
1599 : "cc", "memory" );
1600
36241b8c
AK
1601 fx_save(vcpu->guest_fx_image);
1602 fx_restore(vcpu->host_fx_image);
1603
6aa8b732
AK
1604 if ((vcpu->svm->vmcb->save.dr7 & 0xff))
1605 load_db_regs(vcpu->svm->host_db_regs);
1606
1607 vcpu->cr2 = vcpu->svm->vmcb->save.cr2;
1608
1609 write_dr6(vcpu->svm->host_dr6);
1610 write_dr7(vcpu->svm->host_dr7);
1611 kvm_write_cr2(vcpu->svm->host_cr2);
1612
1613 load_fs(fs_selector);
1614 load_gs(gs_selector);
1615 load_ldt(ldt_selector);
1616 load_host_msrs(vcpu);
1617
1618 reload_tss(vcpu);
1619
07031e14
IM
1620 /*
1621 * Profile KVM exit RIPs:
1622 */
1623 if (unlikely(prof_on == KVM_PROFILING))
1624 profile_hit(KVM_PROFILING,
1625 (void *)(unsigned long)vcpu->svm->vmcb->save.rip);
1626
6aa8b732
AK
1627 stgi();
1628
1629 kvm_reput_irq(vcpu);
1630
1631 vcpu->svm->next_rip = 0;
1632
1633 if (vcpu->svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
8eb7d334
AK
1634 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1635 kvm_run->fail_entry.hardware_entry_failure_reason
1636 = vcpu->svm->vmcb->control.exit_code;
c1150d8c 1637 post_kvm_run_save(vcpu, kvm_run);
6aa8b732
AK
1638 return 0;
1639 }
1640
e2dec939
AK
1641 r = handle_exit(vcpu, kvm_run);
1642 if (r > 0) {
6aa8b732
AK
1643 if (signal_pending(current)) {
1644 ++kvm_stat.signal_exits;
c1150d8c 1645 post_kvm_run_save(vcpu, kvm_run);
1b19f3e6 1646 kvm_run->exit_reason = KVM_EXIT_INTR;
c1150d8c
DL
1647 return -EINTR;
1648 }
1649
1650 if (dm_request_for_irq_injection(vcpu, kvm_run)) {
1651 ++kvm_stat.request_irq_exits;
1652 post_kvm_run_save(vcpu, kvm_run);
1b19f3e6 1653 kvm_run->exit_reason = KVM_EXIT_INTR;
6aa8b732
AK
1654 return -EINTR;
1655 }
1656 kvm_resched(vcpu);
1657 goto again;
1658 }
c1150d8c 1659 post_kvm_run_save(vcpu, kvm_run);
e2dec939 1660 return r;
6aa8b732
AK
1661}
1662
1663static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1664{
1665 force_new_asid(vcpu);
1666}
1667
1668static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1669{
1670 vcpu->svm->vmcb->save.cr3 = root;
1671 force_new_asid(vcpu);
1672}
1673
1674static void svm_inject_page_fault(struct kvm_vcpu *vcpu,
1675 unsigned long addr,
1676 uint32_t err_code)
1677{
1678 uint32_t exit_int_info = vcpu->svm->vmcb->control.exit_int_info;
1679
1680 ++kvm_stat.pf_guest;
1681
1682 if (is_page_fault(exit_int_info)) {
1683
1684 vcpu->svm->vmcb->control.event_inj_err = 0;
1685 vcpu->svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1686 SVM_EVTINJ_VALID_ERR |
1687 SVM_EVTINJ_TYPE_EXEPT |
1688 DF_VECTOR;
1689 return;
1690 }
1691 vcpu->cr2 = addr;
1692 vcpu->svm->vmcb->save.cr2 = addr;
1693 vcpu->svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1694 SVM_EVTINJ_VALID_ERR |
1695 SVM_EVTINJ_TYPE_EXEPT |
1696 PF_VECTOR;
1697 vcpu->svm->vmcb->control.event_inj_err = err_code;
1698}
1699
1700
1701static int is_disabled(void)
1702{
1703 return 0;
1704}
1705
102d8325
IM
1706static void
1707svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1708{
1709 /*
1710 * Patch in the VMMCALL instruction:
1711 */
1712 hypercall[0] = 0x0f;
1713 hypercall[1] = 0x01;
1714 hypercall[2] = 0xd9;
1715 hypercall[3] = 0xc3;
1716}
1717
6aa8b732
AK
1718static struct kvm_arch_ops svm_arch_ops = {
1719 .cpu_has_kvm_support = has_svm,
1720 .disabled_by_bios = is_disabled,
1721 .hardware_setup = svm_hardware_setup,
1722 .hardware_unsetup = svm_hardware_unsetup,
1723 .hardware_enable = svm_hardware_enable,
1724 .hardware_disable = svm_hardware_disable,
1725
1726 .vcpu_create = svm_create_vcpu,
1727 .vcpu_free = svm_free_vcpu,
1728
1729 .vcpu_load = svm_vcpu_load,
1730 .vcpu_put = svm_vcpu_put,
774c47f1 1731 .vcpu_decache = svm_vcpu_decache,
6aa8b732
AK
1732
1733 .set_guest_debug = svm_guest_debug,
1734 .get_msr = svm_get_msr,
1735 .set_msr = svm_set_msr,
1736 .get_segment_base = svm_get_segment_base,
1737 .get_segment = svm_get_segment,
1738 .set_segment = svm_set_segment,
6aa8b732 1739 .get_cs_db_l_bits = svm_get_cs_db_l_bits,
399badf3 1740 .decache_cr0_cr4_guest_bits = svm_decache_cr0_cr4_guest_bits,
6aa8b732 1741 .set_cr0 = svm_set_cr0,
6aa8b732
AK
1742 .set_cr3 = svm_set_cr3,
1743 .set_cr4 = svm_set_cr4,
1744 .set_efer = svm_set_efer,
1745 .get_idt = svm_get_idt,
1746 .set_idt = svm_set_idt,
1747 .get_gdt = svm_get_gdt,
1748 .set_gdt = svm_set_gdt,
1749 .get_dr = svm_get_dr,
1750 .set_dr = svm_set_dr,
1751 .cache_regs = svm_cache_regs,
1752 .decache_regs = svm_decache_regs,
1753 .get_rflags = svm_get_rflags,
1754 .set_rflags = svm_set_rflags,
1755
1756 .invlpg = svm_invlpg,
1757 .tlb_flush = svm_flush_tlb,
1758 .inject_page_fault = svm_inject_page_fault,
1759
1760 .inject_gp = svm_inject_gp,
1761
1762 .run = svm_vcpu_run,
1763 .skip_emulated_instruction = skip_emulated_instruction,
1764 .vcpu_setup = svm_vcpu_setup,
102d8325 1765 .patch_hypercall = svm_patch_hypercall,
6aa8b732
AK
1766};
1767
1768static int __init svm_init(void)
1769{
873a7c42 1770 return kvm_init_arch(&svm_arch_ops, THIS_MODULE);
6aa8b732
AK
1771}
1772
1773static void __exit svm_exit(void)
1774{
1775 kvm_exit_arch();
1776}
1777
1778module_init(svm_init)
1779module_exit(svm_exit)