]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kvm/svm.c
KVM: SVM: Prepare for new bit definition in lbr_ctl
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kvm / svm.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
9611c187 7 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
8 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
44a95dae
SS
17
18#define pr_fmt(fmt) "SVM: " fmt
19
edf88417
AK
20#include <linux/kvm_host.h>
21
85f455f7 22#include "irq.h"
1d737c8a 23#include "mmu.h"
5fdbf976 24#include "kvm_cache_regs.h"
fe4c7b19 25#include "x86.h"
66f7b72e 26#include "cpuid.h"
25462f7f 27#include "pmu.h"
e495606d 28
6aa8b732 29#include <linux/module.h>
ae759544 30#include <linux/mod_devicetable.h>
9d8f549d 31#include <linux/kernel.h>
6aa8b732
AK
32#include <linux/vmalloc.h>
33#include <linux/highmem.h>
e8edc6e0 34#include <linux/sched.h>
af658dca 35#include <linux/trace_events.h>
5a0e3ad6 36#include <linux/slab.h>
5881f737
SS
37#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
c207aee4 39#include <linux/frame.h>
6aa8b732 40
8221c137 41#include <asm/apic.h>
1018faa6 42#include <asm/perf_event.h>
67ec6607 43#include <asm/tlbflush.h>
e495606d 44#include <asm/desc.h>
facb0139 45#include <asm/debugreg.h>
631bc487 46#include <asm/kvm_para.h>
411b44ba 47#include <asm/irq_remapping.h>
6aa8b732 48
63d1142f 49#include <asm/virtext.h>
229456fc 50#include "trace.h"
63d1142f 51
4ecac3fd
AK
52#define __ex(x) __kvm_handle_fault_on_reboot(x)
53
6aa8b732
AK
54MODULE_AUTHOR("Qumranet");
55MODULE_LICENSE("GPL");
56
ae759544
JT
57static const struct x86_cpu_id svm_cpu_id[] = {
58 X86_FEATURE_MATCH(X86_FEATURE_SVM),
59 {}
60};
61MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
62
6aa8b732
AK
63#define IOPM_ALLOC_ORDER 2
64#define MSRPM_ALLOC_ORDER 1
65
6aa8b732
AK
66#define SEG_TYPE_LDT 2
67#define SEG_TYPE_BUSY_TSS16 3
68
6bc31bdc
AP
69#define SVM_FEATURE_NPT (1 << 0)
70#define SVM_FEATURE_LBRV (1 << 1)
71#define SVM_FEATURE_SVML (1 << 2)
72#define SVM_FEATURE_NRIP (1 << 3)
ddce97aa
AP
73#define SVM_FEATURE_TSC_RATE (1 << 4)
74#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
75#define SVM_FEATURE_FLUSH_ASID (1 << 6)
76#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
6bc31bdc 77#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
80b7706e 78
340d3bc3
SS
79#define SVM_AVIC_DOORBELL 0xc001011b
80
410e4d57
JR
81#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
82#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
83#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
84
24e09cbf
JR
85#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
86
fbc0db76 87#define TSC_RATIO_RSVD 0xffffff0000000000ULL
92a1f12d
JR
88#define TSC_RATIO_MIN 0x0000000000000001ULL
89#define TSC_RATIO_MAX 0x000000ffffffffffULL
fbc0db76 90
5446a979 91#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
44a95dae
SS
92
93/*
94 * 0xff is broadcast, so the max index allowed for physical APIC ID
95 * table is 0xfe. APIC IDs above 0xff are reserved.
96 */
97#define AVIC_MAX_PHYSICAL_ID_COUNT 255
98
18f40c53
SS
99#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
100#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
101#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
102
5ea11f2b
SS
103/* AVIC GATAG is encoded using VM and VCPU IDs */
104#define AVIC_VCPU_ID_BITS 8
105#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
106
107#define AVIC_VM_ID_BITS 24
108#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
109#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
110
111#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
112 (y & AVIC_VCPU_ID_MASK))
113#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
114#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
115
67ec6607
JR
116static bool erratum_383_found __read_mostly;
117
6c8166a7
AK
118static const u32 host_save_user_msrs[] = {
119#ifdef CONFIG_X86_64
120 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
121 MSR_FS_BASE,
122#endif
123 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
46896c73 124 MSR_TSC_AUX,
6c8166a7
AK
125};
126
127#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
128
129struct kvm_vcpu;
130
e6aa9abd
JR
131struct nested_state {
132 struct vmcb *hsave;
133 u64 hsave_msr;
4a810181 134 u64 vm_cr_msr;
e6aa9abd
JR
135 u64 vmcb;
136
137 /* These are the merged vectors */
138 u32 *msrpm;
139
140 /* gpa pointers to the real vectors */
141 u64 vmcb_msrpm;
ce2ac085 142 u64 vmcb_iopm;
aad42c64 143
cd3ff653
JR
144 /* A VMEXIT is required but not yet emulated */
145 bool exit_required;
146
aad42c64 147 /* cache for intercepts of the guest */
4ee546b4 148 u32 intercept_cr;
3aed041a 149 u32 intercept_dr;
aad42c64
JR
150 u32 intercept_exceptions;
151 u64 intercept;
152
5bd2edc3
JR
153 /* Nested Paging related state */
154 u64 nested_cr3;
e6aa9abd
JR
155};
156
323c3d80
JR
157#define MSRPM_OFFSETS 16
158static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
159
2b036c6b
BO
160/*
161 * Set osvw_len to higher value when updated Revision Guides
162 * are published and we know what the new status bits are
163 */
164static uint64_t osvw_len = 4, osvw_status;
165
6c8166a7
AK
166struct vcpu_svm {
167 struct kvm_vcpu vcpu;
168 struct vmcb *vmcb;
169 unsigned long vmcb_pa;
170 struct svm_cpu_data *svm_data;
171 uint64_t asid_generation;
172 uint64_t sysenter_esp;
173 uint64_t sysenter_eip;
46896c73 174 uint64_t tsc_aux;
6c8166a7
AK
175
176 u64 next_rip;
177
178 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
afe9e66f 179 struct {
dacccfdd
AK
180 u16 fs;
181 u16 gs;
182 u16 ldt;
afe9e66f
AK
183 u64 gs_base;
184 } host;
6c8166a7
AK
185
186 u32 *msrpm;
6c8166a7 187
bd3d1ec3
AK
188 ulong nmi_iret_rip;
189
e6aa9abd 190 struct nested_state nested;
6be7d306
JK
191
192 bool nmi_singlestep;
ab2f4d73 193 u64 nmi_singlestep_guest_rflags;
66b7138f
JK
194
195 unsigned int3_injected;
196 unsigned long int3_rip;
631bc487 197 u32 apf_reason;
fbc0db76 198
6092d3d3
JR
199 /* cached guest cpuid flags for faster access */
200 bool nrips_enabled : 1;
44a95dae 201
18f40c53 202 u32 ldr_reg;
44a95dae
SS
203 struct page *avic_backing_page;
204 u64 *avic_physical_id_cache;
8221c137 205 bool avic_is_running;
411b44ba
SS
206
207 /*
208 * Per-vcpu list of struct amd_svm_iommu_ir:
209 * This is used mainly to store interrupt remapping information used
210 * when update the vcpu affinity. This avoids the need to scan for
211 * IRTE and try to match ga_tag in the IOMMU driver.
212 */
213 struct list_head ir_list;
214 spinlock_t ir_list_lock;
215};
216
217/*
218 * This is a wrapper of struct amd_iommu_ir_data.
219 */
220struct amd_svm_iommu_ir {
221 struct list_head node; /* Used by SVM for per-vcpu ir_list */
222 void *data; /* Storing pointer to struct amd_ir_data */
6c8166a7
AK
223};
224
44a95dae
SS
225#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
226#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
227
228#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
229#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
230#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
231#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
232
fbc0db76
JR
233static DEFINE_PER_CPU(u64, current_tsc_ratio);
234#define TSC_RATIO_DEFAULT 0x0100000000ULL
235
455716fa
JR
236#define MSR_INVALID 0xffffffffU
237
09941fbb 238static const struct svm_direct_access_msrs {
ac72a9b7
JR
239 u32 index; /* Index of the MSR */
240 bool always; /* True if intercept is always on */
241} direct_access_msrs[] = {
8c06585d 242 { .index = MSR_STAR, .always = true },
ac72a9b7
JR
243 { .index = MSR_IA32_SYSENTER_CS, .always = true },
244#ifdef CONFIG_X86_64
245 { .index = MSR_GS_BASE, .always = true },
246 { .index = MSR_FS_BASE, .always = true },
247 { .index = MSR_KERNEL_GS_BASE, .always = true },
248 { .index = MSR_LSTAR, .always = true },
249 { .index = MSR_CSTAR, .always = true },
250 { .index = MSR_SYSCALL_MASK, .always = true },
251#endif
252 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
253 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
254 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
255 { .index = MSR_IA32_LASTINTTOIP, .always = false },
256 { .index = MSR_INVALID, .always = false },
6c8166a7
AK
257};
258
709ddebf
JR
259/* enable NPT for AMD64 and X86 with PAE */
260#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
261static bool npt_enabled = true;
262#else
e0231715 263static bool npt_enabled;
709ddebf 264#endif
6c7dac72 265
e2358851
DB
266/* allow nested paging (virtualized MMU) for all guests */
267static int npt = true;
6c7dac72 268module_param(npt, int, S_IRUGO);
e3da3acd 269
e2358851
DB
270/* allow nested virtualization in KVM/SVM */
271static int nested = true;
236de055
AG
272module_param(nested, int, S_IRUGO);
273
44a95dae
SS
274/* enable / disable AVIC */
275static int avic;
5b8abf1f 276#ifdef CONFIG_X86_LOCAL_APIC
44a95dae 277module_param(avic, int, S_IRUGO);
5b8abf1f 278#endif
44a95dae 279
5ea11f2b
SS
280/* AVIC VM ID bit masks and lock */
281static DECLARE_BITMAP(avic_vm_id_bitmap, AVIC_VM_ID_NR);
282static DEFINE_SPINLOCK(avic_vm_id_lock);
283
79a8059d 284static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
44874f84 285static void svm_flush_tlb(struct kvm_vcpu *vcpu);
a5c3832d 286static void svm_complete_interrupts(struct vcpu_svm *svm);
04d2cc77 287
410e4d57 288static int nested_svm_exit_handled(struct vcpu_svm *svm);
b8e88bc8 289static int nested_svm_intercept(struct vcpu_svm *svm);
cf74a78b 290static int nested_svm_vmexit(struct vcpu_svm *svm);
cf74a78b
AG
291static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
292 bool has_error_code, u32 error_code);
293
8d28fec4 294enum {
116a0a23
JR
295 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
296 pause filter count */
f56838e4 297 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
d48086d1 298 VMCB_ASID, /* ASID */
decdbf6a 299 VMCB_INTR, /* int_ctl, int_vector */
b2747166 300 VMCB_NPT, /* npt_en, nCR3, gPAT */
dcca1a65 301 VMCB_CR, /* CR0, CR3, CR4, EFER */
72214b96 302 VMCB_DR, /* DR6, DR7 */
17a703cb 303 VMCB_DT, /* GDT, IDT */
060d0c9a 304 VMCB_SEG, /* CS, DS, SS, ES, CPL */
0574dec0 305 VMCB_CR2, /* CR2 only */
b53ba3f9 306 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
44a95dae
SS
307 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
308 * AVIC PHYSICAL_TABLE pointer,
309 * AVIC LOGICAL_TABLE pointer
310 */
8d28fec4
RJ
311 VMCB_DIRTY_MAX,
312};
313
0574dec0
JR
314/* TPR and CR2 are always written before VMRUN */
315#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
8d28fec4 316
44a95dae
SS
317#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
318
8d28fec4
RJ
319static inline void mark_all_dirty(struct vmcb *vmcb)
320{
321 vmcb->control.clean = 0;
322}
323
324static inline void mark_all_clean(struct vmcb *vmcb)
325{
326 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
327 & ~VMCB_ALWAYS_DIRTY_MASK;
328}
329
330static inline void mark_dirty(struct vmcb *vmcb, int bit)
331{
332 vmcb->control.clean &= ~(1 << bit);
333}
334
a2fa3e9f
GH
335static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
336{
fb3f0f51 337 return container_of(vcpu, struct vcpu_svm, vcpu);
a2fa3e9f
GH
338}
339
44a95dae
SS
340static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
341{
342 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
343 mark_dirty(svm->vmcb, VMCB_AVIC);
344}
345
340d3bc3
SS
346static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
347{
348 struct vcpu_svm *svm = to_svm(vcpu);
349 u64 *entry = svm->avic_physical_id_cache;
350
351 if (!entry)
352 return false;
353
354 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
355}
356
384c6368
JR
357static void recalc_intercepts(struct vcpu_svm *svm)
358{
359 struct vmcb_control_area *c, *h;
360 struct nested_state *g;
361
116a0a23
JR
362 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
363
384c6368
JR
364 if (!is_guest_mode(&svm->vcpu))
365 return;
366
367 c = &svm->vmcb->control;
368 h = &svm->nested.hsave->control;
369 g = &svm->nested;
370
4ee546b4 371 c->intercept_cr = h->intercept_cr | g->intercept_cr;
3aed041a 372 c->intercept_dr = h->intercept_dr | g->intercept_dr;
384c6368
JR
373 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
374 c->intercept = h->intercept | g->intercept;
375}
376
4ee546b4
RJ
377static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
378{
379 if (is_guest_mode(&svm->vcpu))
380 return svm->nested.hsave;
381 else
382 return svm->vmcb;
383}
384
385static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
386{
387 struct vmcb *vmcb = get_host_vmcb(svm);
388
389 vmcb->control.intercept_cr |= (1U << bit);
390
391 recalc_intercepts(svm);
392}
393
394static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
395{
396 struct vmcb *vmcb = get_host_vmcb(svm);
397
398 vmcb->control.intercept_cr &= ~(1U << bit);
399
400 recalc_intercepts(svm);
401}
402
403static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
404{
405 struct vmcb *vmcb = get_host_vmcb(svm);
406
407 return vmcb->control.intercept_cr & (1U << bit);
408}
409
5315c716 410static inline void set_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
411{
412 struct vmcb *vmcb = get_host_vmcb(svm);
413
5315c716
PB
414 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
415 | (1 << INTERCEPT_DR1_READ)
416 | (1 << INTERCEPT_DR2_READ)
417 | (1 << INTERCEPT_DR3_READ)
418 | (1 << INTERCEPT_DR4_READ)
419 | (1 << INTERCEPT_DR5_READ)
420 | (1 << INTERCEPT_DR6_READ)
421 | (1 << INTERCEPT_DR7_READ)
422 | (1 << INTERCEPT_DR0_WRITE)
423 | (1 << INTERCEPT_DR1_WRITE)
424 | (1 << INTERCEPT_DR2_WRITE)
425 | (1 << INTERCEPT_DR3_WRITE)
426 | (1 << INTERCEPT_DR4_WRITE)
427 | (1 << INTERCEPT_DR5_WRITE)
428 | (1 << INTERCEPT_DR6_WRITE)
429 | (1 << INTERCEPT_DR7_WRITE);
3aed041a
JR
430
431 recalc_intercepts(svm);
432}
433
5315c716 434static inline void clr_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
435{
436 struct vmcb *vmcb = get_host_vmcb(svm);
437
5315c716 438 vmcb->control.intercept_dr = 0;
3aed041a
JR
439
440 recalc_intercepts(svm);
441}
442
18c918c5
JR
443static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
444{
445 struct vmcb *vmcb = get_host_vmcb(svm);
446
447 vmcb->control.intercept_exceptions |= (1U << bit);
448
449 recalc_intercepts(svm);
450}
451
452static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
453{
454 struct vmcb *vmcb = get_host_vmcb(svm);
455
456 vmcb->control.intercept_exceptions &= ~(1U << bit);
457
458 recalc_intercepts(svm);
459}
460
8a05a1b8
JR
461static inline void set_intercept(struct vcpu_svm *svm, int bit)
462{
463 struct vmcb *vmcb = get_host_vmcb(svm);
464
465 vmcb->control.intercept |= (1ULL << bit);
466
467 recalc_intercepts(svm);
468}
469
470static inline void clr_intercept(struct vcpu_svm *svm, int bit)
471{
472 struct vmcb *vmcb = get_host_vmcb(svm);
473
474 vmcb->control.intercept &= ~(1ULL << bit);
475
476 recalc_intercepts(svm);
477}
478
2af9194d
JR
479static inline void enable_gif(struct vcpu_svm *svm)
480{
481 svm->vcpu.arch.hflags |= HF_GIF_MASK;
482}
483
484static inline void disable_gif(struct vcpu_svm *svm)
485{
486 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
487}
488
489static inline bool gif_set(struct vcpu_svm *svm)
490{
491 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
492}
493
4866d5e3 494static unsigned long iopm_base;
6aa8b732
AK
495
496struct kvm_ldttss_desc {
497 u16 limit0;
498 u16 base0;
e0231715
JR
499 unsigned base1:8, type:5, dpl:2, p:1;
500 unsigned limit1:4, zero0:3, g:1, base2:8;
6aa8b732
AK
501 u32 base3;
502 u32 zero1;
503} __attribute__((packed));
504
505struct svm_cpu_data {
506 int cpu;
507
5008fdf5
AK
508 u64 asid_generation;
509 u32 max_asid;
510 u32 next_asid;
6aa8b732
AK
511 struct kvm_ldttss_desc *tss_desc;
512
513 struct page *save_area;
514};
515
516static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
517
518struct svm_init_data {
519 int cpu;
520 int r;
521};
522
09941fbb 523static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
6aa8b732 524
9d8f549d 525#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
526#define MSRS_RANGE_SIZE 2048
527#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
528
455716fa
JR
529static u32 svm_msrpm_offset(u32 msr)
530{
531 u32 offset;
532 int i;
533
534 for (i = 0; i < NUM_MSR_MAPS; i++) {
535 if (msr < msrpm_ranges[i] ||
536 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
537 continue;
538
539 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
540 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
541
542 /* Now we have the u8 offset - but need the u32 offset */
543 return offset / 4;
544 }
545
546 /* MSR not in any range */
547 return MSR_INVALID;
548}
549
6aa8b732
AK
550#define MAX_INST_SIZE 15
551
6aa8b732
AK
552static inline void clgi(void)
553{
4ecac3fd 554 asm volatile (__ex(SVM_CLGI));
6aa8b732
AK
555}
556
557static inline void stgi(void)
558{
4ecac3fd 559 asm volatile (__ex(SVM_STGI));
6aa8b732
AK
560}
561
562static inline void invlpga(unsigned long addr, u32 asid)
563{
e0231715 564 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
6aa8b732
AK
565}
566
4b16184c
JR
567static int get_npt_level(void)
568{
569#ifdef CONFIG_X86_64
570 return PT64_ROOT_LEVEL;
571#else
572 return PT32E_ROOT_LEVEL;
573#endif
574}
575
6aa8b732
AK
576static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
577{
6dc696d4 578 vcpu->arch.efer = efer;
709ddebf 579 if (!npt_enabled && !(efer & EFER_LMA))
2b5203ee 580 efer &= ~EFER_LME;
6aa8b732 581
9962d032 582 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
dcca1a65 583 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
6aa8b732
AK
584}
585
6aa8b732
AK
586static int is_external_interrupt(u32 info)
587{
588 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
589 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
590}
591
37ccdcbe 592static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
2809f5d2
GC
593{
594 struct vcpu_svm *svm = to_svm(vcpu);
595 u32 ret = 0;
596
597 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
37ccdcbe
PB
598 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
599 return ret;
2809f5d2
GC
600}
601
602static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
603{
604 struct vcpu_svm *svm = to_svm(vcpu);
605
606 if (mask == 0)
607 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
608 else
609 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
610
611}
612
6aa8b732
AK
613static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
614{
a2fa3e9f
GH
615 struct vcpu_svm *svm = to_svm(vcpu);
616
f104765b 617 if (svm->vmcb->control.next_rip != 0) {
d2922422 618 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
6bc31bdc 619 svm->next_rip = svm->vmcb->control.next_rip;
f104765b 620 }
6bc31bdc 621
a2fa3e9f 622 if (!svm->next_rip) {
51d8b661 623 if (emulate_instruction(vcpu, EMULTYPE_SKIP) !=
f629cf84
GN
624 EMULATE_DONE)
625 printk(KERN_DEBUG "%s: NOP\n", __func__);
6aa8b732
AK
626 return;
627 }
5fdbf976
MT
628 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
629 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
630 __func__, kvm_rip_read(vcpu), svm->next_rip);
6aa8b732 631
5fdbf976 632 kvm_rip_write(vcpu, svm->next_rip);
2809f5d2 633 svm_set_interrupt_shadow(vcpu, 0);
6aa8b732
AK
634}
635
116a4752 636static void svm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
ce7ddec4
JR
637 bool has_error_code, u32 error_code,
638 bool reinject)
116a4752
JK
639{
640 struct vcpu_svm *svm = to_svm(vcpu);
641
e0231715
JR
642 /*
643 * If we are within a nested VM we'd better #VMEXIT and let the guest
644 * handle the exception
645 */
ce7ddec4
JR
646 if (!reinject &&
647 nested_svm_check_exception(svm, nr, has_error_code, error_code))
116a4752
JK
648 return;
649
2a6b20b8 650 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
66b7138f
JK
651 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
652
653 /*
654 * For guest debugging where we have to reinject #BP if some
655 * INT3 is guest-owned:
656 * Emulate nRIP by moving RIP forward. Will fail if injection
657 * raises a fault that is not intercepted. Still better than
658 * failing in all cases.
659 */
660 skip_emulated_instruction(&svm->vcpu);
661 rip = kvm_rip_read(&svm->vcpu);
662 svm->int3_rip = rip + svm->vmcb->save.cs.base;
663 svm->int3_injected = rip - old_rip;
664 }
665
116a4752
JK
666 svm->vmcb->control.event_inj = nr
667 | SVM_EVTINJ_VALID
668 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
669 | SVM_EVTINJ_TYPE_EXEPT;
670 svm->vmcb->control.event_inj_err = error_code;
671}
672
67ec6607
JR
673static void svm_init_erratum_383(void)
674{
675 u32 low, high;
676 int err;
677 u64 val;
678
e6ee94d5 679 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
67ec6607
JR
680 return;
681
682 /* Use _safe variants to not break nested virtualization */
683 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
684 if (err)
685 return;
686
687 val |= (1ULL << 47);
688
689 low = lower_32_bits(val);
690 high = upper_32_bits(val);
691
692 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
693
694 erratum_383_found = true;
695}
696
2b036c6b
BO
697static void svm_init_osvw(struct kvm_vcpu *vcpu)
698{
699 /*
700 * Guests should see errata 400 and 415 as fixed (assuming that
701 * HLT and IO instructions are intercepted).
702 */
703 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
704 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
705
706 /*
707 * By increasing VCPU's osvw.length to 3 we are telling the guest that
708 * all osvw.status bits inside that length, including bit 0 (which is
709 * reserved for erratum 298), are valid. However, if host processor's
710 * osvw_len is 0 then osvw_status[0] carries no information. We need to
711 * be conservative here and therefore we tell the guest that erratum 298
712 * is present (because we really don't know).
713 */
714 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
715 vcpu->arch.osvw.status |= 1;
716}
717
6aa8b732
AK
718static int has_svm(void)
719{
63d1142f 720 const char *msg;
6aa8b732 721
63d1142f 722 if (!cpu_has_svm(&msg)) {
ff81ff10 723 printk(KERN_INFO "has_svm: %s\n", msg);
6aa8b732
AK
724 return 0;
725 }
726
6aa8b732
AK
727 return 1;
728}
729
13a34e06 730static void svm_hardware_disable(void)
6aa8b732 731{
fbc0db76
JR
732 /* Make sure we clean up behind us */
733 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
734 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
735
2c8dceeb 736 cpu_svm_disable();
1018faa6
JR
737
738 amd_pmu_disable_virt();
6aa8b732
AK
739}
740
13a34e06 741static int svm_hardware_enable(void)
6aa8b732
AK
742{
743
0fe1e009 744 struct svm_cpu_data *sd;
6aa8b732 745 uint64_t efer;
6aa8b732
AK
746 struct desc_struct *gdt;
747 int me = raw_smp_processor_id();
748
10474ae8
AG
749 rdmsrl(MSR_EFER, efer);
750 if (efer & EFER_SVME)
751 return -EBUSY;
752
6aa8b732 753 if (!has_svm()) {
1f5b77f5 754 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
10474ae8 755 return -EINVAL;
6aa8b732 756 }
0fe1e009 757 sd = per_cpu(svm_data, me);
0fe1e009 758 if (!sd) {
1f5b77f5 759 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
10474ae8 760 return -EINVAL;
6aa8b732
AK
761 }
762
0fe1e009
TH
763 sd->asid_generation = 1;
764 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
765 sd->next_asid = sd->max_asid + 1;
6aa8b732 766
45fc8757 767 gdt = get_current_gdt_rw();
0fe1e009 768 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
6aa8b732 769
9962d032 770 wrmsrl(MSR_EFER, efer | EFER_SVME);
6aa8b732 771
d0316554 772 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
10474ae8 773
fbc0db76
JR
774 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
775 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
89cbc767 776 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
fbc0db76
JR
777 }
778
2b036c6b
BO
779
780 /*
781 * Get OSVW bits.
782 *
783 * Note that it is possible to have a system with mixed processor
784 * revisions and therefore different OSVW bits. If bits are not the same
785 * on different processors then choose the worst case (i.e. if erratum
786 * is present on one processor and not on another then assume that the
787 * erratum is present everywhere).
788 */
789 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
790 uint64_t len, status = 0;
791 int err;
792
793 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
794 if (!err)
795 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
796 &err);
797
798 if (err)
799 osvw_status = osvw_len = 0;
800 else {
801 if (len < osvw_len)
802 osvw_len = len;
803 osvw_status |= status;
804 osvw_status &= (1ULL << osvw_len) - 1;
805 }
806 } else
807 osvw_status = osvw_len = 0;
808
67ec6607
JR
809 svm_init_erratum_383();
810
1018faa6
JR
811 amd_pmu_enable_virt();
812
10474ae8 813 return 0;
6aa8b732
AK
814}
815
0da1db75
JR
816static void svm_cpu_uninit(int cpu)
817{
0fe1e009 818 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
0da1db75 819
0fe1e009 820 if (!sd)
0da1db75
JR
821 return;
822
823 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
0fe1e009
TH
824 __free_page(sd->save_area);
825 kfree(sd);
0da1db75
JR
826}
827
6aa8b732
AK
828static int svm_cpu_init(int cpu)
829{
0fe1e009 830 struct svm_cpu_data *sd;
6aa8b732
AK
831 int r;
832
0fe1e009
TH
833 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
834 if (!sd)
6aa8b732 835 return -ENOMEM;
0fe1e009
TH
836 sd->cpu = cpu;
837 sd->save_area = alloc_page(GFP_KERNEL);
6aa8b732 838 r = -ENOMEM;
0fe1e009 839 if (!sd->save_area)
6aa8b732
AK
840 goto err_1;
841
0fe1e009 842 per_cpu(svm_data, cpu) = sd;
6aa8b732
AK
843
844 return 0;
845
846err_1:
0fe1e009 847 kfree(sd);
6aa8b732
AK
848 return r;
849
850}
851
ac72a9b7
JR
852static bool valid_msr_intercept(u32 index)
853{
854 int i;
855
856 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
857 if (direct_access_msrs[i].index == index)
858 return true;
859
860 return false;
861}
862
bfc733a7
RR
863static void set_msr_interception(u32 *msrpm, unsigned msr,
864 int read, int write)
6aa8b732 865{
455716fa
JR
866 u8 bit_read, bit_write;
867 unsigned long tmp;
868 u32 offset;
6aa8b732 869
ac72a9b7
JR
870 /*
871 * If this warning triggers extend the direct_access_msrs list at the
872 * beginning of the file
873 */
874 WARN_ON(!valid_msr_intercept(msr));
875
455716fa
JR
876 offset = svm_msrpm_offset(msr);
877 bit_read = 2 * (msr & 0x0f);
878 bit_write = 2 * (msr & 0x0f) + 1;
879 tmp = msrpm[offset];
880
881 BUG_ON(offset == MSR_INVALID);
882
883 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
884 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
885
886 msrpm[offset] = tmp;
6aa8b732
AK
887}
888
f65c229c 889static void svm_vcpu_init_msrpm(u32 *msrpm)
6aa8b732
AK
890{
891 int i;
892
f65c229c
JR
893 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
894
ac72a9b7
JR
895 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
896 if (!direct_access_msrs[i].always)
897 continue;
898
899 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
900 }
f65c229c
JR
901}
902
323c3d80
JR
903static void add_msr_offset(u32 offset)
904{
905 int i;
906
907 for (i = 0; i < MSRPM_OFFSETS; ++i) {
908
909 /* Offset already in list? */
910 if (msrpm_offsets[i] == offset)
bfc733a7 911 return;
323c3d80
JR
912
913 /* Slot used by another offset? */
914 if (msrpm_offsets[i] != MSR_INVALID)
915 continue;
916
917 /* Add offset to list */
918 msrpm_offsets[i] = offset;
919
920 return;
6aa8b732 921 }
323c3d80
JR
922
923 /*
924 * If this BUG triggers the msrpm_offsets table has an overflow. Just
925 * increase MSRPM_OFFSETS in this case.
926 */
bfc733a7 927 BUG();
6aa8b732
AK
928}
929
323c3d80 930static void init_msrpm_offsets(void)
f65c229c 931{
323c3d80 932 int i;
f65c229c 933
323c3d80
JR
934 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
935
936 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
937 u32 offset;
938
939 offset = svm_msrpm_offset(direct_access_msrs[i].index);
940 BUG_ON(offset == MSR_INVALID);
941
942 add_msr_offset(offset);
943 }
f65c229c
JR
944}
945
24e09cbf
JR
946static void svm_enable_lbrv(struct vcpu_svm *svm)
947{
948 u32 *msrpm = svm->msrpm;
949
8a77e909 950 svm->vmcb->control.lbr_ctl |= LBR_CTL_ENABLE_MASK;
24e09cbf
JR
951 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
952 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
953 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
954 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
955}
956
957static void svm_disable_lbrv(struct vcpu_svm *svm)
958{
959 u32 *msrpm = svm->msrpm;
960
8a77e909 961 svm->vmcb->control.lbr_ctl &= ~LBR_CTL_ENABLE_MASK;
24e09cbf
JR
962 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
963 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
964 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
965 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
966}
967
4aebd0e9
LP
968static void disable_nmi_singlestep(struct vcpu_svm *svm)
969{
970 svm->nmi_singlestep = false;
ab2f4d73
LP
971 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
972 /* Clear our flags if they were not set by the guest */
973 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
974 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
975 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
976 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
977 }
4aebd0e9
LP
978}
979
5881f737
SS
980/* Note:
981 * This hash table is used to map VM_ID to a struct kvm_arch,
982 * when handling AMD IOMMU GALOG notification to schedule in
983 * a particular vCPU.
984 */
985#define SVM_VM_DATA_HASH_BITS 8
681bcea8
DH
986static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
987static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
5881f737
SS
988
989/* Note:
990 * This function is called from IOMMU driver to notify
991 * SVM to schedule in a particular vCPU of a particular VM.
992 */
993static int avic_ga_log_notifier(u32 ga_tag)
994{
995 unsigned long flags;
996 struct kvm_arch *ka = NULL;
997 struct kvm_vcpu *vcpu = NULL;
998 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
999 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1000
1001 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1002
1003 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1004 hash_for_each_possible(svm_vm_data_hash, ka, hnode, vm_id) {
1005 struct kvm *kvm = container_of(ka, struct kvm, arch);
1006 struct kvm_arch *vm_data = &kvm->arch;
1007
1008 if (vm_data->avic_vm_id != vm_id)
1009 continue;
1010 vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
1011 break;
1012 }
1013 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1014
1015 if (!vcpu)
1016 return 0;
1017
1018 /* Note:
1019 * At this point, the IOMMU should have already set the pending
1020 * bit in the vAPIC backing page. So, we just need to schedule
1021 * in the vcpu.
1022 */
1023 if (vcpu->mode == OUTSIDE_GUEST_MODE)
1024 kvm_vcpu_wake_up(vcpu);
1025
1026 return 0;
1027}
1028
6aa8b732
AK
1029static __init int svm_hardware_setup(void)
1030{
1031 int cpu;
1032 struct page *iopm_pages;
f65c229c 1033 void *iopm_va;
6aa8b732
AK
1034 int r;
1035
6aa8b732
AK
1036 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1037
1038 if (!iopm_pages)
1039 return -ENOMEM;
c8681339
AL
1040
1041 iopm_va = page_address(iopm_pages);
1042 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
6aa8b732
AK
1043 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1044
323c3d80
JR
1045 init_msrpm_offsets();
1046
50a37eb4
JR
1047 if (boot_cpu_has(X86_FEATURE_NX))
1048 kvm_enable_efer_bits(EFER_NX);
1049
1b2fd70c
AG
1050 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1051 kvm_enable_efer_bits(EFER_FFXSR);
1052
92a1f12d 1053 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
92a1f12d 1054 kvm_has_tsc_control = true;
bc9b961b
HZ
1055 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1056 kvm_tsc_scaling_ratio_frac_bits = 32;
92a1f12d
JR
1057 }
1058
236de055
AG
1059 if (nested) {
1060 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
eec4b140 1061 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
236de055
AG
1062 }
1063
3230bb47 1064 for_each_possible_cpu(cpu) {
6aa8b732
AK
1065 r = svm_cpu_init(cpu);
1066 if (r)
f65c229c 1067 goto err;
6aa8b732 1068 }
33bd6a0b 1069
2a6b20b8 1070 if (!boot_cpu_has(X86_FEATURE_NPT))
e3da3acd
JR
1071 npt_enabled = false;
1072
6c7dac72
JR
1073 if (npt_enabled && !npt) {
1074 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1075 npt_enabled = false;
1076 }
1077
18552672 1078 if (npt_enabled) {
e3da3acd 1079 printk(KERN_INFO "kvm: Nested Paging enabled\n");
18552672 1080 kvm_enable_tdp();
5f4cb662
JR
1081 } else
1082 kvm_disable_tdp();
e3da3acd 1083
5b8abf1f
SS
1084 if (avic) {
1085 if (!npt_enabled ||
1086 !boot_cpu_has(X86_FEATURE_AVIC) ||
5881f737 1087 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
5b8abf1f 1088 avic = false;
5881f737 1089 } else {
5b8abf1f 1090 pr_info("AVIC enabled\n");
5881f737 1091
5881f737
SS
1092 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1093 }
5b8abf1f 1094 }
44a95dae 1095
6aa8b732
AK
1096 return 0;
1097
f65c229c 1098err:
6aa8b732
AK
1099 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1100 iopm_base = 0;
1101 return r;
1102}
1103
1104static __exit void svm_hardware_unsetup(void)
1105{
0da1db75
JR
1106 int cpu;
1107
3230bb47 1108 for_each_possible_cpu(cpu)
0da1db75
JR
1109 svm_cpu_uninit(cpu);
1110
6aa8b732 1111 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
f65c229c 1112 iopm_base = 0;
6aa8b732
AK
1113}
1114
1115static void init_seg(struct vmcb_seg *seg)
1116{
1117 seg->selector = 0;
1118 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
e0231715 1119 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
6aa8b732
AK
1120 seg->limit = 0xffff;
1121 seg->base = 0;
1122}
1123
1124static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1125{
1126 seg->selector = 0;
1127 seg->attrib = SVM_SELECTOR_P_MASK | type;
1128 seg->limit = 0xffff;
1129 seg->base = 0;
1130}
1131
f4e1b3c8
ZA
1132static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1133{
1134 struct vcpu_svm *svm = to_svm(vcpu);
1135 u64 g_tsc_offset = 0;
1136
2030753d 1137 if (is_guest_mode(vcpu)) {
f4e1b3c8
ZA
1138 g_tsc_offset = svm->vmcb->control.tsc_offset -
1139 svm->nested.hsave->control.tsc_offset;
1140 svm->nested.hsave->control.tsc_offset = offset;
489223ed
YY
1141 } else
1142 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1143 svm->vmcb->control.tsc_offset,
1144 offset);
f4e1b3c8
ZA
1145
1146 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
116a0a23
JR
1147
1148 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
f4e1b3c8
ZA
1149}
1150
44a95dae
SS
1151static void avic_init_vmcb(struct vcpu_svm *svm)
1152{
1153 struct vmcb *vmcb = svm->vmcb;
1154 struct kvm_arch *vm_data = &svm->vcpu.kvm->arch;
1155 phys_addr_t bpa = page_to_phys(svm->avic_backing_page);
1156 phys_addr_t lpa = page_to_phys(vm_data->avic_logical_id_table_page);
1157 phys_addr_t ppa = page_to_phys(vm_data->avic_physical_id_table_page);
1158
1159 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1160 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1161 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1162 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1163 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1164 svm->vcpu.arch.apicv_active = true;
1165}
1166
5690891b 1167static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 1168{
e6101a96
JR
1169 struct vmcb_control_area *control = &svm->vmcb->control;
1170 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732 1171
4ee546b4 1172 svm->vcpu.arch.hflags = 0;
bff78274 1173
4ee546b4
RJ
1174 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1175 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1176 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1177 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1178 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1179 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
3bbf3565
SS
1180 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1181 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
6aa8b732 1182
5315c716 1183 set_dr_intercepts(svm);
6aa8b732 1184
18c918c5
JR
1185 set_exception_intercept(svm, PF_VECTOR);
1186 set_exception_intercept(svm, UD_VECTOR);
1187 set_exception_intercept(svm, MC_VECTOR);
54a20552 1188 set_exception_intercept(svm, AC_VECTOR);
cbdb967a 1189 set_exception_intercept(svm, DB_VECTOR);
6aa8b732 1190
8a05a1b8
JR
1191 set_intercept(svm, INTERCEPT_INTR);
1192 set_intercept(svm, INTERCEPT_NMI);
1193 set_intercept(svm, INTERCEPT_SMI);
1194 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
332b56e4 1195 set_intercept(svm, INTERCEPT_RDPMC);
8a05a1b8
JR
1196 set_intercept(svm, INTERCEPT_CPUID);
1197 set_intercept(svm, INTERCEPT_INVD);
1198 set_intercept(svm, INTERCEPT_HLT);
1199 set_intercept(svm, INTERCEPT_INVLPG);
1200 set_intercept(svm, INTERCEPT_INVLPGA);
1201 set_intercept(svm, INTERCEPT_IOIO_PROT);
1202 set_intercept(svm, INTERCEPT_MSR_PROT);
1203 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1204 set_intercept(svm, INTERCEPT_SHUTDOWN);
1205 set_intercept(svm, INTERCEPT_VMRUN);
1206 set_intercept(svm, INTERCEPT_VMMCALL);
1207 set_intercept(svm, INTERCEPT_VMLOAD);
1208 set_intercept(svm, INTERCEPT_VMSAVE);
1209 set_intercept(svm, INTERCEPT_STGI);
1210 set_intercept(svm, INTERCEPT_CLGI);
1211 set_intercept(svm, INTERCEPT_SKINIT);
1212 set_intercept(svm, INTERCEPT_WBINVD);
81dd35d4 1213 set_intercept(svm, INTERCEPT_XSETBV);
6aa8b732 1214
668fffa3
MT
1215 if (!kvm_mwait_in_guest()) {
1216 set_intercept(svm, INTERCEPT_MONITOR);
1217 set_intercept(svm, INTERCEPT_MWAIT);
1218 }
1219
6aa8b732 1220 control->iopm_base_pa = iopm_base;
f65c229c 1221 control->msrpm_base_pa = __pa(svm->msrpm);
6aa8b732
AK
1222 control->int_ctl = V_INTR_MASKING_MASK;
1223
1224 init_seg(&save->es);
1225 init_seg(&save->ss);
1226 init_seg(&save->ds);
1227 init_seg(&save->fs);
1228 init_seg(&save->gs);
1229
1230 save->cs.selector = 0xf000;
04b66839 1231 save->cs.base = 0xffff0000;
6aa8b732
AK
1232 /* Executable/Readable Code Segment */
1233 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1234 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1235 save->cs.limit = 0xffff;
6aa8b732
AK
1236
1237 save->gdtr.limit = 0xffff;
1238 save->idtr.limit = 0xffff;
1239
1240 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1241 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1242
5690891b 1243 svm_set_efer(&svm->vcpu, 0);
d77c26fc 1244 save->dr6 = 0xffff0ff0;
f6e78475 1245 kvm_set_rflags(&svm->vcpu, 2);
6aa8b732 1246 save->rip = 0x0000fff0;
5fdbf976 1247 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732 1248
e0231715 1249 /*
18fa000a 1250 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
d28bc9dd 1251 * It also updates the guest-visible cr0 value.
6aa8b732 1252 */
79a8059d 1253 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
ebae871a 1254 kvm_mmu_reset_context(&svm->vcpu);
18fa000a 1255
66aee91a 1256 save->cr4 = X86_CR4_PAE;
6aa8b732 1257 /* rdx = ?? */
709ddebf
JR
1258
1259 if (npt_enabled) {
1260 /* Setup VMCB for Nested Paging */
1261 control->nested_ctl = 1;
8a05a1b8 1262 clr_intercept(svm, INTERCEPT_INVLPG);
18c918c5 1263 clr_exception_intercept(svm, PF_VECTOR);
4ee546b4
RJ
1264 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1265 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
74545705 1266 save->g_pat = svm->vcpu.arch.pat;
709ddebf
JR
1267 save->cr3 = 0;
1268 save->cr4 = 0;
1269 }
f40f6a45 1270 svm->asid_generation = 0;
1371d904 1271
e6aa9abd 1272 svm->nested.vmcb = 0;
2af9194d
JR
1273 svm->vcpu.arch.hflags = 0;
1274
2a6b20b8 1275 if (boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
565d0998 1276 control->pause_filter_count = 3000;
8a05a1b8 1277 set_intercept(svm, INTERCEPT_PAUSE);
565d0998
ML
1278 }
1279
44a95dae
SS
1280 if (avic)
1281 avic_init_vmcb(svm);
1282
8d28fec4
RJ
1283 mark_all_dirty(svm->vmcb);
1284
2af9194d 1285 enable_gif(svm);
44a95dae
SS
1286
1287}
1288
d3e7dec0
DC
1289static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1290 unsigned int index)
44a95dae
SS
1291{
1292 u64 *avic_physical_id_table;
1293 struct kvm_arch *vm_data = &vcpu->kvm->arch;
1294
1295 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1296 return NULL;
1297
1298 avic_physical_id_table = page_address(vm_data->avic_physical_id_table_page);
1299
1300 return &avic_physical_id_table[index];
1301}
1302
1303/**
1304 * Note:
1305 * AVIC hardware walks the nested page table to check permissions,
1306 * but does not use the SPA address specified in the leaf page
1307 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1308 * field of the VMCB. Therefore, we set up the
1309 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1310 */
1311static int avic_init_access_page(struct kvm_vcpu *vcpu)
1312{
1313 struct kvm *kvm = vcpu->kvm;
1314 int ret;
1315
1316 if (kvm->arch.apic_access_page_done)
1317 return 0;
1318
1319 ret = x86_set_memory_region(kvm,
1320 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1321 APIC_DEFAULT_PHYS_BASE,
1322 PAGE_SIZE);
1323 if (ret)
1324 return ret;
1325
1326 kvm->arch.apic_access_page_done = true;
1327 return 0;
1328}
1329
1330static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1331{
1332 int ret;
1333 u64 *entry, new_entry;
1334 int id = vcpu->vcpu_id;
1335 struct vcpu_svm *svm = to_svm(vcpu);
1336
1337 ret = avic_init_access_page(vcpu);
1338 if (ret)
1339 return ret;
1340
1341 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1342 return -EINVAL;
1343
1344 if (!svm->vcpu.arch.apic->regs)
1345 return -EINVAL;
1346
1347 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1348
1349 /* Setting AVIC backing page address in the phy APIC ID table */
1350 entry = avic_get_physical_id_entry(vcpu, id);
1351 if (!entry)
1352 return -EINVAL;
1353
1354 new_entry = READ_ONCE(*entry);
1355 new_entry = (page_to_phys(svm->avic_backing_page) &
1356 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1357 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK;
1358 WRITE_ONCE(*entry, new_entry);
1359
1360 svm->avic_physical_id_cache = entry;
1361
1362 return 0;
1363}
1364
5ea11f2b
SS
1365static inline int avic_get_next_vm_id(void)
1366{
1367 int id;
1368
1369 spin_lock(&avic_vm_id_lock);
1370
1371 /* AVIC VM ID is one-based. */
1372 id = find_next_zero_bit(avic_vm_id_bitmap, AVIC_VM_ID_NR, 1);
1373 if (id <= AVIC_VM_ID_MASK)
1374 __set_bit(id, avic_vm_id_bitmap);
1375 else
1376 id = -EAGAIN;
1377
1378 spin_unlock(&avic_vm_id_lock);
1379 return id;
1380}
1381
1382static inline int avic_free_vm_id(int id)
1383{
1384 if (id <= 0 || id > AVIC_VM_ID_MASK)
1385 return -EINVAL;
1386
1387 spin_lock(&avic_vm_id_lock);
1388 __clear_bit(id, avic_vm_id_bitmap);
1389 spin_unlock(&avic_vm_id_lock);
1390 return 0;
1391}
1392
44a95dae
SS
1393static void avic_vm_destroy(struct kvm *kvm)
1394{
5881f737 1395 unsigned long flags;
44a95dae
SS
1396 struct kvm_arch *vm_data = &kvm->arch;
1397
3863dff0
DV
1398 if (!avic)
1399 return;
1400
5ea11f2b
SS
1401 avic_free_vm_id(vm_data->avic_vm_id);
1402
44a95dae
SS
1403 if (vm_data->avic_logical_id_table_page)
1404 __free_page(vm_data->avic_logical_id_table_page);
1405 if (vm_data->avic_physical_id_table_page)
1406 __free_page(vm_data->avic_physical_id_table_page);
5881f737
SS
1407
1408 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1409 hash_del(&vm_data->hnode);
1410 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
44a95dae
SS
1411}
1412
1413static int avic_vm_init(struct kvm *kvm)
1414{
5881f737 1415 unsigned long flags;
adad0d02 1416 int vm_id, err = -ENOMEM;
44a95dae
SS
1417 struct kvm_arch *vm_data = &kvm->arch;
1418 struct page *p_page;
1419 struct page *l_page;
1420
1421 if (!avic)
1422 return 0;
1423
adad0d02
CIK
1424 vm_id = avic_get_next_vm_id();
1425 if (vm_id < 0)
1426 return vm_id;
1427 vm_data->avic_vm_id = (u32)vm_id;
5ea11f2b 1428
44a95dae
SS
1429 /* Allocating physical APIC ID table (4KB) */
1430 p_page = alloc_page(GFP_KERNEL);
1431 if (!p_page)
1432 goto free_avic;
1433
1434 vm_data->avic_physical_id_table_page = p_page;
1435 clear_page(page_address(p_page));
1436
1437 /* Allocating logical APIC ID table (4KB) */
1438 l_page = alloc_page(GFP_KERNEL);
1439 if (!l_page)
1440 goto free_avic;
1441
1442 vm_data->avic_logical_id_table_page = l_page;
1443 clear_page(page_address(l_page));
1444
5881f737
SS
1445 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
1446 hash_add(svm_vm_data_hash, &vm_data->hnode, vm_data->avic_vm_id);
1447 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1448
44a95dae
SS
1449 return 0;
1450
1451free_avic:
1452 avic_vm_destroy(kvm);
1453 return err;
6aa8b732
AK
1454}
1455
411b44ba
SS
1456static inline int
1457avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
8221c137 1458{
411b44ba
SS
1459 int ret = 0;
1460 unsigned long flags;
1461 struct amd_svm_iommu_ir *ir;
8221c137
SS
1462 struct vcpu_svm *svm = to_svm(vcpu);
1463
411b44ba
SS
1464 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1465 return 0;
8221c137 1466
411b44ba
SS
1467 /*
1468 * Here, we go through the per-vcpu ir_list to update all existing
1469 * interrupt remapping table entry targeting this vcpu.
1470 */
1471 spin_lock_irqsave(&svm->ir_list_lock, flags);
8221c137 1472
411b44ba
SS
1473 if (list_empty(&svm->ir_list))
1474 goto out;
8221c137 1475
411b44ba
SS
1476 list_for_each_entry(ir, &svm->ir_list, node) {
1477 ret = amd_iommu_update_ga(cpu, r, ir->data);
1478 if (ret)
1479 break;
1480 }
1481out:
1482 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
1483 return ret;
8221c137
SS
1484}
1485
1486static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1487{
1488 u64 entry;
1489 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
7d669f50 1490 int h_physical_id = kvm_cpu_get_apicid(cpu);
8221c137
SS
1491 struct vcpu_svm *svm = to_svm(vcpu);
1492
1493 if (!kvm_vcpu_apicv_active(vcpu))
1494 return;
1495
1496 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
1497 return;
1498
1499 entry = READ_ONCE(*(svm->avic_physical_id_cache));
1500 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
1501
1502 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
1503 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
1504
1505 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1506 if (svm->avic_is_running)
1507 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1508
1509 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
411b44ba
SS
1510 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
1511 svm->avic_is_running);
8221c137
SS
1512}
1513
1514static void avic_vcpu_put(struct kvm_vcpu *vcpu)
1515{
1516 u64 entry;
1517 struct vcpu_svm *svm = to_svm(vcpu);
1518
1519 if (!kvm_vcpu_apicv_active(vcpu))
1520 return;
1521
1522 entry = READ_ONCE(*(svm->avic_physical_id_cache));
411b44ba
SS
1523 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
1524 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
1525
8221c137
SS
1526 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
1527 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
6aa8b732
AK
1528}
1529
411b44ba
SS
1530/**
1531 * This function is called during VCPU halt/unhalt.
1532 */
1533static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
1534{
1535 struct vcpu_svm *svm = to_svm(vcpu);
1536
1537 svm->avic_is_running = is_run;
1538 if (is_run)
1539 avic_vcpu_load(vcpu, vcpu->cpu);
1540 else
1541 avic_vcpu_put(vcpu);
1542}
1543
d28bc9dd 1544static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
04d2cc77
AK
1545{
1546 struct vcpu_svm *svm = to_svm(vcpu);
66f7b72e
JS
1547 u32 dummy;
1548 u32 eax = 1;
04d2cc77 1549
d28bc9dd
NA
1550 if (!init_event) {
1551 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1552 MSR_IA32_APICBASE_ENABLE;
1553 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
1554 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
1555 }
5690891b 1556 init_vmcb(svm);
70433389 1557
66f7b72e
JS
1558 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy);
1559 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
44a95dae
SS
1560
1561 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1562 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
04d2cc77
AK
1563}
1564
fb3f0f51 1565static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 1566{
a2fa3e9f 1567 struct vcpu_svm *svm;
6aa8b732 1568 struct page *page;
f65c229c 1569 struct page *msrpm_pages;
b286d5d8 1570 struct page *hsave_page;
3d6368ef 1571 struct page *nested_msrpm_pages;
fb3f0f51 1572 int err;
6aa8b732 1573
c16f862d 1574 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
fb3f0f51
RR
1575 if (!svm) {
1576 err = -ENOMEM;
1577 goto out;
1578 }
1579
1580 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
1581 if (err)
1582 goto free_svm;
1583
b7af4043 1584 err = -ENOMEM;
6aa8b732 1585 page = alloc_page(GFP_KERNEL);
b7af4043 1586 if (!page)
fb3f0f51 1587 goto uninit;
6aa8b732 1588
f65c229c
JR
1589 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1590 if (!msrpm_pages)
b7af4043 1591 goto free_page1;
3d6368ef
AG
1592
1593 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
1594 if (!nested_msrpm_pages)
b7af4043 1595 goto free_page2;
f65c229c 1596
b286d5d8
AG
1597 hsave_page = alloc_page(GFP_KERNEL);
1598 if (!hsave_page)
b7af4043
TY
1599 goto free_page3;
1600
44a95dae
SS
1601 if (avic) {
1602 err = avic_init_backing_page(&svm->vcpu);
1603 if (err)
1604 goto free_page4;
411b44ba
SS
1605
1606 INIT_LIST_HEAD(&svm->ir_list);
1607 spin_lock_init(&svm->ir_list_lock);
44a95dae
SS
1608 }
1609
8221c137
SS
1610 /* We initialize this flag to true to make sure that the is_running
1611 * bit would be set the first time the vcpu is loaded.
1612 */
1613 svm->avic_is_running = true;
1614
e6aa9abd 1615 svm->nested.hsave = page_address(hsave_page);
b286d5d8 1616
b7af4043
TY
1617 svm->msrpm = page_address(msrpm_pages);
1618 svm_vcpu_init_msrpm(svm->msrpm);
1619
e6aa9abd 1620 svm->nested.msrpm = page_address(nested_msrpm_pages);
323c3d80 1621 svm_vcpu_init_msrpm(svm->nested.msrpm);
3d6368ef 1622
a2fa3e9f
GH
1623 svm->vmcb = page_address(page);
1624 clear_page(svm->vmcb);
1625 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
1626 svm->asid_generation = 0;
5690891b 1627 init_vmcb(svm);
6aa8b732 1628
2b036c6b
BO
1629 svm_init_osvw(&svm->vcpu);
1630
fb3f0f51 1631 return &svm->vcpu;
36241b8c 1632
44a95dae
SS
1633free_page4:
1634 __free_page(hsave_page);
b7af4043
TY
1635free_page3:
1636 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
1637free_page2:
1638 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
1639free_page1:
1640 __free_page(page);
fb3f0f51
RR
1641uninit:
1642 kvm_vcpu_uninit(&svm->vcpu);
1643free_svm:
a4770347 1644 kmem_cache_free(kvm_vcpu_cache, svm);
fb3f0f51
RR
1645out:
1646 return ERR_PTR(err);
6aa8b732
AK
1647}
1648
1649static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1650{
a2fa3e9f
GH
1651 struct vcpu_svm *svm = to_svm(vcpu);
1652
fb3f0f51 1653 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
f65c229c 1654 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
e6aa9abd
JR
1655 __free_page(virt_to_page(svm->nested.hsave));
1656 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
fb3f0f51 1657 kvm_vcpu_uninit(vcpu);
a4770347 1658 kmem_cache_free(kvm_vcpu_cache, svm);
6aa8b732
AK
1659}
1660
15ad7146 1661static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 1662{
a2fa3e9f 1663 struct vcpu_svm *svm = to_svm(vcpu);
15ad7146 1664 int i;
0cc5064d 1665
0cc5064d 1666 if (unlikely(cpu != vcpu->cpu)) {
4b656b12 1667 svm->asid_generation = 0;
8d28fec4 1668 mark_all_dirty(svm->vmcb);
0cc5064d 1669 }
94dfbdb3 1670
82ca2d10
AK
1671#ifdef CONFIG_X86_64
1672 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1673#endif
dacccfdd
AK
1674 savesegment(fs, svm->host.fs);
1675 savesegment(gs, svm->host.gs);
1676 svm->host.ldt = kvm_read_ldt();
1677
94dfbdb3 1678 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1679 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
fbc0db76 1680
ad721883
HZ
1681 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1682 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1683 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1684 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1685 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1686 }
fbc0db76 1687 }
46896c73
PB
1688 /* This assumes that the kernel never uses MSR_TSC_AUX */
1689 if (static_cpu_has(X86_FEATURE_RDTSCP))
1690 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
8221c137
SS
1691
1692 avic_vcpu_load(vcpu, cpu);
6aa8b732
AK
1693}
1694
1695static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1696{
a2fa3e9f 1697 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
1698 int i;
1699
8221c137
SS
1700 avic_vcpu_put(vcpu);
1701
e1beb1d3 1702 ++vcpu->stat.host_state_reload;
dacccfdd
AK
1703 kvm_load_ldt(svm->host.ldt);
1704#ifdef CONFIG_X86_64
1705 loadsegment(fs, svm->host.fs);
296f781a 1706 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
893a5ab6 1707 load_gs_index(svm->host.gs);
dacccfdd 1708#else
831ca609 1709#ifdef CONFIG_X86_32_LAZY_GS
dacccfdd 1710 loadsegment(gs, svm->host.gs);
831ca609 1711#endif
dacccfdd 1712#endif
94dfbdb3 1713 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 1714 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
1715}
1716
8221c137
SS
1717static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
1718{
1719 avic_set_running(vcpu, false);
1720}
1721
1722static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
1723{
1724 avic_set_running(vcpu, true);
1725}
1726
6aa8b732
AK
1727static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1728{
9b611747
LP
1729 struct vcpu_svm *svm = to_svm(vcpu);
1730 unsigned long rflags = svm->vmcb->save.rflags;
1731
1732 if (svm->nmi_singlestep) {
1733 /* Hide our flags if they were not set by the guest */
1734 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1735 rflags &= ~X86_EFLAGS_TF;
1736 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1737 rflags &= ~X86_EFLAGS_RF;
1738 }
1739 return rflags;
6aa8b732
AK
1740}
1741
1742static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1743{
9b611747
LP
1744 if (to_svm(vcpu)->nmi_singlestep)
1745 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1746
ae9fedc7 1747 /*
bb3541f1 1748 * Any change of EFLAGS.VM is accompanied by a reload of SS
ae9fedc7
PB
1749 * (caused by either a task switch or an inter-privilege IRET),
1750 * so we do not need to update the CPL here.
1751 */
a2fa3e9f 1752 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
1753}
1754
be94f6b7
HH
1755static u32 svm_get_pkru(struct kvm_vcpu *vcpu)
1756{
1757 return 0;
1758}
1759
6de4f3ad
AK
1760static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1761{
1762 switch (reg) {
1763 case VCPU_EXREG_PDPTR:
1764 BUG_ON(!npt_enabled);
9f8fe504 1765 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
6de4f3ad
AK
1766 break;
1767 default:
1768 BUG();
1769 }
1770}
1771
f0b85051
AG
1772static void svm_set_vintr(struct vcpu_svm *svm)
1773{
8a05a1b8 1774 set_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1775}
1776
1777static void svm_clear_vintr(struct vcpu_svm *svm)
1778{
8a05a1b8 1779 clr_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
1780}
1781
6aa8b732
AK
1782static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1783{
a2fa3e9f 1784 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
1785
1786 switch (seg) {
1787 case VCPU_SREG_CS: return &save->cs;
1788 case VCPU_SREG_DS: return &save->ds;
1789 case VCPU_SREG_ES: return &save->es;
1790 case VCPU_SREG_FS: return &save->fs;
1791 case VCPU_SREG_GS: return &save->gs;
1792 case VCPU_SREG_SS: return &save->ss;
1793 case VCPU_SREG_TR: return &save->tr;
1794 case VCPU_SREG_LDTR: return &save->ldtr;
1795 }
1796 BUG();
8b6d44c7 1797 return NULL;
6aa8b732
AK
1798}
1799
1800static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1801{
1802 struct vmcb_seg *s = svm_seg(vcpu, seg);
1803
1804 return s->base;
1805}
1806
1807static void svm_get_segment(struct kvm_vcpu *vcpu,
1808 struct kvm_segment *var, int seg)
1809{
1810 struct vmcb_seg *s = svm_seg(vcpu, seg);
1811
1812 var->base = s->base;
1813 var->limit = s->limit;
1814 var->selector = s->selector;
1815 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1816 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1817 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1818 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1819 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1820 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1821 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
80112c89
JM
1822
1823 /*
1824 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1825 * However, the SVM spec states that the G bit is not observed by the
1826 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1827 * So let's synthesize a legal G bit for all segments, this helps
1828 * running KVM nested. It also helps cross-vendor migration, because
1829 * Intel's vmentry has a check on the 'G' bit.
1830 */
1831 var->g = s->limit > 0xfffff;
25022acc 1832
e0231715
JR
1833 /*
1834 * AMD's VMCB does not have an explicit unusable field, so emulate it
19bca6ab
AP
1835 * for cross vendor migration purposes by "not present"
1836 */
8eae9570 1837 var->unusable = !var->present;
19bca6ab 1838
1fbdc7a5 1839 switch (seg) {
1fbdc7a5
AP
1840 case VCPU_SREG_TR:
1841 /*
1842 * Work around a bug where the busy flag in the tr selector
1843 * isn't exposed
1844 */
c0d09828 1845 var->type |= 0x2;
1fbdc7a5
AP
1846 break;
1847 case VCPU_SREG_DS:
1848 case VCPU_SREG_ES:
1849 case VCPU_SREG_FS:
1850 case VCPU_SREG_GS:
1851 /*
1852 * The accessed bit must always be set in the segment
1853 * descriptor cache, although it can be cleared in the
1854 * descriptor, the cached bit always remains at 1. Since
1855 * Intel has a check on this, set it here to support
1856 * cross-vendor migration.
1857 */
1858 if (!var->unusable)
1859 var->type |= 0x1;
1860 break;
b586eb02 1861 case VCPU_SREG_SS:
e0231715
JR
1862 /*
1863 * On AMD CPUs sometimes the DB bit in the segment
b586eb02
AP
1864 * descriptor is left as 1, although the whole segment has
1865 * been made unusable. Clear it here to pass an Intel VMX
1866 * entry check when cross vendor migrating.
1867 */
1868 if (var->unusable)
1869 var->db = 0;
d9c1b543 1870 /* This is symmetric with svm_set_segment() */
33b458d2 1871 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
b586eb02 1872 break;
1fbdc7a5 1873 }
6aa8b732
AK
1874}
1875
2e4d2653
IE
1876static int svm_get_cpl(struct kvm_vcpu *vcpu)
1877{
1878 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1879
1880 return save->cpl;
1881}
1882
89a27f4d 1883static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1884{
a2fa3e9f
GH
1885 struct vcpu_svm *svm = to_svm(vcpu);
1886
89a27f4d
GN
1887 dt->size = svm->vmcb->save.idtr.limit;
1888 dt->address = svm->vmcb->save.idtr.base;
6aa8b732
AK
1889}
1890
89a27f4d 1891static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1892{
a2fa3e9f
GH
1893 struct vcpu_svm *svm = to_svm(vcpu);
1894
89a27f4d
GN
1895 svm->vmcb->save.idtr.limit = dt->size;
1896 svm->vmcb->save.idtr.base = dt->address ;
17a703cb 1897 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1898}
1899
89a27f4d 1900static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1901{
a2fa3e9f
GH
1902 struct vcpu_svm *svm = to_svm(vcpu);
1903
89a27f4d
GN
1904 dt->size = svm->vmcb->save.gdtr.limit;
1905 dt->address = svm->vmcb->save.gdtr.base;
6aa8b732
AK
1906}
1907
89a27f4d 1908static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 1909{
a2fa3e9f
GH
1910 struct vcpu_svm *svm = to_svm(vcpu);
1911
89a27f4d
GN
1912 svm->vmcb->save.gdtr.limit = dt->size;
1913 svm->vmcb->save.gdtr.base = dt->address ;
17a703cb 1914 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
1915}
1916
e8467fda
AK
1917static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1918{
1919}
1920
aff48baa
AK
1921static void svm_decache_cr3(struct kvm_vcpu *vcpu)
1922{
1923}
1924
25c4c276 1925static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
1926{
1927}
1928
d225157b
AK
1929static void update_cr0_intercept(struct vcpu_svm *svm)
1930{
1931 ulong gcr0 = svm->vcpu.arch.cr0;
1932 u64 *hcr0 = &svm->vmcb->save.cr0;
1933
bd7e5b08
PB
1934 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1935 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
d225157b 1936
dcca1a65 1937 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 1938
bd7e5b08 1939 if (gcr0 == *hcr0) {
4ee546b4
RJ
1940 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
1941 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b 1942 } else {
4ee546b4
RJ
1943 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1944 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b
AK
1945 }
1946}
1947
6aa8b732
AK
1948static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1949{
a2fa3e9f
GH
1950 struct vcpu_svm *svm = to_svm(vcpu);
1951
05b3e0c2 1952#ifdef CONFIG_X86_64
f6801dff 1953 if (vcpu->arch.efer & EFER_LME) {
707d92fa 1954 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
f6801dff 1955 vcpu->arch.efer |= EFER_LMA;
2b5203ee 1956 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
1957 }
1958
d77c26fc 1959 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
f6801dff 1960 vcpu->arch.efer &= ~EFER_LMA;
2b5203ee 1961 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
1962 }
1963 }
1964#endif
ad312c7c 1965 vcpu->arch.cr0 = cr0;
888f9f3e
AK
1966
1967 if (!npt_enabled)
1968 cr0 |= X86_CR0_PG | X86_CR0_WP;
02daab21 1969
bcf166a9
PB
1970 /*
1971 * re-enable caching here because the QEMU bios
1972 * does not do it - this results in some delay at
1973 * reboot
1974 */
1975 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
1976 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 1977 svm->vmcb->save.cr0 = cr0;
dcca1a65 1978 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 1979 update_cr0_intercept(svm);
6aa8b732
AK
1980}
1981
5e1746d6 1982static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
6aa8b732 1983{
1e02ce4c 1984 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
e5eab0ce
JR
1985 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
1986
5e1746d6
NHE
1987 if (cr4 & X86_CR4_VMXE)
1988 return 1;
1989
e5eab0ce 1990 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
f40f6a45 1991 svm_flush_tlb(vcpu);
6394b649 1992
ec077263
JR
1993 vcpu->arch.cr4 = cr4;
1994 if (!npt_enabled)
1995 cr4 |= X86_CR4_PAE;
6394b649 1996 cr4 |= host_cr4_mce;
ec077263 1997 to_svm(vcpu)->vmcb->save.cr4 = cr4;
dcca1a65 1998 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
5e1746d6 1999 return 0;
6aa8b732
AK
2000}
2001
2002static void svm_set_segment(struct kvm_vcpu *vcpu,
2003 struct kvm_segment *var, int seg)
2004{
a2fa3e9f 2005 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
2006 struct vmcb_seg *s = svm_seg(vcpu, seg);
2007
2008 s->base = var->base;
2009 s->limit = var->limit;
2010 s->selector = var->selector;
d9c1b543
RP
2011 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2012 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2013 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2014 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2015 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2016 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2017 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2018 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
ae9fedc7
PB
2019
2020 /*
2021 * This is always accurate, except if SYSRET returned to a segment
2022 * with SS.DPL != 3. Intel does not have this quirk, and always
2023 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2024 * would entail passing the CPL to userspace and back.
2025 */
2026 if (seg == VCPU_SREG_SS)
d9c1b543
RP
2027 /* This is symmetric with svm_get_segment() */
2028 svm->vmcb->save.cpl = (var->dpl & 3);
6aa8b732 2029
060d0c9a 2030 mark_dirty(svm->vmcb, VMCB_SEG);
6aa8b732
AK
2031}
2032
cbdb967a 2033static void update_bp_intercept(struct kvm_vcpu *vcpu)
6aa8b732 2034{
d0bfb940
JK
2035 struct vcpu_svm *svm = to_svm(vcpu);
2036
18c918c5 2037 clr_exception_intercept(svm, BP_VECTOR);
44c11430 2038
d0bfb940 2039 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
d0bfb940 2040 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
18c918c5 2041 set_exception_intercept(svm, BP_VECTOR);
d0bfb940
JK
2042 } else
2043 vcpu->guest_debug = 0;
44c11430
GN
2044}
2045
0fe1e009 2046static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
6aa8b732 2047{
0fe1e009
TH
2048 if (sd->next_asid > sd->max_asid) {
2049 ++sd->asid_generation;
2050 sd->next_asid = 1;
a2fa3e9f 2051 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
2052 }
2053
0fe1e009
TH
2054 svm->asid_generation = sd->asid_generation;
2055 svm->vmcb->control.asid = sd->next_asid++;
d48086d1
JR
2056
2057 mark_dirty(svm->vmcb, VMCB_ASID);
6aa8b732
AK
2058}
2059
73aaf249
JK
2060static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2061{
2062 return to_svm(vcpu)->vmcb->save.dr6;
2063}
2064
2065static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2066{
2067 struct vcpu_svm *svm = to_svm(vcpu);
2068
2069 svm->vmcb->save.dr6 = value;
2070 mark_dirty(svm->vmcb, VMCB_DR);
2071}
2072
facb0139
PB
2073static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2074{
2075 struct vcpu_svm *svm = to_svm(vcpu);
2076
2077 get_debugreg(vcpu->arch.db[0], 0);
2078 get_debugreg(vcpu->arch.db[1], 1);
2079 get_debugreg(vcpu->arch.db[2], 2);
2080 get_debugreg(vcpu->arch.db[3], 3);
2081 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2082 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2083
2084 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2085 set_dr_intercepts(svm);
2086}
2087
020df079 2088static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
6aa8b732 2089{
42dbaa5a 2090 struct vcpu_svm *svm = to_svm(vcpu);
42dbaa5a 2091
020df079 2092 svm->vmcb->save.dr7 = value;
72214b96 2093 mark_dirty(svm->vmcb, VMCB_DR);
6aa8b732
AK
2094}
2095
851ba692 2096static int pf_interception(struct vcpu_svm *svm)
6aa8b732 2097{
631bc487 2098 u64 fault_address = svm->vmcb->control.exit_info_2;
14727754 2099 u64 error_code;
631bc487 2100 int r = 1;
6aa8b732 2101
631bc487
GN
2102 switch (svm->apf_reason) {
2103 default:
2104 error_code = svm->vmcb->control.exit_info_1;
af9ca2d7 2105
631bc487
GN
2106 trace_kvm_page_fault(fault_address, error_code);
2107 if (!npt_enabled && kvm_event_needs_reinjection(&svm->vcpu))
2108 kvm_mmu_unprotect_page_virt(&svm->vcpu, fault_address);
dc25e89e
AP
2109 r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
2110 svm->vmcb->control.insn_bytes,
2111 svm->vmcb->control.insn_len);
631bc487
GN
2112 break;
2113 case KVM_PV_REASON_PAGE_NOT_PRESENT:
2114 svm->apf_reason = 0;
2115 local_irq_disable();
2116 kvm_async_pf_task_wait(fault_address);
2117 local_irq_enable();
2118 break;
2119 case KVM_PV_REASON_PAGE_READY:
2120 svm->apf_reason = 0;
2121 local_irq_disable();
2122 kvm_async_pf_task_wake(fault_address);
2123 local_irq_enable();
2124 break;
2125 }
2126 return r;
6aa8b732
AK
2127}
2128
851ba692 2129static int db_interception(struct vcpu_svm *svm)
d0bfb940 2130{
851ba692
AK
2131 struct kvm_run *kvm_run = svm->vcpu.run;
2132
d0bfb940 2133 if (!(svm->vcpu.guest_debug &
44c11430 2134 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
6be7d306 2135 !svm->nmi_singlestep) {
d0bfb940
JK
2136 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2137 return 1;
2138 }
44c11430 2139
6be7d306 2140 if (svm->nmi_singlestep) {
4aebd0e9 2141 disable_nmi_singlestep(svm);
44c11430
GN
2142 }
2143
2144 if (svm->vcpu.guest_debug &
e0231715 2145 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
44c11430
GN
2146 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2147 kvm_run->debug.arch.pc =
2148 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2149 kvm_run->debug.arch.exception = DB_VECTOR;
2150 return 0;
2151 }
2152
2153 return 1;
d0bfb940
JK
2154}
2155
851ba692 2156static int bp_interception(struct vcpu_svm *svm)
d0bfb940 2157{
851ba692
AK
2158 struct kvm_run *kvm_run = svm->vcpu.run;
2159
d0bfb940
JK
2160 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2161 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2162 kvm_run->debug.arch.exception = BP_VECTOR;
2163 return 0;
2164}
2165
851ba692 2166static int ud_interception(struct vcpu_svm *svm)
7aa81cc0
AL
2167{
2168 int er;
2169
51d8b661 2170 er = emulate_instruction(&svm->vcpu, EMULTYPE_TRAP_UD);
7aa81cc0 2171 if (er != EMULATE_DONE)
7ee5d940 2172 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
7aa81cc0
AL
2173 return 1;
2174}
2175
54a20552
EN
2176static int ac_interception(struct vcpu_svm *svm)
2177{
2178 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2179 return 1;
2180}
2181
67ec6607
JR
2182static bool is_erratum_383(void)
2183{
2184 int err, i;
2185 u64 value;
2186
2187 if (!erratum_383_found)
2188 return false;
2189
2190 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2191 if (err)
2192 return false;
2193
2194 /* Bit 62 may or may not be set for this mce */
2195 value &= ~(1ULL << 62);
2196
2197 if (value != 0xb600000000010015ULL)
2198 return false;
2199
2200 /* Clear MCi_STATUS registers */
2201 for (i = 0; i < 6; ++i)
2202 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2203
2204 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2205 if (!err) {
2206 u32 low, high;
2207
2208 value &= ~(1ULL << 2);
2209 low = lower_32_bits(value);
2210 high = upper_32_bits(value);
2211
2212 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2213 }
2214
2215 /* Flush tlb to evict multi-match entries */
2216 __flush_tlb_all();
2217
2218 return true;
2219}
2220
fe5913e4 2221static void svm_handle_mce(struct vcpu_svm *svm)
53371b50 2222{
67ec6607
JR
2223 if (is_erratum_383()) {
2224 /*
2225 * Erratum 383 triggered. Guest state is corrupt so kill the
2226 * guest.
2227 */
2228 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2229
a8eeb04a 2230 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
67ec6607
JR
2231
2232 return;
2233 }
2234
53371b50
JR
2235 /*
2236 * On an #MC intercept the MCE handler is not called automatically in
2237 * the host. So do it by hand here.
2238 */
2239 asm volatile (
2240 "int $0x12\n");
2241 /* not sure if we ever come back to this point */
2242
fe5913e4
JR
2243 return;
2244}
2245
2246static int mc_interception(struct vcpu_svm *svm)
2247{
53371b50
JR
2248 return 1;
2249}
2250
851ba692 2251static int shutdown_interception(struct vcpu_svm *svm)
46fe4ddd 2252{
851ba692
AK
2253 struct kvm_run *kvm_run = svm->vcpu.run;
2254
46fe4ddd
JR
2255 /*
2256 * VMCB is undefined after a SHUTDOWN intercept
2257 * so reinitialize it.
2258 */
a2fa3e9f 2259 clear_page(svm->vmcb);
5690891b 2260 init_vmcb(svm);
46fe4ddd
JR
2261
2262 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2263 return 0;
2264}
2265
851ba692 2266static int io_interception(struct vcpu_svm *svm)
6aa8b732 2267{
cf8f70bf 2268 struct kvm_vcpu *vcpu = &svm->vcpu;
d77c26fc 2269 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
b742c1e6 2270 int size, in, string, ret;
039576c0 2271 unsigned port;
6aa8b732 2272
e756fc62 2273 ++svm->vcpu.stat.io_exits;
e70669ab 2274 string = (io_info & SVM_IOIO_STR_MASK) != 0;
039576c0 2275 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
8370c3d0 2276 if (string)
51d8b661 2277 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
cf8f70bf 2278
039576c0
AK
2279 port = io_info >> 16;
2280 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
cf8f70bf 2281 svm->next_rip = svm->vmcb->control.exit_info_2;
b742c1e6 2282 ret = kvm_skip_emulated_instruction(&svm->vcpu);
cf8f70bf 2283
b742c1e6
LP
2284 /*
2285 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
2286 * KVM_EXIT_DEBUG here.
2287 */
2288 if (in)
2289 return kvm_fast_pio_in(vcpu, size, port) && ret;
2290 else
2291 return kvm_fast_pio_out(vcpu, size, port) && ret;
6aa8b732
AK
2292}
2293
851ba692 2294static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
2295{
2296 return 1;
2297}
2298
851ba692 2299static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
2300{
2301 ++svm->vcpu.stat.irq_exits;
2302 return 1;
2303}
2304
851ba692 2305static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
2306{
2307 return 1;
2308}
2309
851ba692 2310static int halt_interception(struct vcpu_svm *svm)
6aa8b732 2311{
5fdbf976 2312 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62 2313 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
2314}
2315
851ba692 2316static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 2317{
5fdbf976 2318 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
0d9c055e 2319 return kvm_emulate_hypercall(&svm->vcpu);
02e235bc
AK
2320}
2321
5bd2edc3
JR
2322static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2323{
2324 struct vcpu_svm *svm = to_svm(vcpu);
2325
2326 return svm->nested.nested_cr3;
2327}
2328
e4e517b4
AK
2329static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2330{
2331 struct vcpu_svm *svm = to_svm(vcpu);
2332 u64 cr3 = svm->nested.nested_cr3;
2333 u64 pdpte;
2334 int ret;
2335
54bf36aa
PB
2336 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(cr3), &pdpte,
2337 offset_in_page(cr3) + index * 8, 8);
e4e517b4
AK
2338 if (ret)
2339 return 0;
2340 return pdpte;
2341}
2342
5bd2edc3
JR
2343static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2344 unsigned long root)
2345{
2346 struct vcpu_svm *svm = to_svm(vcpu);
2347
2348 svm->vmcb->control.nested_cr3 = root;
b2747166 2349 mark_dirty(svm->vmcb, VMCB_NPT);
f40f6a45 2350 svm_flush_tlb(vcpu);
5bd2edc3
JR
2351}
2352
6389ee94
AK
2353static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2354 struct x86_exception *fault)
5bd2edc3
JR
2355{
2356 struct vcpu_svm *svm = to_svm(vcpu);
2357
5e352519
PB
2358 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2359 /*
2360 * TODO: track the cause of the nested page fault, and
2361 * correctly fill in the high bits of exit_info_1.
2362 */
2363 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2364 svm->vmcb->control.exit_code_hi = 0;
2365 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2366 svm->vmcb->control.exit_info_2 = fault->address;
2367 }
2368
2369 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2370 svm->vmcb->control.exit_info_1 |= fault->error_code;
2371
2372 /*
2373 * The present bit is always zero for page structure faults on real
2374 * hardware.
2375 */
2376 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2377 svm->vmcb->control.exit_info_1 &= ~1;
5bd2edc3
JR
2378
2379 nested_svm_vmexit(svm);
2380}
2381
8a3c1a33 2382static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
4b16184c 2383{
ad896af0
PB
2384 WARN_ON(mmu_is_nested(vcpu));
2385 kvm_init_shadow_mmu(vcpu);
4b16184c
JR
2386 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2387 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
e4e517b4 2388 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
4b16184c
JR
2389 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
2390 vcpu->arch.mmu.shadow_root_level = get_npt_level();
c258b62b 2391 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
4b16184c 2392 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
4b16184c
JR
2393}
2394
2395static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2396{
2397 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2398}
2399
c0725420
AG
2400static int nested_svm_check_permissions(struct vcpu_svm *svm)
2401{
e9196ceb
DC
2402 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2403 !is_paging(&svm->vcpu)) {
c0725420
AG
2404 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2405 return 1;
2406 }
2407
2408 if (svm->vmcb->save.cpl) {
2409 kvm_inject_gp(&svm->vcpu, 0);
2410 return 1;
2411 }
2412
e9196ceb 2413 return 0;
c0725420
AG
2414}
2415
cf74a78b
AG
2416static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2417 bool has_error_code, u32 error_code)
2418{
b8e88bc8
JR
2419 int vmexit;
2420
2030753d 2421 if (!is_guest_mode(&svm->vcpu))
0295ad7d 2422 return 0;
cf74a78b 2423
0295ad7d
JR
2424 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2425 svm->vmcb->control.exit_code_hi = 0;
2426 svm->vmcb->control.exit_info_1 = error_code;
2427 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
2428
b8e88bc8
JR
2429 vmexit = nested_svm_intercept(svm);
2430 if (vmexit == NESTED_EXIT_DONE)
2431 svm->nested.exit_required = true;
2432
2433 return vmexit;
cf74a78b
AG
2434}
2435
8fe54654
JR
2436/* This function returns true if it is save to enable the irq window */
2437static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 2438{
2030753d 2439 if (!is_guest_mode(&svm->vcpu))
8fe54654 2440 return true;
cf74a78b 2441
26666957 2442 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 2443 return true;
cf74a78b 2444
26666957 2445 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 2446 return false;
cf74a78b 2447
a0a07cd2
GN
2448 /*
2449 * if vmexit was already requested (by intercepted exception
2450 * for instance) do not overwrite it with "external interrupt"
2451 * vmexit.
2452 */
2453 if (svm->nested.exit_required)
2454 return false;
2455
197717d5
JR
2456 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2457 svm->vmcb->control.exit_info_1 = 0;
2458 svm->vmcb->control.exit_info_2 = 0;
26666957 2459
cd3ff653
JR
2460 if (svm->nested.intercept & 1ULL) {
2461 /*
2462 * The #vmexit can't be emulated here directly because this
c5ec2e56 2463 * code path runs with irqs and preemption disabled. A
cd3ff653
JR
2464 * #vmexit emulation might sleep. Only signal request for
2465 * the #vmexit here.
2466 */
2467 svm->nested.exit_required = true;
236649de 2468 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 2469 return false;
cf74a78b
AG
2470 }
2471
8fe54654 2472 return true;
cf74a78b
AG
2473}
2474
887f500c
JR
2475/* This function returns true if it is save to enable the nmi window */
2476static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2477{
2030753d 2478 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
2479 return true;
2480
2481 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2482 return true;
2483
2484 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2485 svm->nested.exit_required = true;
2486
2487 return false;
cf74a78b
AG
2488}
2489
7597f129 2490static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
34f80cfa
JR
2491{
2492 struct page *page;
2493
6c3bd3d7
JR
2494 might_sleep();
2495
54bf36aa 2496 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
34f80cfa
JR
2497 if (is_error_page(page))
2498 goto error;
2499
7597f129
JR
2500 *_page = page;
2501
2502 return kmap(page);
34f80cfa
JR
2503
2504error:
34f80cfa
JR
2505 kvm_inject_gp(&svm->vcpu, 0);
2506
2507 return NULL;
2508}
2509
7597f129 2510static void nested_svm_unmap(struct page *page)
34f80cfa 2511{
7597f129 2512 kunmap(page);
34f80cfa
JR
2513 kvm_release_page_dirty(page);
2514}
34f80cfa 2515
ce2ac085
JR
2516static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
2517{
9bf41833
JK
2518 unsigned port, size, iopm_len;
2519 u16 val, mask;
2520 u8 start_bit;
ce2ac085 2521 u64 gpa;
34f80cfa 2522
ce2ac085
JR
2523 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2524 return NESTED_EXIT_HOST;
34f80cfa 2525
ce2ac085 2526 port = svm->vmcb->control.exit_info_1 >> 16;
9bf41833
JK
2527 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2528 SVM_IOIO_SIZE_SHIFT;
ce2ac085 2529 gpa = svm->nested.vmcb_iopm + (port / 8);
9bf41833
JK
2530 start_bit = port % 8;
2531 iopm_len = (start_bit + size > 8) ? 2 : 1;
2532 mask = (0xf >> (4 - size)) << start_bit;
2533 val = 0;
ce2ac085 2534
54bf36aa 2535 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
9bf41833 2536 return NESTED_EXIT_DONE;
ce2ac085 2537
9bf41833 2538 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
2539}
2540
d2477826 2541static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 2542{
0d6b3537
JR
2543 u32 offset, msr, value;
2544 int write, mask;
4c2161ae 2545
3d62d9aa 2546 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 2547 return NESTED_EXIT_HOST;
3d62d9aa 2548
0d6b3537
JR
2549 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2550 offset = svm_msrpm_offset(msr);
2551 write = svm->vmcb->control.exit_info_1 & 1;
2552 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 2553
0d6b3537
JR
2554 if (offset == MSR_INVALID)
2555 return NESTED_EXIT_DONE;
4c2161ae 2556
0d6b3537
JR
2557 /* Offset is in 32 bit units but need in 8 bit units */
2558 offset *= 4;
4c2161ae 2559
54bf36aa 2560 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
0d6b3537 2561 return NESTED_EXIT_DONE;
3d62d9aa 2562
0d6b3537 2563 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
2564}
2565
ab2f4d73
LP
2566/* DB exceptions for our internal use must not cause vmexit */
2567static int nested_svm_intercept_db(struct vcpu_svm *svm)
2568{
2569 unsigned long dr6;
2570
2571 /* if we're not singlestepping, it's not ours */
2572 if (!svm->nmi_singlestep)
2573 return NESTED_EXIT_DONE;
2574
2575 /* if it's not a singlestep exception, it's not ours */
2576 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
2577 return NESTED_EXIT_DONE;
2578 if (!(dr6 & DR6_BS))
2579 return NESTED_EXIT_DONE;
2580
2581 /* if the guest is singlestepping, it should get the vmexit */
2582 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
2583 disable_nmi_singlestep(svm);
2584 return NESTED_EXIT_DONE;
2585 }
2586
2587 /* it's ours, the nested hypervisor must not see this one */
2588 return NESTED_EXIT_HOST;
2589}
2590
410e4d57 2591static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 2592{
cf74a78b 2593 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 2594
410e4d57
JR
2595 switch (exit_code) {
2596 case SVM_EXIT_INTR:
2597 case SVM_EXIT_NMI:
ff47a49b 2598 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 2599 return NESTED_EXIT_HOST;
410e4d57 2600 case SVM_EXIT_NPF:
e0231715 2601 /* For now we are always handling NPFs when using them */
410e4d57
JR
2602 if (npt_enabled)
2603 return NESTED_EXIT_HOST;
2604 break;
410e4d57 2605 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487
GN
2606 /* When we're shadowing, trap PFs, but not async PF */
2607 if (!npt_enabled && svm->apf_reason == 0)
410e4d57
JR
2608 return NESTED_EXIT_HOST;
2609 break;
2610 default:
2611 break;
cf74a78b
AG
2612 }
2613
410e4d57
JR
2614 return NESTED_EXIT_CONTINUE;
2615}
2616
2617/*
2618 * If this function returns true, this #vmexit was already handled
2619 */
b8e88bc8 2620static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
2621{
2622 u32 exit_code = svm->vmcb->control.exit_code;
2623 int vmexit = NESTED_EXIT_HOST;
2624
cf74a78b 2625 switch (exit_code) {
9c4e40b9 2626 case SVM_EXIT_MSR:
3d62d9aa 2627 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 2628 break;
ce2ac085
JR
2629 case SVM_EXIT_IOIO:
2630 vmexit = nested_svm_intercept_ioio(svm);
2631 break;
4ee546b4
RJ
2632 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2633 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2634 if (svm->nested.intercept_cr & bit)
410e4d57 2635 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2636 break;
2637 }
3aed041a
JR
2638 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2639 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2640 if (svm->nested.intercept_dr & bit)
410e4d57 2641 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2642 break;
2643 }
2644 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2645 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
ab2f4d73
LP
2646 if (svm->nested.intercept_exceptions & excp_bits) {
2647 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
2648 vmexit = nested_svm_intercept_db(svm);
2649 else
2650 vmexit = NESTED_EXIT_DONE;
2651 }
631bc487
GN
2652 /* async page fault always cause vmexit */
2653 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
2654 svm->apf_reason != 0)
2655 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2656 break;
2657 }
228070b1
JR
2658 case SVM_EXIT_ERR: {
2659 vmexit = NESTED_EXIT_DONE;
2660 break;
2661 }
cf74a78b
AG
2662 default: {
2663 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 2664 if (svm->nested.intercept & exit_bits)
410e4d57 2665 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2666 }
2667 }
2668
b8e88bc8
JR
2669 return vmexit;
2670}
2671
2672static int nested_svm_exit_handled(struct vcpu_svm *svm)
2673{
2674 int vmexit;
2675
2676 vmexit = nested_svm_intercept(svm);
2677
2678 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 2679 nested_svm_vmexit(svm);
9c4e40b9
JR
2680
2681 return vmexit;
cf74a78b
AG
2682}
2683
0460a979
JR
2684static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2685{
2686 struct vmcb_control_area *dst = &dst_vmcb->control;
2687 struct vmcb_control_area *from = &from_vmcb->control;
2688
4ee546b4 2689 dst->intercept_cr = from->intercept_cr;
3aed041a 2690 dst->intercept_dr = from->intercept_dr;
0460a979
JR
2691 dst->intercept_exceptions = from->intercept_exceptions;
2692 dst->intercept = from->intercept;
2693 dst->iopm_base_pa = from->iopm_base_pa;
2694 dst->msrpm_base_pa = from->msrpm_base_pa;
2695 dst->tsc_offset = from->tsc_offset;
2696 dst->asid = from->asid;
2697 dst->tlb_ctl = from->tlb_ctl;
2698 dst->int_ctl = from->int_ctl;
2699 dst->int_vector = from->int_vector;
2700 dst->int_state = from->int_state;
2701 dst->exit_code = from->exit_code;
2702 dst->exit_code_hi = from->exit_code_hi;
2703 dst->exit_info_1 = from->exit_info_1;
2704 dst->exit_info_2 = from->exit_info_2;
2705 dst->exit_int_info = from->exit_int_info;
2706 dst->exit_int_info_err = from->exit_int_info_err;
2707 dst->nested_ctl = from->nested_ctl;
2708 dst->event_inj = from->event_inj;
2709 dst->event_inj_err = from->event_inj_err;
2710 dst->nested_cr3 = from->nested_cr3;
2711 dst->lbr_ctl = from->lbr_ctl;
2712}
2713
34f80cfa 2714static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 2715{
34f80cfa 2716 struct vmcb *nested_vmcb;
e6aa9abd 2717 struct vmcb *hsave = svm->nested.hsave;
33740e40 2718 struct vmcb *vmcb = svm->vmcb;
7597f129 2719 struct page *page;
cf74a78b 2720
17897f36
JR
2721 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2722 vmcb->control.exit_info_1,
2723 vmcb->control.exit_info_2,
2724 vmcb->control.exit_int_info,
e097e5ff
SH
2725 vmcb->control.exit_int_info_err,
2726 KVM_ISA_SVM);
17897f36 2727
7597f129 2728 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
34f80cfa
JR
2729 if (!nested_vmcb)
2730 return 1;
2731
2030753d
JR
2732 /* Exit Guest-Mode */
2733 leave_guest_mode(&svm->vcpu);
06fc7772
JR
2734 svm->nested.vmcb = 0;
2735
cf74a78b 2736 /* Give the current vmcb to the guest */
33740e40
JR
2737 disable_gif(svm);
2738
2739 nested_vmcb->save.es = vmcb->save.es;
2740 nested_vmcb->save.cs = vmcb->save.cs;
2741 nested_vmcb->save.ss = vmcb->save.ss;
2742 nested_vmcb->save.ds = vmcb->save.ds;
2743 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2744 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 2745 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 2746 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 2747 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 2748 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 2749 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2750 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
2751 nested_vmcb->save.rip = vmcb->save.rip;
2752 nested_vmcb->save.rsp = vmcb->save.rsp;
2753 nested_vmcb->save.rax = vmcb->save.rax;
2754 nested_vmcb->save.dr7 = vmcb->save.dr7;
2755 nested_vmcb->save.dr6 = vmcb->save.dr6;
2756 nested_vmcb->save.cpl = vmcb->save.cpl;
2757
2758 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2759 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2760 nested_vmcb->control.int_state = vmcb->control.int_state;
2761 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2762 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2763 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2764 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2765 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2766 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
6092d3d3
JR
2767
2768 if (svm->nrips_enabled)
2769 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
2770
2771 /*
2772 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2773 * to make sure that we do not lose injected events. So check event_inj
2774 * here and copy it to exit_int_info if it is valid.
2775 * Exit_int_info and event_inj can't be both valid because the case
2776 * below only happens on a VMRUN instruction intercept which has
2777 * no valid exit_int_info set.
2778 */
2779 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2780 struct vmcb_control_area *nc = &nested_vmcb->control;
2781
2782 nc->exit_int_info = vmcb->control.event_inj;
2783 nc->exit_int_info_err = vmcb->control.event_inj_err;
2784 }
2785
33740e40
JR
2786 nested_vmcb->control.tlb_ctl = 0;
2787 nested_vmcb->control.event_inj = 0;
2788 nested_vmcb->control.event_inj_err = 0;
cf74a78b
AG
2789
2790 /* We always set V_INTR_MASKING and remember the old value in hflags */
2791 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2792 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2793
cf74a78b 2794 /* Restore the original control entries */
0460a979 2795 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 2796
219b65dc
AG
2797 kvm_clear_exception_queue(&svm->vcpu);
2798 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 2799
4b16184c
JR
2800 svm->nested.nested_cr3 = 0;
2801
cf74a78b
AG
2802 /* Restore selected save entries */
2803 svm->vmcb->save.es = hsave->save.es;
2804 svm->vmcb->save.cs = hsave->save.cs;
2805 svm->vmcb->save.ss = hsave->save.ss;
2806 svm->vmcb->save.ds = hsave->save.ds;
2807 svm->vmcb->save.gdtr = hsave->save.gdtr;
2808 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 2809 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
2810 svm_set_efer(&svm->vcpu, hsave->save.efer);
2811 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2812 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2813 if (npt_enabled) {
2814 svm->vmcb->save.cr3 = hsave->save.cr3;
2815 svm->vcpu.arch.cr3 = hsave->save.cr3;
2816 } else {
2390218b 2817 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b
AG
2818 }
2819 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2820 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2821 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2822 svm->vmcb->save.dr7 = 0;
2823 svm->vmcb->save.cpl = 0;
2824 svm->vmcb->control.exit_int_info = 0;
2825
8d28fec4
RJ
2826 mark_all_dirty(svm->vmcb);
2827
7597f129 2828 nested_svm_unmap(page);
cf74a78b 2829
4b16184c 2830 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
2831 kvm_mmu_reset_context(&svm->vcpu);
2832 kvm_mmu_load(&svm->vcpu);
2833
2834 return 0;
2835}
3d6368ef 2836
9738b2c9 2837static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 2838{
323c3d80
JR
2839 /*
2840 * This function merges the msr permission bitmaps of kvm and the
c5ec2e56 2841 * nested vmcb. It is optimized in that it only merges the parts where
323c3d80
JR
2842 * the kvm msr permission bitmap may contain zero bits
2843 */
3d6368ef 2844 int i;
9738b2c9 2845
323c3d80
JR
2846 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2847 return true;
9738b2c9 2848
323c3d80
JR
2849 for (i = 0; i < MSRPM_OFFSETS; i++) {
2850 u32 value, p;
2851 u64 offset;
9738b2c9 2852
323c3d80
JR
2853 if (msrpm_offsets[i] == 0xffffffff)
2854 break;
3d6368ef 2855
0d6b3537
JR
2856 p = msrpm_offsets[i];
2857 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80 2858
54bf36aa 2859 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
323c3d80
JR
2860 return false;
2861
2862 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2863 }
3d6368ef 2864
323c3d80 2865 svm->vmcb->control.msrpm_base_pa = __pa(svm->nested.msrpm);
9738b2c9
JR
2866
2867 return true;
3d6368ef
AG
2868}
2869
52c65a30
JR
2870static bool nested_vmcb_checks(struct vmcb *vmcb)
2871{
2872 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2873 return false;
2874
dbe77584
JR
2875 if (vmcb->control.asid == 0)
2876 return false;
2877
4b16184c
JR
2878 if (vmcb->control.nested_ctl && !npt_enabled)
2879 return false;
2880
52c65a30
JR
2881 return true;
2882}
2883
9738b2c9 2884static bool nested_svm_vmrun(struct vcpu_svm *svm)
3d6368ef 2885{
9738b2c9 2886 struct vmcb *nested_vmcb;
e6aa9abd 2887 struct vmcb *hsave = svm->nested.hsave;
defbba56 2888 struct vmcb *vmcb = svm->vmcb;
7597f129 2889 struct page *page;
06fc7772 2890 u64 vmcb_gpa;
3d6368ef 2891
06fc7772 2892 vmcb_gpa = svm->vmcb->save.rax;
3d6368ef 2893
7597f129 2894 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9738b2c9
JR
2895 if (!nested_vmcb)
2896 return false;
2897
52c65a30
JR
2898 if (!nested_vmcb_checks(nested_vmcb)) {
2899 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2900 nested_vmcb->control.exit_code_hi = 0;
2901 nested_vmcb->control.exit_info_1 = 0;
2902 nested_vmcb->control.exit_info_2 = 0;
2903
2904 nested_svm_unmap(page);
2905
2906 return false;
2907 }
2908
b75f4eb3 2909 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
0ac406de
JR
2910 nested_vmcb->save.rip,
2911 nested_vmcb->control.int_ctl,
2912 nested_vmcb->control.event_inj,
2913 nested_vmcb->control.nested_ctl);
2914
4ee546b4
RJ
2915 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2916 nested_vmcb->control.intercept_cr >> 16,
2e554e8d
JR
2917 nested_vmcb->control.intercept_exceptions,
2918 nested_vmcb->control.intercept);
2919
3d6368ef 2920 /* Clear internal status */
219b65dc
AG
2921 kvm_clear_exception_queue(&svm->vcpu);
2922 kvm_clear_interrupt_queue(&svm->vcpu);
3d6368ef 2923
e0231715
JR
2924 /*
2925 * Save the old vmcb, so we don't need to pick what we save, but can
2926 * restore everything when a VMEXIT occurs
2927 */
defbba56
JR
2928 hsave->save.es = vmcb->save.es;
2929 hsave->save.cs = vmcb->save.cs;
2930 hsave->save.ss = vmcb->save.ss;
2931 hsave->save.ds = vmcb->save.ds;
2932 hsave->save.gdtr = vmcb->save.gdtr;
2933 hsave->save.idtr = vmcb->save.idtr;
f6801dff 2934 hsave->save.efer = svm->vcpu.arch.efer;
4d4ec087 2935 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
defbba56 2936 hsave->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2937 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
b75f4eb3 2938 hsave->save.rip = kvm_rip_read(&svm->vcpu);
defbba56
JR
2939 hsave->save.rsp = vmcb->save.rsp;
2940 hsave->save.rax = vmcb->save.rax;
2941 if (npt_enabled)
2942 hsave->save.cr3 = vmcb->save.cr3;
2943 else
9f8fe504 2944 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
defbba56 2945
0460a979 2946 copy_vmcb_control_area(hsave, vmcb);
3d6368ef 2947
f6e78475 2948 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
2949 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2950 else
2951 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2952
4b16184c
JR
2953 if (nested_vmcb->control.nested_ctl) {
2954 kvm_mmu_unload(&svm->vcpu);
2955 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2956 nested_svm_init_mmu_context(&svm->vcpu);
2957 }
2958
3d6368ef
AG
2959 /* Load the nested guest state */
2960 svm->vmcb->save.es = nested_vmcb->save.es;
2961 svm->vmcb->save.cs = nested_vmcb->save.cs;
2962 svm->vmcb->save.ss = nested_vmcb->save.ss;
2963 svm->vmcb->save.ds = nested_vmcb->save.ds;
2964 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
2965 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 2966 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
2967 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
2968 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
2969 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
2970 if (npt_enabled) {
2971 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
2972 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 2973 } else
2390218b 2974 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
2975
2976 /* Guest paging mode is active - reset mmu */
2977 kvm_mmu_reset_context(&svm->vcpu);
2978
defbba56 2979 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
3d6368ef
AG
2980 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
2981 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
2982 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
e0231715 2983
3d6368ef
AG
2984 /* In case we don't even reach vcpu_run, the fields are not updated */
2985 svm->vmcb->save.rax = nested_vmcb->save.rax;
2986 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
2987 svm->vmcb->save.rip = nested_vmcb->save.rip;
2988 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
2989 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
2990 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
2991
f7138538 2992 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 2993 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 2994
aad42c64 2995 /* cache intercepts */
4ee546b4 2996 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 2997 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
2998 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
2999 svm->nested.intercept = nested_vmcb->control.intercept;
3000
f40f6a45 3001 svm_flush_tlb(&svm->vcpu);
3d6368ef 3002 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
3003 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3004 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3005 else
3006 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3007
88ab24ad
JR
3008 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3009 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
3010 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3011 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
3012 }
3013
0d945bd9 3014 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 3015 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 3016
88ab24ad 3017 svm->vmcb->control.lbr_ctl = nested_vmcb->control.lbr_ctl;
3d6368ef
AG
3018 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3019 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3020 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
3d6368ef
AG
3021 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3022 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3023
7597f129 3024 nested_svm_unmap(page);
9738b2c9 3025
2030753d
JR
3026 /* Enter Guest-Mode */
3027 enter_guest_mode(&svm->vcpu);
3028
384c6368
JR
3029 /*
3030 * Merge guest and host intercepts - must be called with vcpu in
3031 * guest-mode to take affect here
3032 */
3033 recalc_intercepts(svm);
3034
06fc7772 3035 svm->nested.vmcb = vmcb_gpa;
9738b2c9 3036
2af9194d 3037 enable_gif(svm);
3d6368ef 3038
8d28fec4
RJ
3039 mark_all_dirty(svm->vmcb);
3040
9738b2c9 3041 return true;
3d6368ef
AG
3042}
3043
9966bf68 3044static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
3045{
3046 to_vmcb->save.fs = from_vmcb->save.fs;
3047 to_vmcb->save.gs = from_vmcb->save.gs;
3048 to_vmcb->save.tr = from_vmcb->save.tr;
3049 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3050 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3051 to_vmcb->save.star = from_vmcb->save.star;
3052 to_vmcb->save.lstar = from_vmcb->save.lstar;
3053 to_vmcb->save.cstar = from_vmcb->save.cstar;
3054 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3055 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3056 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3057 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
3058}
3059
851ba692 3060static int vmload_interception(struct vcpu_svm *svm)
5542675b 3061{
9966bf68 3062 struct vmcb *nested_vmcb;
7597f129 3063 struct page *page;
b742c1e6 3064 int ret;
9966bf68 3065
5542675b
AG
3066 if (nested_svm_check_permissions(svm))
3067 return 1;
3068
7597f129 3069 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3070 if (!nested_vmcb)
3071 return 1;
3072
e3e9ed3d 3073 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3074 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3075
9966bf68 3076 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
7597f129 3077 nested_svm_unmap(page);
5542675b 3078
b742c1e6 3079 return ret;
5542675b
AG
3080}
3081
851ba692 3082static int vmsave_interception(struct vcpu_svm *svm)
5542675b 3083{
9966bf68 3084 struct vmcb *nested_vmcb;
7597f129 3085 struct page *page;
b742c1e6 3086 int ret;
9966bf68 3087
5542675b
AG
3088 if (nested_svm_check_permissions(svm))
3089 return 1;
3090
7597f129 3091 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3092 if (!nested_vmcb)
3093 return 1;
3094
e3e9ed3d 3095 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3096 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3097
9966bf68 3098 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
7597f129 3099 nested_svm_unmap(page);
5542675b 3100
b742c1e6 3101 return ret;
5542675b
AG
3102}
3103
851ba692 3104static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 3105{
3d6368ef
AG
3106 if (nested_svm_check_permissions(svm))
3107 return 1;
3108
b75f4eb3
RJ
3109 /* Save rip after vmrun instruction */
3110 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
3d6368ef 3111
9738b2c9 3112 if (!nested_svm_vmrun(svm))
3d6368ef
AG
3113 return 1;
3114
9738b2c9 3115 if (!nested_svm_vmrun_msrpm(svm))
1f8da478
JR
3116 goto failed;
3117
3118 return 1;
3119
3120failed:
3121
3122 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3123 svm->vmcb->control.exit_code_hi = 0;
3124 svm->vmcb->control.exit_info_1 = 0;
3125 svm->vmcb->control.exit_info_2 = 0;
3126
3127 nested_svm_vmexit(svm);
3d6368ef
AG
3128
3129 return 1;
3130}
3131
851ba692 3132static int stgi_interception(struct vcpu_svm *svm)
1371d904 3133{
b742c1e6
LP
3134 int ret;
3135
1371d904
AG
3136 if (nested_svm_check_permissions(svm))
3137 return 1;
3138
3139 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3140 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3842d135 3141 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 3142
2af9194d 3143 enable_gif(svm);
1371d904 3144
b742c1e6 3145 return ret;
1371d904
AG
3146}
3147
851ba692 3148static int clgi_interception(struct vcpu_svm *svm)
1371d904 3149{
b742c1e6
LP
3150 int ret;
3151
1371d904
AG
3152 if (nested_svm_check_permissions(svm))
3153 return 1;
3154
3155 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3156 ret = kvm_skip_emulated_instruction(&svm->vcpu);
1371d904 3157
2af9194d 3158 disable_gif(svm);
1371d904
AG
3159
3160 /* After a CLGI no interrupts should come */
340d3bc3
SS
3161 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3162 svm_clear_vintr(svm);
3163 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3164 mark_dirty(svm->vmcb, VMCB_INTR);
3165 }
decdbf6a 3166
b742c1e6 3167 return ret;
1371d904
AG
3168}
3169
851ba692 3170static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
3171{
3172 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 3173
668f198f
DK
3174 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3175 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ec1ff790 3176
ff092385 3177 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
668f198f 3178 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ff092385
AG
3179
3180 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3181 return kvm_skip_emulated_instruction(&svm->vcpu);
ff092385
AG
3182}
3183
532a46b9
JR
3184static int skinit_interception(struct vcpu_svm *svm)
3185{
668f198f 3186 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
532a46b9
JR
3187
3188 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3189 return 1;
3190}
3191
dab429a7
DK
3192static int wbinvd_interception(struct vcpu_svm *svm)
3193{
6affcbed 3194 return kvm_emulate_wbinvd(&svm->vcpu);
dab429a7
DK
3195}
3196
81dd35d4
JR
3197static int xsetbv_interception(struct vcpu_svm *svm)
3198{
3199 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3200 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3201
3202 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3203 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
b742c1e6 3204 return kvm_skip_emulated_instruction(&svm->vcpu);
81dd35d4
JR
3205 }
3206
3207 return 1;
3208}
3209
851ba692 3210static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 3211{
37817f29 3212 u16 tss_selector;
64a7ec06
GN
3213 int reason;
3214 int int_type = svm->vmcb->control.exit_int_info &
3215 SVM_EXITINTINFO_TYPE_MASK;
8317c298 3216 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
3217 uint32_t type =
3218 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3219 uint32_t idt_v =
3220 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
3221 bool has_error_code = false;
3222 u32 error_code = 0;
37817f29
IE
3223
3224 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 3225
37817f29
IE
3226 if (svm->vmcb->control.exit_info_2 &
3227 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
3228 reason = TASK_SWITCH_IRET;
3229 else if (svm->vmcb->control.exit_info_2 &
3230 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3231 reason = TASK_SWITCH_JMP;
fe8e7f83 3232 else if (idt_v)
64a7ec06
GN
3233 reason = TASK_SWITCH_GATE;
3234 else
3235 reason = TASK_SWITCH_CALL;
3236
fe8e7f83
GN
3237 if (reason == TASK_SWITCH_GATE) {
3238 switch (type) {
3239 case SVM_EXITINTINFO_TYPE_NMI:
3240 svm->vcpu.arch.nmi_injected = false;
3241 break;
3242 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
3243 if (svm->vmcb->control.exit_info_2 &
3244 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3245 has_error_code = true;
3246 error_code =
3247 (u32)svm->vmcb->control.exit_info_2;
3248 }
fe8e7f83
GN
3249 kvm_clear_exception_queue(&svm->vcpu);
3250 break;
3251 case SVM_EXITINTINFO_TYPE_INTR:
3252 kvm_clear_interrupt_queue(&svm->vcpu);
3253 break;
3254 default:
3255 break;
3256 }
3257 }
64a7ec06 3258
8317c298
GN
3259 if (reason != TASK_SWITCH_GATE ||
3260 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3261 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f629cf84
GN
3262 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3263 skip_emulated_instruction(&svm->vcpu);
64a7ec06 3264
7f3d35fd
KW
3265 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3266 int_vec = -1;
3267
3268 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
acb54517
GN
3269 has_error_code, error_code) == EMULATE_FAIL) {
3270 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3271 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3272 svm->vcpu.run->internal.ndata = 0;
3273 return 0;
3274 }
3275 return 1;
6aa8b732
AK
3276}
3277
851ba692 3278static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 3279{
5fdbf976 3280 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
6a908b62 3281 return kvm_emulate_cpuid(&svm->vcpu);
6aa8b732
AK
3282}
3283
851ba692 3284static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
3285{
3286 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 3287 clr_intercept(svm, INTERCEPT_IRET);
44c11430 3288 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 3289 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
f303b4ce 3290 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
95ba8273
GN
3291 return 1;
3292}
3293
851ba692 3294static int invlpg_interception(struct vcpu_svm *svm)
a7052897 3295{
df4f3108
AP
3296 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3297 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3298
3299 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
b742c1e6 3300 return kvm_skip_emulated_instruction(&svm->vcpu);
a7052897
MT
3301}
3302
851ba692 3303static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 3304{
51d8b661 3305 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
6aa8b732
AK
3306}
3307
332b56e4
AK
3308static int rdpmc_interception(struct vcpu_svm *svm)
3309{
3310 int err;
3311
3312 if (!static_cpu_has(X86_FEATURE_NRIPS))
3313 return emulate_on_interception(svm);
3314
3315 err = kvm_rdpmc(&svm->vcpu);
6affcbed 3316 return kvm_complete_insn_gp(&svm->vcpu, err);
332b56e4
AK
3317}
3318
52eb5a6d
XL
3319static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3320 unsigned long val)
628afd2a
JR
3321{
3322 unsigned long cr0 = svm->vcpu.arch.cr0;
3323 bool ret = false;
3324 u64 intercept;
3325
3326 intercept = svm->nested.intercept;
3327
3328 if (!is_guest_mode(&svm->vcpu) ||
3329 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3330 return false;
3331
3332 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3333 val &= ~SVM_CR0_SELECTIVE_MASK;
3334
3335 if (cr0 ^ val) {
3336 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3337 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3338 }
3339
3340 return ret;
3341}
3342
7ff76d58
AP
3343#define CR_VALID (1ULL << 63)
3344
3345static int cr_interception(struct vcpu_svm *svm)
3346{
3347 int reg, cr;
3348 unsigned long val;
3349 int err;
3350
3351 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3352 return emulate_on_interception(svm);
3353
3354 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3355 return emulate_on_interception(svm);
3356
3357 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
5e57518d
DK
3358 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3359 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3360 else
3361 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
7ff76d58
AP
3362
3363 err = 0;
3364 if (cr >= 16) { /* mov to cr */
3365 cr -= 16;
3366 val = kvm_register_read(&svm->vcpu, reg);
3367 switch (cr) {
3368 case 0:
628afd2a
JR
3369 if (!check_selective_cr0_intercepted(svm, val))
3370 err = kvm_set_cr0(&svm->vcpu, val);
977b2d03
JR
3371 else
3372 return 1;
3373
7ff76d58
AP
3374 break;
3375 case 3:
3376 err = kvm_set_cr3(&svm->vcpu, val);
3377 break;
3378 case 4:
3379 err = kvm_set_cr4(&svm->vcpu, val);
3380 break;
3381 case 8:
3382 err = kvm_set_cr8(&svm->vcpu, val);
3383 break;
3384 default:
3385 WARN(1, "unhandled write to CR%d", cr);
3386 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3387 return 1;
3388 }
3389 } else { /* mov from cr */
3390 switch (cr) {
3391 case 0:
3392 val = kvm_read_cr0(&svm->vcpu);
3393 break;
3394 case 2:
3395 val = svm->vcpu.arch.cr2;
3396 break;
3397 case 3:
9f8fe504 3398 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
3399 break;
3400 case 4:
3401 val = kvm_read_cr4(&svm->vcpu);
3402 break;
3403 case 8:
3404 val = kvm_get_cr8(&svm->vcpu);
3405 break;
3406 default:
3407 WARN(1, "unhandled read from CR%d", cr);
3408 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3409 return 1;
3410 }
3411 kvm_register_write(&svm->vcpu, reg, val);
3412 }
6affcbed 3413 return kvm_complete_insn_gp(&svm->vcpu, err);
7ff76d58
AP
3414}
3415
cae3797a
AP
3416static int dr_interception(struct vcpu_svm *svm)
3417{
3418 int reg, dr;
3419 unsigned long val;
cae3797a 3420
facb0139
PB
3421 if (svm->vcpu.guest_debug == 0) {
3422 /*
3423 * No more DR vmexits; force a reload of the debug registers
3424 * and reenter on this instruction. The next vmexit will
3425 * retrieve the full state of the debug registers.
3426 */
3427 clr_dr_intercepts(svm);
3428 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3429 return 1;
3430 }
3431
cae3797a
AP
3432 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3433 return emulate_on_interception(svm);
3434
3435 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3436 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3437
3438 if (dr >= 16) { /* mov to DRn */
16f8a6f9
NA
3439 if (!kvm_require_dr(&svm->vcpu, dr - 16))
3440 return 1;
cae3797a
AP
3441 val = kvm_register_read(&svm->vcpu, reg);
3442 kvm_set_dr(&svm->vcpu, dr - 16, val);
3443 } else {
16f8a6f9
NA
3444 if (!kvm_require_dr(&svm->vcpu, dr))
3445 return 1;
3446 kvm_get_dr(&svm->vcpu, dr, &val);
3447 kvm_register_write(&svm->vcpu, reg, val);
cae3797a
AP
3448 }
3449
b742c1e6 3450 return kvm_skip_emulated_instruction(&svm->vcpu);
cae3797a
AP
3451}
3452
851ba692 3453static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 3454{
851ba692 3455 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 3456 int r;
851ba692 3457
0a5fff19
GN
3458 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3459 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 3460 r = cr_interception(svm);
35754c98 3461 if (lapic_in_kernel(&svm->vcpu))
7ff76d58 3462 return r;
0a5fff19 3463 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 3464 return r;
1d075434
JR
3465 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3466 return 0;
3467}
3468
609e36d3 3469static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
6aa8b732 3470{
a2fa3e9f
GH
3471 struct vcpu_svm *svm = to_svm(vcpu);
3472
609e36d3 3473 switch (msr_info->index) {
af24a4e4 3474 case MSR_IA32_TSC: {
609e36d3 3475 msr_info->data = svm->vmcb->control.tsc_offset +
35181e86 3476 kvm_scale_tsc(vcpu, rdtsc());
fbc0db76 3477
6aa8b732
AK
3478 break;
3479 }
8c06585d 3480 case MSR_STAR:
609e36d3 3481 msr_info->data = svm->vmcb->save.star;
6aa8b732 3482 break;
0e859cac 3483#ifdef CONFIG_X86_64
6aa8b732 3484 case MSR_LSTAR:
609e36d3 3485 msr_info->data = svm->vmcb->save.lstar;
6aa8b732
AK
3486 break;
3487 case MSR_CSTAR:
609e36d3 3488 msr_info->data = svm->vmcb->save.cstar;
6aa8b732
AK
3489 break;
3490 case MSR_KERNEL_GS_BASE:
609e36d3 3491 msr_info->data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
3492 break;
3493 case MSR_SYSCALL_MASK:
609e36d3 3494 msr_info->data = svm->vmcb->save.sfmask;
6aa8b732
AK
3495 break;
3496#endif
3497 case MSR_IA32_SYSENTER_CS:
609e36d3 3498 msr_info->data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
3499 break;
3500 case MSR_IA32_SYSENTER_EIP:
609e36d3 3501 msr_info->data = svm->sysenter_eip;
6aa8b732
AK
3502 break;
3503 case MSR_IA32_SYSENTER_ESP:
609e36d3 3504 msr_info->data = svm->sysenter_esp;
6aa8b732 3505 break;
46896c73
PB
3506 case MSR_TSC_AUX:
3507 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3508 return 1;
3509 msr_info->data = svm->tsc_aux;
3510 break;
e0231715
JR
3511 /*
3512 * Nobody will change the following 5 values in the VMCB so we can
3513 * safely return them on rdmsr. They will always be 0 until LBRV is
3514 * implemented.
3515 */
a2938c80 3516 case MSR_IA32_DEBUGCTLMSR:
609e36d3 3517 msr_info->data = svm->vmcb->save.dbgctl;
a2938c80
JR
3518 break;
3519 case MSR_IA32_LASTBRANCHFROMIP:
609e36d3 3520 msr_info->data = svm->vmcb->save.br_from;
a2938c80
JR
3521 break;
3522 case MSR_IA32_LASTBRANCHTOIP:
609e36d3 3523 msr_info->data = svm->vmcb->save.br_to;
a2938c80
JR
3524 break;
3525 case MSR_IA32_LASTINTFROMIP:
609e36d3 3526 msr_info->data = svm->vmcb->save.last_excp_from;
a2938c80
JR
3527 break;
3528 case MSR_IA32_LASTINTTOIP:
609e36d3 3529 msr_info->data = svm->vmcb->save.last_excp_to;
a2938c80 3530 break;
b286d5d8 3531 case MSR_VM_HSAVE_PA:
609e36d3 3532 msr_info->data = svm->nested.hsave_msr;
b286d5d8 3533 break;
eb6f302e 3534 case MSR_VM_CR:
609e36d3 3535 msr_info->data = svm->nested.vm_cr_msr;
eb6f302e 3536 break;
c8a73f18 3537 case MSR_IA32_UCODE_REV:
609e36d3 3538 msr_info->data = 0x01000065;
c8a73f18 3539 break;
ae8b7875
BP
3540 case MSR_F15H_IC_CFG: {
3541
3542 int family, model;
3543
3544 family = guest_cpuid_family(vcpu);
3545 model = guest_cpuid_model(vcpu);
3546
3547 if (family < 0 || model < 0)
3548 return kvm_get_msr_common(vcpu, msr_info);
3549
3550 msr_info->data = 0;
3551
3552 if (family == 0x15 &&
3553 (model >= 0x2 && model < 0x20))
3554 msr_info->data = 0x1E;
3555 }
3556 break;
6aa8b732 3557 default:
609e36d3 3558 return kvm_get_msr_common(vcpu, msr_info);
6aa8b732
AK
3559 }
3560 return 0;
3561}
3562
851ba692 3563static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 3564{
668f198f 3565 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
609e36d3 3566 struct msr_data msr_info;
6aa8b732 3567
609e36d3
PB
3568 msr_info.index = ecx;
3569 msr_info.host_initiated = false;
3570 if (svm_get_msr(&svm->vcpu, &msr_info)) {
59200273 3571 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 3572 kvm_inject_gp(&svm->vcpu, 0);
b742c1e6 3573 return 1;
59200273 3574 } else {
609e36d3 3575 trace_kvm_msr_read(ecx, msr_info.data);
af9ca2d7 3576
609e36d3
PB
3577 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
3578 msr_info.data & 0xffffffff);
3579 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
3580 msr_info.data >> 32);
5fdbf976 3581 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
b742c1e6 3582 return kvm_skip_emulated_instruction(&svm->vcpu);
6aa8b732 3583 }
6aa8b732
AK
3584}
3585
4a810181
JR
3586static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3587{
3588 struct vcpu_svm *svm = to_svm(vcpu);
3589 int svm_dis, chg_mask;
3590
3591 if (data & ~SVM_VM_CR_VALID_MASK)
3592 return 1;
3593
3594 chg_mask = SVM_VM_CR_VALID_MASK;
3595
3596 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3597 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3598
3599 svm->nested.vm_cr_msr &= ~chg_mask;
3600 svm->nested.vm_cr_msr |= (data & chg_mask);
3601
3602 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3603
3604 /* check for svm_disable while efer.svme is set */
3605 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3606 return 1;
3607
3608 return 0;
3609}
3610
8fe8ab46 3611static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
6aa8b732 3612{
a2fa3e9f
GH
3613 struct vcpu_svm *svm = to_svm(vcpu);
3614
8fe8ab46
WA
3615 u32 ecx = msr->index;
3616 u64 data = msr->data;
6aa8b732 3617 switch (ecx) {
f4e1b3c8 3618 case MSR_IA32_TSC:
8fe8ab46 3619 kvm_write_tsc(vcpu, msr);
6aa8b732 3620 break;
8c06585d 3621 case MSR_STAR:
a2fa3e9f 3622 svm->vmcb->save.star = data;
6aa8b732 3623 break;
49b14f24 3624#ifdef CONFIG_X86_64
6aa8b732 3625 case MSR_LSTAR:
a2fa3e9f 3626 svm->vmcb->save.lstar = data;
6aa8b732
AK
3627 break;
3628 case MSR_CSTAR:
a2fa3e9f 3629 svm->vmcb->save.cstar = data;
6aa8b732
AK
3630 break;
3631 case MSR_KERNEL_GS_BASE:
a2fa3e9f 3632 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
3633 break;
3634 case MSR_SYSCALL_MASK:
a2fa3e9f 3635 svm->vmcb->save.sfmask = data;
6aa8b732
AK
3636 break;
3637#endif
3638 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 3639 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
3640 break;
3641 case MSR_IA32_SYSENTER_EIP:
017cb99e 3642 svm->sysenter_eip = data;
a2fa3e9f 3643 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
3644 break;
3645 case MSR_IA32_SYSENTER_ESP:
017cb99e 3646 svm->sysenter_esp = data;
a2fa3e9f 3647 svm->vmcb->save.sysenter_esp = data;
6aa8b732 3648 break;
46896c73
PB
3649 case MSR_TSC_AUX:
3650 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3651 return 1;
3652
3653 /*
3654 * This is rare, so we update the MSR here instead of using
3655 * direct_access_msrs. Doing that would require a rdmsr in
3656 * svm_vcpu_put.
3657 */
3658 svm->tsc_aux = data;
3659 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
3660 break;
a2938c80 3661 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 3662 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
a737f256
CD
3663 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3664 __func__, data);
24e09cbf
JR
3665 break;
3666 }
3667 if (data & DEBUGCTL_RESERVED_BITS)
3668 return 1;
3669
3670 svm->vmcb->save.dbgctl = data;
b53ba3f9 3671 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
3672 if (data & (1ULL<<0))
3673 svm_enable_lbrv(svm);
3674 else
3675 svm_disable_lbrv(svm);
a2938c80 3676 break;
b286d5d8 3677 case MSR_VM_HSAVE_PA:
e6aa9abd 3678 svm->nested.hsave_msr = data;
62b9abaa 3679 break;
3c5d0a44 3680 case MSR_VM_CR:
4a810181 3681 return svm_set_vm_cr(vcpu, data);
3c5d0a44 3682 case MSR_VM_IGNNE:
a737f256 3683 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
3c5d0a44 3684 break;
44a95dae
SS
3685 case MSR_IA32_APICBASE:
3686 if (kvm_vcpu_apicv_active(vcpu))
3687 avic_update_vapic_bar(to_svm(vcpu), data);
3688 /* Follow through */
6aa8b732 3689 default:
8fe8ab46 3690 return kvm_set_msr_common(vcpu, msr);
6aa8b732
AK
3691 }
3692 return 0;
3693}
3694
851ba692 3695static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 3696{
8fe8ab46 3697 struct msr_data msr;
668f198f
DK
3698 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3699 u64 data = kvm_read_edx_eax(&svm->vcpu);
af9ca2d7 3700
8fe8ab46
WA
3701 msr.data = data;
3702 msr.index = ecx;
3703 msr.host_initiated = false;
af9ca2d7 3704
5fdbf976 3705 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
854e8bb1 3706 if (kvm_set_msr(&svm->vcpu, &msr)) {
59200273 3707 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 3708 kvm_inject_gp(&svm->vcpu, 0);
b742c1e6 3709 return 1;
59200273
AK
3710 } else {
3711 trace_kvm_msr_write(ecx, data);
b742c1e6 3712 return kvm_skip_emulated_instruction(&svm->vcpu);
59200273 3713 }
6aa8b732
AK
3714}
3715
851ba692 3716static int msr_interception(struct vcpu_svm *svm)
6aa8b732 3717{
e756fc62 3718 if (svm->vmcb->control.exit_info_1)
851ba692 3719 return wrmsr_interception(svm);
6aa8b732 3720 else
851ba692 3721 return rdmsr_interception(svm);
6aa8b732
AK
3722}
3723
851ba692 3724static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 3725{
3842d135 3726 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 3727 svm_clear_vintr(svm);
85f455f7 3728 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 3729 mark_dirty(svm->vmcb, VMCB_INTR);
675acb75 3730 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
3731 return 1;
3732}
3733
565d0998
ML
3734static int pause_interception(struct vcpu_svm *svm)
3735{
3736 kvm_vcpu_on_spin(&(svm->vcpu));
3737 return 1;
3738}
3739
87c00572
GS
3740static int nop_interception(struct vcpu_svm *svm)
3741{
b742c1e6 3742 return kvm_skip_emulated_instruction(&(svm->vcpu));
87c00572
GS
3743}
3744
3745static int monitor_interception(struct vcpu_svm *svm)
3746{
3747 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3748 return nop_interception(svm);
3749}
3750
3751static int mwait_interception(struct vcpu_svm *svm)
3752{
3753 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3754 return nop_interception(svm);
3755}
3756
18f40c53
SS
3757enum avic_ipi_failure_cause {
3758 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
3759 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
3760 AVIC_IPI_FAILURE_INVALID_TARGET,
3761 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
3762};
3763
3764static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
3765{
3766 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
3767 u32 icrl = svm->vmcb->control.exit_info_1;
3768 u32 id = svm->vmcb->control.exit_info_2 >> 32;
5446a979 3769 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
18f40c53
SS
3770 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3771
3772 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
3773
3774 switch (id) {
3775 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
3776 /*
3777 * AVIC hardware handles the generation of
3778 * IPIs when the specified Message Type is Fixed
3779 * (also known as fixed delivery mode) and
3780 * the Trigger Mode is edge-triggered. The hardware
3781 * also supports self and broadcast delivery modes
3782 * specified via the Destination Shorthand(DSH)
3783 * field of the ICRL. Logical and physical APIC ID
3784 * formats are supported. All other IPI types cause
3785 * a #VMEXIT, which needs to emulated.
3786 */
3787 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
3788 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
3789 break;
3790 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
3791 int i;
3792 struct kvm_vcpu *vcpu;
3793 struct kvm *kvm = svm->vcpu.kvm;
3794 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3795
3796 /*
3797 * At this point, we expect that the AVIC HW has already
3798 * set the appropriate IRR bits on the valid target
3799 * vcpus. So, we just need to kick the appropriate vcpu.
3800 */
3801 kvm_for_each_vcpu(i, vcpu, kvm) {
3802 bool m = kvm_apic_match_dest(vcpu, apic,
3803 icrl & KVM_APIC_SHORT_MASK,
3804 GET_APIC_DEST_FIELD(icrh),
3805 icrl & KVM_APIC_DEST_MASK);
3806
3807 if (m && !avic_vcpu_is_running(vcpu))
3808 kvm_vcpu_wake_up(vcpu);
3809 }
3810 break;
3811 }
3812 case AVIC_IPI_FAILURE_INVALID_TARGET:
3813 break;
3814 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
3815 WARN_ONCE(1, "Invalid backing page\n");
3816 break;
3817 default:
3818 pr_err("Unknown IPI interception\n");
3819 }
3820
3821 return 1;
3822}
3823
3824static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
3825{
3826 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3827 int index;
3828 u32 *logical_apic_id_table;
3829 int dlid = GET_APIC_LOGICAL_ID(ldr);
3830
3831 if (!dlid)
3832 return NULL;
3833
3834 if (flat) { /* flat */
3835 index = ffs(dlid) - 1;
3836 if (index > 7)
3837 return NULL;
3838 } else { /* cluster */
3839 int cluster = (dlid & 0xf0) >> 4;
3840 int apic = ffs(dlid & 0x0f) - 1;
3841
3842 if ((apic < 0) || (apic > 7) ||
3843 (cluster >= 0xf))
3844 return NULL;
3845 index = (cluster << 2) + apic;
3846 }
3847
3848 logical_apic_id_table = (u32 *) page_address(vm_data->avic_logical_id_table_page);
3849
3850 return &logical_apic_id_table[index];
3851}
3852
3853static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
3854 bool valid)
3855{
3856 bool flat;
3857 u32 *entry, new_entry;
3858
3859 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
3860 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
3861 if (!entry)
3862 return -EINVAL;
3863
3864 new_entry = READ_ONCE(*entry);
3865 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
3866 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
3867 if (valid)
3868 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3869 else
3870 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3871 WRITE_ONCE(*entry, new_entry);
3872
3873 return 0;
3874}
3875
3876static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
3877{
3878 int ret;
3879 struct vcpu_svm *svm = to_svm(vcpu);
3880 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
3881
3882 if (!ldr)
3883 return 1;
3884
3885 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
3886 if (ret && svm->ldr_reg) {
3887 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
3888 svm->ldr_reg = 0;
3889 } else {
3890 svm->ldr_reg = ldr;
3891 }
3892 return ret;
3893}
3894
3895static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
3896{
3897 u64 *old, *new;
3898 struct vcpu_svm *svm = to_svm(vcpu);
3899 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
3900 u32 id = (apic_id_reg >> 24) & 0xff;
3901
3902 if (vcpu->vcpu_id == id)
3903 return 0;
3904
3905 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
3906 new = avic_get_physical_id_entry(vcpu, id);
3907 if (!new || !old)
3908 return 1;
3909
3910 /* We need to move physical_id_entry to new offset */
3911 *new = *old;
3912 *old = 0ULL;
3913 to_svm(vcpu)->avic_physical_id_cache = new;
3914
3915 /*
3916 * Also update the guest physical APIC ID in the logical
3917 * APIC ID table entry if already setup the LDR.
3918 */
3919 if (svm->ldr_reg)
3920 avic_handle_ldr_update(vcpu);
3921
3922 return 0;
3923}
3924
3925static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
3926{
3927 struct vcpu_svm *svm = to_svm(vcpu);
3928 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3929 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
3930 u32 mod = (dfr >> 28) & 0xf;
3931
3932 /*
3933 * We assume that all local APICs are using the same type.
3934 * If this changes, we need to flush the AVIC logical
3935 * APID id table.
3936 */
3937 if (vm_data->ldr_mode == mod)
3938 return 0;
3939
3940 clear_page(page_address(vm_data->avic_logical_id_table_page));
3941 vm_data->ldr_mode = mod;
3942
3943 if (svm->ldr_reg)
3944 avic_handle_ldr_update(vcpu);
3945 return 0;
3946}
3947
3948static int avic_unaccel_trap_write(struct vcpu_svm *svm)
3949{
3950 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3951 u32 offset = svm->vmcb->control.exit_info_1 &
3952 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
3953
3954 switch (offset) {
3955 case APIC_ID:
3956 if (avic_handle_apic_id_update(&svm->vcpu))
3957 return 0;
3958 break;
3959 case APIC_LDR:
3960 if (avic_handle_ldr_update(&svm->vcpu))
3961 return 0;
3962 break;
3963 case APIC_DFR:
3964 avic_handle_dfr_update(&svm->vcpu);
3965 break;
3966 default:
3967 break;
3968 }
3969
3970 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
3971
3972 return 1;
3973}
3974
3975static bool is_avic_unaccelerated_access_trap(u32 offset)
3976{
3977 bool ret = false;
3978
3979 switch (offset) {
3980 case APIC_ID:
3981 case APIC_EOI:
3982 case APIC_RRR:
3983 case APIC_LDR:
3984 case APIC_DFR:
3985 case APIC_SPIV:
3986 case APIC_ESR:
3987 case APIC_ICR:
3988 case APIC_LVTT:
3989 case APIC_LVTTHMR:
3990 case APIC_LVTPC:
3991 case APIC_LVT0:
3992 case APIC_LVT1:
3993 case APIC_LVTERR:
3994 case APIC_TMICT:
3995 case APIC_TDCR:
3996 ret = true;
3997 break;
3998 default:
3999 break;
4000 }
4001 return ret;
4002}
4003
4004static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4005{
4006 int ret = 0;
4007 u32 offset = svm->vmcb->control.exit_info_1 &
4008 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4009 u32 vector = svm->vmcb->control.exit_info_2 &
4010 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4011 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4012 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4013 bool trap = is_avic_unaccelerated_access_trap(offset);
4014
4015 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4016 trap, write, vector);
4017 if (trap) {
4018 /* Handling Trap */
4019 WARN_ONCE(!write, "svm: Handling trap read.\n");
4020 ret = avic_unaccel_trap_write(svm);
4021 } else {
4022 /* Handling Fault */
4023 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4024 }
4025
4026 return ret;
4027}
4028
09941fbb 4029static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
4030 [SVM_EXIT_READ_CR0] = cr_interception,
4031 [SVM_EXIT_READ_CR3] = cr_interception,
4032 [SVM_EXIT_READ_CR4] = cr_interception,
4033 [SVM_EXIT_READ_CR8] = cr_interception,
5e57518d 4034 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
628afd2a 4035 [SVM_EXIT_WRITE_CR0] = cr_interception,
7ff76d58
AP
4036 [SVM_EXIT_WRITE_CR3] = cr_interception,
4037 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 4038 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
4039 [SVM_EXIT_READ_DR0] = dr_interception,
4040 [SVM_EXIT_READ_DR1] = dr_interception,
4041 [SVM_EXIT_READ_DR2] = dr_interception,
4042 [SVM_EXIT_READ_DR3] = dr_interception,
4043 [SVM_EXIT_READ_DR4] = dr_interception,
4044 [SVM_EXIT_READ_DR5] = dr_interception,
4045 [SVM_EXIT_READ_DR6] = dr_interception,
4046 [SVM_EXIT_READ_DR7] = dr_interception,
4047 [SVM_EXIT_WRITE_DR0] = dr_interception,
4048 [SVM_EXIT_WRITE_DR1] = dr_interception,
4049 [SVM_EXIT_WRITE_DR2] = dr_interception,
4050 [SVM_EXIT_WRITE_DR3] = dr_interception,
4051 [SVM_EXIT_WRITE_DR4] = dr_interception,
4052 [SVM_EXIT_WRITE_DR5] = dr_interception,
4053 [SVM_EXIT_WRITE_DR6] = dr_interception,
4054 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
4055 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4056 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 4057 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715 4058 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
e0231715 4059 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
54a20552 4060 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
e0231715 4061 [SVM_EXIT_INTR] = intr_interception,
c47f098d 4062 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
4063 [SVM_EXIT_SMI] = nop_on_interception,
4064 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 4065 [SVM_EXIT_VINTR] = interrupt_window_interception,
332b56e4 4066 [SVM_EXIT_RDPMC] = rdpmc_interception,
6aa8b732 4067 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 4068 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 4069 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 4070 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 4071 [SVM_EXIT_HLT] = halt_interception,
a7052897 4072 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 4073 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 4074 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
4075 [SVM_EXIT_MSR] = msr_interception,
4076 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 4077 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 4078 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 4079 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
4080 [SVM_EXIT_VMLOAD] = vmload_interception,
4081 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
4082 [SVM_EXIT_STGI] = stgi_interception,
4083 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 4084 [SVM_EXIT_SKINIT] = skinit_interception,
dab429a7 4085 [SVM_EXIT_WBINVD] = wbinvd_interception,
87c00572
GS
4086 [SVM_EXIT_MONITOR] = monitor_interception,
4087 [SVM_EXIT_MWAIT] = mwait_interception,
81dd35d4 4088 [SVM_EXIT_XSETBV] = xsetbv_interception,
709ddebf 4089 [SVM_EXIT_NPF] = pf_interception,
64d60670 4090 [SVM_EXIT_RSM] = emulate_on_interception,
18f40c53
SS
4091 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4092 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
6aa8b732
AK
4093};
4094
ae8cc059 4095static void dump_vmcb(struct kvm_vcpu *vcpu)
3f10c846
JR
4096{
4097 struct vcpu_svm *svm = to_svm(vcpu);
4098 struct vmcb_control_area *control = &svm->vmcb->control;
4099 struct vmcb_save_area *save = &svm->vmcb->save;
4100
4101 pr_err("VMCB Control Area:\n");
ae8cc059
JP
4102 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4103 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4104 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4105 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4106 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4107 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4108 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
4109 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4110 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4111 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4112 pr_err("%-20s%d\n", "asid:", control->asid);
4113 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4114 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4115 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4116 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4117 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4118 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4119 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4120 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4121 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4122 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4123 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
44a95dae 4124 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
ae8cc059
JP
4125 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4126 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
4127 pr_err("%-20s%lld\n", "lbr_ctl:", control->lbr_ctl);
4128 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
44a95dae
SS
4129 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4130 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4131 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
3f10c846 4132 pr_err("VMCB State Save Area:\n");
ae8cc059
JP
4133 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4134 "es:",
4135 save->es.selector, save->es.attrib,
4136 save->es.limit, save->es.base);
4137 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4138 "cs:",
4139 save->cs.selector, save->cs.attrib,
4140 save->cs.limit, save->cs.base);
4141 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4142 "ss:",
4143 save->ss.selector, save->ss.attrib,
4144 save->ss.limit, save->ss.base);
4145 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4146 "ds:",
4147 save->ds.selector, save->ds.attrib,
4148 save->ds.limit, save->ds.base);
4149 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4150 "fs:",
4151 save->fs.selector, save->fs.attrib,
4152 save->fs.limit, save->fs.base);
4153 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4154 "gs:",
4155 save->gs.selector, save->gs.attrib,
4156 save->gs.limit, save->gs.base);
4157 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4158 "gdtr:",
4159 save->gdtr.selector, save->gdtr.attrib,
4160 save->gdtr.limit, save->gdtr.base);
4161 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4162 "ldtr:",
4163 save->ldtr.selector, save->ldtr.attrib,
4164 save->ldtr.limit, save->ldtr.base);
4165 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4166 "idtr:",
4167 save->idtr.selector, save->idtr.attrib,
4168 save->idtr.limit, save->idtr.base);
4169 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4170 "tr:",
4171 save->tr.selector, save->tr.attrib,
4172 save->tr.limit, save->tr.base);
3f10c846
JR
4173 pr_err("cpl: %d efer: %016llx\n",
4174 save->cpl, save->efer);
ae8cc059
JP
4175 pr_err("%-15s %016llx %-13s %016llx\n",
4176 "cr0:", save->cr0, "cr2:", save->cr2);
4177 pr_err("%-15s %016llx %-13s %016llx\n",
4178 "cr3:", save->cr3, "cr4:", save->cr4);
4179 pr_err("%-15s %016llx %-13s %016llx\n",
4180 "dr6:", save->dr6, "dr7:", save->dr7);
4181 pr_err("%-15s %016llx %-13s %016llx\n",
4182 "rip:", save->rip, "rflags:", save->rflags);
4183 pr_err("%-15s %016llx %-13s %016llx\n",
4184 "rsp:", save->rsp, "rax:", save->rax);
4185 pr_err("%-15s %016llx %-13s %016llx\n",
4186 "star:", save->star, "lstar:", save->lstar);
4187 pr_err("%-15s %016llx %-13s %016llx\n",
4188 "cstar:", save->cstar, "sfmask:", save->sfmask);
4189 pr_err("%-15s %016llx %-13s %016llx\n",
4190 "kernel_gs_base:", save->kernel_gs_base,
4191 "sysenter_cs:", save->sysenter_cs);
4192 pr_err("%-15s %016llx %-13s %016llx\n",
4193 "sysenter_esp:", save->sysenter_esp,
4194 "sysenter_eip:", save->sysenter_eip);
4195 pr_err("%-15s %016llx %-13s %016llx\n",
4196 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4197 pr_err("%-15s %016llx %-13s %016llx\n",
4198 "br_from:", save->br_from, "br_to:", save->br_to);
4199 pr_err("%-15s %016llx %-13s %016llx\n",
4200 "excp_from:", save->last_excp_from,
4201 "excp_to:", save->last_excp_to);
3f10c846
JR
4202}
4203
586f9607
AK
4204static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4205{
4206 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4207
4208 *info1 = control->exit_info_1;
4209 *info2 = control->exit_info_2;
4210}
4211
851ba692 4212static int handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 4213{
04d2cc77 4214 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 4215 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 4216 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 4217
8b89fe1f
PB
4218 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4219
0f89b207
TL
4220 vcpu->arch.gpa_available = (exit_code == SVM_EXIT_NPF);
4221
4ee546b4 4222 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
4223 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4224 if (npt_enabled)
4225 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 4226
cd3ff653
JR
4227 if (unlikely(svm->nested.exit_required)) {
4228 nested_svm_vmexit(svm);
4229 svm->nested.exit_required = false;
4230
4231 return 1;
4232 }
4233
2030753d 4234 if (is_guest_mode(vcpu)) {
410e4d57
JR
4235 int vmexit;
4236
d8cabddf
JR
4237 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4238 svm->vmcb->control.exit_info_1,
4239 svm->vmcb->control.exit_info_2,
4240 svm->vmcb->control.exit_int_info,
e097e5ff
SH
4241 svm->vmcb->control.exit_int_info_err,
4242 KVM_ISA_SVM);
d8cabddf 4243
410e4d57
JR
4244 vmexit = nested_svm_exit_special(svm);
4245
4246 if (vmexit == NESTED_EXIT_CONTINUE)
4247 vmexit = nested_svm_exit_handled(svm);
4248
4249 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 4250 return 1;
cf74a78b
AG
4251 }
4252
a5c3832d
JR
4253 svm_complete_interrupts(svm);
4254
04d2cc77
AK
4255 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4256 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4257 kvm_run->fail_entry.hardware_entry_failure_reason
4258 = svm->vmcb->control.exit_code;
3f10c846
JR
4259 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4260 dump_vmcb(vcpu);
04d2cc77
AK
4261 return 0;
4262 }
4263
a2fa3e9f 4264 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 4265 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
4266 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4267 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6614c7d0 4268 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
6aa8b732 4269 "exit_code 0x%x\n",
b8688d51 4270 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
4271 exit_code);
4272
9d8f549d 4273 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 4274 || !svm_exit_handlers[exit_code]) {
faac2458 4275 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
2bc19dc3
MT
4276 kvm_queue_exception(vcpu, UD_VECTOR);
4277 return 1;
6aa8b732
AK
4278 }
4279
851ba692 4280 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
4281}
4282
4283static void reload_tss(struct kvm_vcpu *vcpu)
4284{
4285 int cpu = raw_smp_processor_id();
4286
0fe1e009
TH
4287 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4288 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
4289 load_TR_desc();
4290}
4291
e756fc62 4292static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
4293{
4294 int cpu = raw_smp_processor_id();
4295
0fe1e009 4296 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 4297
4b656b12 4298 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
4299 if (svm->asid_generation != sd->asid_generation)
4300 new_asid(svm, sd);
6aa8b732
AK
4301}
4302
95ba8273
GN
4303static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4304{
4305 struct vcpu_svm *svm = to_svm(vcpu);
4306
4307 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4308 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 4309 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
4310 ++vcpu->stat.nmi_injections;
4311}
6aa8b732 4312
85f455f7 4313static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
4314{
4315 struct vmcb_control_area *control;
4316
340d3bc3 4317 /* The following fields are ignored when AVIC is enabled */
e756fc62 4318 control = &svm->vmcb->control;
85f455f7 4319 control->int_vector = irq;
6aa8b732
AK
4320 control->int_ctl &= ~V_INTR_PRIO_MASK;
4321 control->int_ctl |= V_IRQ_MASK |
4322 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 4323 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
4324}
4325
66fd3f7f 4326static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
4327{
4328 struct vcpu_svm *svm = to_svm(vcpu);
4329
2af9194d 4330 BUG_ON(!(gif_set(svm)));
cf74a78b 4331
9fb2d2b4
GN
4332 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
4333 ++vcpu->stat.irq_injections;
4334
219b65dc
AG
4335 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
4336 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
4337}
4338
3bbf3565
SS
4339static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
4340{
4341 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
4342}
4343
95ba8273 4344static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
4345{
4346 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 4347
3bbf3565
SS
4348 if (svm_nested_virtualize_tpr(vcpu) ||
4349 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4350 return;
4351
596f3142
RK
4352 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
4353
95ba8273 4354 if (irr == -1)
aaacfc9a
JR
4355 return;
4356
95ba8273 4357 if (tpr >= irr)
4ee546b4 4358 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 4359}
aaacfc9a 4360
8d14695f
YZ
4361static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
4362{
4363 return;
4364}
4365
d62caabb
AS
4366static bool svm_get_enable_apicv(void)
4367{
44a95dae
SS
4368 return avic;
4369}
4370
4371static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
4372{
d62caabb
AS
4373}
4374
67c9dddc 4375static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
44a95dae 4376{
d62caabb
AS
4377}
4378
44a95dae 4379/* Note: Currently only used by Hyper-V. */
d62caabb 4380static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
c7c9c56c 4381{
44a95dae
SS
4382 struct vcpu_svm *svm = to_svm(vcpu);
4383 struct vmcb *vmcb = svm->vmcb;
4384
4385 if (!avic)
4386 return;
4387
4388 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
4389 mark_dirty(vmcb, VMCB_INTR);
c7c9c56c
YZ
4390}
4391
6308630b 4392static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
c7c9c56c
YZ
4393{
4394 return;
4395}
4396
340d3bc3
SS
4397static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
4398{
4399 kvm_lapic_set_irr(vec, vcpu->arch.apic);
4400 smp_mb__after_atomic();
4401
4402 if (avic_vcpu_is_running(vcpu))
4403 wrmsrl(SVM_AVIC_DOORBELL,
7d669f50 4404 kvm_cpu_get_apicid(vcpu->cpu));
340d3bc3
SS
4405 else
4406 kvm_vcpu_wake_up(vcpu);
4407}
4408
411b44ba
SS
4409static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4410{
4411 unsigned long flags;
4412 struct amd_svm_iommu_ir *cur;
4413
4414 spin_lock_irqsave(&svm->ir_list_lock, flags);
4415 list_for_each_entry(cur, &svm->ir_list, node) {
4416 if (cur->data != pi->ir_data)
4417 continue;
4418 list_del(&cur->node);
4419 kfree(cur);
4420 break;
4421 }
4422 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4423}
4424
4425static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4426{
4427 int ret = 0;
4428 unsigned long flags;
4429 struct amd_svm_iommu_ir *ir;
4430
4431 /**
4432 * In some cases, the existing irte is updaed and re-set,
4433 * so we need to check here if it's already been * added
4434 * to the ir_list.
4435 */
4436 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
4437 struct kvm *kvm = svm->vcpu.kvm;
4438 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
4439 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
4440 struct vcpu_svm *prev_svm;
4441
4442 if (!prev_vcpu) {
4443 ret = -EINVAL;
4444 goto out;
4445 }
4446
4447 prev_svm = to_svm(prev_vcpu);
4448 svm_ir_list_del(prev_svm, pi);
4449 }
4450
4451 /**
4452 * Allocating new amd_iommu_pi_data, which will get
4453 * add to the per-vcpu ir_list.
4454 */
4455 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
4456 if (!ir) {
4457 ret = -ENOMEM;
4458 goto out;
4459 }
4460 ir->data = pi->ir_data;
4461
4462 spin_lock_irqsave(&svm->ir_list_lock, flags);
4463 list_add(&ir->node, &svm->ir_list);
4464 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4465out:
4466 return ret;
4467}
4468
4469/**
4470 * Note:
4471 * The HW cannot support posting multicast/broadcast
4472 * interrupts to a vCPU. So, we still use legacy interrupt
4473 * remapping for these kind of interrupts.
4474 *
4475 * For lowest-priority interrupts, we only support
4476 * those with single CPU as the destination, e.g. user
4477 * configures the interrupts via /proc/irq or uses
4478 * irqbalance to make the interrupts single-CPU.
4479 */
4480static int
4481get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
4482 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
4483{
4484 struct kvm_lapic_irq irq;
4485 struct kvm_vcpu *vcpu = NULL;
4486
4487 kvm_set_msi_irq(kvm, e, &irq);
4488
4489 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
4490 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
4491 __func__, irq.vector);
4492 return -1;
4493 }
4494
4495 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
4496 irq.vector);
4497 *svm = to_svm(vcpu);
4498 vcpu_info->pi_desc_addr = page_to_phys((*svm)->avic_backing_page);
4499 vcpu_info->vector = irq.vector;
4500
4501 return 0;
4502}
4503
4504/*
4505 * svm_update_pi_irte - set IRTE for Posted-Interrupts
4506 *
4507 * @kvm: kvm
4508 * @host_irq: host irq of the interrupt
4509 * @guest_irq: gsi of the interrupt
4510 * @set: set or unset PI
4511 * returns 0 on success, < 0 on failure
4512 */
4513static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
4514 uint32_t guest_irq, bool set)
4515{
4516 struct kvm_kernel_irq_routing_entry *e;
4517 struct kvm_irq_routing_table *irq_rt;
4518 int idx, ret = -EINVAL;
4519
4520 if (!kvm_arch_has_assigned_device(kvm) ||
4521 !irq_remapping_cap(IRQ_POSTING_CAP))
4522 return 0;
4523
4524 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
4525 __func__, host_irq, guest_irq, set);
4526
4527 idx = srcu_read_lock(&kvm->irq_srcu);
4528 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
4529 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
4530
4531 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
4532 struct vcpu_data vcpu_info;
4533 struct vcpu_svm *svm = NULL;
4534
4535 if (e->type != KVM_IRQ_ROUTING_MSI)
4536 continue;
4537
4538 /**
4539 * Here, we setup with legacy mode in the following cases:
4540 * 1. When cannot target interrupt to a specific vcpu.
4541 * 2. Unsetting posted interrupt.
4542 * 3. APIC virtialization is disabled for the vcpu.
4543 */
4544 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
4545 kvm_vcpu_apicv_active(&svm->vcpu)) {
4546 struct amd_iommu_pi_data pi;
4547
4548 /* Try to enable guest_mode in IRTE */
4549 pi.base = page_to_phys(svm->avic_backing_page) & AVIC_HPA_MASK;
4550 pi.ga_tag = AVIC_GATAG(kvm->arch.avic_vm_id,
4551 svm->vcpu.vcpu_id);
4552 pi.is_guest_mode = true;
4553 pi.vcpu_data = &vcpu_info;
4554 ret = irq_set_vcpu_affinity(host_irq, &pi);
4555
4556 /**
4557 * Here, we successfully setting up vcpu affinity in
4558 * IOMMU guest mode. Now, we need to store the posted
4559 * interrupt information in a per-vcpu ir_list so that
4560 * we can reference to them directly when we update vcpu
4561 * scheduling information in IOMMU irte.
4562 */
4563 if (!ret && pi.is_guest_mode)
4564 svm_ir_list_add(svm, &pi);
4565 } else {
4566 /* Use legacy mode in IRTE */
4567 struct amd_iommu_pi_data pi;
4568
4569 /**
4570 * Here, pi is used to:
4571 * - Tell IOMMU to use legacy mode for this interrupt.
4572 * - Retrieve ga_tag of prior interrupt remapping data.
4573 */
4574 pi.is_guest_mode = false;
4575 ret = irq_set_vcpu_affinity(host_irq, &pi);
4576
4577 /**
4578 * Check if the posted interrupt was previously
4579 * setup with the guest_mode by checking if the ga_tag
4580 * was cached. If so, we need to clean up the per-vcpu
4581 * ir_list.
4582 */
4583 if (!ret && pi.prev_ga_tag) {
4584 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
4585 struct kvm_vcpu *vcpu;
4586
4587 vcpu = kvm_get_vcpu_by_id(kvm, id);
4588 if (vcpu)
4589 svm_ir_list_del(to_svm(vcpu), &pi);
4590 }
4591 }
4592
4593 if (!ret && svm) {
4594 trace_kvm_pi_irte_update(svm->vcpu.vcpu_id,
4595 host_irq, e->gsi,
4596 vcpu_info.vector,
4597 vcpu_info.pi_desc_addr, set);
4598 }
4599
4600 if (ret < 0) {
4601 pr_err("%s: failed to update PI IRTE\n", __func__);
4602 goto out;
4603 }
4604 }
4605
4606 ret = 0;
4607out:
4608 srcu_read_unlock(&kvm->irq_srcu, idx);
4609 return ret;
4610}
4611
95ba8273
GN
4612static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
4613{
4614 struct vcpu_svm *svm = to_svm(vcpu);
4615 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
4616 int ret;
4617 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
4618 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
4619 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
4620
4621 return ret;
aaacfc9a
JR
4622}
4623
3cfc3092
JK
4624static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
4625{
4626 struct vcpu_svm *svm = to_svm(vcpu);
4627
4628 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
4629}
4630
4631static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4632{
4633 struct vcpu_svm *svm = to_svm(vcpu);
4634
4635 if (masked) {
4636 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 4637 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4638 } else {
4639 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 4640 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4641 }
4642}
4643
78646121
GN
4644static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
4645{
4646 struct vcpu_svm *svm = to_svm(vcpu);
4647 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
4648 int ret;
4649
4650 if (!gif_set(svm) ||
4651 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
4652 return 0;
4653
f6e78475 4654 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 4655
2030753d 4656 if (is_guest_mode(vcpu))
7fcdb510
JR
4657 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
4658
4659 return ret;
78646121
GN
4660}
4661
c9a7953f 4662static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 4663{
219b65dc 4664 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 4665
340d3bc3
SS
4666 if (kvm_vcpu_apicv_active(vcpu))
4667 return;
4668
e0231715
JR
4669 /*
4670 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
4671 * 1, because that's a separate STGI/VMRUN intercept. The next time we
4672 * get that intercept, this function will be called again though and
4673 * we'll get the vintr intercept.
4674 */
8fe54654 4675 if (gif_set(svm) && nested_svm_intr(svm)) {
219b65dc
AG
4676 svm_set_vintr(svm);
4677 svm_inject_irq(svm, 0x0);
4678 }
85f455f7
ED
4679}
4680
c9a7953f 4681static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 4682{
04d2cc77 4683 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 4684
44c11430
GN
4685 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
4686 == HF_NMI_MASK)
c9a7953f 4687 return; /* IRET will cause a vm exit */
44c11430 4688
1a5e1852
LP
4689 if ((svm->vcpu.arch.hflags & HF_GIF_MASK) == 0)
4690 return; /* STGI will cause a vm exit */
4691
4692 if (svm->nested.exit_required)
4693 return; /* we're not going to run the guest yet */
4694
e0231715
JR
4695 /*
4696 * Something prevents NMI from been injected. Single step over possible
4697 * problem (IRET or exception injection or interrupt shadow)
4698 */
ab2f4d73 4699 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
6be7d306 4700 svm->nmi_singlestep = true;
44c11430 4701 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
c1150d8c
DL
4702}
4703
cbc94022
IE
4704static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
4705{
4706 return 0;
4707}
4708
d9e368d6
AK
4709static void svm_flush_tlb(struct kvm_vcpu *vcpu)
4710{
38e5e92f
JR
4711 struct vcpu_svm *svm = to_svm(vcpu);
4712
4713 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
4714 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4715 else
4716 svm->asid_generation--;
d9e368d6
AK
4717}
4718
04d2cc77
AK
4719static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
4720{
4721}
4722
d7bf8221
JR
4723static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
4724{
4725 struct vcpu_svm *svm = to_svm(vcpu);
4726
3bbf3565 4727 if (svm_nested_virtualize_tpr(vcpu))
88ab24ad
JR
4728 return;
4729
4ee546b4 4730 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 4731 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 4732 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
4733 }
4734}
4735
649d6864
JR
4736static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
4737{
4738 struct vcpu_svm *svm = to_svm(vcpu);
4739 u64 cr8;
4740
3bbf3565
SS
4741 if (svm_nested_virtualize_tpr(vcpu) ||
4742 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4743 return;
4744
649d6864
JR
4745 cr8 = kvm_get_cr8(vcpu);
4746 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
4747 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
4748}
4749
9222be18
GN
4750static void svm_complete_interrupts(struct vcpu_svm *svm)
4751{
4752 u8 vector;
4753 int type;
4754 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
4755 unsigned int3_injected = svm->int3_injected;
4756
4757 svm->int3_injected = 0;
9222be18 4758
bd3d1ec3
AK
4759 /*
4760 * If we've made progress since setting HF_IRET_MASK, we've
4761 * executed an IRET and can allow NMI injection.
4762 */
4763 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
4764 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 4765 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
4766 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4767 }
44c11430 4768
9222be18
GN
4769 svm->vcpu.arch.nmi_injected = false;
4770 kvm_clear_exception_queue(&svm->vcpu);
4771 kvm_clear_interrupt_queue(&svm->vcpu);
4772
4773 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
4774 return;
4775
3842d135
AK
4776 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4777
9222be18
GN
4778 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
4779 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
4780
4781 switch (type) {
4782 case SVM_EXITINTINFO_TYPE_NMI:
4783 svm->vcpu.arch.nmi_injected = true;
4784 break;
4785 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
4786 /*
4787 * In case of software exceptions, do not reinject the vector,
4788 * but re-execute the instruction instead. Rewind RIP first
4789 * if we emulated INT3 before.
4790 */
4791 if (kvm_exception_is_soft(vector)) {
4792 if (vector == BP_VECTOR && int3_injected &&
4793 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
4794 kvm_rip_write(&svm->vcpu,
4795 kvm_rip_read(&svm->vcpu) -
4796 int3_injected);
9222be18 4797 break;
66b7138f 4798 }
9222be18
GN
4799 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
4800 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 4801 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
4802
4803 } else
ce7ddec4 4804 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
4805 break;
4806 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 4807 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
4808 break;
4809 default:
4810 break;
4811 }
4812}
4813
b463a6f7
AK
4814static void svm_cancel_injection(struct kvm_vcpu *vcpu)
4815{
4816 struct vcpu_svm *svm = to_svm(vcpu);
4817 struct vmcb_control_area *control = &svm->vmcb->control;
4818
4819 control->exit_int_info = control->event_inj;
4820 control->exit_int_info_err = control->event_inj_err;
4821 control->event_inj = 0;
4822 svm_complete_interrupts(svm);
4823}
4824
851ba692 4825static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 4826{
a2fa3e9f 4827 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 4828
2041a06a
JR
4829 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4830 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4831 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4832
cd3ff653
JR
4833 /*
4834 * A vmexit emulation is required before the vcpu can be executed
4835 * again.
4836 */
4837 if (unlikely(svm->nested.exit_required))
4838 return;
4839
a12713c2
LP
4840 /*
4841 * Disable singlestep if we're injecting an interrupt/exception.
4842 * We don't want our modified rflags to be pushed on the stack where
4843 * we might not be able to easily reset them if we disabled NMI
4844 * singlestep later.
4845 */
4846 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
4847 /*
4848 * Event injection happens before external interrupts cause a
4849 * vmexit and interrupts are disabled here, so smp_send_reschedule
4850 * is enough to force an immediate vmexit.
4851 */
4852 disable_nmi_singlestep(svm);
4853 smp_send_reschedule(vcpu->cpu);
4854 }
4855
e756fc62 4856 pre_svm_run(svm);
6aa8b732 4857
649d6864
JR
4858 sync_lapic_to_cr8(vcpu);
4859
cda0ffdd 4860 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 4861
04d2cc77
AK
4862 clgi();
4863
4864 local_irq_enable();
36241b8c 4865
6aa8b732 4866 asm volatile (
7454766f
AK
4867 "push %%" _ASM_BP "; \n\t"
4868 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
4869 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
4870 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
4871 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
4872 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
4873 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
05b3e0c2 4874#ifdef CONFIG_X86_64
fb3f0f51
RR
4875 "mov %c[r8](%[svm]), %%r8 \n\t"
4876 "mov %c[r9](%[svm]), %%r9 \n\t"
4877 "mov %c[r10](%[svm]), %%r10 \n\t"
4878 "mov %c[r11](%[svm]), %%r11 \n\t"
4879 "mov %c[r12](%[svm]), %%r12 \n\t"
4880 "mov %c[r13](%[svm]), %%r13 \n\t"
4881 "mov %c[r14](%[svm]), %%r14 \n\t"
4882 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
4883#endif
4884
6aa8b732 4885 /* Enter guest mode */
7454766f
AK
4886 "push %%" _ASM_AX " \n\t"
4887 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
4ecac3fd
AK
4888 __ex(SVM_VMLOAD) "\n\t"
4889 __ex(SVM_VMRUN) "\n\t"
4890 __ex(SVM_VMSAVE) "\n\t"
7454766f 4891 "pop %%" _ASM_AX " \n\t"
6aa8b732
AK
4892
4893 /* Save guest registers, load host registers */
7454766f
AK
4894 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
4895 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
4896 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
4897 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
4898 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
4899 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
05b3e0c2 4900#ifdef CONFIG_X86_64
fb3f0f51
RR
4901 "mov %%r8, %c[r8](%[svm]) \n\t"
4902 "mov %%r9, %c[r9](%[svm]) \n\t"
4903 "mov %%r10, %c[r10](%[svm]) \n\t"
4904 "mov %%r11, %c[r11](%[svm]) \n\t"
4905 "mov %%r12, %c[r12](%[svm]) \n\t"
4906 "mov %%r13, %c[r13](%[svm]) \n\t"
4907 "mov %%r14, %c[r14](%[svm]) \n\t"
4908 "mov %%r15, %c[r15](%[svm]) \n\t"
6aa8b732 4909#endif
7454766f 4910 "pop %%" _ASM_BP
6aa8b732 4911 :
fb3f0f51 4912 : [svm]"a"(svm),
6aa8b732 4913 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
4914 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
4915 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
4916 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
4917 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
4918 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
4919 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 4920#ifdef CONFIG_X86_64
ad312c7c
ZX
4921 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
4922 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
4923 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
4924 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
4925 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
4926 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
4927 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
4928 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 4929#endif
54a08c04
LV
4930 : "cc", "memory"
4931#ifdef CONFIG_X86_64
7454766f 4932 , "rbx", "rcx", "rdx", "rsi", "rdi"
54a08c04 4933 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
7454766f
AK
4934#else
4935 , "ebx", "ecx", "edx", "esi", "edi"
54a08c04
LV
4936#endif
4937 );
6aa8b732 4938
82ca2d10
AK
4939#ifdef CONFIG_X86_64
4940 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
4941#else
dacccfdd 4942 loadsegment(fs, svm->host.fs);
831ca609
AK
4943#ifndef CONFIG_X86_32_LAZY_GS
4944 loadsegment(gs, svm->host.gs);
4945#endif
9581d442 4946#endif
6aa8b732
AK
4947
4948 reload_tss(vcpu);
4949
56ba47dd
AK
4950 local_irq_disable();
4951
13c34e07
AK
4952 vcpu->arch.cr2 = svm->vmcb->save.cr2;
4953 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
4954 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
4955 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
4956
3781c01c
JR
4957 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
4958 kvm_before_handle_nmi(&svm->vcpu);
4959
4960 stgi();
4961
4962 /* Any pending NMI will happen here */
4963
4964 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
4965 kvm_after_handle_nmi(&svm->vcpu);
4966
d7bf8221
JR
4967 sync_cr8_to_lapic(vcpu);
4968
a2fa3e9f 4969 svm->next_rip = 0;
9222be18 4970
38e5e92f
JR
4971 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
4972
631bc487
GN
4973 /* if exit due to PF check for async PF */
4974 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
4975 svm->apf_reason = kvm_read_and_reset_pf_reason();
4976
6de4f3ad
AK
4977 if (npt_enabled) {
4978 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
4979 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
4980 }
fe5913e4
JR
4981
4982 /*
4983 * We need to handle MC intercepts here before the vcpu has a chance to
4984 * change the physical cpu
4985 */
4986 if (unlikely(svm->vmcb->control.exit_code ==
4987 SVM_EXIT_EXCP_BASE + MC_VECTOR))
4988 svm_handle_mce(svm);
8d28fec4
RJ
4989
4990 mark_all_clean(svm->vmcb);
6aa8b732 4991}
c207aee4 4992STACK_FRAME_NON_STANDARD(svm_vcpu_run);
6aa8b732 4993
6aa8b732
AK
4994static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
4995{
a2fa3e9f
GH
4996 struct vcpu_svm *svm = to_svm(vcpu);
4997
4998 svm->vmcb->save.cr3 = root;
dcca1a65 4999 mark_dirty(svm->vmcb, VMCB_CR);
f40f6a45 5000 svm_flush_tlb(vcpu);
6aa8b732
AK
5001}
5002
1c97f0a0
JR
5003static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5004{
5005 struct vcpu_svm *svm = to_svm(vcpu);
5006
5007 svm->vmcb->control.nested_cr3 = root;
b2747166 5008 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
5009
5010 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 5011 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 5012 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0 5013
f40f6a45 5014 svm_flush_tlb(vcpu);
1c97f0a0
JR
5015}
5016
6aa8b732
AK
5017static int is_disabled(void)
5018{
6031a61c
JR
5019 u64 vm_cr;
5020
5021 rdmsrl(MSR_VM_CR, vm_cr);
5022 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5023 return 1;
5024
6aa8b732
AK
5025 return 0;
5026}
5027
102d8325
IM
5028static void
5029svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5030{
5031 /*
5032 * Patch in the VMMCALL instruction:
5033 */
5034 hypercall[0] = 0x0f;
5035 hypercall[1] = 0x01;
5036 hypercall[2] = 0xd9;
102d8325
IM
5037}
5038
002c7f7c
YS
5039static void svm_check_processor_compat(void *rtn)
5040{
5041 *(int *)rtn = 0;
5042}
5043
774ead3a
AK
5044static bool svm_cpu_has_accelerated_tpr(void)
5045{
5046 return false;
5047}
5048
6d396b55
PB
5049static bool svm_has_high_real_mode_segbase(void)
5050{
5051 return true;
5052}
5053
fc07e76a
PB
5054static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5055{
5056 return 0;
5057}
5058
0e851880
SY
5059static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5060{
6092d3d3 5061 struct vcpu_svm *svm = to_svm(vcpu);
46781eae 5062 struct kvm_cpuid_entry2 *entry;
6092d3d3
JR
5063
5064 /* Update nrips enabled cache */
5065 svm->nrips_enabled = !!guest_cpuid_has_nrips(&svm->vcpu);
46781eae
SS
5066
5067 if (!kvm_vcpu_apicv_active(vcpu))
5068 return;
5069
5070 entry = kvm_find_cpuid_entry(vcpu, 1, 0);
5071 if (entry)
5072 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
0e851880
SY
5073}
5074
d4330ef2
JR
5075static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5076{
c2c63a49 5077 switch (func) {
46781eae
SS
5078 case 0x1:
5079 if (avic)
5080 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5081 break;
4c62a2dc
JR
5082 case 0x80000001:
5083 if (nested)
5084 entry->ecx |= (1 << 2); /* Set SVM bit */
5085 break;
c2c63a49
JR
5086 case 0x8000000A:
5087 entry->eax = 1; /* SVM revision 1 */
5088 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5089 ASID emulation to nested SVM */
5090 entry->ecx = 0; /* Reserved */
7a190667
JR
5091 entry->edx = 0; /* Per default do not support any
5092 additional features */
5093
5094 /* Support next_rip if host supports it */
2a6b20b8 5095 if (boot_cpu_has(X86_FEATURE_NRIPS))
7a190667 5096 entry->edx |= SVM_FEATURE_NRIP;
c2c63a49 5097
3d4aeaad
JR
5098 /* Support NPT for the guest if enabled */
5099 if (npt_enabled)
5100 entry->edx |= SVM_FEATURE_NPT;
5101
c2c63a49
JR
5102 break;
5103 }
d4330ef2
JR
5104}
5105
17cc3935 5106static int svm_get_lpage_level(void)
344f414f 5107{
17cc3935 5108 return PT_PDPE_LEVEL;
344f414f
JR
5109}
5110
4e47c7a6
SY
5111static bool svm_rdtscp_supported(void)
5112{
46896c73 5113 return boot_cpu_has(X86_FEATURE_RDTSCP);
4e47c7a6
SY
5114}
5115
ad756a16
MJ
5116static bool svm_invpcid_supported(void)
5117{
5118 return false;
5119}
5120
93c4adc7
PB
5121static bool svm_mpx_supported(void)
5122{
5123 return false;
5124}
5125
55412b2e
WL
5126static bool svm_xsaves_supported(void)
5127{
5128 return false;
5129}
5130
f5f48ee1
SY
5131static bool svm_has_wbinvd_exit(void)
5132{
5133 return true;
5134}
5135
8061252e 5136#define PRE_EX(exit) { .exit_code = (exit), \
40e19b51 5137 .stage = X86_ICPT_PRE_EXCEPT, }
cfec82cb 5138#define POST_EX(exit) { .exit_code = (exit), \
40e19b51 5139 .stage = X86_ICPT_POST_EXCEPT, }
d7eb8203 5140#define POST_MEM(exit) { .exit_code = (exit), \
40e19b51 5141 .stage = X86_ICPT_POST_MEMACCESS, }
cfec82cb 5142
09941fbb 5143static const struct __x86_intercept {
cfec82cb
JR
5144 u32 exit_code;
5145 enum x86_intercept_stage stage;
cfec82cb
JR
5146} x86_intercept_map[] = {
5147 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5148 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5149 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5150 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5151 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
5152 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5153 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
5154 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5155 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5156 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5157 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5158 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5159 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5160 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5161 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
5162 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5163 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5164 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5165 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5166 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5167 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5168 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5169 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
5170 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5171 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5172 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
5173 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5174 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5175 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5176 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5177 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5178 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5179 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5180 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5181 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
bf608f88
JR
5182 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5183 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5184 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5185 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5186 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5187 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5188 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
f6511935
JR
5189 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5190 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5191 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5192 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
cfec82cb
JR
5193};
5194
8061252e 5195#undef PRE_EX
cfec82cb 5196#undef POST_EX
d7eb8203 5197#undef POST_MEM
cfec82cb 5198
8a76d7f2
JR
5199static int svm_check_intercept(struct kvm_vcpu *vcpu,
5200 struct x86_instruction_info *info,
5201 enum x86_intercept_stage stage)
5202{
cfec82cb
JR
5203 struct vcpu_svm *svm = to_svm(vcpu);
5204 int vmexit, ret = X86EMUL_CONTINUE;
5205 struct __x86_intercept icpt_info;
5206 struct vmcb *vmcb = svm->vmcb;
5207
5208 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5209 goto out;
5210
5211 icpt_info = x86_intercept_map[info->intercept];
5212
40e19b51 5213 if (stage != icpt_info.stage)
cfec82cb
JR
5214 goto out;
5215
5216 switch (icpt_info.exit_code) {
5217 case SVM_EXIT_READ_CR0:
5218 if (info->intercept == x86_intercept_cr_read)
5219 icpt_info.exit_code += info->modrm_reg;
5220 break;
5221 case SVM_EXIT_WRITE_CR0: {
5222 unsigned long cr0, val;
5223 u64 intercept;
5224
5225 if (info->intercept == x86_intercept_cr_write)
5226 icpt_info.exit_code += info->modrm_reg;
5227
62baf44c
JK
5228 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5229 info->intercept == x86_intercept_clts)
cfec82cb
JR
5230 break;
5231
5232 intercept = svm->nested.intercept;
5233
5234 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5235 break;
5236
5237 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5238 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5239
5240 if (info->intercept == x86_intercept_lmsw) {
5241 cr0 &= 0xfUL;
5242 val &= 0xfUL;
5243 /* lmsw can't clear PE - catch this here */
5244 if (cr0 & X86_CR0_PE)
5245 val |= X86_CR0_PE;
5246 }
5247
5248 if (cr0 ^ val)
5249 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5250
5251 break;
5252 }
3b88e41a
JR
5253 case SVM_EXIT_READ_DR0:
5254 case SVM_EXIT_WRITE_DR0:
5255 icpt_info.exit_code += info->modrm_reg;
5256 break;
8061252e
JR
5257 case SVM_EXIT_MSR:
5258 if (info->intercept == x86_intercept_wrmsr)
5259 vmcb->control.exit_info_1 = 1;
5260 else
5261 vmcb->control.exit_info_1 = 0;
5262 break;
bf608f88
JR
5263 case SVM_EXIT_PAUSE:
5264 /*
5265 * We get this for NOP only, but pause
5266 * is rep not, check this here
5267 */
5268 if (info->rep_prefix != REPE_PREFIX)
5269 goto out;
f6511935
JR
5270 case SVM_EXIT_IOIO: {
5271 u64 exit_info;
5272 u32 bytes;
5273
f6511935
JR
5274 if (info->intercept == x86_intercept_in ||
5275 info->intercept == x86_intercept_ins) {
6cbc5f5a
JK
5276 exit_info = ((info->src_val & 0xffff) << 16) |
5277 SVM_IOIO_TYPE_MASK;
f6511935 5278 bytes = info->dst_bytes;
6493f157 5279 } else {
6cbc5f5a 5280 exit_info = (info->dst_val & 0xffff) << 16;
6493f157 5281 bytes = info->src_bytes;
f6511935
JR
5282 }
5283
5284 if (info->intercept == x86_intercept_outs ||
5285 info->intercept == x86_intercept_ins)
5286 exit_info |= SVM_IOIO_STR_MASK;
5287
5288 if (info->rep_prefix)
5289 exit_info |= SVM_IOIO_REP_MASK;
5290
5291 bytes = min(bytes, 4u);
5292
5293 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
5294
5295 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
5296
5297 vmcb->control.exit_info_1 = exit_info;
5298 vmcb->control.exit_info_2 = info->next_rip;
5299
5300 break;
5301 }
cfec82cb
JR
5302 default:
5303 break;
5304 }
5305
f104765b
BD
5306 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
5307 if (static_cpu_has(X86_FEATURE_NRIPS))
5308 vmcb->control.next_rip = info->next_rip;
cfec82cb
JR
5309 vmcb->control.exit_code = icpt_info.exit_code;
5310 vmexit = nested_svm_exit_handled(svm);
5311
5312 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
5313 : X86EMUL_CONTINUE;
5314
5315out:
5316 return ret;
8a76d7f2
JR
5317}
5318
a547c6db
YZ
5319static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
5320{
5321 local_irq_enable();
f2485b3e
PB
5322 /*
5323 * We must have an instruction with interrupts enabled, so
5324 * the timer interrupt isn't delayed by the interrupt shadow.
5325 */
5326 asm("nop");
5327 local_irq_disable();
a547c6db
YZ
5328}
5329
ae97a3b8
RK
5330static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
5331{
5332}
5333
be8ca170
SS
5334static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
5335{
5336 if (avic_handle_apic_id_update(vcpu) != 0)
5337 return;
5338 if (avic_handle_dfr_update(vcpu) != 0)
5339 return;
5340 avic_handle_ldr_update(vcpu);
5341}
5342
74f16909
BP
5343static void svm_setup_mce(struct kvm_vcpu *vcpu)
5344{
5345 /* [63:9] are reserved. */
5346 vcpu->arch.mcg_cap &= 0x1ff;
5347}
5348
404f6aac 5349static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
6aa8b732
AK
5350 .cpu_has_kvm_support = has_svm,
5351 .disabled_by_bios = is_disabled,
5352 .hardware_setup = svm_hardware_setup,
5353 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 5354 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
5355 .hardware_enable = svm_hardware_enable,
5356 .hardware_disable = svm_hardware_disable,
774ead3a 5357 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
6d396b55 5358 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
6aa8b732
AK
5359
5360 .vcpu_create = svm_create_vcpu,
5361 .vcpu_free = svm_free_vcpu,
04d2cc77 5362 .vcpu_reset = svm_vcpu_reset,
6aa8b732 5363
44a95dae
SS
5364 .vm_init = avic_vm_init,
5365 .vm_destroy = avic_vm_destroy,
5366
04d2cc77 5367 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
5368 .vcpu_load = svm_vcpu_load,
5369 .vcpu_put = svm_vcpu_put,
8221c137
SS
5370 .vcpu_blocking = svm_vcpu_blocking,
5371 .vcpu_unblocking = svm_vcpu_unblocking,
6aa8b732 5372
a96036b8 5373 .update_bp_intercept = update_bp_intercept,
6aa8b732
AK
5374 .get_msr = svm_get_msr,
5375 .set_msr = svm_set_msr,
5376 .get_segment_base = svm_get_segment_base,
5377 .get_segment = svm_get_segment,
5378 .set_segment = svm_set_segment,
2e4d2653 5379 .get_cpl = svm_get_cpl,
1747fb71 5380 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 5381 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
aff48baa 5382 .decache_cr3 = svm_decache_cr3,
25c4c276 5383 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 5384 .set_cr0 = svm_set_cr0,
6aa8b732
AK
5385 .set_cr3 = svm_set_cr3,
5386 .set_cr4 = svm_set_cr4,
5387 .set_efer = svm_set_efer,
5388 .get_idt = svm_get_idt,
5389 .set_idt = svm_set_idt,
5390 .get_gdt = svm_get_gdt,
5391 .set_gdt = svm_set_gdt,
73aaf249
JK
5392 .get_dr6 = svm_get_dr6,
5393 .set_dr6 = svm_set_dr6,
020df079 5394 .set_dr7 = svm_set_dr7,
facb0139 5395 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
6de4f3ad 5396 .cache_reg = svm_cache_reg,
6aa8b732
AK
5397 .get_rflags = svm_get_rflags,
5398 .set_rflags = svm_set_rflags,
be94f6b7
HH
5399
5400 .get_pkru = svm_get_pkru,
5401
6aa8b732 5402 .tlb_flush = svm_flush_tlb,
6aa8b732 5403
6aa8b732 5404 .run = svm_vcpu_run,
04d2cc77 5405 .handle_exit = handle_exit,
6aa8b732 5406 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
5407 .set_interrupt_shadow = svm_set_interrupt_shadow,
5408 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 5409 .patch_hypercall = svm_patch_hypercall,
2a8067f1 5410 .set_irq = svm_set_irq,
95ba8273 5411 .set_nmi = svm_inject_nmi,
298101da 5412 .queue_exception = svm_queue_exception,
b463a6f7 5413 .cancel_injection = svm_cancel_injection,
78646121 5414 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 5415 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
5416 .get_nmi_mask = svm_get_nmi_mask,
5417 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
5418 .enable_nmi_window = enable_nmi_window,
5419 .enable_irq_window = enable_irq_window,
5420 .update_cr8_intercept = update_cr8_intercept,
8d14695f 5421 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
d62caabb
AS
5422 .get_enable_apicv = svm_get_enable_apicv,
5423 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
c7c9c56c 5424 .load_eoi_exitmap = svm_load_eoi_exitmap,
44a95dae
SS
5425 .hwapic_irr_update = svm_hwapic_irr_update,
5426 .hwapic_isr_update = svm_hwapic_isr_update,
be8ca170 5427 .apicv_post_state_restore = avic_post_state_restore,
cbc94022
IE
5428
5429 .set_tss_addr = svm_set_tss_addr,
67253af5 5430 .get_tdp_level = get_npt_level,
4b12f0de 5431 .get_mt_mask = svm_get_mt_mask,
229456fc 5432
586f9607 5433 .get_exit_info = svm_get_exit_info,
586f9607 5434
17cc3935 5435 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
5436
5437 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
5438
5439 .rdtscp_supported = svm_rdtscp_supported,
ad756a16 5440 .invpcid_supported = svm_invpcid_supported,
93c4adc7 5441 .mpx_supported = svm_mpx_supported,
55412b2e 5442 .xsaves_supported = svm_xsaves_supported,
d4330ef2
JR
5443
5444 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
5445
5446 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a
ZA
5447
5448 .write_tsc_offset = svm_write_tsc_offset,
1c97f0a0
JR
5449
5450 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
5451
5452 .check_intercept = svm_check_intercept,
a547c6db 5453 .handle_external_intr = svm_handle_external_intr,
ae97a3b8
RK
5454
5455 .sched_in = svm_sched_in,
25462f7f
WH
5456
5457 .pmu_ops = &amd_pmu_ops,
340d3bc3 5458 .deliver_posted_interrupt = svm_deliver_avic_intr,
411b44ba 5459 .update_pi_irte = svm_update_pi_irte,
74f16909 5460 .setup_mce = svm_setup_mce,
6aa8b732
AK
5461};
5462
5463static int __init svm_init(void)
5464{
cb498ea2 5465 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 5466 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
5467}
5468
5469static void __exit svm_exit(void)
5470{
cb498ea2 5471 kvm_exit();
6aa8b732
AK
5472}
5473
5474module_init(svm_init)
5475module_exit(svm_exit)