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