]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/svm.c
KVM: SVM: Add intercept checks for remaining twobyte instructions
[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.
9611c187 7 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
8 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
edf88417
AK
17#include <linux/kvm_host.h>
18
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>
229456fc 29#include <linux/ftrace_event.h>
5a0e3ad6 30#include <linux/slab.h>
6aa8b732 31
67ec6607 32#include <asm/tlbflush.h>
e495606d 33#include <asm/desc.h>
631bc487 34#include <asm/kvm_para.h>
6aa8b732 35
63d1142f 36#include <asm/virtext.h>
229456fc 37#include "trace.h"
63d1142f 38
4ecac3fd
AK
39#define __ex(x) __kvm_handle_fault_on_reboot(x)
40
6aa8b732
AK
41MODULE_AUTHOR("Qumranet");
42MODULE_LICENSE("GPL");
43
44#define IOPM_ALLOC_ORDER 2
45#define MSRPM_ALLOC_ORDER 1
46
6aa8b732
AK
47#define SEG_TYPE_LDT 2
48#define SEG_TYPE_BUSY_TSS16 3
49
6bc31bdc
AP
50#define SVM_FEATURE_NPT (1 << 0)
51#define SVM_FEATURE_LBRV (1 << 1)
52#define SVM_FEATURE_SVML (1 << 2)
53#define SVM_FEATURE_NRIP (1 << 3)
ddce97aa
AP
54#define SVM_FEATURE_TSC_RATE (1 << 4)
55#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
56#define SVM_FEATURE_FLUSH_ASID (1 << 6)
57#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
6bc31bdc 58#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
80b7706e 59
410e4d57
JR
60#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
61#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
62#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
63
24e09cbf
JR
64#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
65
67ec6607
JR
66static bool erratum_383_found __read_mostly;
67
6c8166a7
AK
68static const u32 host_save_user_msrs[] = {
69#ifdef CONFIG_X86_64
70 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
71 MSR_FS_BASE,
72#endif
73 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
74};
75
76#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
77
78struct kvm_vcpu;
79
e6aa9abd
JR
80struct nested_state {
81 struct vmcb *hsave;
82 u64 hsave_msr;
4a810181 83 u64 vm_cr_msr;
e6aa9abd
JR
84 u64 vmcb;
85
86 /* These are the merged vectors */
87 u32 *msrpm;
88
89 /* gpa pointers to the real vectors */
90 u64 vmcb_msrpm;
ce2ac085 91 u64 vmcb_iopm;
aad42c64 92
cd3ff653
JR
93 /* A VMEXIT is required but not yet emulated */
94 bool exit_required;
95
cda00082
JR
96 /*
97 * If we vmexit during an instruction emulation we need this to restore
98 * the l1 guest rip after the emulation
99 */
100 unsigned long vmexit_rip;
101 unsigned long vmexit_rsp;
102 unsigned long vmexit_rax;
103
aad42c64 104 /* cache for intercepts of the guest */
4ee546b4 105 u32 intercept_cr;
3aed041a 106 u32 intercept_dr;
aad42c64
JR
107 u32 intercept_exceptions;
108 u64 intercept;
109
5bd2edc3
JR
110 /* Nested Paging related state */
111 u64 nested_cr3;
e6aa9abd
JR
112};
113
323c3d80
JR
114#define MSRPM_OFFSETS 16
115static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
116
6c8166a7
AK
117struct vcpu_svm {
118 struct kvm_vcpu vcpu;
119 struct vmcb *vmcb;
120 unsigned long vmcb_pa;
121 struct svm_cpu_data *svm_data;
122 uint64_t asid_generation;
123 uint64_t sysenter_esp;
124 uint64_t sysenter_eip;
125
126 u64 next_rip;
127
128 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
afe9e66f 129 struct {
dacccfdd
AK
130 u16 fs;
131 u16 gs;
132 u16 ldt;
afe9e66f
AK
133 u64 gs_base;
134 } host;
6c8166a7
AK
135
136 u32 *msrpm;
6c8166a7 137
bd3d1ec3
AK
138 ulong nmi_iret_rip;
139
e6aa9abd 140 struct nested_state nested;
6be7d306
JK
141
142 bool nmi_singlestep;
66b7138f
JK
143
144 unsigned int3_injected;
145 unsigned long int3_rip;
631bc487 146 u32 apf_reason;
6c8166a7
AK
147};
148
455716fa
JR
149#define MSR_INVALID 0xffffffffU
150
ac72a9b7
JR
151static struct svm_direct_access_msrs {
152 u32 index; /* Index of the MSR */
153 bool always; /* True if intercept is always on */
154} direct_access_msrs[] = {
8c06585d 155 { .index = MSR_STAR, .always = true },
ac72a9b7
JR
156 { .index = MSR_IA32_SYSENTER_CS, .always = true },
157#ifdef CONFIG_X86_64
158 { .index = MSR_GS_BASE, .always = true },
159 { .index = MSR_FS_BASE, .always = true },
160 { .index = MSR_KERNEL_GS_BASE, .always = true },
161 { .index = MSR_LSTAR, .always = true },
162 { .index = MSR_CSTAR, .always = true },
163 { .index = MSR_SYSCALL_MASK, .always = true },
164#endif
165 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
166 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
167 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
168 { .index = MSR_IA32_LASTINTTOIP, .always = false },
169 { .index = MSR_INVALID, .always = false },
6c8166a7
AK
170};
171
709ddebf
JR
172/* enable NPT for AMD64 and X86 with PAE */
173#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
174static bool npt_enabled = true;
175#else
e0231715 176static bool npt_enabled;
709ddebf 177#endif
6c7dac72
JR
178static int npt = 1;
179
180module_param(npt, int, S_IRUGO);
e3da3acd 181
4b6e4dca 182static int nested = 1;
236de055
AG
183module_param(nested, int, S_IRUGO);
184
44874f84 185static void svm_flush_tlb(struct kvm_vcpu *vcpu);
a5c3832d 186static void svm_complete_interrupts(struct vcpu_svm *svm);
04d2cc77 187
410e4d57 188static int nested_svm_exit_handled(struct vcpu_svm *svm);
b8e88bc8 189static int nested_svm_intercept(struct vcpu_svm *svm);
cf74a78b 190static int nested_svm_vmexit(struct vcpu_svm *svm);
cf74a78b
AG
191static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
192 bool has_error_code, u32 error_code);
193
8d28fec4 194enum {
116a0a23
JR
195 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
196 pause filter count */
f56838e4 197 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
d48086d1 198 VMCB_ASID, /* ASID */
decdbf6a 199 VMCB_INTR, /* int_ctl, int_vector */
b2747166 200 VMCB_NPT, /* npt_en, nCR3, gPAT */
dcca1a65 201 VMCB_CR, /* CR0, CR3, CR4, EFER */
72214b96 202 VMCB_DR, /* DR6, DR7 */
17a703cb 203 VMCB_DT, /* GDT, IDT */
060d0c9a 204 VMCB_SEG, /* CS, DS, SS, ES, CPL */
0574dec0 205 VMCB_CR2, /* CR2 only */
b53ba3f9 206 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
8d28fec4
RJ
207 VMCB_DIRTY_MAX,
208};
209
0574dec0
JR
210/* TPR and CR2 are always written before VMRUN */
211#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
8d28fec4
RJ
212
213static inline void mark_all_dirty(struct vmcb *vmcb)
214{
215 vmcb->control.clean = 0;
216}
217
218static inline void mark_all_clean(struct vmcb *vmcb)
219{
220 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
221 & ~VMCB_ALWAYS_DIRTY_MASK;
222}
223
224static inline void mark_dirty(struct vmcb *vmcb, int bit)
225{
226 vmcb->control.clean &= ~(1 << bit);
227}
228
a2fa3e9f
GH
229static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
230{
fb3f0f51 231 return container_of(vcpu, struct vcpu_svm, vcpu);
a2fa3e9f
GH
232}
233
384c6368
JR
234static void recalc_intercepts(struct vcpu_svm *svm)
235{
236 struct vmcb_control_area *c, *h;
237 struct nested_state *g;
238
116a0a23
JR
239 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
240
384c6368
JR
241 if (!is_guest_mode(&svm->vcpu))
242 return;
243
244 c = &svm->vmcb->control;
245 h = &svm->nested.hsave->control;
246 g = &svm->nested;
247
4ee546b4 248 c->intercept_cr = h->intercept_cr | g->intercept_cr;
3aed041a 249 c->intercept_dr = h->intercept_dr | g->intercept_dr;
384c6368
JR
250 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
251 c->intercept = h->intercept | g->intercept;
252}
253
4ee546b4
RJ
254static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
255{
256 if (is_guest_mode(&svm->vcpu))
257 return svm->nested.hsave;
258 else
259 return svm->vmcb;
260}
261
262static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
263{
264 struct vmcb *vmcb = get_host_vmcb(svm);
265
266 vmcb->control.intercept_cr |= (1U << bit);
267
268 recalc_intercepts(svm);
269}
270
271static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
272{
273 struct vmcb *vmcb = get_host_vmcb(svm);
274
275 vmcb->control.intercept_cr &= ~(1U << bit);
276
277 recalc_intercepts(svm);
278}
279
280static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
281{
282 struct vmcb *vmcb = get_host_vmcb(svm);
283
284 return vmcb->control.intercept_cr & (1U << bit);
285}
286
3aed041a
JR
287static inline void set_dr_intercept(struct vcpu_svm *svm, int bit)
288{
289 struct vmcb *vmcb = get_host_vmcb(svm);
290
291 vmcb->control.intercept_dr |= (1U << bit);
292
293 recalc_intercepts(svm);
294}
295
296static inline void clr_dr_intercept(struct vcpu_svm *svm, int bit)
297{
298 struct vmcb *vmcb = get_host_vmcb(svm);
299
300 vmcb->control.intercept_dr &= ~(1U << bit);
301
302 recalc_intercepts(svm);
303}
304
18c918c5
JR
305static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
306{
307 struct vmcb *vmcb = get_host_vmcb(svm);
308
309 vmcb->control.intercept_exceptions |= (1U << bit);
310
311 recalc_intercepts(svm);
312}
313
314static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
315{
316 struct vmcb *vmcb = get_host_vmcb(svm);
317
318 vmcb->control.intercept_exceptions &= ~(1U << bit);
319
320 recalc_intercepts(svm);
321}
322
8a05a1b8
JR
323static inline void set_intercept(struct vcpu_svm *svm, int bit)
324{
325 struct vmcb *vmcb = get_host_vmcb(svm);
326
327 vmcb->control.intercept |= (1ULL << bit);
328
329 recalc_intercepts(svm);
330}
331
332static inline void clr_intercept(struct vcpu_svm *svm, int bit)
333{
334 struct vmcb *vmcb = get_host_vmcb(svm);
335
336 vmcb->control.intercept &= ~(1ULL << bit);
337
338 recalc_intercepts(svm);
339}
340
2af9194d
JR
341static inline void enable_gif(struct vcpu_svm *svm)
342{
343 svm->vcpu.arch.hflags |= HF_GIF_MASK;
344}
345
346static inline void disable_gif(struct vcpu_svm *svm)
347{
348 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
349}
350
351static inline bool gif_set(struct vcpu_svm *svm)
352{
353 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
354}
355
4866d5e3 356static unsigned long iopm_base;
6aa8b732
AK
357
358struct kvm_ldttss_desc {
359 u16 limit0;
360 u16 base0;
e0231715
JR
361 unsigned base1:8, type:5, dpl:2, p:1;
362 unsigned limit1:4, zero0:3, g:1, base2:8;
6aa8b732
AK
363 u32 base3;
364 u32 zero1;
365} __attribute__((packed));
366
367struct svm_cpu_data {
368 int cpu;
369
5008fdf5
AK
370 u64 asid_generation;
371 u32 max_asid;
372 u32 next_asid;
6aa8b732
AK
373 struct kvm_ldttss_desc *tss_desc;
374
375 struct page *save_area;
376};
377
378static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
379
380struct svm_init_data {
381 int cpu;
382 int r;
383};
384
385static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
386
9d8f549d 387#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
388#define MSRS_RANGE_SIZE 2048
389#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
390
455716fa
JR
391static u32 svm_msrpm_offset(u32 msr)
392{
393 u32 offset;
394 int i;
395
396 for (i = 0; i < NUM_MSR_MAPS; i++) {
397 if (msr < msrpm_ranges[i] ||
398 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
399 continue;
400
401 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
402 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
403
404 /* Now we have the u8 offset - but need the u32 offset */
405 return offset / 4;
406 }
407
408 /* MSR not in any range */
409 return MSR_INVALID;
410}
411
6aa8b732
AK
412#define MAX_INST_SIZE 15
413
6aa8b732
AK
414static inline void clgi(void)
415{
4ecac3fd 416 asm volatile (__ex(SVM_CLGI));
6aa8b732
AK
417}
418
419static inline void stgi(void)
420{
4ecac3fd 421 asm volatile (__ex(SVM_STGI));
6aa8b732
AK
422}
423
424static inline void invlpga(unsigned long addr, u32 asid)
425{
e0231715 426 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
6aa8b732
AK
427}
428
4b16184c
JR
429static int get_npt_level(void)
430{
431#ifdef CONFIG_X86_64
432 return PT64_ROOT_LEVEL;
433#else
434 return PT32E_ROOT_LEVEL;
435#endif
436}
437
6aa8b732
AK
438static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
439{
6dc696d4 440 vcpu->arch.efer = efer;
709ddebf 441 if (!npt_enabled && !(efer & EFER_LMA))
2b5203ee 442 efer &= ~EFER_LME;
6aa8b732 443
9962d032 444 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
dcca1a65 445 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
6aa8b732
AK
446}
447
6aa8b732
AK
448static int is_external_interrupt(u32 info)
449{
450 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
451 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
452}
453
2809f5d2
GC
454static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
455{
456 struct vcpu_svm *svm = to_svm(vcpu);
457 u32 ret = 0;
458
459 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
48005f64 460 ret |= KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
2809f5d2
GC
461 return ret & mask;
462}
463
464static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
465{
466 struct vcpu_svm *svm = to_svm(vcpu);
467
468 if (mask == 0)
469 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
470 else
471 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
472
473}
474
6aa8b732
AK
475static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
476{
a2fa3e9f
GH
477 struct vcpu_svm *svm = to_svm(vcpu);
478
6bc31bdc
AP
479 if (svm->vmcb->control.next_rip != 0)
480 svm->next_rip = svm->vmcb->control.next_rip;
481
a2fa3e9f 482 if (!svm->next_rip) {
51d8b661 483 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
f629cf84
GN
484 EMULATE_DONE)
485 printk(KERN_DEBUG "%s: NOP\n", __func__);
6aa8b732
AK
486 return;
487 }
5fdbf976
MT
488 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
489 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
490 __func__, kvm_rip_read(vcpu), svm->next_rip);
6aa8b732 491
5fdbf976 492 kvm_rip_write(vcpu, svm->next_rip);
2809f5d2 493 svm_set_interrupt_shadow(vcpu, 0);
6aa8b732
AK
494}
495
116a4752 496static void svm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
ce7ddec4
JR
497 bool has_error_code, u32 error_code,
498 bool reinject)
116a4752
JK
499{
500 struct vcpu_svm *svm = to_svm(vcpu);
501
e0231715
JR
502 /*
503 * If we are within a nested VM we'd better #VMEXIT and let the guest
504 * handle the exception
505 */
ce7ddec4
JR
506 if (!reinject &&
507 nested_svm_check_exception(svm, nr, has_error_code, error_code))
116a4752
JK
508 return;
509
2a6b20b8 510 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
66b7138f
JK
511 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
512
513 /*
514 * For guest debugging where we have to reinject #BP if some
515 * INT3 is guest-owned:
516 * Emulate nRIP by moving RIP forward. Will fail if injection
517 * raises a fault that is not intercepted. Still better than
518 * failing in all cases.
519 */
520 skip_emulated_instruction(&svm->vcpu);
521 rip = kvm_rip_read(&svm->vcpu);
522 svm->int3_rip = rip + svm->vmcb->save.cs.base;
523 svm->int3_injected = rip - old_rip;
524 }
525
116a4752
JK
526 svm->vmcb->control.event_inj = nr
527 | SVM_EVTINJ_VALID
528 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
529 | SVM_EVTINJ_TYPE_EXEPT;
530 svm->vmcb->control.event_inj_err = error_code;
531}
532
67ec6607
JR
533static void svm_init_erratum_383(void)
534{
535 u32 low, high;
536 int err;
537 u64 val;
538
1be85a6d 539 if (!cpu_has_amd_erratum(amd_erratum_383))
67ec6607
JR
540 return;
541
542 /* Use _safe variants to not break nested virtualization */
543 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
544 if (err)
545 return;
546
547 val |= (1ULL << 47);
548
549 low = lower_32_bits(val);
550 high = upper_32_bits(val);
551
552 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
553
554 erratum_383_found = true;
555}
556
6aa8b732
AK
557static int has_svm(void)
558{
63d1142f 559 const char *msg;
6aa8b732 560
63d1142f 561 if (!cpu_has_svm(&msg)) {
ff81ff10 562 printk(KERN_INFO "has_svm: %s\n", msg);
6aa8b732
AK
563 return 0;
564 }
565
6aa8b732
AK
566 return 1;
567}
568
569static void svm_hardware_disable(void *garbage)
570{
2c8dceeb 571 cpu_svm_disable();
6aa8b732
AK
572}
573
10474ae8 574static int svm_hardware_enable(void *garbage)
6aa8b732
AK
575{
576
0fe1e009 577 struct svm_cpu_data *sd;
6aa8b732 578 uint64_t efer;
89a27f4d 579 struct desc_ptr gdt_descr;
6aa8b732
AK
580 struct desc_struct *gdt;
581 int me = raw_smp_processor_id();
582
10474ae8
AG
583 rdmsrl(MSR_EFER, efer);
584 if (efer & EFER_SVME)
585 return -EBUSY;
586
6aa8b732 587 if (!has_svm()) {
e6732a5a
ZA
588 printk(KERN_ERR "svm_hardware_enable: err EOPNOTSUPP on %d\n",
589 me);
10474ae8 590 return -EINVAL;
6aa8b732 591 }
0fe1e009 592 sd = per_cpu(svm_data, me);
6aa8b732 593
0fe1e009 594 if (!sd) {
e6732a5a 595 printk(KERN_ERR "svm_hardware_enable: svm_data is NULL on %d\n",
6aa8b732 596 me);
10474ae8 597 return -EINVAL;
6aa8b732
AK
598 }
599
0fe1e009
TH
600 sd->asid_generation = 1;
601 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
602 sd->next_asid = sd->max_asid + 1;
6aa8b732 603
d6ab1ed4 604 native_store_gdt(&gdt_descr);
89a27f4d 605 gdt = (struct desc_struct *)gdt_descr.address;
0fe1e009 606 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
6aa8b732 607
9962d032 608 wrmsrl(MSR_EFER, efer | EFER_SVME);
6aa8b732 609
d0316554 610 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
10474ae8 611
67ec6607
JR
612 svm_init_erratum_383();
613
10474ae8 614 return 0;
6aa8b732
AK
615}
616
0da1db75
JR
617static void svm_cpu_uninit(int cpu)
618{
0fe1e009 619 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
0da1db75 620
0fe1e009 621 if (!sd)
0da1db75
JR
622 return;
623
624 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
0fe1e009
TH
625 __free_page(sd->save_area);
626 kfree(sd);
0da1db75
JR
627}
628
6aa8b732
AK
629static int svm_cpu_init(int cpu)
630{
0fe1e009 631 struct svm_cpu_data *sd;
6aa8b732
AK
632 int r;
633
0fe1e009
TH
634 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
635 if (!sd)
6aa8b732 636 return -ENOMEM;
0fe1e009
TH
637 sd->cpu = cpu;
638 sd->save_area = alloc_page(GFP_KERNEL);
6aa8b732 639 r = -ENOMEM;
0fe1e009 640 if (!sd->save_area)
6aa8b732
AK
641 goto err_1;
642
0fe1e009 643 per_cpu(svm_data, cpu) = sd;
6aa8b732
AK
644
645 return 0;
646
647err_1:
0fe1e009 648 kfree(sd);
6aa8b732
AK
649 return r;
650
651}
652
ac72a9b7
JR
653static bool valid_msr_intercept(u32 index)
654{
655 int i;
656
657 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
658 if (direct_access_msrs[i].index == index)
659 return true;
660
661 return false;
662}
663
bfc733a7
RR
664static void set_msr_interception(u32 *msrpm, unsigned msr,
665 int read, int write)
6aa8b732 666{
455716fa
JR
667 u8 bit_read, bit_write;
668 unsigned long tmp;
669 u32 offset;
6aa8b732 670
ac72a9b7
JR
671 /*
672 * If this warning triggers extend the direct_access_msrs list at the
673 * beginning of the file
674 */
675 WARN_ON(!valid_msr_intercept(msr));
676
455716fa
JR
677 offset = svm_msrpm_offset(msr);
678 bit_read = 2 * (msr & 0x0f);
679 bit_write = 2 * (msr & 0x0f) + 1;
680 tmp = msrpm[offset];
681
682 BUG_ON(offset == MSR_INVALID);
683
684 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
685 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
686
687 msrpm[offset] = tmp;
6aa8b732
AK
688}
689
f65c229c 690static void svm_vcpu_init_msrpm(u32 *msrpm)
6aa8b732
AK
691{
692 int i;
693
f65c229c
JR
694 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
695
ac72a9b7
JR
696 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
697 if (!direct_access_msrs[i].always)
698 continue;
699
700 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
701 }
f65c229c
JR
702}
703
323c3d80
JR
704static void add_msr_offset(u32 offset)
705{
706 int i;
707
708 for (i = 0; i < MSRPM_OFFSETS; ++i) {
709
710 /* Offset already in list? */
711 if (msrpm_offsets[i] == offset)
bfc733a7 712 return;
323c3d80
JR
713
714 /* Slot used by another offset? */
715 if (msrpm_offsets[i] != MSR_INVALID)
716 continue;
717
718 /* Add offset to list */
719 msrpm_offsets[i] = offset;
720
721 return;
6aa8b732 722 }
323c3d80
JR
723
724 /*
725 * If this BUG triggers the msrpm_offsets table has an overflow. Just
726 * increase MSRPM_OFFSETS in this case.
727 */
bfc733a7 728 BUG();
6aa8b732
AK
729}
730
323c3d80 731static void init_msrpm_offsets(void)
f65c229c 732{
323c3d80 733 int i;
f65c229c 734
323c3d80
JR
735 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
736
737 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
738 u32 offset;
739
740 offset = svm_msrpm_offset(direct_access_msrs[i].index);
741 BUG_ON(offset == MSR_INVALID);
742
743 add_msr_offset(offset);
744 }
f65c229c
JR
745}
746
24e09cbf
JR
747static void svm_enable_lbrv(struct vcpu_svm *svm)
748{
749 u32 *msrpm = svm->msrpm;
750
751 svm->vmcb->control.lbr_ctl = 1;
752 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
753 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
754 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
755 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
756}
757
758static void svm_disable_lbrv(struct vcpu_svm *svm)
759{
760 u32 *msrpm = svm->msrpm;
761
762 svm->vmcb->control.lbr_ctl = 0;
763 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
764 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
765 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
766 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
767}
768
6aa8b732
AK
769static __init int svm_hardware_setup(void)
770{
771 int cpu;
772 struct page *iopm_pages;
f65c229c 773 void *iopm_va;
6aa8b732
AK
774 int r;
775
6aa8b732
AK
776 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
777
778 if (!iopm_pages)
779 return -ENOMEM;
c8681339
AL
780
781 iopm_va = page_address(iopm_pages);
782 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
6aa8b732
AK
783 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
784
323c3d80
JR
785 init_msrpm_offsets();
786
50a37eb4
JR
787 if (boot_cpu_has(X86_FEATURE_NX))
788 kvm_enable_efer_bits(EFER_NX);
789
1b2fd70c
AG
790 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
791 kvm_enable_efer_bits(EFER_FFXSR);
792
236de055
AG
793 if (nested) {
794 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
eec4b140 795 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
236de055
AG
796 }
797
3230bb47 798 for_each_possible_cpu(cpu) {
6aa8b732
AK
799 r = svm_cpu_init(cpu);
800 if (r)
f65c229c 801 goto err;
6aa8b732 802 }
33bd6a0b 803
2a6b20b8 804 if (!boot_cpu_has(X86_FEATURE_NPT))
e3da3acd
JR
805 npt_enabled = false;
806
6c7dac72
JR
807 if (npt_enabled && !npt) {
808 printk(KERN_INFO "kvm: Nested Paging disabled\n");
809 npt_enabled = false;
810 }
811
18552672 812 if (npt_enabled) {
e3da3acd 813 printk(KERN_INFO "kvm: Nested Paging enabled\n");
18552672 814 kvm_enable_tdp();
5f4cb662
JR
815 } else
816 kvm_disable_tdp();
e3da3acd 817
6aa8b732
AK
818 return 0;
819
f65c229c 820err:
6aa8b732
AK
821 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
822 iopm_base = 0;
823 return r;
824}
825
826static __exit void svm_hardware_unsetup(void)
827{
0da1db75
JR
828 int cpu;
829
3230bb47 830 for_each_possible_cpu(cpu)
0da1db75
JR
831 svm_cpu_uninit(cpu);
832
6aa8b732 833 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
f65c229c 834 iopm_base = 0;
6aa8b732
AK
835}
836
837static void init_seg(struct vmcb_seg *seg)
838{
839 seg->selector = 0;
840 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
e0231715 841 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
6aa8b732
AK
842 seg->limit = 0xffff;
843 seg->base = 0;
844}
845
846static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
847{
848 seg->selector = 0;
849 seg->attrib = SVM_SELECTOR_P_MASK | type;
850 seg->limit = 0xffff;
851 seg->base = 0;
852}
853
f4e1b3c8
ZA
854static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
855{
856 struct vcpu_svm *svm = to_svm(vcpu);
857 u64 g_tsc_offset = 0;
858
2030753d 859 if (is_guest_mode(vcpu)) {
f4e1b3c8
ZA
860 g_tsc_offset = svm->vmcb->control.tsc_offset -
861 svm->nested.hsave->control.tsc_offset;
862 svm->nested.hsave->control.tsc_offset = offset;
863 }
864
865 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
116a0a23
JR
866
867 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
f4e1b3c8
ZA
868}
869
e48672fa
ZA
870static void svm_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
871{
872 struct vcpu_svm *svm = to_svm(vcpu);
873
874 svm->vmcb->control.tsc_offset += adjustment;
2030753d 875 if (is_guest_mode(vcpu))
e48672fa 876 svm->nested.hsave->control.tsc_offset += adjustment;
116a0a23 877 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
e48672fa
ZA
878}
879
e6101a96 880static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 881{
e6101a96
JR
882 struct vmcb_control_area *control = &svm->vmcb->control;
883 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732 884
bff78274 885 svm->vcpu.fpu_active = 1;
4ee546b4 886 svm->vcpu.arch.hflags = 0;
bff78274 887
4ee546b4
RJ
888 set_cr_intercept(svm, INTERCEPT_CR0_READ);
889 set_cr_intercept(svm, INTERCEPT_CR3_READ);
890 set_cr_intercept(svm, INTERCEPT_CR4_READ);
891 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
892 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
893 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
894 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
6aa8b732 895
3aed041a
JR
896 set_dr_intercept(svm, INTERCEPT_DR0_READ);
897 set_dr_intercept(svm, INTERCEPT_DR1_READ);
898 set_dr_intercept(svm, INTERCEPT_DR2_READ);
899 set_dr_intercept(svm, INTERCEPT_DR3_READ);
900 set_dr_intercept(svm, INTERCEPT_DR4_READ);
901 set_dr_intercept(svm, INTERCEPT_DR5_READ);
902 set_dr_intercept(svm, INTERCEPT_DR6_READ);
903 set_dr_intercept(svm, INTERCEPT_DR7_READ);
904
905 set_dr_intercept(svm, INTERCEPT_DR0_WRITE);
906 set_dr_intercept(svm, INTERCEPT_DR1_WRITE);
907 set_dr_intercept(svm, INTERCEPT_DR2_WRITE);
908 set_dr_intercept(svm, INTERCEPT_DR3_WRITE);
909 set_dr_intercept(svm, INTERCEPT_DR4_WRITE);
910 set_dr_intercept(svm, INTERCEPT_DR5_WRITE);
911 set_dr_intercept(svm, INTERCEPT_DR6_WRITE);
912 set_dr_intercept(svm, INTERCEPT_DR7_WRITE);
6aa8b732 913
18c918c5
JR
914 set_exception_intercept(svm, PF_VECTOR);
915 set_exception_intercept(svm, UD_VECTOR);
916 set_exception_intercept(svm, MC_VECTOR);
6aa8b732 917
8a05a1b8
JR
918 set_intercept(svm, INTERCEPT_INTR);
919 set_intercept(svm, INTERCEPT_NMI);
920 set_intercept(svm, INTERCEPT_SMI);
921 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
922 set_intercept(svm, INTERCEPT_CPUID);
923 set_intercept(svm, INTERCEPT_INVD);
924 set_intercept(svm, INTERCEPT_HLT);
925 set_intercept(svm, INTERCEPT_INVLPG);
926 set_intercept(svm, INTERCEPT_INVLPGA);
927 set_intercept(svm, INTERCEPT_IOIO_PROT);
928 set_intercept(svm, INTERCEPT_MSR_PROT);
929 set_intercept(svm, INTERCEPT_TASK_SWITCH);
930 set_intercept(svm, INTERCEPT_SHUTDOWN);
931 set_intercept(svm, INTERCEPT_VMRUN);
932 set_intercept(svm, INTERCEPT_VMMCALL);
933 set_intercept(svm, INTERCEPT_VMLOAD);
934 set_intercept(svm, INTERCEPT_VMSAVE);
935 set_intercept(svm, INTERCEPT_STGI);
936 set_intercept(svm, INTERCEPT_CLGI);
937 set_intercept(svm, INTERCEPT_SKINIT);
938 set_intercept(svm, INTERCEPT_WBINVD);
939 set_intercept(svm, INTERCEPT_MONITOR);
940 set_intercept(svm, INTERCEPT_MWAIT);
81dd35d4 941 set_intercept(svm, INTERCEPT_XSETBV);
6aa8b732
AK
942
943 control->iopm_base_pa = iopm_base;
f65c229c 944 control->msrpm_base_pa = __pa(svm->msrpm);
6aa8b732
AK
945 control->int_ctl = V_INTR_MASKING_MASK;
946
947 init_seg(&save->es);
948 init_seg(&save->ss);
949 init_seg(&save->ds);
950 init_seg(&save->fs);
951 init_seg(&save->gs);
952
953 save->cs.selector = 0xf000;
954 /* Executable/Readable Code Segment */
955 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
956 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
957 save->cs.limit = 0xffff;
d92899a0
AK
958 /*
959 * cs.base should really be 0xffff0000, but vmx can't handle that, so
960 * be consistent with it.
961 *
962 * Replace when we have real mode working for vmx.
963 */
964 save->cs.base = 0xf0000;
6aa8b732
AK
965
966 save->gdtr.limit = 0xffff;
967 save->idtr.limit = 0xffff;
968
969 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
970 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
971
eaa48512 972 svm_set_efer(&svm->vcpu, 0);
d77c26fc 973 save->dr6 = 0xffff0ff0;
6aa8b732 974 save->dr7 = 0x400;
f6e78475 975 kvm_set_rflags(&svm->vcpu, 2);
6aa8b732 976 save->rip = 0x0000fff0;
5fdbf976 977 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732 978
e0231715
JR
979 /*
980 * This is the guest-visible cr0 value.
18fa000a 981 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
6aa8b732 982 */
678041ad
MT
983 svm->vcpu.arch.cr0 = 0;
984 (void)kvm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
18fa000a 985
66aee91a 986 save->cr4 = X86_CR4_PAE;
6aa8b732 987 /* rdx = ?? */
709ddebf
JR
988
989 if (npt_enabled) {
990 /* Setup VMCB for Nested Paging */
991 control->nested_ctl = 1;
8a05a1b8
JR
992 clr_intercept(svm, INTERCEPT_TASK_SWITCH);
993 clr_intercept(svm, INTERCEPT_INVLPG);
18c918c5 994 clr_exception_intercept(svm, PF_VECTOR);
4ee546b4
RJ
995 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
996 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
709ddebf 997 save->g_pat = 0x0007040600070406ULL;
709ddebf
JR
998 save->cr3 = 0;
999 save->cr4 = 0;
1000 }
f40f6a45 1001 svm->asid_generation = 0;
1371d904 1002
e6aa9abd 1003 svm->nested.vmcb = 0;
2af9194d
JR
1004 svm->vcpu.arch.hflags = 0;
1005
2a6b20b8 1006 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
565d0998 1007 control->pause_filter_count = 3000;
8a05a1b8 1008 set_intercept(svm, INTERCEPT_PAUSE);
565d0998
ML
1009 }
1010
8d28fec4
RJ
1011 mark_all_dirty(svm->vmcb);
1012
2af9194d 1013 enable_gif(svm);
6aa8b732
AK
1014}
1015
e00c8cf2 1016static int svm_vcpu_reset(struct kvm_vcpu *vcpu)
04d2cc77
AK
1017{
1018 struct vcpu_svm *svm = to_svm(vcpu);
1019
e6101a96 1020 init_vmcb(svm);
70433389 1021
c5af89b6 1022 if (!kvm_vcpu_is_bsp(vcpu)) {
5fdbf976 1023 kvm_rip_write(vcpu, 0);
ad312c7c
ZX
1024 svm->vmcb->save.cs.base = svm->vcpu.arch.sipi_vector << 12;
1025 svm->vmcb->save.cs.selector = svm->vcpu.arch.sipi_vector << 8;
70433389 1026 }
5fdbf976
MT
1027 vcpu->arch.regs_avail = ~0;
1028 vcpu->arch.regs_dirty = ~0;
e00c8cf2
AK
1029
1030 return 0;
04d2cc77
AK
1031}
1032
fb3f0f51 1033static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 1034{
a2fa3e9f 1035 struct vcpu_svm *svm;
6aa8b732 1036 struct page *page;
f65c229c 1037 struct page *msrpm_pages;
b286d5d8 1038 struct page *hsave_page;
3d6368ef 1039 struct page *nested_msrpm_pages;
fb3f0f51 1040 int err;
6aa8b732 1041
c16f862d 1042 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
fb3f0f51
RR
1043 if (!svm) {
1044 err = -ENOMEM;
1045 goto out;
1046 }
1047
1048 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1049 if (err)
1050 goto free_svm;
1051
b7af4043 1052 err = -ENOMEM;
6aa8b732 1053 page = alloc_page(GFP_KERNEL);
b7af4043 1054 if (!page)
fb3f0f51 1055 goto uninit;
6aa8b732 1056
f65c229c
JR
1057 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1058 if (!msrpm_pages)
b7af4043 1059 goto free_page1;
3d6368ef
AG
1060
1061 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1062 if (!nested_msrpm_pages)
b7af4043 1063 goto free_page2;
f65c229c 1064
b286d5d8
AG
1065 hsave_page = alloc_page(GFP_KERNEL);
1066 if (!hsave_page)
b7af4043
TY
1067 goto free_page3;
1068
e6aa9abd 1069 svm->nested.hsave = page_address(hsave_page);
b286d5d8 1070
b7af4043
TY
1071 svm->msrpm = page_address(msrpm_pages);
1072 svm_vcpu_init_msrpm(svm->msrpm);
1073
e6aa9abd 1074 svm->nested.msrpm = page_address(nested_msrpm_pages);
323c3d80 1075 svm_vcpu_init_msrpm(svm->nested.msrpm);
3d6368ef 1076
a2fa3e9f
GH
1077 svm->vmcb = page_address(page);
1078 clear_page(svm->vmcb);
1079 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
1080 svm->asid_generation = 0;
e6101a96 1081 init_vmcb(svm);
99e3e30a 1082 kvm_write_tsc(&svm->vcpu, 0);
a2fa3e9f 1083
10ab25cd
JK
1084 err = fx_init(&svm->vcpu);
1085 if (err)
1086 goto free_page4;
1087
ad312c7c 1088 svm->vcpu.arch.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
c5af89b6 1089 if (kvm_vcpu_is_bsp(&svm->vcpu))
ad312c7c 1090 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
6aa8b732 1091
fb3f0f51 1092 return &svm->vcpu;
36241b8c 1093
10ab25cd
JK
1094free_page4:
1095 __free_page(hsave_page);
b7af4043
TY
1096free_page3:
1097 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1098free_page2:
1099 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1100free_page1:
1101 __free_page(page);
fb3f0f51
RR
1102uninit:
1103 kvm_vcpu_uninit(&svm->vcpu);
1104free_svm:
a4770347 1105 kmem_cache_free(kvm_vcpu_cache, svm);
fb3f0f51
RR
1106out:
1107 return ERR_PTR(err);
6aa8b732
AK
1108}
1109
1110static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1111{
a2fa3e9f
GH
1112 struct vcpu_svm *svm = to_svm(vcpu);
1113
fb3f0f51 1114 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
f65c229c 1115 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
e6aa9abd
JR
1116 __free_page(virt_to_page(svm->nested.hsave));
1117 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
fb3f0f51 1118 kvm_vcpu_uninit(vcpu);
a4770347 1119 kmem_cache_free(kvm_vcpu_cache, svm);
6aa8b732
AK
1120}
1121
15ad7146 1122static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 1123{
a2fa3e9f 1124 struct vcpu_svm *svm = to_svm(vcpu);
15ad7146 1125 int i;
0cc5064d 1126
0cc5064d 1127 if (unlikely(cpu != vcpu->cpu)) {
4b656b12 1128 svm->asid_generation = 0;
8d28fec4 1129 mark_all_dirty(svm->vmcb);
0cc5064d 1130 }
94dfbdb3 1131
82ca2d10
AK
1132#ifdef CONFIG_X86_64
1133 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1134#endif
dacccfdd
AK
1135 savesegment(fs, svm->host.fs);
1136 savesegment(gs, svm->host.gs);
1137 svm->host.ldt = kvm_read_ldt();
1138
94dfbdb3 1139 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1140 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
1141}
1142
1143static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1144{
a2fa3e9f 1145 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
1146 int i;
1147
e1beb1d3 1148 ++vcpu->stat.host_state_reload;
dacccfdd
AK
1149 kvm_load_ldt(svm->host.ldt);
1150#ifdef CONFIG_X86_64
1151 loadsegment(fs, svm->host.fs);
dacccfdd 1152 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gs);
893a5ab6 1153 load_gs_index(svm->host.gs);
dacccfdd 1154#else
831ca609 1155#ifdef CONFIG_X86_32_LAZY_GS
dacccfdd 1156 loadsegment(gs, svm->host.gs);
831ca609 1157#endif
dacccfdd 1158#endif
94dfbdb3 1159 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1160 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
1161}
1162
6aa8b732
AK
1163static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1164{
a2fa3e9f 1165 return to_svm(vcpu)->vmcb->save.rflags;
6aa8b732
AK
1166}
1167
1168static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1169{
a2fa3e9f 1170 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
1171}
1172
6de4f3ad
AK
1173static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1174{
1175 switch (reg) {
1176 case VCPU_EXREG_PDPTR:
1177 BUG_ON(!npt_enabled);
9f8fe504 1178 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
6de4f3ad
AK
1179 break;
1180 default:
1181 BUG();
1182 }
1183}
1184
f0b85051
AG
1185static void svm_set_vintr(struct vcpu_svm *svm)
1186{
8a05a1b8 1187 set_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1188}
1189
1190static void svm_clear_vintr(struct vcpu_svm *svm)
1191{
8a05a1b8 1192 clr_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1193}
1194
6aa8b732
AK
1195static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1196{
a2fa3e9f 1197 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
1198
1199 switch (seg) {
1200 case VCPU_SREG_CS: return &save->cs;
1201 case VCPU_SREG_DS: return &save->ds;
1202 case VCPU_SREG_ES: return &save->es;
1203 case VCPU_SREG_FS: return &save->fs;
1204 case VCPU_SREG_GS: return &save->gs;
1205 case VCPU_SREG_SS: return &save->ss;
1206 case VCPU_SREG_TR: return &save->tr;
1207 case VCPU_SREG_LDTR: return &save->ldtr;
1208 }
1209 BUG();
8b6d44c7 1210 return NULL;
6aa8b732
AK
1211}
1212
1213static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1214{
1215 struct vmcb_seg *s = svm_seg(vcpu, seg);
1216
1217 return s->base;
1218}
1219
1220static void svm_get_segment(struct kvm_vcpu *vcpu,
1221 struct kvm_segment *var, int seg)
1222{
1223 struct vmcb_seg *s = svm_seg(vcpu, seg);
1224
1225 var->base = s->base;
1226 var->limit = s->limit;
1227 var->selector = s->selector;
1228 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1229 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1230 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1231 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1232 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1233 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1234 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
1235 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
25022acc 1236
e0231715
JR
1237 /*
1238 * AMD's VMCB does not have an explicit unusable field, so emulate it
19bca6ab
AP
1239 * for cross vendor migration purposes by "not present"
1240 */
1241 var->unusable = !var->present || (var->type == 0);
1242
1fbdc7a5
AP
1243 switch (seg) {
1244 case VCPU_SREG_CS:
1245 /*
1246 * SVM always stores 0 for the 'G' bit in the CS selector in
1247 * the VMCB on a VMEXIT. This hurts cross-vendor migration:
1248 * Intel's VMENTRY has a check on the 'G' bit.
1249 */
25022acc 1250 var->g = s->limit > 0xfffff;
1fbdc7a5
AP
1251 break;
1252 case VCPU_SREG_TR:
1253 /*
1254 * Work around a bug where the busy flag in the tr selector
1255 * isn't exposed
1256 */
c0d09828 1257 var->type |= 0x2;
1fbdc7a5
AP
1258 break;
1259 case VCPU_SREG_DS:
1260 case VCPU_SREG_ES:
1261 case VCPU_SREG_FS:
1262 case VCPU_SREG_GS:
1263 /*
1264 * The accessed bit must always be set in the segment
1265 * descriptor cache, although it can be cleared in the
1266 * descriptor, the cached bit always remains at 1. Since
1267 * Intel has a check on this, set it here to support
1268 * cross-vendor migration.
1269 */
1270 if (!var->unusable)
1271 var->type |= 0x1;
1272 break;
b586eb02 1273 case VCPU_SREG_SS:
e0231715
JR
1274 /*
1275 * On AMD CPUs sometimes the DB bit in the segment
b586eb02
AP
1276 * descriptor is left as 1, although the whole segment has
1277 * been made unusable. Clear it here to pass an Intel VMX
1278 * entry check when cross vendor migrating.
1279 */
1280 if (var->unusable)
1281 var->db = 0;
1282 break;
1fbdc7a5 1283 }
6aa8b732
AK
1284}
1285
2e4d2653
IE
1286static int svm_get_cpl(struct kvm_vcpu *vcpu)
1287{
1288 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1289
1290 return save->cpl;
1291}
1292
89a27f4d 1293static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1294{
a2fa3e9f
GH
1295 struct vcpu_svm *svm = to_svm(vcpu);
1296
89a27f4d
GN
1297 dt->size = svm->vmcb->save.idtr.limit;
1298 dt->address = svm->vmcb->save.idtr.base;
6aa8b732
AK
1299}
1300
89a27f4d 1301static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1302{
a2fa3e9f
GH
1303 struct vcpu_svm *svm = to_svm(vcpu);
1304
89a27f4d
GN
1305 svm->vmcb->save.idtr.limit = dt->size;
1306 svm->vmcb->save.idtr.base = dt->address ;
17a703cb 1307 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1308}
1309
89a27f4d 1310static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1311{
a2fa3e9f
GH
1312 struct vcpu_svm *svm = to_svm(vcpu);
1313
89a27f4d
GN
1314 dt->size = svm->vmcb->save.gdtr.limit;
1315 dt->address = svm->vmcb->save.gdtr.base;
6aa8b732
AK
1316}
1317
89a27f4d 1318static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1319{
a2fa3e9f
GH
1320 struct vcpu_svm *svm = to_svm(vcpu);
1321
89a27f4d
GN
1322 svm->vmcb->save.gdtr.limit = dt->size;
1323 svm->vmcb->save.gdtr.base = dt->address ;
17a703cb 1324 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1325}
1326
e8467fda
AK
1327static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1328{
1329}
1330
aff48baa
AK
1331static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1332{
1333}
1334
25c4c276 1335static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
1336{
1337}
1338
d225157b
AK
1339static void update_cr0_intercept(struct vcpu_svm *svm)
1340{
1341 ulong gcr0 = svm->vcpu.arch.cr0;
1342 u64 *hcr0 = &svm->vmcb->save.cr0;
1343
1344 if (!svm->vcpu.fpu_active)
1345 *hcr0 |= SVM_CR0_SELECTIVE_MASK;
1346 else
1347 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1348 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
1349
dcca1a65 1350 mark_dirty(svm->vmcb, VMCB_CR);
d225157b
AK
1351
1352 if (gcr0 == *hcr0 && svm->vcpu.fpu_active) {
4ee546b4
RJ
1353 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1354 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b 1355 } else {
4ee546b4
RJ
1356 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1357 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b
AK
1358 }
1359}
1360
6aa8b732
AK
1361static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1362{
a2fa3e9f
GH
1363 struct vcpu_svm *svm = to_svm(vcpu);
1364
2030753d 1365 if (is_guest_mode(vcpu)) {
7f5d8b56
JR
1366 /*
1367 * We are here because we run in nested mode, the host kvm
1368 * intercepts cr0 writes but the l1 hypervisor does not.
1369 * But the L1 hypervisor may intercept selective cr0 writes.
1370 * This needs to be checked here.
1371 */
1372 unsigned long old, new;
1373
1374 /* Remove bits that would trigger a real cr0 write intercept */
1375 old = vcpu->arch.cr0 & SVM_CR0_SELECTIVE_MASK;
1376 new = cr0 & SVM_CR0_SELECTIVE_MASK;
1377
1378 if (old == new) {
1379 /* cr0 write with ts and mp unchanged */
1380 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
cda00082
JR
1381 if (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE) {
1382 svm->nested.vmexit_rip = kvm_rip_read(vcpu);
1383 svm->nested.vmexit_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
1384 svm->nested.vmexit_rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
7f5d8b56 1385 return;
cda00082 1386 }
7f5d8b56
JR
1387 }
1388 }
1389
05b3e0c2 1390#ifdef CONFIG_X86_64
f6801dff 1391 if (vcpu->arch.efer & EFER_LME) {
707d92fa 1392 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
f6801dff 1393 vcpu->arch.efer |= EFER_LMA;
2b5203ee 1394 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
1395 }
1396
d77c26fc 1397 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
f6801dff 1398 vcpu->arch.efer &= ~EFER_LMA;
2b5203ee 1399 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
1400 }
1401 }
1402#endif
ad312c7c 1403 vcpu->arch.cr0 = cr0;
888f9f3e
AK
1404
1405 if (!npt_enabled)
1406 cr0 |= X86_CR0_PG | X86_CR0_WP;
02daab21
AK
1407
1408 if (!vcpu->fpu_active)
334df50a 1409 cr0 |= X86_CR0_TS;
709ddebf
JR
1410 /*
1411 * re-enable caching here because the QEMU bios
1412 * does not do it - this results in some delay at
1413 * reboot
1414 */
1415 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 1416 svm->vmcb->save.cr0 = cr0;
dcca1a65 1417 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 1418 update_cr0_intercept(svm);
6aa8b732
AK
1419}
1420
1421static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1422{
6394b649 1423 unsigned long host_cr4_mce = read_cr4() & X86_CR4_MCE;
e5eab0ce
JR
1424 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
1425
1426 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
f40f6a45 1427 svm_flush_tlb(vcpu);
6394b649 1428
ec077263
JR
1429 vcpu->arch.cr4 = cr4;
1430 if (!npt_enabled)
1431 cr4 |= X86_CR4_PAE;
6394b649 1432 cr4 |= host_cr4_mce;
ec077263 1433 to_svm(vcpu)->vmcb->save.cr4 = cr4;
dcca1a65 1434 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
6aa8b732
AK
1435}
1436
1437static void svm_set_segment(struct kvm_vcpu *vcpu,
1438 struct kvm_segment *var, int seg)
1439{
a2fa3e9f 1440 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
1441 struct vmcb_seg *s = svm_seg(vcpu, seg);
1442
1443 s->base = var->base;
1444 s->limit = var->limit;
1445 s->selector = var->selector;
1446 if (var->unusable)
1447 s->attrib = 0;
1448 else {
1449 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1450 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1451 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1452 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
1453 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1454 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1455 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1456 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
1457 }
1458 if (seg == VCPU_SREG_CS)
a2fa3e9f
GH
1459 svm->vmcb->save.cpl
1460 = (svm->vmcb->save.cs.attrib
6aa8b732
AK
1461 >> SVM_SELECTOR_DPL_SHIFT) & 3;
1462
060d0c9a 1463 mark_dirty(svm->vmcb, VMCB_SEG);
6aa8b732
AK
1464}
1465
44c11430 1466static void update_db_intercept(struct kvm_vcpu *vcpu)
6aa8b732 1467{
d0bfb940
JK
1468 struct vcpu_svm *svm = to_svm(vcpu);
1469
18c918c5
JR
1470 clr_exception_intercept(svm, DB_VECTOR);
1471 clr_exception_intercept(svm, BP_VECTOR);
44c11430 1472
6be7d306 1473 if (svm->nmi_singlestep)
18c918c5 1474 set_exception_intercept(svm, DB_VECTOR);
44c11430 1475
d0bfb940
JK
1476 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
1477 if (vcpu->guest_debug &
1478 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
18c918c5 1479 set_exception_intercept(svm, DB_VECTOR);
d0bfb940 1480 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
18c918c5 1481 set_exception_intercept(svm, BP_VECTOR);
d0bfb940
JK
1482 } else
1483 vcpu->guest_debug = 0;
44c11430
GN
1484}
1485
355be0b9 1486static void svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
44c11430 1487{
44c11430
GN
1488 struct vcpu_svm *svm = to_svm(vcpu);
1489
ae675ef0
JK
1490 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1491 svm->vmcb->save.dr7 = dbg->arch.debugreg[7];
1492 else
1493 svm->vmcb->save.dr7 = vcpu->arch.dr7;
1494
72214b96
JR
1495 mark_dirty(svm->vmcb, VMCB_DR);
1496
355be0b9 1497 update_db_intercept(vcpu);
6aa8b732
AK
1498}
1499
0fe1e009 1500static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
6aa8b732 1501{
0fe1e009
TH
1502 if (sd->next_asid > sd->max_asid) {
1503 ++sd->asid_generation;
1504 sd->next_asid = 1;
a2fa3e9f 1505 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
1506 }
1507
0fe1e009
TH
1508 svm->asid_generation = sd->asid_generation;
1509 svm->vmcb->control.asid = sd->next_asid++;
d48086d1
JR
1510
1511 mark_dirty(svm->vmcb, VMCB_ASID);
6aa8b732
AK
1512}
1513
020df079 1514static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
6aa8b732 1515{
42dbaa5a 1516 struct vcpu_svm *svm = to_svm(vcpu);
42dbaa5a 1517
020df079 1518 svm->vmcb->save.dr7 = value;
72214b96 1519 mark_dirty(svm->vmcb, VMCB_DR);
6aa8b732
AK
1520}
1521
851ba692 1522static int pf_interception(struct vcpu_svm *svm)
6aa8b732 1523{
631bc487 1524 u64 fault_address = svm->vmcb->control.exit_info_2;
6aa8b732 1525 u32 error_code;
631bc487 1526 int r = 1;
6aa8b732 1527
631bc487
GN
1528 switch (svm->apf_reason) {
1529 default:
1530 error_code = svm->vmcb->control.exit_info_1;
af9ca2d7 1531
631bc487
GN
1532 trace_kvm_page_fault(fault_address, error_code);
1533 if (!npt_enabled && kvm_event_needs_reinjection(&svm->vcpu))
1534 kvm_mmu_unprotect_page_virt(&svm->vcpu, fault_address);
dc25e89e
AP
1535 r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
1536 svm->vmcb->control.insn_bytes,
1537 svm->vmcb->control.insn_len);
631bc487
GN
1538 break;
1539 case KVM_PV_REASON_PAGE_NOT_PRESENT:
1540 svm->apf_reason = 0;
1541 local_irq_disable();
1542 kvm_async_pf_task_wait(fault_address);
1543 local_irq_enable();
1544 break;
1545 case KVM_PV_REASON_PAGE_READY:
1546 svm->apf_reason = 0;
1547 local_irq_disable();
1548 kvm_async_pf_task_wake(fault_address);
1549 local_irq_enable();
1550 break;
1551 }
1552 return r;
6aa8b732
AK
1553}
1554
851ba692 1555static int db_interception(struct vcpu_svm *svm)
d0bfb940 1556{
851ba692
AK
1557 struct kvm_run *kvm_run = svm->vcpu.run;
1558
d0bfb940 1559 if (!(svm->vcpu.guest_debug &
44c11430 1560 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
6be7d306 1561 !svm->nmi_singlestep) {
d0bfb940
JK
1562 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
1563 return 1;
1564 }
44c11430 1565
6be7d306
JK
1566 if (svm->nmi_singlestep) {
1567 svm->nmi_singlestep = false;
44c11430
GN
1568 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP))
1569 svm->vmcb->save.rflags &=
1570 ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
1571 update_db_intercept(&svm->vcpu);
1572 }
1573
1574 if (svm->vcpu.guest_debug &
e0231715 1575 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
44c11430
GN
1576 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1577 kvm_run->debug.arch.pc =
1578 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1579 kvm_run->debug.arch.exception = DB_VECTOR;
1580 return 0;
1581 }
1582
1583 return 1;
d0bfb940
JK
1584}
1585
851ba692 1586static int bp_interception(struct vcpu_svm *svm)
d0bfb940 1587{
851ba692
AK
1588 struct kvm_run *kvm_run = svm->vcpu.run;
1589
d0bfb940
JK
1590 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1591 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1592 kvm_run->debug.arch.exception = BP_VECTOR;
1593 return 0;
1594}
1595
851ba692 1596static int ud_interception(struct vcpu_svm *svm)
7aa81cc0
AL
1597{
1598 int er;
1599
51d8b661 1600 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
7aa81cc0 1601 if (er != EMULATE_DONE)
7ee5d940 1602 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
7aa81cc0
AL
1603 return 1;
1604}
1605
6b52d186 1606static void svm_fpu_activate(struct kvm_vcpu *vcpu)
7807fa6c 1607{
6b52d186 1608 struct vcpu_svm *svm = to_svm(vcpu);
66a562f7 1609
18c918c5 1610 clr_exception_intercept(svm, NM_VECTOR);
66a562f7 1611
e756fc62 1612 svm->vcpu.fpu_active = 1;
d225157b 1613 update_cr0_intercept(svm);
6b52d186 1614}
a2fa3e9f 1615
6b52d186
AK
1616static int nm_interception(struct vcpu_svm *svm)
1617{
1618 svm_fpu_activate(&svm->vcpu);
a2fa3e9f 1619 return 1;
7807fa6c
AL
1620}
1621
67ec6607
JR
1622static bool is_erratum_383(void)
1623{
1624 int err, i;
1625 u64 value;
1626
1627 if (!erratum_383_found)
1628 return false;
1629
1630 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
1631 if (err)
1632 return false;
1633
1634 /* Bit 62 may or may not be set for this mce */
1635 value &= ~(1ULL << 62);
1636
1637 if (value != 0xb600000000010015ULL)
1638 return false;
1639
1640 /* Clear MCi_STATUS registers */
1641 for (i = 0; i < 6; ++i)
1642 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
1643
1644 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
1645 if (!err) {
1646 u32 low, high;
1647
1648 value &= ~(1ULL << 2);
1649 low = lower_32_bits(value);
1650 high = upper_32_bits(value);
1651
1652 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
1653 }
1654
1655 /* Flush tlb to evict multi-match entries */
1656 __flush_tlb_all();
1657
1658 return true;
1659}
1660
fe5913e4 1661static void svm_handle_mce(struct vcpu_svm *svm)
53371b50 1662{
67ec6607
JR
1663 if (is_erratum_383()) {
1664 /*
1665 * Erratum 383 triggered. Guest state is corrupt so kill the
1666 * guest.
1667 */
1668 pr_err("KVM: Guest triggered AMD Erratum 383\n");
1669
a8eeb04a 1670 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
67ec6607
JR
1671
1672 return;
1673 }
1674
53371b50
JR
1675 /*
1676 * On an #MC intercept the MCE handler is not called automatically in
1677 * the host. So do it by hand here.
1678 */
1679 asm volatile (
1680 "int $0x12\n");
1681 /* not sure if we ever come back to this point */
1682
fe5913e4
JR
1683 return;
1684}
1685
1686static int mc_interception(struct vcpu_svm *svm)
1687{
53371b50
JR
1688 return 1;
1689}
1690
851ba692 1691static int shutdown_interception(struct vcpu_svm *svm)
46fe4ddd 1692{
851ba692
AK
1693 struct kvm_run *kvm_run = svm->vcpu.run;
1694
46fe4ddd
JR
1695 /*
1696 * VMCB is undefined after a SHUTDOWN intercept
1697 * so reinitialize it.
1698 */
a2fa3e9f 1699 clear_page(svm->vmcb);
e6101a96 1700 init_vmcb(svm);
46fe4ddd
JR
1701
1702 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1703 return 0;
1704}
1705
851ba692 1706static int io_interception(struct vcpu_svm *svm)
6aa8b732 1707{
cf8f70bf 1708 struct kvm_vcpu *vcpu = &svm->vcpu;
d77c26fc 1709 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
34c33d16 1710 int size, in, string;
039576c0 1711 unsigned port;
6aa8b732 1712
e756fc62 1713 ++svm->vcpu.stat.io_exits;
e70669ab 1714 string = (io_info & SVM_IOIO_STR_MASK) != 0;
039576c0 1715 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
cf8f70bf 1716 if (string || in)
51d8b661 1717 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
cf8f70bf 1718
039576c0
AK
1719 port = io_info >> 16;
1720 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
cf8f70bf 1721 svm->next_rip = svm->vmcb->control.exit_info_2;
e93f36bc 1722 skip_emulated_instruction(&svm->vcpu);
cf8f70bf
GN
1723
1724 return kvm_fast_pio_out(vcpu, size, port);
6aa8b732
AK
1725}
1726
851ba692 1727static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
1728{
1729 return 1;
1730}
1731
851ba692 1732static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
1733{
1734 ++svm->vcpu.stat.irq_exits;
1735 return 1;
1736}
1737
851ba692 1738static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
1739{
1740 return 1;
1741}
1742
851ba692 1743static int halt_interception(struct vcpu_svm *svm)
6aa8b732 1744{
5fdbf976 1745 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62
RR
1746 skip_emulated_instruction(&svm->vcpu);
1747 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
1748}
1749
851ba692 1750static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 1751{
5fdbf976 1752 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
e756fc62 1753 skip_emulated_instruction(&svm->vcpu);
7aa81cc0
AL
1754 kvm_emulate_hypercall(&svm->vcpu);
1755 return 1;
02e235bc
AK
1756}
1757
5bd2edc3
JR
1758static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
1759{
1760 struct vcpu_svm *svm = to_svm(vcpu);
1761
1762 return svm->nested.nested_cr3;
1763}
1764
1765static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
1766 unsigned long root)
1767{
1768 struct vcpu_svm *svm = to_svm(vcpu);
1769
1770 svm->vmcb->control.nested_cr3 = root;
b2747166 1771 mark_dirty(svm->vmcb, VMCB_NPT);
f40f6a45 1772 svm_flush_tlb(vcpu);
5bd2edc3
JR
1773}
1774
6389ee94
AK
1775static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
1776 struct x86_exception *fault)
5bd2edc3
JR
1777{
1778 struct vcpu_svm *svm = to_svm(vcpu);
1779
1780 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
1781 svm->vmcb->control.exit_code_hi = 0;
6389ee94
AK
1782 svm->vmcb->control.exit_info_1 = fault->error_code;
1783 svm->vmcb->control.exit_info_2 = fault->address;
5bd2edc3
JR
1784
1785 nested_svm_vmexit(svm);
1786}
1787
4b16184c
JR
1788static int nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
1789{
1790 int r;
1791
1792 r = kvm_init_shadow_mmu(vcpu, &vcpu->arch.mmu);
1793
1794 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
1795 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
1796 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
1797 vcpu->arch.mmu.shadow_root_level = get_npt_level();
1798 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
1799
1800 return r;
1801}
1802
1803static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
1804{
1805 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
1806}
1807
c0725420
AG
1808static int nested_svm_check_permissions(struct vcpu_svm *svm)
1809{
f6801dff 1810 if (!(svm->vcpu.arch.efer & EFER_SVME)
c0725420
AG
1811 || !is_paging(&svm->vcpu)) {
1812 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
1813 return 1;
1814 }
1815
1816 if (svm->vmcb->save.cpl) {
1817 kvm_inject_gp(&svm->vcpu, 0);
1818 return 1;
1819 }
1820
1821 return 0;
1822}
1823
cf74a78b
AG
1824static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
1825 bool has_error_code, u32 error_code)
1826{
b8e88bc8
JR
1827 int vmexit;
1828
2030753d 1829 if (!is_guest_mode(&svm->vcpu))
0295ad7d 1830 return 0;
cf74a78b 1831
0295ad7d
JR
1832 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
1833 svm->vmcb->control.exit_code_hi = 0;
1834 svm->vmcb->control.exit_info_1 = error_code;
1835 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
1836
b8e88bc8
JR
1837 vmexit = nested_svm_intercept(svm);
1838 if (vmexit == NESTED_EXIT_DONE)
1839 svm->nested.exit_required = true;
1840
1841 return vmexit;
cf74a78b
AG
1842}
1843
8fe54654
JR
1844/* This function returns true if it is save to enable the irq window */
1845static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 1846{
2030753d 1847 if (!is_guest_mode(&svm->vcpu))
8fe54654 1848 return true;
cf74a78b 1849
26666957 1850 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 1851 return true;
cf74a78b 1852
26666957 1853 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 1854 return false;
cf74a78b 1855
a0a07cd2
GN
1856 /*
1857 * if vmexit was already requested (by intercepted exception
1858 * for instance) do not overwrite it with "external interrupt"
1859 * vmexit.
1860 */
1861 if (svm->nested.exit_required)
1862 return false;
1863
197717d5
JR
1864 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
1865 svm->vmcb->control.exit_info_1 = 0;
1866 svm->vmcb->control.exit_info_2 = 0;
26666957 1867
cd3ff653
JR
1868 if (svm->nested.intercept & 1ULL) {
1869 /*
1870 * The #vmexit can't be emulated here directly because this
1871 * code path runs with irqs and preemtion disabled. A
1872 * #vmexit emulation might sleep. Only signal request for
1873 * the #vmexit here.
1874 */
1875 svm->nested.exit_required = true;
236649de 1876 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 1877 return false;
cf74a78b
AG
1878 }
1879
8fe54654 1880 return true;
cf74a78b
AG
1881}
1882
887f500c
JR
1883/* This function returns true if it is save to enable the nmi window */
1884static inline bool nested_svm_nmi(struct vcpu_svm *svm)
1885{
2030753d 1886 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
1887 return true;
1888
1889 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
1890 return true;
1891
1892 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
1893 svm->nested.exit_required = true;
1894
1895 return false;
cf74a78b
AG
1896}
1897
7597f129 1898static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
34f80cfa
JR
1899{
1900 struct page *page;
1901
6c3bd3d7
JR
1902 might_sleep();
1903
34f80cfa 1904 page = gfn_to_page(svm->vcpu.kvm, gpa >> PAGE_SHIFT);
34f80cfa
JR
1905 if (is_error_page(page))
1906 goto error;
1907
7597f129
JR
1908 *_page = page;
1909
1910 return kmap(page);
34f80cfa
JR
1911
1912error:
1913 kvm_release_page_clean(page);
1914 kvm_inject_gp(&svm->vcpu, 0);
1915
1916 return NULL;
1917}
1918
7597f129 1919static void nested_svm_unmap(struct page *page)
34f80cfa 1920{
7597f129 1921 kunmap(page);
34f80cfa
JR
1922 kvm_release_page_dirty(page);
1923}
34f80cfa 1924
ce2ac085
JR
1925static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
1926{
1927 unsigned port;
1928 u8 val, bit;
1929 u64 gpa;
34f80cfa 1930
ce2ac085
JR
1931 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
1932 return NESTED_EXIT_HOST;
34f80cfa 1933
ce2ac085
JR
1934 port = svm->vmcb->control.exit_info_1 >> 16;
1935 gpa = svm->nested.vmcb_iopm + (port / 8);
1936 bit = port % 8;
1937 val = 0;
1938
1939 if (kvm_read_guest(svm->vcpu.kvm, gpa, &val, 1))
1940 val &= (1 << bit);
1941
1942 return val ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
1943}
1944
d2477826 1945static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 1946{
0d6b3537
JR
1947 u32 offset, msr, value;
1948 int write, mask;
4c2161ae 1949
3d62d9aa 1950 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 1951 return NESTED_EXIT_HOST;
3d62d9aa 1952
0d6b3537
JR
1953 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
1954 offset = svm_msrpm_offset(msr);
1955 write = svm->vmcb->control.exit_info_1 & 1;
1956 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 1957
0d6b3537
JR
1958 if (offset == MSR_INVALID)
1959 return NESTED_EXIT_DONE;
4c2161ae 1960
0d6b3537
JR
1961 /* Offset is in 32 bit units but need in 8 bit units */
1962 offset *= 4;
4c2161ae 1963
0d6b3537
JR
1964 if (kvm_read_guest(svm->vcpu.kvm, svm->nested.vmcb_msrpm + offset, &value, 4))
1965 return NESTED_EXIT_DONE;
3d62d9aa 1966
0d6b3537 1967 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
1968}
1969
410e4d57 1970static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 1971{
cf74a78b 1972 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 1973
410e4d57
JR
1974 switch (exit_code) {
1975 case SVM_EXIT_INTR:
1976 case SVM_EXIT_NMI:
ff47a49b 1977 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 1978 return NESTED_EXIT_HOST;
410e4d57 1979 case SVM_EXIT_NPF:
e0231715 1980 /* For now we are always handling NPFs when using them */
410e4d57
JR
1981 if (npt_enabled)
1982 return NESTED_EXIT_HOST;
1983 break;
410e4d57 1984 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487
GN
1985 /* When we're shadowing, trap PFs, but not async PF */
1986 if (!npt_enabled && svm->apf_reason == 0)
410e4d57
JR
1987 return NESTED_EXIT_HOST;
1988 break;
66a562f7
JR
1989 case SVM_EXIT_EXCP_BASE + NM_VECTOR:
1990 nm_interception(svm);
1991 break;
410e4d57
JR
1992 default:
1993 break;
cf74a78b
AG
1994 }
1995
410e4d57
JR
1996 return NESTED_EXIT_CONTINUE;
1997}
1998
1999/*
2000 * If this function returns true, this #vmexit was already handled
2001 */
b8e88bc8 2002static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
2003{
2004 u32 exit_code = svm->vmcb->control.exit_code;
2005 int vmexit = NESTED_EXIT_HOST;
2006
cf74a78b 2007 switch (exit_code) {
9c4e40b9 2008 case SVM_EXIT_MSR:
3d62d9aa 2009 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 2010 break;
ce2ac085
JR
2011 case SVM_EXIT_IOIO:
2012 vmexit = nested_svm_intercept_ioio(svm);
2013 break;
4ee546b4
RJ
2014 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2015 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2016 if (svm->nested.intercept_cr & bit)
410e4d57 2017 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2018 break;
2019 }
3aed041a
JR
2020 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2021 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2022 if (svm->nested.intercept_dr & bit)
410e4d57 2023 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2024 break;
2025 }
2026 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2027 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
aad42c64 2028 if (svm->nested.intercept_exceptions & excp_bits)
410e4d57 2029 vmexit = NESTED_EXIT_DONE;
631bc487
GN
2030 /* async page fault always cause vmexit */
2031 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
2032 svm->apf_reason != 0)
2033 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2034 break;
2035 }
228070b1
JR
2036 case SVM_EXIT_ERR: {
2037 vmexit = NESTED_EXIT_DONE;
2038 break;
2039 }
cf74a78b
AG
2040 default: {
2041 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 2042 if (svm->nested.intercept & exit_bits)
410e4d57 2043 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2044 }
2045 }
2046
b8e88bc8
JR
2047 return vmexit;
2048}
2049
2050static int nested_svm_exit_handled(struct vcpu_svm *svm)
2051{
2052 int vmexit;
2053
2054 vmexit = nested_svm_intercept(svm);
2055
2056 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 2057 nested_svm_vmexit(svm);
9c4e40b9
JR
2058
2059 return vmexit;
cf74a78b
AG
2060}
2061
0460a979
JR
2062static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2063{
2064 struct vmcb_control_area *dst = &dst_vmcb->control;
2065 struct vmcb_control_area *from = &from_vmcb->control;
2066
4ee546b4 2067 dst->intercept_cr = from->intercept_cr;
3aed041a 2068 dst->intercept_dr = from->intercept_dr;
0460a979
JR
2069 dst->intercept_exceptions = from->intercept_exceptions;
2070 dst->intercept = from->intercept;
2071 dst->iopm_base_pa = from->iopm_base_pa;
2072 dst->msrpm_base_pa = from->msrpm_base_pa;
2073 dst->tsc_offset = from->tsc_offset;
2074 dst->asid = from->asid;
2075 dst->tlb_ctl = from->tlb_ctl;
2076 dst->int_ctl = from->int_ctl;
2077 dst->int_vector = from->int_vector;
2078 dst->int_state = from->int_state;
2079 dst->exit_code = from->exit_code;
2080 dst->exit_code_hi = from->exit_code_hi;
2081 dst->exit_info_1 = from->exit_info_1;
2082 dst->exit_info_2 = from->exit_info_2;
2083 dst->exit_int_info = from->exit_int_info;
2084 dst->exit_int_info_err = from->exit_int_info_err;
2085 dst->nested_ctl = from->nested_ctl;
2086 dst->event_inj = from->event_inj;
2087 dst->event_inj_err = from->event_inj_err;
2088 dst->nested_cr3 = from->nested_cr3;
2089 dst->lbr_ctl = from->lbr_ctl;
2090}
2091
34f80cfa 2092static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 2093{
34f80cfa 2094 struct vmcb *nested_vmcb;
e6aa9abd 2095 struct vmcb *hsave = svm->nested.hsave;
33740e40 2096 struct vmcb *vmcb = svm->vmcb;
7597f129 2097 struct page *page;
cf74a78b 2098
17897f36
JR
2099 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2100 vmcb->control.exit_info_1,
2101 vmcb->control.exit_info_2,
2102 vmcb->control.exit_int_info,
2103 vmcb->control.exit_int_info_err);
2104
7597f129 2105 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
34f80cfa
JR
2106 if (!nested_vmcb)
2107 return 1;
2108
2030753d
JR
2109 /* Exit Guest-Mode */
2110 leave_guest_mode(&svm->vcpu);
06fc7772
JR
2111 svm->nested.vmcb = 0;
2112
cf74a78b 2113 /* Give the current vmcb to the guest */
33740e40
JR
2114 disable_gif(svm);
2115
2116 nested_vmcb->save.es = vmcb->save.es;
2117 nested_vmcb->save.cs = vmcb->save.cs;
2118 nested_vmcb->save.ss = vmcb->save.ss;
2119 nested_vmcb->save.ds = vmcb->save.ds;
2120 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2121 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 2122 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 2123 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 2124 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 2125 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 2126 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2127 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
2128 nested_vmcb->save.rip = vmcb->save.rip;
2129 nested_vmcb->save.rsp = vmcb->save.rsp;
2130 nested_vmcb->save.rax = vmcb->save.rax;
2131 nested_vmcb->save.dr7 = vmcb->save.dr7;
2132 nested_vmcb->save.dr6 = vmcb->save.dr6;
2133 nested_vmcb->save.cpl = vmcb->save.cpl;
2134
2135 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2136 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2137 nested_vmcb->control.int_state = vmcb->control.int_state;
2138 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2139 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2140 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2141 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2142 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2143 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
7a190667 2144 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
2145
2146 /*
2147 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2148 * to make sure that we do not lose injected events. So check event_inj
2149 * here and copy it to exit_int_info if it is valid.
2150 * Exit_int_info and event_inj can't be both valid because the case
2151 * below only happens on a VMRUN instruction intercept which has
2152 * no valid exit_int_info set.
2153 */
2154 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2155 struct vmcb_control_area *nc = &nested_vmcb->control;
2156
2157 nc->exit_int_info = vmcb->control.event_inj;
2158 nc->exit_int_info_err = vmcb->control.event_inj_err;
2159 }
2160
33740e40
JR
2161 nested_vmcb->control.tlb_ctl = 0;
2162 nested_vmcb->control.event_inj = 0;
2163 nested_vmcb->control.event_inj_err = 0;
cf74a78b
AG
2164
2165 /* We always set V_INTR_MASKING and remember the old value in hflags */
2166 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2167 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2168
cf74a78b 2169 /* Restore the original control entries */
0460a979 2170 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 2171
219b65dc
AG
2172 kvm_clear_exception_queue(&svm->vcpu);
2173 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 2174
4b16184c
JR
2175 svm->nested.nested_cr3 = 0;
2176
cf74a78b
AG
2177 /* Restore selected save entries */
2178 svm->vmcb->save.es = hsave->save.es;
2179 svm->vmcb->save.cs = hsave->save.cs;
2180 svm->vmcb->save.ss = hsave->save.ss;
2181 svm->vmcb->save.ds = hsave->save.ds;
2182 svm->vmcb->save.gdtr = hsave->save.gdtr;
2183 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 2184 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
2185 svm_set_efer(&svm->vcpu, hsave->save.efer);
2186 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2187 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2188 if (npt_enabled) {
2189 svm->vmcb->save.cr3 = hsave->save.cr3;
2190 svm->vcpu.arch.cr3 = hsave->save.cr3;
2191 } else {
2390218b 2192 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b
AG
2193 }
2194 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2195 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2196 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2197 svm->vmcb->save.dr7 = 0;
2198 svm->vmcb->save.cpl = 0;
2199 svm->vmcb->control.exit_int_info = 0;
2200
8d28fec4
RJ
2201 mark_all_dirty(svm->vmcb);
2202
7597f129 2203 nested_svm_unmap(page);
cf74a78b 2204
4b16184c 2205 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
2206 kvm_mmu_reset_context(&svm->vcpu);
2207 kvm_mmu_load(&svm->vcpu);
2208
2209 return 0;
2210}
3d6368ef 2211
9738b2c9 2212static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 2213{
323c3d80
JR
2214 /*
2215 * This function merges the msr permission bitmaps of kvm and the
2216 * nested vmcb. It is omptimized in that it only merges the parts where
2217 * the kvm msr permission bitmap may contain zero bits
2218 */
3d6368ef 2219 int i;
9738b2c9 2220
323c3d80
JR
2221 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2222 return true;
9738b2c9 2223
323c3d80
JR
2224 for (i = 0; i < MSRPM_OFFSETS; i++) {
2225 u32 value, p;
2226 u64 offset;
9738b2c9 2227
323c3d80
JR
2228 if (msrpm_offsets[i] == 0xffffffff)
2229 break;
3d6368ef 2230
0d6b3537
JR
2231 p = msrpm_offsets[i];
2232 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80
JR
2233
2234 if (kvm_read_guest(svm->vcpu.kvm, offset, &value, 4))
2235 return false;
2236
2237 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2238 }
3d6368ef 2239
323c3d80 2240 svm->vmcb->control.msrpm_base_pa = __pa(svm->nested.msrpm);
9738b2c9
JR
2241
2242 return true;
3d6368ef
AG
2243}
2244
52c65a30
JR
2245static bool nested_vmcb_checks(struct vmcb *vmcb)
2246{
2247 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2248 return false;
2249
dbe77584
JR
2250 if (vmcb->control.asid == 0)
2251 return false;
2252
4b16184c
JR
2253 if (vmcb->control.nested_ctl && !npt_enabled)
2254 return false;
2255
52c65a30
JR
2256 return true;
2257}
2258
9738b2c9 2259static bool nested_svm_vmrun(struct vcpu_svm *svm)
3d6368ef 2260{
9738b2c9 2261 struct vmcb *nested_vmcb;
e6aa9abd 2262 struct vmcb *hsave = svm->nested.hsave;
defbba56 2263 struct vmcb *vmcb = svm->vmcb;
7597f129 2264 struct page *page;
06fc7772 2265 u64 vmcb_gpa;
3d6368ef 2266
06fc7772 2267 vmcb_gpa = svm->vmcb->save.rax;
3d6368ef 2268
7597f129 2269 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9738b2c9
JR
2270 if (!nested_vmcb)
2271 return false;
2272
52c65a30
JR
2273 if (!nested_vmcb_checks(nested_vmcb)) {
2274 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2275 nested_vmcb->control.exit_code_hi = 0;
2276 nested_vmcb->control.exit_info_1 = 0;
2277 nested_vmcb->control.exit_info_2 = 0;
2278
2279 nested_svm_unmap(page);
2280
2281 return false;
2282 }
2283
b75f4eb3 2284 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
0ac406de
JR
2285 nested_vmcb->save.rip,
2286 nested_vmcb->control.int_ctl,
2287 nested_vmcb->control.event_inj,
2288 nested_vmcb->control.nested_ctl);
2289
4ee546b4
RJ
2290 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2291 nested_vmcb->control.intercept_cr >> 16,
2e554e8d
JR
2292 nested_vmcb->control.intercept_exceptions,
2293 nested_vmcb->control.intercept);
2294
3d6368ef 2295 /* Clear internal status */
219b65dc
AG
2296 kvm_clear_exception_queue(&svm->vcpu);
2297 kvm_clear_interrupt_queue(&svm->vcpu);
3d6368ef 2298
e0231715
JR
2299 /*
2300 * Save the old vmcb, so we don't need to pick what we save, but can
2301 * restore everything when a VMEXIT occurs
2302 */
defbba56
JR
2303 hsave->save.es = vmcb->save.es;
2304 hsave->save.cs = vmcb->save.cs;
2305 hsave->save.ss = vmcb->save.ss;
2306 hsave->save.ds = vmcb->save.ds;
2307 hsave->save.gdtr = vmcb->save.gdtr;
2308 hsave->save.idtr = vmcb->save.idtr;
f6801dff 2309 hsave->save.efer = svm->vcpu.arch.efer;
4d4ec087 2310 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
defbba56 2311 hsave->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2312 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
b75f4eb3 2313 hsave->save.rip = kvm_rip_read(&svm->vcpu);
defbba56
JR
2314 hsave->save.rsp = vmcb->save.rsp;
2315 hsave->save.rax = vmcb->save.rax;
2316 if (npt_enabled)
2317 hsave->save.cr3 = vmcb->save.cr3;
2318 else
9f8fe504 2319 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
defbba56 2320
0460a979 2321 copy_vmcb_control_area(hsave, vmcb);
3d6368ef 2322
f6e78475 2323 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
2324 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2325 else
2326 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2327
4b16184c
JR
2328 if (nested_vmcb->control.nested_ctl) {
2329 kvm_mmu_unload(&svm->vcpu);
2330 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2331 nested_svm_init_mmu_context(&svm->vcpu);
2332 }
2333
3d6368ef
AG
2334 /* Load the nested guest state */
2335 svm->vmcb->save.es = nested_vmcb->save.es;
2336 svm->vmcb->save.cs = nested_vmcb->save.cs;
2337 svm->vmcb->save.ss = nested_vmcb->save.ss;
2338 svm->vmcb->save.ds = nested_vmcb->save.ds;
2339 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
2340 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 2341 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
2342 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
2343 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
2344 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
2345 if (npt_enabled) {
2346 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
2347 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 2348 } else
2390218b 2349 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
2350
2351 /* Guest paging mode is active - reset mmu */
2352 kvm_mmu_reset_context(&svm->vcpu);
2353
defbba56 2354 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
3d6368ef
AG
2355 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
2356 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
2357 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
e0231715 2358
3d6368ef
AG
2359 /* In case we don't even reach vcpu_run, the fields are not updated */
2360 svm->vmcb->save.rax = nested_vmcb->save.rax;
2361 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
2362 svm->vmcb->save.rip = nested_vmcb->save.rip;
2363 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
2364 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
2365 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
2366
f7138538 2367 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 2368 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 2369
aad42c64 2370 /* cache intercepts */
4ee546b4 2371 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 2372 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
2373 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
2374 svm->nested.intercept = nested_vmcb->control.intercept;
2375
f40f6a45 2376 svm_flush_tlb(&svm->vcpu);
3d6368ef 2377 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
2378 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
2379 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
2380 else
2381 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
2382
88ab24ad
JR
2383 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
2384 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
2385 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
2386 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
2387 }
2388
0d945bd9 2389 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 2390 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 2391
88ab24ad 2392 svm->vmcb->control.lbr_ctl = nested_vmcb->control.lbr_ctl;
3d6368ef
AG
2393 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
2394 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
2395 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
3d6368ef
AG
2396 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
2397 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
2398
7597f129 2399 nested_svm_unmap(page);
9738b2c9 2400
2030753d
JR
2401 /* Enter Guest-Mode */
2402 enter_guest_mode(&svm->vcpu);
2403
384c6368
JR
2404 /*
2405 * Merge guest and host intercepts - must be called with vcpu in
2406 * guest-mode to take affect here
2407 */
2408 recalc_intercepts(svm);
2409
06fc7772 2410 svm->nested.vmcb = vmcb_gpa;
9738b2c9 2411
2af9194d 2412 enable_gif(svm);
3d6368ef 2413
8d28fec4
RJ
2414 mark_all_dirty(svm->vmcb);
2415
9738b2c9 2416 return true;
3d6368ef
AG
2417}
2418
9966bf68 2419static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
2420{
2421 to_vmcb->save.fs = from_vmcb->save.fs;
2422 to_vmcb->save.gs = from_vmcb->save.gs;
2423 to_vmcb->save.tr = from_vmcb->save.tr;
2424 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
2425 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
2426 to_vmcb->save.star = from_vmcb->save.star;
2427 to_vmcb->save.lstar = from_vmcb->save.lstar;
2428 to_vmcb->save.cstar = from_vmcb->save.cstar;
2429 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
2430 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
2431 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
2432 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
2433}
2434
851ba692 2435static int vmload_interception(struct vcpu_svm *svm)
5542675b 2436{
9966bf68 2437 struct vmcb *nested_vmcb;
7597f129 2438 struct page *page;
9966bf68 2439
5542675b
AG
2440 if (nested_svm_check_permissions(svm))
2441 return 1;
2442
2443 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2444 skip_emulated_instruction(&svm->vcpu);
2445
7597f129 2446 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
2447 if (!nested_vmcb)
2448 return 1;
2449
2450 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
7597f129 2451 nested_svm_unmap(page);
5542675b
AG
2452
2453 return 1;
2454}
2455
851ba692 2456static int vmsave_interception(struct vcpu_svm *svm)
5542675b 2457{
9966bf68 2458 struct vmcb *nested_vmcb;
7597f129 2459 struct page *page;
9966bf68 2460
5542675b
AG
2461 if (nested_svm_check_permissions(svm))
2462 return 1;
2463
2464 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2465 skip_emulated_instruction(&svm->vcpu);
2466
7597f129 2467 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
2468 if (!nested_vmcb)
2469 return 1;
2470
2471 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
7597f129 2472 nested_svm_unmap(page);
5542675b
AG
2473
2474 return 1;
2475}
2476
851ba692 2477static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 2478{
3d6368ef
AG
2479 if (nested_svm_check_permissions(svm))
2480 return 1;
2481
b75f4eb3
RJ
2482 /* Save rip after vmrun instruction */
2483 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
3d6368ef 2484
9738b2c9 2485 if (!nested_svm_vmrun(svm))
3d6368ef
AG
2486 return 1;
2487
9738b2c9 2488 if (!nested_svm_vmrun_msrpm(svm))
1f8da478
JR
2489 goto failed;
2490
2491 return 1;
2492
2493failed:
2494
2495 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
2496 svm->vmcb->control.exit_code_hi = 0;
2497 svm->vmcb->control.exit_info_1 = 0;
2498 svm->vmcb->control.exit_info_2 = 0;
2499
2500 nested_svm_vmexit(svm);
3d6368ef
AG
2501
2502 return 1;
2503}
2504
851ba692 2505static int stgi_interception(struct vcpu_svm *svm)
1371d904
AG
2506{
2507 if (nested_svm_check_permissions(svm))
2508 return 1;
2509
2510 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2511 skip_emulated_instruction(&svm->vcpu);
3842d135 2512 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 2513
2af9194d 2514 enable_gif(svm);
1371d904
AG
2515
2516 return 1;
2517}
2518
851ba692 2519static int clgi_interception(struct vcpu_svm *svm)
1371d904
AG
2520{
2521 if (nested_svm_check_permissions(svm))
2522 return 1;
2523
2524 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2525 skip_emulated_instruction(&svm->vcpu);
2526
2af9194d 2527 disable_gif(svm);
1371d904
AG
2528
2529 /* After a CLGI no interrupts should come */
2530 svm_clear_vintr(svm);
2531 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
2532
decdbf6a
JR
2533 mark_dirty(svm->vmcb, VMCB_INTR);
2534
1371d904
AG
2535 return 1;
2536}
2537
851ba692 2538static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
2539{
2540 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 2541
ec1ff790
JR
2542 trace_kvm_invlpga(svm->vmcb->save.rip, vcpu->arch.regs[VCPU_REGS_RCX],
2543 vcpu->arch.regs[VCPU_REGS_RAX]);
2544
ff092385
AG
2545 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
2546 kvm_mmu_invlpg(vcpu, vcpu->arch.regs[VCPU_REGS_RAX]);
2547
2548 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2549 skip_emulated_instruction(&svm->vcpu);
2550 return 1;
2551}
2552
532a46b9
JR
2553static int skinit_interception(struct vcpu_svm *svm)
2554{
2555 trace_kvm_skinit(svm->vmcb->save.rip, svm->vcpu.arch.regs[VCPU_REGS_RAX]);
2556
2557 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2558 return 1;
2559}
2560
81dd35d4
JR
2561static int xsetbv_interception(struct vcpu_svm *svm)
2562{
2563 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
2564 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
2565
2566 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
2567 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
2568 skip_emulated_instruction(&svm->vcpu);
2569 }
2570
2571 return 1;
2572}
2573
851ba692 2574static int invalid_op_interception(struct vcpu_svm *svm)
6aa8b732 2575{
7ee5d940 2576 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
6aa8b732
AK
2577 return 1;
2578}
2579
851ba692 2580static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 2581{
37817f29 2582 u16 tss_selector;
64a7ec06
GN
2583 int reason;
2584 int int_type = svm->vmcb->control.exit_int_info &
2585 SVM_EXITINTINFO_TYPE_MASK;
8317c298 2586 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
2587 uint32_t type =
2588 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2589 uint32_t idt_v =
2590 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
2591 bool has_error_code = false;
2592 u32 error_code = 0;
37817f29
IE
2593
2594 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 2595
37817f29
IE
2596 if (svm->vmcb->control.exit_info_2 &
2597 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
2598 reason = TASK_SWITCH_IRET;
2599 else if (svm->vmcb->control.exit_info_2 &
2600 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2601 reason = TASK_SWITCH_JMP;
fe8e7f83 2602 else if (idt_v)
64a7ec06
GN
2603 reason = TASK_SWITCH_GATE;
2604 else
2605 reason = TASK_SWITCH_CALL;
2606
fe8e7f83
GN
2607 if (reason == TASK_SWITCH_GATE) {
2608 switch (type) {
2609 case SVM_EXITINTINFO_TYPE_NMI:
2610 svm->vcpu.arch.nmi_injected = false;
2611 break;
2612 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
2613 if (svm->vmcb->control.exit_info_2 &
2614 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2615 has_error_code = true;
2616 error_code =
2617 (u32)svm->vmcb->control.exit_info_2;
2618 }
fe8e7f83
GN
2619 kvm_clear_exception_queue(&svm->vcpu);
2620 break;
2621 case SVM_EXITINTINFO_TYPE_INTR:
2622 kvm_clear_interrupt_queue(&svm->vcpu);
2623 break;
2624 default:
2625 break;
2626 }
2627 }
64a7ec06 2628
8317c298
GN
2629 if (reason != TASK_SWITCH_GATE ||
2630 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2631 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f629cf84
GN
2632 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
2633 skip_emulated_instruction(&svm->vcpu);
64a7ec06 2634
acb54517
GN
2635 if (kvm_task_switch(&svm->vcpu, tss_selector, reason,
2636 has_error_code, error_code) == EMULATE_FAIL) {
2637 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2638 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
2639 svm->vcpu.run->internal.ndata = 0;
2640 return 0;
2641 }
2642 return 1;
6aa8b732
AK
2643}
2644
851ba692 2645static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 2646{
5fdbf976 2647 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 2648 kvm_emulate_cpuid(&svm->vcpu);
06465c5a 2649 return 1;
6aa8b732
AK
2650}
2651
851ba692 2652static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
2653{
2654 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 2655 clr_intercept(svm, INTERCEPT_IRET);
44c11430 2656 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 2657 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
95ba8273
GN
2658 return 1;
2659}
2660
851ba692 2661static int invlpg_interception(struct vcpu_svm *svm)
a7052897 2662{
df4f3108
AP
2663 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
2664 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
2665
2666 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
2667 skip_emulated_instruction(&svm->vcpu);
2668 return 1;
a7052897
MT
2669}
2670
851ba692 2671static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 2672{
51d8b661 2673 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
6aa8b732
AK
2674}
2675
7ff76d58
AP
2676#define CR_VALID (1ULL << 63)
2677
2678static int cr_interception(struct vcpu_svm *svm)
2679{
2680 int reg, cr;
2681 unsigned long val;
2682 int err;
2683
2684 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
2685 return emulate_on_interception(svm);
2686
2687 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
2688 return emulate_on_interception(svm);
2689
2690 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2691 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
2692
2693 err = 0;
2694 if (cr >= 16) { /* mov to cr */
2695 cr -= 16;
2696 val = kvm_register_read(&svm->vcpu, reg);
2697 switch (cr) {
2698 case 0:
2699 err = kvm_set_cr0(&svm->vcpu, val);
2700 break;
2701 case 3:
2702 err = kvm_set_cr3(&svm->vcpu, val);
2703 break;
2704 case 4:
2705 err = kvm_set_cr4(&svm->vcpu, val);
2706 break;
2707 case 8:
2708 err = kvm_set_cr8(&svm->vcpu, val);
2709 break;
2710 default:
2711 WARN(1, "unhandled write to CR%d", cr);
2712 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2713 return 1;
2714 }
2715 } else { /* mov from cr */
2716 switch (cr) {
2717 case 0:
2718 val = kvm_read_cr0(&svm->vcpu);
2719 break;
2720 case 2:
2721 val = svm->vcpu.arch.cr2;
2722 break;
2723 case 3:
9f8fe504 2724 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
2725 break;
2726 case 4:
2727 val = kvm_read_cr4(&svm->vcpu);
2728 break;
2729 case 8:
2730 val = kvm_get_cr8(&svm->vcpu);
2731 break;
2732 default:
2733 WARN(1, "unhandled read from CR%d", cr);
2734 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2735 return 1;
2736 }
2737 kvm_register_write(&svm->vcpu, reg, val);
2738 }
2739 kvm_complete_insn_gp(&svm->vcpu, err);
2740
2741 return 1;
2742}
2743
cda00082
JR
2744static int cr0_write_interception(struct vcpu_svm *svm)
2745{
2746 struct kvm_vcpu *vcpu = &svm->vcpu;
2747 int r;
2748
7ff76d58 2749 r = cr_interception(svm);
cda00082
JR
2750
2751 if (svm->nested.vmexit_rip) {
2752 kvm_register_write(vcpu, VCPU_REGS_RIP, svm->nested.vmexit_rip);
2753 kvm_register_write(vcpu, VCPU_REGS_RSP, svm->nested.vmexit_rsp);
2754 kvm_register_write(vcpu, VCPU_REGS_RAX, svm->nested.vmexit_rax);
2755 svm->nested.vmexit_rip = 0;
2756 }
2757
7ff76d58 2758 return r;
cda00082
JR
2759}
2760
cae3797a
AP
2761static int dr_interception(struct vcpu_svm *svm)
2762{
2763 int reg, dr;
2764 unsigned long val;
2765 int err;
2766
2767 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
2768 return emulate_on_interception(svm);
2769
2770 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2771 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
2772
2773 if (dr >= 16) { /* mov to DRn */
2774 val = kvm_register_read(&svm->vcpu, reg);
2775 kvm_set_dr(&svm->vcpu, dr - 16, val);
2776 } else {
2777 err = kvm_get_dr(&svm->vcpu, dr, &val);
2778 if (!err)
2779 kvm_register_write(&svm->vcpu, reg, val);
2780 }
2781
2c46d2ae
JR
2782 skip_emulated_instruction(&svm->vcpu);
2783
cae3797a
AP
2784 return 1;
2785}
2786
851ba692 2787static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 2788{
851ba692 2789 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 2790 int r;
851ba692 2791
0a5fff19
GN
2792 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
2793 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 2794 r = cr_interception(svm);
95ba8273 2795 if (irqchip_in_kernel(svm->vcpu.kvm)) {
4ee546b4 2796 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
7ff76d58 2797 return r;
95ba8273 2798 }
0a5fff19 2799 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 2800 return r;
1d075434
JR
2801 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2802 return 0;
2803}
2804
6aa8b732
AK
2805static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
2806{
a2fa3e9f
GH
2807 struct vcpu_svm *svm = to_svm(vcpu);
2808
6aa8b732 2809 switch (ecx) {
af24a4e4 2810 case MSR_IA32_TSC: {
4cc70310 2811 struct vmcb *vmcb = get_host_vmcb(svm);
6aa8b732 2812
4cc70310 2813 *data = vmcb->control.tsc_offset + native_read_tsc();
6aa8b732
AK
2814 break;
2815 }
8c06585d 2816 case MSR_STAR:
a2fa3e9f 2817 *data = svm->vmcb->save.star;
6aa8b732 2818 break;
0e859cac 2819#ifdef CONFIG_X86_64
6aa8b732 2820 case MSR_LSTAR:
a2fa3e9f 2821 *data = svm->vmcb->save.lstar;
6aa8b732
AK
2822 break;
2823 case MSR_CSTAR:
a2fa3e9f 2824 *data = svm->vmcb->save.cstar;
6aa8b732
AK
2825 break;
2826 case MSR_KERNEL_GS_BASE:
a2fa3e9f 2827 *data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
2828 break;
2829 case MSR_SYSCALL_MASK:
a2fa3e9f 2830 *data = svm->vmcb->save.sfmask;
6aa8b732
AK
2831 break;
2832#endif
2833 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 2834 *data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
2835 break;
2836 case MSR_IA32_SYSENTER_EIP:
017cb99e 2837 *data = svm->sysenter_eip;
6aa8b732
AK
2838 break;
2839 case MSR_IA32_SYSENTER_ESP:
017cb99e 2840 *data = svm->sysenter_esp;
6aa8b732 2841 break;
e0231715
JR
2842 /*
2843 * Nobody will change the following 5 values in the VMCB so we can
2844 * safely return them on rdmsr. They will always be 0 until LBRV is
2845 * implemented.
2846 */
a2938c80
JR
2847 case MSR_IA32_DEBUGCTLMSR:
2848 *data = svm->vmcb->save.dbgctl;
2849 break;
2850 case MSR_IA32_LASTBRANCHFROMIP:
2851 *data = svm->vmcb->save.br_from;
2852 break;
2853 case MSR_IA32_LASTBRANCHTOIP:
2854 *data = svm->vmcb->save.br_to;
2855 break;
2856 case MSR_IA32_LASTINTFROMIP:
2857 *data = svm->vmcb->save.last_excp_from;
2858 break;
2859 case MSR_IA32_LASTINTTOIP:
2860 *data = svm->vmcb->save.last_excp_to;
2861 break;
b286d5d8 2862 case MSR_VM_HSAVE_PA:
e6aa9abd 2863 *data = svm->nested.hsave_msr;
b286d5d8 2864 break;
eb6f302e 2865 case MSR_VM_CR:
4a810181 2866 *data = svm->nested.vm_cr_msr;
eb6f302e 2867 break;
c8a73f18
AG
2868 case MSR_IA32_UCODE_REV:
2869 *data = 0x01000065;
2870 break;
6aa8b732 2871 default:
3bab1f5d 2872 return kvm_get_msr_common(vcpu, ecx, data);
6aa8b732
AK
2873 }
2874 return 0;
2875}
2876
851ba692 2877static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 2878{
ad312c7c 2879 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
6aa8b732
AK
2880 u64 data;
2881
59200273
AK
2882 if (svm_get_msr(&svm->vcpu, ecx, &data)) {
2883 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 2884 kvm_inject_gp(&svm->vcpu, 0);
59200273 2885 } else {
229456fc 2886 trace_kvm_msr_read(ecx, data);
af9ca2d7 2887
5fdbf976 2888 svm->vcpu.arch.regs[VCPU_REGS_RAX] = data & 0xffffffff;
ad312c7c 2889 svm->vcpu.arch.regs[VCPU_REGS_RDX] = data >> 32;
5fdbf976 2890 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 2891 skip_emulated_instruction(&svm->vcpu);
6aa8b732
AK
2892 }
2893 return 1;
2894}
2895
4a810181
JR
2896static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2897{
2898 struct vcpu_svm *svm = to_svm(vcpu);
2899 int svm_dis, chg_mask;
2900
2901 if (data & ~SVM_VM_CR_VALID_MASK)
2902 return 1;
2903
2904 chg_mask = SVM_VM_CR_VALID_MASK;
2905
2906 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2907 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2908
2909 svm->nested.vm_cr_msr &= ~chg_mask;
2910 svm->nested.vm_cr_msr |= (data & chg_mask);
2911
2912 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2913
2914 /* check for svm_disable while efer.svme is set */
2915 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2916 return 1;
2917
2918 return 0;
2919}
2920
6aa8b732
AK
2921static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
2922{
a2fa3e9f
GH
2923 struct vcpu_svm *svm = to_svm(vcpu);
2924
6aa8b732 2925 switch (ecx) {
f4e1b3c8 2926 case MSR_IA32_TSC:
99e3e30a 2927 kvm_write_tsc(vcpu, data);
6aa8b732 2928 break;
8c06585d 2929 case MSR_STAR:
a2fa3e9f 2930 svm->vmcb->save.star = data;
6aa8b732 2931 break;
49b14f24 2932#ifdef CONFIG_X86_64
6aa8b732 2933 case MSR_LSTAR:
a2fa3e9f 2934 svm->vmcb->save.lstar = data;
6aa8b732
AK
2935 break;
2936 case MSR_CSTAR:
a2fa3e9f 2937 svm->vmcb->save.cstar = data;
6aa8b732
AK
2938 break;
2939 case MSR_KERNEL_GS_BASE:
a2fa3e9f 2940 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
2941 break;
2942 case MSR_SYSCALL_MASK:
a2fa3e9f 2943 svm->vmcb->save.sfmask = data;
6aa8b732
AK
2944 break;
2945#endif
2946 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 2947 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
2948 break;
2949 case MSR_IA32_SYSENTER_EIP:
017cb99e 2950 svm->sysenter_eip = data;
a2fa3e9f 2951 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
2952 break;
2953 case MSR_IA32_SYSENTER_ESP:
017cb99e 2954 svm->sysenter_esp = data;
a2fa3e9f 2955 svm->vmcb->save.sysenter_esp = data;
6aa8b732 2956 break;
a2938c80 2957 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 2958 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
24e09cbf 2959 pr_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
b8688d51 2960 __func__, data);
24e09cbf
JR
2961 break;
2962 }
2963 if (data & DEBUGCTL_RESERVED_BITS)
2964 return 1;
2965
2966 svm->vmcb->save.dbgctl = data;
b53ba3f9 2967 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
2968 if (data & (1ULL<<0))
2969 svm_enable_lbrv(svm);
2970 else
2971 svm_disable_lbrv(svm);
a2938c80 2972 break;
b286d5d8 2973 case MSR_VM_HSAVE_PA:
e6aa9abd 2974 svm->nested.hsave_msr = data;
62b9abaa 2975 break;
3c5d0a44 2976 case MSR_VM_CR:
4a810181 2977 return svm_set_vm_cr(vcpu, data);
3c5d0a44 2978 case MSR_VM_IGNNE:
3c5d0a44
AG
2979 pr_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
2980 break;
6aa8b732 2981 default:
3bab1f5d 2982 return kvm_set_msr_common(vcpu, ecx, data);
6aa8b732
AK
2983 }
2984 return 0;
2985}
2986
851ba692 2987static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 2988{
ad312c7c 2989 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
5fdbf976 2990 u64 data = (svm->vcpu.arch.regs[VCPU_REGS_RAX] & -1u)
ad312c7c 2991 | ((u64)(svm->vcpu.arch.regs[VCPU_REGS_RDX] & -1u) << 32);
af9ca2d7 2992
af9ca2d7 2993
5fdbf976 2994 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
59200273
AK
2995 if (svm_set_msr(&svm->vcpu, ecx, data)) {
2996 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 2997 kvm_inject_gp(&svm->vcpu, 0);
59200273
AK
2998 } else {
2999 trace_kvm_msr_write(ecx, data);
e756fc62 3000 skip_emulated_instruction(&svm->vcpu);
59200273 3001 }
6aa8b732
AK
3002 return 1;
3003}
3004
851ba692 3005static int msr_interception(struct vcpu_svm *svm)
6aa8b732 3006{
e756fc62 3007 if (svm->vmcb->control.exit_info_1)
851ba692 3008 return wrmsr_interception(svm);
6aa8b732 3009 else
851ba692 3010 return rdmsr_interception(svm);
6aa8b732
AK
3011}
3012
851ba692 3013static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 3014{
851ba692
AK
3015 struct kvm_run *kvm_run = svm->vcpu.run;
3016
3842d135 3017 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 3018 svm_clear_vintr(svm);
85f455f7 3019 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 3020 mark_dirty(svm->vmcb, VMCB_INTR);
c1150d8c
DL
3021 /*
3022 * If the user space waits to inject interrupts, exit as soon as
3023 * possible
3024 */
8061823a
GN
3025 if (!irqchip_in_kernel(svm->vcpu.kvm) &&
3026 kvm_run->request_interrupt_window &&
3027 !kvm_cpu_has_interrupt(&svm->vcpu)) {
e756fc62 3028 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
3029 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
3030 return 0;
3031 }
3032
3033 return 1;
3034}
3035
565d0998
ML
3036static int pause_interception(struct vcpu_svm *svm)
3037{
3038 kvm_vcpu_on_spin(&(svm->vcpu));
3039 return 1;
3040}
3041
851ba692 3042static int (*svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
3043 [SVM_EXIT_READ_CR0] = cr_interception,
3044 [SVM_EXIT_READ_CR3] = cr_interception,
3045 [SVM_EXIT_READ_CR4] = cr_interception,
3046 [SVM_EXIT_READ_CR8] = cr_interception,
d225157b 3047 [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception,
cda00082 3048 [SVM_EXIT_WRITE_CR0] = cr0_write_interception,
7ff76d58
AP
3049 [SVM_EXIT_WRITE_CR3] = cr_interception,
3050 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 3051 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
3052 [SVM_EXIT_READ_DR0] = dr_interception,
3053 [SVM_EXIT_READ_DR1] = dr_interception,
3054 [SVM_EXIT_READ_DR2] = dr_interception,
3055 [SVM_EXIT_READ_DR3] = dr_interception,
3056 [SVM_EXIT_READ_DR4] = dr_interception,
3057 [SVM_EXIT_READ_DR5] = dr_interception,
3058 [SVM_EXIT_READ_DR6] = dr_interception,
3059 [SVM_EXIT_READ_DR7] = dr_interception,
3060 [SVM_EXIT_WRITE_DR0] = dr_interception,
3061 [SVM_EXIT_WRITE_DR1] = dr_interception,
3062 [SVM_EXIT_WRITE_DR2] = dr_interception,
3063 [SVM_EXIT_WRITE_DR3] = dr_interception,
3064 [SVM_EXIT_WRITE_DR4] = dr_interception,
3065 [SVM_EXIT_WRITE_DR5] = dr_interception,
3066 [SVM_EXIT_WRITE_DR6] = dr_interception,
3067 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
3068 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3069 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 3070 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715
JR
3071 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
3072 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
3073 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
3074 [SVM_EXIT_INTR] = intr_interception,
c47f098d 3075 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
3076 [SVM_EXIT_SMI] = nop_on_interception,
3077 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 3078 [SVM_EXIT_VINTR] = interrupt_window_interception,
6aa8b732 3079 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 3080 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 3081 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 3082 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 3083 [SVM_EXIT_HLT] = halt_interception,
a7052897 3084 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 3085 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 3086 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
3087 [SVM_EXIT_MSR] = msr_interception,
3088 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 3089 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 3090 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 3091 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
3092 [SVM_EXIT_VMLOAD] = vmload_interception,
3093 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
3094 [SVM_EXIT_STGI] = stgi_interception,
3095 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 3096 [SVM_EXIT_SKINIT] = skinit_interception,
cf5a94d1 3097 [SVM_EXIT_WBINVD] = emulate_on_interception,
916ce236
JR
3098 [SVM_EXIT_MONITOR] = invalid_op_interception,
3099 [SVM_EXIT_MWAIT] = invalid_op_interception,
81dd35d4 3100 [SVM_EXIT_XSETBV] = xsetbv_interception,
709ddebf 3101 [SVM_EXIT_NPF] = pf_interception,
6aa8b732
AK
3102};
3103
3f10c846
JR
3104void dump_vmcb(struct kvm_vcpu *vcpu)
3105{
3106 struct vcpu_svm *svm = to_svm(vcpu);
3107 struct vmcb_control_area *control = &svm->vmcb->control;
3108 struct vmcb_save_area *save = &svm->vmcb->save;
3109
3110 pr_err("VMCB Control Area:\n");
4ee546b4
RJ
3111 pr_err("cr_read: %04x\n", control->intercept_cr & 0xffff);
3112 pr_err("cr_write: %04x\n", control->intercept_cr >> 16);
3aed041a
JR
3113 pr_err("dr_read: %04x\n", control->intercept_dr & 0xffff);
3114 pr_err("dr_write: %04x\n", control->intercept_dr >> 16);
3f10c846
JR
3115 pr_err("exceptions: %08x\n", control->intercept_exceptions);
3116 pr_err("intercepts: %016llx\n", control->intercept);
3117 pr_err("pause filter count: %d\n", control->pause_filter_count);
3118 pr_err("iopm_base_pa: %016llx\n", control->iopm_base_pa);
3119 pr_err("msrpm_base_pa: %016llx\n", control->msrpm_base_pa);
3120 pr_err("tsc_offset: %016llx\n", control->tsc_offset);
3121 pr_err("asid: %d\n", control->asid);
3122 pr_err("tlb_ctl: %d\n", control->tlb_ctl);
3123 pr_err("int_ctl: %08x\n", control->int_ctl);
3124 pr_err("int_vector: %08x\n", control->int_vector);
3125 pr_err("int_state: %08x\n", control->int_state);
3126 pr_err("exit_code: %08x\n", control->exit_code);
3127 pr_err("exit_info1: %016llx\n", control->exit_info_1);
3128 pr_err("exit_info2: %016llx\n", control->exit_info_2);
3129 pr_err("exit_int_info: %08x\n", control->exit_int_info);
3130 pr_err("exit_int_info_err: %08x\n", control->exit_int_info_err);
3131 pr_err("nested_ctl: %lld\n", control->nested_ctl);
3132 pr_err("nested_cr3: %016llx\n", control->nested_cr3);
3133 pr_err("event_inj: %08x\n", control->event_inj);
3134 pr_err("event_inj_err: %08x\n", control->event_inj_err);
3135 pr_err("lbr_ctl: %lld\n", control->lbr_ctl);
3136 pr_err("next_rip: %016llx\n", control->next_rip);
3137 pr_err("VMCB State Save Area:\n");
3138 pr_err("es: s: %04x a: %04x l: %08x b: %016llx\n",
3139 save->es.selector, save->es.attrib,
3140 save->es.limit, save->es.base);
3141 pr_err("cs: s: %04x a: %04x l: %08x b: %016llx\n",
3142 save->cs.selector, save->cs.attrib,
3143 save->cs.limit, save->cs.base);
3144 pr_err("ss: s: %04x a: %04x l: %08x b: %016llx\n",
3145 save->ss.selector, save->ss.attrib,
3146 save->ss.limit, save->ss.base);
3147 pr_err("ds: s: %04x a: %04x l: %08x b: %016llx\n",
3148 save->ds.selector, save->ds.attrib,
3149 save->ds.limit, save->ds.base);
3150 pr_err("fs: s: %04x a: %04x l: %08x b: %016llx\n",
3151 save->fs.selector, save->fs.attrib,
3152 save->fs.limit, save->fs.base);
3153 pr_err("gs: s: %04x a: %04x l: %08x b: %016llx\n",
3154 save->gs.selector, save->gs.attrib,
3155 save->gs.limit, save->gs.base);
3156 pr_err("gdtr: s: %04x a: %04x l: %08x b: %016llx\n",
3157 save->gdtr.selector, save->gdtr.attrib,
3158 save->gdtr.limit, save->gdtr.base);
3159 pr_err("ldtr: s: %04x a: %04x l: %08x b: %016llx\n",
3160 save->ldtr.selector, save->ldtr.attrib,
3161 save->ldtr.limit, save->ldtr.base);
3162 pr_err("idtr: s: %04x a: %04x l: %08x b: %016llx\n",
3163 save->idtr.selector, save->idtr.attrib,
3164 save->idtr.limit, save->idtr.base);
3165 pr_err("tr: s: %04x a: %04x l: %08x b: %016llx\n",
3166 save->tr.selector, save->tr.attrib,
3167 save->tr.limit, save->tr.base);
3168 pr_err("cpl: %d efer: %016llx\n",
3169 save->cpl, save->efer);
3170 pr_err("cr0: %016llx cr2: %016llx\n",
3171 save->cr0, save->cr2);
3172 pr_err("cr3: %016llx cr4: %016llx\n",
3173 save->cr3, save->cr4);
3174 pr_err("dr6: %016llx dr7: %016llx\n",
3175 save->dr6, save->dr7);
3176 pr_err("rip: %016llx rflags: %016llx\n",
3177 save->rip, save->rflags);
3178 pr_err("rsp: %016llx rax: %016llx\n",
3179 save->rsp, save->rax);
3180 pr_err("star: %016llx lstar: %016llx\n",
3181 save->star, save->lstar);
3182 pr_err("cstar: %016llx sfmask: %016llx\n",
3183 save->cstar, save->sfmask);
3184 pr_err("kernel_gs_base: %016llx sysenter_cs: %016llx\n",
3185 save->kernel_gs_base, save->sysenter_cs);
3186 pr_err("sysenter_esp: %016llx sysenter_eip: %016llx\n",
3187 save->sysenter_esp, save->sysenter_eip);
3188 pr_err("gpat: %016llx dbgctl: %016llx\n",
3189 save->g_pat, save->dbgctl);
3190 pr_err("br_from: %016llx br_to: %016llx\n",
3191 save->br_from, save->br_to);
3192 pr_err("excp_from: %016llx excp_to: %016llx\n",
3193 save->last_excp_from, save->last_excp_to);
3194
3195}
3196
586f9607
AK
3197static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
3198{
3199 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3200
3201 *info1 = control->exit_info_1;
3202 *info2 = control->exit_info_2;
3203}
3204
851ba692 3205static int handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 3206{
04d2cc77 3207 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 3208 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 3209 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 3210
aa17911e 3211 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
af9ca2d7 3212
4ee546b4 3213 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
3214 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3215 if (npt_enabled)
3216 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 3217
cd3ff653
JR
3218 if (unlikely(svm->nested.exit_required)) {
3219 nested_svm_vmexit(svm);
3220 svm->nested.exit_required = false;
3221
3222 return 1;
3223 }
3224
2030753d 3225 if (is_guest_mode(vcpu)) {
410e4d57
JR
3226 int vmexit;
3227
d8cabddf
JR
3228 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
3229 svm->vmcb->control.exit_info_1,
3230 svm->vmcb->control.exit_info_2,
3231 svm->vmcb->control.exit_int_info,
3232 svm->vmcb->control.exit_int_info_err);
3233
410e4d57
JR
3234 vmexit = nested_svm_exit_special(svm);
3235
3236 if (vmexit == NESTED_EXIT_CONTINUE)
3237 vmexit = nested_svm_exit_handled(svm);
3238
3239 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 3240 return 1;
cf74a78b
AG
3241 }
3242
a5c3832d
JR
3243 svm_complete_interrupts(svm);
3244
04d2cc77
AK
3245 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3246 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3247 kvm_run->fail_entry.hardware_entry_failure_reason
3248 = svm->vmcb->control.exit_code;
3f10c846
JR
3249 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
3250 dump_vmcb(vcpu);
04d2cc77
AK
3251 return 0;
3252 }
3253
a2fa3e9f 3254 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 3255 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
3256 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3257 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6aa8b732
AK
3258 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
3259 "exit_code 0x%x\n",
b8688d51 3260 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
3261 exit_code);
3262
9d8f549d 3263 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 3264 || !svm_exit_handlers[exit_code]) {
6aa8b732 3265 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
364b625b 3266 kvm_run->hw.hardware_exit_reason = exit_code;
6aa8b732
AK
3267 return 0;
3268 }
3269
851ba692 3270 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
3271}
3272
3273static void reload_tss(struct kvm_vcpu *vcpu)
3274{
3275 int cpu = raw_smp_processor_id();
3276
0fe1e009
TH
3277 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
3278 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
3279 load_TR_desc();
3280}
3281
e756fc62 3282static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
3283{
3284 int cpu = raw_smp_processor_id();
3285
0fe1e009 3286 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 3287
4b656b12 3288 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
3289 if (svm->asid_generation != sd->asid_generation)
3290 new_asid(svm, sd);
6aa8b732
AK
3291}
3292
95ba8273
GN
3293static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3294{
3295 struct vcpu_svm *svm = to_svm(vcpu);
3296
3297 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3298 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 3299 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
3300 ++vcpu->stat.nmi_injections;
3301}
6aa8b732 3302
85f455f7 3303static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
3304{
3305 struct vmcb_control_area *control;
3306
e756fc62 3307 control = &svm->vmcb->control;
85f455f7 3308 control->int_vector = irq;
6aa8b732
AK
3309 control->int_ctl &= ~V_INTR_PRIO_MASK;
3310 control->int_ctl |= V_IRQ_MASK |
3311 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 3312 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
3313}
3314
66fd3f7f 3315static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
3316{
3317 struct vcpu_svm *svm = to_svm(vcpu);
3318
2af9194d 3319 BUG_ON(!(gif_set(svm)));
cf74a78b 3320
9fb2d2b4
GN
3321 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3322 ++vcpu->stat.irq_injections;
3323
219b65dc
AG
3324 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3325 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
3326}
3327
95ba8273 3328static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
3329{
3330 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 3331
2030753d 3332 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3333 return;
3334
95ba8273 3335 if (irr == -1)
aaacfc9a
JR
3336 return;
3337
95ba8273 3338 if (tpr >= irr)
4ee546b4 3339 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 3340}
aaacfc9a 3341
95ba8273
GN
3342static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
3343{
3344 struct vcpu_svm *svm = to_svm(vcpu);
3345 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
3346 int ret;
3347 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
3348 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
3349 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
3350
3351 return ret;
aaacfc9a
JR
3352}
3353
3cfc3092
JK
3354static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3355{
3356 struct vcpu_svm *svm = to_svm(vcpu);
3357
3358 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
3359}
3360
3361static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3362{
3363 struct vcpu_svm *svm = to_svm(vcpu);
3364
3365 if (masked) {
3366 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 3367 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
3368 } else {
3369 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 3370 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
3371 }
3372}
3373
78646121
GN
3374static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
3375{
3376 struct vcpu_svm *svm = to_svm(vcpu);
3377 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
3378 int ret;
3379
3380 if (!gif_set(svm) ||
3381 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
3382 return 0;
3383
f6e78475 3384 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 3385
2030753d 3386 if (is_guest_mode(vcpu))
7fcdb510
JR
3387 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
3388
3389 return ret;
78646121
GN
3390}
3391
9222be18 3392static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 3393{
219b65dc 3394 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 3395
e0231715
JR
3396 /*
3397 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3398 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3399 * get that intercept, this function will be called again though and
3400 * we'll get the vintr intercept.
3401 */
8fe54654 3402 if (gif_set(svm) && nested_svm_intr(svm)) {
219b65dc
AG
3403 svm_set_vintr(svm);
3404 svm_inject_irq(svm, 0x0);
3405 }
85f455f7
ED
3406}
3407
95ba8273 3408static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 3409{
04d2cc77 3410 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 3411
44c11430
GN
3412 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
3413 == HF_NMI_MASK)
3414 return; /* IRET will cause a vm exit */
3415
e0231715
JR
3416 /*
3417 * Something prevents NMI from been injected. Single step over possible
3418 * problem (IRET or exception injection or interrupt shadow)
3419 */
6be7d306 3420 svm->nmi_singlestep = true;
44c11430
GN
3421 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
3422 update_db_intercept(vcpu);
c1150d8c
DL
3423}
3424
cbc94022
IE
3425static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3426{
3427 return 0;
3428}
3429
d9e368d6
AK
3430static void svm_flush_tlb(struct kvm_vcpu *vcpu)
3431{
38e5e92f
JR
3432 struct vcpu_svm *svm = to_svm(vcpu);
3433
3434 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3435 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3436 else
3437 svm->asid_generation--;
d9e368d6
AK
3438}
3439
04d2cc77
AK
3440static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
3441{
3442}
3443
d7bf8221
JR
3444static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3445{
3446 struct vcpu_svm *svm = to_svm(vcpu);
3447
2030753d 3448 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3449 return;
3450
4ee546b4 3451 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 3452 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 3453 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
3454 }
3455}
3456
649d6864
JR
3457static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3458{
3459 struct vcpu_svm *svm = to_svm(vcpu);
3460 u64 cr8;
3461
2030753d 3462 if (is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK))
88ab24ad
JR
3463 return;
3464
649d6864
JR
3465 cr8 = kvm_get_cr8(vcpu);
3466 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3467 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3468}
3469
9222be18
GN
3470static void svm_complete_interrupts(struct vcpu_svm *svm)
3471{
3472 u8 vector;
3473 int type;
3474 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
3475 unsigned int3_injected = svm->int3_injected;
3476
3477 svm->int3_injected = 0;
9222be18 3478
bd3d1ec3
AK
3479 /*
3480 * If we've made progress since setting HF_IRET_MASK, we've
3481 * executed an IRET and can allow NMI injection.
3482 */
3483 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
3484 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 3485 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
3486 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3487 }
44c11430 3488
9222be18
GN
3489 svm->vcpu.arch.nmi_injected = false;
3490 kvm_clear_exception_queue(&svm->vcpu);
3491 kvm_clear_interrupt_queue(&svm->vcpu);
3492
3493 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3494 return;
3495
3842d135
AK
3496 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3497
9222be18
GN
3498 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3499 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3500
3501 switch (type) {
3502 case SVM_EXITINTINFO_TYPE_NMI:
3503 svm->vcpu.arch.nmi_injected = true;
3504 break;
3505 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
3506 /*
3507 * In case of software exceptions, do not reinject the vector,
3508 * but re-execute the instruction instead. Rewind RIP first
3509 * if we emulated INT3 before.
3510 */
3511 if (kvm_exception_is_soft(vector)) {
3512 if (vector == BP_VECTOR && int3_injected &&
3513 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
3514 kvm_rip_write(&svm->vcpu,
3515 kvm_rip_read(&svm->vcpu) -
3516 int3_injected);
9222be18 3517 break;
66b7138f 3518 }
9222be18
GN
3519 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3520 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 3521 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
3522
3523 } else
ce7ddec4 3524 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
3525 break;
3526 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 3527 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
3528 break;
3529 default:
3530 break;
3531 }
3532}
3533
b463a6f7
AK
3534static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3535{
3536 struct vcpu_svm *svm = to_svm(vcpu);
3537 struct vmcb_control_area *control = &svm->vmcb->control;
3538
3539 control->exit_int_info = control->event_inj;
3540 control->exit_int_info_err = control->event_inj_err;
3541 control->event_inj = 0;
3542 svm_complete_interrupts(svm);
3543}
3544
80e31d4f
AK
3545#ifdef CONFIG_X86_64
3546#define R "r"
3547#else
3548#define R "e"
3549#endif
3550
851ba692 3551static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 3552{
a2fa3e9f 3553 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 3554
2041a06a
JR
3555 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3556 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3557 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3558
cd3ff653
JR
3559 /*
3560 * A vmexit emulation is required before the vcpu can be executed
3561 * again.
3562 */
3563 if (unlikely(svm->nested.exit_required))
3564 return;
3565
e756fc62 3566 pre_svm_run(svm);
6aa8b732 3567
649d6864
JR
3568 sync_lapic_to_cr8(vcpu);
3569
cda0ffdd 3570 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 3571
04d2cc77
AK
3572 clgi();
3573
3574 local_irq_enable();
36241b8c 3575
6aa8b732 3576 asm volatile (
80e31d4f
AK
3577 "push %%"R"bp; \n\t"
3578 "mov %c[rbx](%[svm]), %%"R"bx \n\t"
3579 "mov %c[rcx](%[svm]), %%"R"cx \n\t"
3580 "mov %c[rdx](%[svm]), %%"R"dx \n\t"
3581 "mov %c[rsi](%[svm]), %%"R"si \n\t"
3582 "mov %c[rdi](%[svm]), %%"R"di \n\t"
3583 "mov %c[rbp](%[svm]), %%"R"bp \n\t"
05b3e0c2 3584#ifdef CONFIG_X86_64
fb3f0f51
RR
3585 "mov %c[r8](%[svm]), %%r8 \n\t"
3586 "mov %c[r9](%[svm]), %%r9 \n\t"
3587 "mov %c[r10](%[svm]), %%r10 \n\t"
3588 "mov %c[r11](%[svm]), %%r11 \n\t"
3589 "mov %c[r12](%[svm]), %%r12 \n\t"
3590 "mov %c[r13](%[svm]), %%r13 \n\t"
3591 "mov %c[r14](%[svm]), %%r14 \n\t"
3592 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
3593#endif
3594
6aa8b732 3595 /* Enter guest mode */
80e31d4f
AK
3596 "push %%"R"ax \n\t"
3597 "mov %c[vmcb](%[svm]), %%"R"ax \n\t"
4ecac3fd
AK
3598 __ex(SVM_VMLOAD) "\n\t"
3599 __ex(SVM_VMRUN) "\n\t"
3600 __ex(SVM_VMSAVE) "\n\t"
80e31d4f 3601 "pop %%"R"ax \n\t"
6aa8b732
AK
3602
3603 /* Save guest registers, load host registers */
80e31d4f
AK
3604 "mov %%"R"bx, %c[rbx](%[svm]) \n\t"
3605 "mov %%"R"cx, %c[rcx](%[svm]) \n\t"
3606 "mov %%"R"dx, %c[rdx](%[svm]) \n\t"
3607 "mov %%"R"si, %c[rsi](%[svm]) \n\t"
3608 "mov %%"R"di, %c[rdi](%[svm]) \n\t"
3609 "mov %%"R"bp, %c[rbp](%[svm]) \n\t"
05b3e0c2 3610#ifdef CONFIG_X86_64
fb3f0f51
RR
3611 "mov %%r8, %c[r8](%[svm]) \n\t"
3612 "mov %%r9, %c[r9](%[svm]) \n\t"
3613 "mov %%r10, %c[r10](%[svm]) \n\t"
3614 "mov %%r11, %c[r11](%[svm]) \n\t"
3615 "mov %%r12, %c[r12](%[svm]) \n\t"
3616 "mov %%r13, %c[r13](%[svm]) \n\t"
3617 "mov %%r14, %c[r14](%[svm]) \n\t"
3618 "mov %%r15, %c[r15](%[svm]) \n\t"
6aa8b732 3619#endif
80e31d4f 3620 "pop %%"R"bp"
6aa8b732 3621 :
fb3f0f51 3622 : [svm]"a"(svm),
6aa8b732 3623 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
3624 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
3625 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
3626 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
3627 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
3628 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
3629 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 3630#ifdef CONFIG_X86_64
ad312c7c
ZX
3631 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
3632 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
3633 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
3634 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
3635 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
3636 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
3637 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
3638 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 3639#endif
54a08c04 3640 : "cc", "memory"
80e31d4f 3641 , R"bx", R"cx", R"dx", R"si", R"di"
54a08c04 3642#ifdef CONFIG_X86_64
54a08c04
LV
3643 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
3644#endif
3645 );
6aa8b732 3646
82ca2d10
AK
3647#ifdef CONFIG_X86_64
3648 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
3649#else
dacccfdd 3650 loadsegment(fs, svm->host.fs);
831ca609
AK
3651#ifndef CONFIG_X86_32_LAZY_GS
3652 loadsegment(gs, svm->host.gs);
3653#endif
9581d442 3654#endif
6aa8b732
AK
3655
3656 reload_tss(vcpu);
3657
56ba47dd
AK
3658 local_irq_disable();
3659
13c34e07
AK
3660 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3661 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3662 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3663 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3664
3781c01c
JR
3665 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
3666 kvm_before_handle_nmi(&svm->vcpu);
3667
3668 stgi();
3669
3670 /* Any pending NMI will happen here */
3671
3672 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
3673 kvm_after_handle_nmi(&svm->vcpu);
3674
d7bf8221
JR
3675 sync_cr8_to_lapic(vcpu);
3676
a2fa3e9f 3677 svm->next_rip = 0;
9222be18 3678
38e5e92f
JR
3679 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
3680
631bc487
GN
3681 /* if exit due to PF check for async PF */
3682 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
3683 svm->apf_reason = kvm_read_and_reset_pf_reason();
3684
6de4f3ad
AK
3685 if (npt_enabled) {
3686 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
3687 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
3688 }
fe5913e4
JR
3689
3690 /*
3691 * We need to handle MC intercepts here before the vcpu has a chance to
3692 * change the physical cpu
3693 */
3694 if (unlikely(svm->vmcb->control.exit_code ==
3695 SVM_EXIT_EXCP_BASE + MC_VECTOR))
3696 svm_handle_mce(svm);
8d28fec4
RJ
3697
3698 mark_all_clean(svm->vmcb);
6aa8b732
AK
3699}
3700
80e31d4f
AK
3701#undef R
3702
6aa8b732
AK
3703static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
3704{
a2fa3e9f
GH
3705 struct vcpu_svm *svm = to_svm(vcpu);
3706
3707 svm->vmcb->save.cr3 = root;
dcca1a65 3708 mark_dirty(svm->vmcb, VMCB_CR);
f40f6a45 3709 svm_flush_tlb(vcpu);
6aa8b732
AK
3710}
3711
1c97f0a0
JR
3712static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
3713{
3714 struct vcpu_svm *svm = to_svm(vcpu);
3715
3716 svm->vmcb->control.nested_cr3 = root;
b2747166 3717 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
3718
3719 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 3720 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 3721 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0 3722
f40f6a45 3723 svm_flush_tlb(vcpu);
1c97f0a0
JR
3724}
3725
6aa8b732
AK
3726static int is_disabled(void)
3727{
6031a61c
JR
3728 u64 vm_cr;
3729
3730 rdmsrl(MSR_VM_CR, vm_cr);
3731 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3732 return 1;
3733
6aa8b732
AK
3734 return 0;
3735}
3736
102d8325
IM
3737static void
3738svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3739{
3740 /*
3741 * Patch in the VMMCALL instruction:
3742 */
3743 hypercall[0] = 0x0f;
3744 hypercall[1] = 0x01;
3745 hypercall[2] = 0xd9;
102d8325
IM
3746}
3747
002c7f7c
YS
3748static void svm_check_processor_compat(void *rtn)
3749{
3750 *(int *)rtn = 0;
3751}
3752
774ead3a
AK
3753static bool svm_cpu_has_accelerated_tpr(void)
3754{
3755 return false;
3756}
3757
4b12f0de 3758static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
64d4d521
SY
3759{
3760 return 0;
3761}
3762
0e851880
SY
3763static void svm_cpuid_update(struct kvm_vcpu *vcpu)
3764{
3765}
3766
d4330ef2
JR
3767static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
3768{
c2c63a49 3769 switch (func) {
4c62a2dc
JR
3770 case 0x80000001:
3771 if (nested)
3772 entry->ecx |= (1 << 2); /* Set SVM bit */
3773 break;
c2c63a49
JR
3774 case 0x8000000A:
3775 entry->eax = 1; /* SVM revision 1 */
3776 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
3777 ASID emulation to nested SVM */
3778 entry->ecx = 0; /* Reserved */
7a190667
JR
3779 entry->edx = 0; /* Per default do not support any
3780 additional features */
3781
3782 /* Support next_rip if host supports it */
2a6b20b8 3783 if (boot_cpu_has(X86_FEATURE_NRIPS))
7a190667 3784 entry->edx |= SVM_FEATURE_NRIP;
c2c63a49 3785
3d4aeaad
JR
3786 /* Support NPT for the guest if enabled */
3787 if (npt_enabled)
3788 entry->edx |= SVM_FEATURE_NPT;
3789
c2c63a49
JR
3790 break;
3791 }
d4330ef2
JR
3792}
3793
229456fc 3794static const struct trace_print_flags svm_exit_reasons_str[] = {
e0231715
JR
3795 { SVM_EXIT_READ_CR0, "read_cr0" },
3796 { SVM_EXIT_READ_CR3, "read_cr3" },
3797 { SVM_EXIT_READ_CR4, "read_cr4" },
3798 { SVM_EXIT_READ_CR8, "read_cr8" },
3799 { SVM_EXIT_WRITE_CR0, "write_cr0" },
3800 { SVM_EXIT_WRITE_CR3, "write_cr3" },
3801 { SVM_EXIT_WRITE_CR4, "write_cr4" },
3802 { SVM_EXIT_WRITE_CR8, "write_cr8" },
3803 { SVM_EXIT_READ_DR0, "read_dr0" },
3804 { SVM_EXIT_READ_DR1, "read_dr1" },
3805 { SVM_EXIT_READ_DR2, "read_dr2" },
3806 { SVM_EXIT_READ_DR3, "read_dr3" },
3807 { SVM_EXIT_WRITE_DR0, "write_dr0" },
3808 { SVM_EXIT_WRITE_DR1, "write_dr1" },
3809 { SVM_EXIT_WRITE_DR2, "write_dr2" },
3810 { SVM_EXIT_WRITE_DR3, "write_dr3" },
3811 { SVM_EXIT_WRITE_DR5, "write_dr5" },
3812 { SVM_EXIT_WRITE_DR7, "write_dr7" },
229456fc
MT
3813 { SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" },
3814 { SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" },
3815 { SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" },
3816 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" },
3817 { SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" },
3818 { SVM_EXIT_EXCP_BASE + MC_VECTOR, "MC excp" },
3819 { SVM_EXIT_INTR, "interrupt" },
3820 { SVM_EXIT_NMI, "nmi" },
3821 { SVM_EXIT_SMI, "smi" },
3822 { SVM_EXIT_INIT, "init" },
3823 { SVM_EXIT_VINTR, "vintr" },
3824 { SVM_EXIT_CPUID, "cpuid" },
3825 { SVM_EXIT_INVD, "invd" },
3826 { SVM_EXIT_HLT, "hlt" },
3827 { SVM_EXIT_INVLPG, "invlpg" },
3828 { SVM_EXIT_INVLPGA, "invlpga" },
3829 { SVM_EXIT_IOIO, "io" },
3830 { SVM_EXIT_MSR, "msr" },
3831 { SVM_EXIT_TASK_SWITCH, "task_switch" },
3832 { SVM_EXIT_SHUTDOWN, "shutdown" },
3833 { SVM_EXIT_VMRUN, "vmrun" },
3834 { SVM_EXIT_VMMCALL, "hypercall" },
3835 { SVM_EXIT_VMLOAD, "vmload" },
3836 { SVM_EXIT_VMSAVE, "vmsave" },
3837 { SVM_EXIT_STGI, "stgi" },
3838 { SVM_EXIT_CLGI, "clgi" },
3839 { SVM_EXIT_SKINIT, "skinit" },
3840 { SVM_EXIT_WBINVD, "wbinvd" },
3841 { SVM_EXIT_MONITOR, "monitor" },
3842 { SVM_EXIT_MWAIT, "mwait" },
81dd35d4 3843 { SVM_EXIT_XSETBV, "xsetbv" },
229456fc
MT
3844 { SVM_EXIT_NPF, "npf" },
3845 { -1, NULL }
3846};
3847
17cc3935 3848static int svm_get_lpage_level(void)
344f414f 3849{
17cc3935 3850 return PT_PDPE_LEVEL;
344f414f
JR
3851}
3852
4e47c7a6
SY
3853static bool svm_rdtscp_supported(void)
3854{
3855 return false;
3856}
3857
f5f48ee1
SY
3858static bool svm_has_wbinvd_exit(void)
3859{
3860 return true;
3861}
3862
02daab21
AK
3863static void svm_fpu_deactivate(struct kvm_vcpu *vcpu)
3864{
3865 struct vcpu_svm *svm = to_svm(vcpu);
3866
18c918c5 3867 set_exception_intercept(svm, NM_VECTOR);
66a562f7 3868 update_cr0_intercept(svm);
02daab21
AK
3869}
3870
8061252e
JR
3871#define PRE_EX(exit) { .exit_code = (exit), \
3872 .stage = X86_ICPT_PRE_EXCEPT, \
3873 .valid = true }
cfec82cb
JR
3874#define POST_EX(exit) { .exit_code = (exit), \
3875 .stage = X86_ICPT_POST_EXCEPT, \
3876 .valid = true }
d7eb8203
JR
3877#define POST_MEM(exit) { .exit_code = (exit), \
3878 .stage = X86_ICPT_POST_MEMACCESS, \
3879 .valid = true }
cfec82cb
JR
3880
3881static struct __x86_intercept {
3882 u32 exit_code;
3883 enum x86_intercept_stage stage;
3884 bool valid;
3885} x86_intercept_map[] = {
3886 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
3887 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
3888 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
3889 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
3890 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
3891 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
3892 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
3893 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
3894 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
3895 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
3896 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
3897 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
3898 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
3899 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
3900 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
3901 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
3902 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
3903 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
3904 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
3905 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
3906 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
3907 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
3908 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
3909 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
3910 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
3911 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
3912 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
3913 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
3914 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
3915 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
3916 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
3917 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
3918 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
3919 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
3920 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
cfec82cb
JR
3921};
3922
8061252e 3923#undef PRE_EX
cfec82cb 3924#undef POST_EX
d7eb8203 3925#undef POST_MEM
cfec82cb 3926
8a76d7f2
JR
3927static int svm_check_intercept(struct kvm_vcpu *vcpu,
3928 struct x86_instruction_info *info,
3929 enum x86_intercept_stage stage)
3930{
cfec82cb
JR
3931 struct vcpu_svm *svm = to_svm(vcpu);
3932 int vmexit, ret = X86EMUL_CONTINUE;
3933 struct __x86_intercept icpt_info;
3934 struct vmcb *vmcb = svm->vmcb;
3935
3936 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
3937 goto out;
3938
3939 icpt_info = x86_intercept_map[info->intercept];
3940
3941 if (!icpt_info.valid || stage != icpt_info.stage)
3942 goto out;
3943
3944 switch (icpt_info.exit_code) {
3945 case SVM_EXIT_READ_CR0:
3946 if (info->intercept == x86_intercept_cr_read)
3947 icpt_info.exit_code += info->modrm_reg;
3948 break;
3949 case SVM_EXIT_WRITE_CR0: {
3950 unsigned long cr0, val;
3951 u64 intercept;
3952
3953 if (info->intercept == x86_intercept_cr_write)
3954 icpt_info.exit_code += info->modrm_reg;
3955
3956 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0)
3957 break;
3958
3959 intercept = svm->nested.intercept;
3960
3961 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
3962 break;
3963
3964 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
3965 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
3966
3967 if (info->intercept == x86_intercept_lmsw) {
3968 cr0 &= 0xfUL;
3969 val &= 0xfUL;
3970 /* lmsw can't clear PE - catch this here */
3971 if (cr0 & X86_CR0_PE)
3972 val |= X86_CR0_PE;
3973 }
3974
3975 if (cr0 ^ val)
3976 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3977
3978 break;
3979 }
3b88e41a
JR
3980 case SVM_EXIT_READ_DR0:
3981 case SVM_EXIT_WRITE_DR0:
3982 icpt_info.exit_code += info->modrm_reg;
3983 break;
8061252e
JR
3984 case SVM_EXIT_MSR:
3985 if (info->intercept == x86_intercept_wrmsr)
3986 vmcb->control.exit_info_1 = 1;
3987 else
3988 vmcb->control.exit_info_1 = 0;
3989 break;
cfec82cb
JR
3990 default:
3991 break;
3992 }
3993
3994 vmcb->control.next_rip = info->next_rip;
3995 vmcb->control.exit_code = icpt_info.exit_code;
3996 vmexit = nested_svm_exit_handled(svm);
3997
3998 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
3999 : X86EMUL_CONTINUE;
4000
4001out:
4002 return ret;
8a76d7f2
JR
4003}
4004
cbdd1bea 4005static struct kvm_x86_ops svm_x86_ops = {
6aa8b732
AK
4006 .cpu_has_kvm_support = has_svm,
4007 .disabled_by_bios = is_disabled,
4008 .hardware_setup = svm_hardware_setup,
4009 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 4010 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
4011 .hardware_enable = svm_hardware_enable,
4012 .hardware_disable = svm_hardware_disable,
774ead3a 4013 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
6aa8b732
AK
4014
4015 .vcpu_create = svm_create_vcpu,
4016 .vcpu_free = svm_free_vcpu,
04d2cc77 4017 .vcpu_reset = svm_vcpu_reset,
6aa8b732 4018
04d2cc77 4019 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
4020 .vcpu_load = svm_vcpu_load,
4021 .vcpu_put = svm_vcpu_put,
4022
4023 .set_guest_debug = svm_guest_debug,
4024 .get_msr = svm_get_msr,
4025 .set_msr = svm_set_msr,
4026 .get_segment_base = svm_get_segment_base,
4027 .get_segment = svm_get_segment,
4028 .set_segment = svm_set_segment,
2e4d2653 4029 .get_cpl = svm_get_cpl,
1747fb71 4030 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 4031 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
aff48baa 4032 .decache_cr3 = svm_decache_cr3,
25c4c276 4033 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 4034 .set_cr0 = svm_set_cr0,
6aa8b732
AK
4035 .set_cr3 = svm_set_cr3,
4036 .set_cr4 = svm_set_cr4,
4037 .set_efer = svm_set_efer,
4038 .get_idt = svm_get_idt,
4039 .set_idt = svm_set_idt,
4040 .get_gdt = svm_get_gdt,
4041 .set_gdt = svm_set_gdt,
020df079 4042 .set_dr7 = svm_set_dr7,
6de4f3ad 4043 .cache_reg = svm_cache_reg,
6aa8b732
AK
4044 .get_rflags = svm_get_rflags,
4045 .set_rflags = svm_set_rflags,
6b52d186 4046 .fpu_activate = svm_fpu_activate,
02daab21 4047 .fpu_deactivate = svm_fpu_deactivate,
6aa8b732 4048
6aa8b732 4049 .tlb_flush = svm_flush_tlb,
6aa8b732 4050
6aa8b732 4051 .run = svm_vcpu_run,
04d2cc77 4052 .handle_exit = handle_exit,
6aa8b732 4053 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
4054 .set_interrupt_shadow = svm_set_interrupt_shadow,
4055 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 4056 .patch_hypercall = svm_patch_hypercall,
2a8067f1 4057 .set_irq = svm_set_irq,
95ba8273 4058 .set_nmi = svm_inject_nmi,
298101da 4059 .queue_exception = svm_queue_exception,
b463a6f7 4060 .cancel_injection = svm_cancel_injection,
78646121 4061 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 4062 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
4063 .get_nmi_mask = svm_get_nmi_mask,
4064 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
4065 .enable_nmi_window = enable_nmi_window,
4066 .enable_irq_window = enable_irq_window,
4067 .update_cr8_intercept = update_cr8_intercept,
cbc94022
IE
4068
4069 .set_tss_addr = svm_set_tss_addr,
67253af5 4070 .get_tdp_level = get_npt_level,
4b12f0de 4071 .get_mt_mask = svm_get_mt_mask,
229456fc 4072
586f9607 4073 .get_exit_info = svm_get_exit_info,
229456fc 4074 .exit_reasons_str = svm_exit_reasons_str,
586f9607 4075
17cc3935 4076 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
4077
4078 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
4079
4080 .rdtscp_supported = svm_rdtscp_supported,
d4330ef2
JR
4081
4082 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
4083
4084 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a
ZA
4085
4086 .write_tsc_offset = svm_write_tsc_offset,
e48672fa 4087 .adjust_tsc_offset = svm_adjust_tsc_offset,
1c97f0a0
JR
4088
4089 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
4090
4091 .check_intercept = svm_check_intercept,
6aa8b732
AK
4092};
4093
4094static int __init svm_init(void)
4095{
cb498ea2 4096 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 4097 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
4098}
4099
4100static void __exit svm_exit(void)
4101{
cb498ea2 4102 kvm_exit();
6aa8b732
AK
4103}
4104
4105module_init(svm_init)
4106module_exit(svm_exit)