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