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