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