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