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