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