]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/svm.c
KVM: x86: take slots_lock in kvm_free_pit
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kvm / svm.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
9611c187 7 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
8 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
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
950 svm->vmcb->control.lbr_ctl = 1;
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
961 svm->vmcb->control.lbr_ctl = 0;
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? */
34c33d16 2270 int size, in, string;
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;
e93f36bc 2282 skip_emulated_instruction(&svm->vcpu);
cf8f70bf 2283
8370c3d0
TL
2284 return in ? kvm_fast_pio_in(vcpu, size, port)
2285 : kvm_fast_pio_out(vcpu, size, port);
6aa8b732
AK
2286}
2287
851ba692 2288static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
2289{
2290 return 1;
2291}
2292
851ba692 2293static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
2294{
2295 ++svm->vcpu.stat.irq_exits;
2296 return 1;
2297}
2298
851ba692 2299static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
2300{
2301 return 1;
2302}
2303
851ba692 2304static int halt_interception(struct vcpu_svm *svm)
6aa8b732 2305{
5fdbf976 2306 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62 2307 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
2308}
2309
851ba692 2310static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 2311{
5fdbf976 2312 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
0d9c055e 2313 return kvm_emulate_hypercall(&svm->vcpu);
02e235bc
AK
2314}
2315
5bd2edc3
JR
2316static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2317{
2318 struct vcpu_svm *svm = to_svm(vcpu);
2319
2320 return svm->nested.nested_cr3;
2321}
2322
e4e517b4
AK
2323static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2324{
2325 struct vcpu_svm *svm = to_svm(vcpu);
2326 u64 cr3 = svm->nested.nested_cr3;
2327 u64 pdpte;
2328 int ret;
2329
54bf36aa
PB
2330 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(cr3), &pdpte,
2331 offset_in_page(cr3) + index * 8, 8);
e4e517b4
AK
2332 if (ret)
2333 return 0;
2334 return pdpte;
2335}
2336
5bd2edc3
JR
2337static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2338 unsigned long root)
2339{
2340 struct vcpu_svm *svm = to_svm(vcpu);
2341
2342 svm->vmcb->control.nested_cr3 = root;
b2747166 2343 mark_dirty(svm->vmcb, VMCB_NPT);
f40f6a45 2344 svm_flush_tlb(vcpu);
5bd2edc3
JR
2345}
2346
6389ee94
AK
2347static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2348 struct x86_exception *fault)
5bd2edc3
JR
2349{
2350 struct vcpu_svm *svm = to_svm(vcpu);
2351
5e352519
PB
2352 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2353 /*
2354 * TODO: track the cause of the nested page fault, and
2355 * correctly fill in the high bits of exit_info_1.
2356 */
2357 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2358 svm->vmcb->control.exit_code_hi = 0;
2359 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2360 svm->vmcb->control.exit_info_2 = fault->address;
2361 }
2362
2363 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2364 svm->vmcb->control.exit_info_1 |= fault->error_code;
2365
2366 /*
2367 * The present bit is always zero for page structure faults on real
2368 * hardware.
2369 */
2370 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2371 svm->vmcb->control.exit_info_1 &= ~1;
5bd2edc3
JR
2372
2373 nested_svm_vmexit(svm);
2374}
2375
8a3c1a33 2376static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
4b16184c 2377{
ad896af0
PB
2378 WARN_ON(mmu_is_nested(vcpu));
2379 kvm_init_shadow_mmu(vcpu);
4b16184c
JR
2380 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2381 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
e4e517b4 2382 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
4b16184c
JR
2383 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
2384 vcpu->arch.mmu.shadow_root_level = get_npt_level();
c258b62b 2385 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
4b16184c 2386 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
4b16184c
JR
2387}
2388
2389static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2390{
2391 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2392}
2393
c0725420
AG
2394static int nested_svm_check_permissions(struct vcpu_svm *svm)
2395{
e9196ceb
DC
2396 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2397 !is_paging(&svm->vcpu)) {
c0725420
AG
2398 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2399 return 1;
2400 }
2401
2402 if (svm->vmcb->save.cpl) {
2403 kvm_inject_gp(&svm->vcpu, 0);
2404 return 1;
2405 }
2406
e9196ceb 2407 return 0;
c0725420
AG
2408}
2409
cf74a78b
AG
2410static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2411 bool has_error_code, u32 error_code)
2412{
b8e88bc8
JR
2413 int vmexit;
2414
2030753d 2415 if (!is_guest_mode(&svm->vcpu))
0295ad7d 2416 return 0;
cf74a78b 2417
0295ad7d
JR
2418 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2419 svm->vmcb->control.exit_code_hi = 0;
2420 svm->vmcb->control.exit_info_1 = error_code;
2421 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
2422
b8e88bc8
JR
2423 vmexit = nested_svm_intercept(svm);
2424 if (vmexit == NESTED_EXIT_DONE)
2425 svm->nested.exit_required = true;
2426
2427 return vmexit;
cf74a78b
AG
2428}
2429
8fe54654
JR
2430/* This function returns true if it is save to enable the irq window */
2431static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 2432{
2030753d 2433 if (!is_guest_mode(&svm->vcpu))
8fe54654 2434 return true;
cf74a78b 2435
26666957 2436 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 2437 return true;
cf74a78b 2438
26666957 2439 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 2440 return false;
cf74a78b 2441
a0a07cd2
GN
2442 /*
2443 * if vmexit was already requested (by intercepted exception
2444 * for instance) do not overwrite it with "external interrupt"
2445 * vmexit.
2446 */
2447 if (svm->nested.exit_required)
2448 return false;
2449
197717d5
JR
2450 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
2451 svm->vmcb->control.exit_info_1 = 0;
2452 svm->vmcb->control.exit_info_2 = 0;
26666957 2453
cd3ff653
JR
2454 if (svm->nested.intercept & 1ULL) {
2455 /*
2456 * The #vmexit can't be emulated here directly because this
c5ec2e56 2457 * code path runs with irqs and preemption disabled. A
cd3ff653
JR
2458 * #vmexit emulation might sleep. Only signal request for
2459 * the #vmexit here.
2460 */
2461 svm->nested.exit_required = true;
236649de 2462 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 2463 return false;
cf74a78b
AG
2464 }
2465
8fe54654 2466 return true;
cf74a78b
AG
2467}
2468
887f500c
JR
2469/* This function returns true if it is save to enable the nmi window */
2470static inline bool nested_svm_nmi(struct vcpu_svm *svm)
2471{
2030753d 2472 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
2473 return true;
2474
2475 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
2476 return true;
2477
2478 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
2479 svm->nested.exit_required = true;
2480
2481 return false;
cf74a78b
AG
2482}
2483
7597f129 2484static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
34f80cfa
JR
2485{
2486 struct page *page;
2487
6c3bd3d7
JR
2488 might_sleep();
2489
54bf36aa 2490 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
34f80cfa
JR
2491 if (is_error_page(page))
2492 goto error;
2493
7597f129
JR
2494 *_page = page;
2495
2496 return kmap(page);
34f80cfa
JR
2497
2498error:
34f80cfa
JR
2499 kvm_inject_gp(&svm->vcpu, 0);
2500
2501 return NULL;
2502}
2503
7597f129 2504static void nested_svm_unmap(struct page *page)
34f80cfa 2505{
7597f129 2506 kunmap(page);
34f80cfa
JR
2507 kvm_release_page_dirty(page);
2508}
34f80cfa 2509
ce2ac085
JR
2510static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
2511{
9bf41833
JK
2512 unsigned port, size, iopm_len;
2513 u16 val, mask;
2514 u8 start_bit;
ce2ac085 2515 u64 gpa;
34f80cfa 2516
ce2ac085
JR
2517 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
2518 return NESTED_EXIT_HOST;
34f80cfa 2519
ce2ac085 2520 port = svm->vmcb->control.exit_info_1 >> 16;
9bf41833
JK
2521 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
2522 SVM_IOIO_SIZE_SHIFT;
ce2ac085 2523 gpa = svm->nested.vmcb_iopm + (port / 8);
9bf41833
JK
2524 start_bit = port % 8;
2525 iopm_len = (start_bit + size > 8) ? 2 : 1;
2526 mask = (0xf >> (4 - size)) << start_bit;
2527 val = 0;
ce2ac085 2528
54bf36aa 2529 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
9bf41833 2530 return NESTED_EXIT_DONE;
ce2ac085 2531
9bf41833 2532 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
2533}
2534
d2477826 2535static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 2536{
0d6b3537
JR
2537 u32 offset, msr, value;
2538 int write, mask;
4c2161ae 2539
3d62d9aa 2540 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 2541 return NESTED_EXIT_HOST;
3d62d9aa 2542
0d6b3537
JR
2543 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
2544 offset = svm_msrpm_offset(msr);
2545 write = svm->vmcb->control.exit_info_1 & 1;
2546 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 2547
0d6b3537
JR
2548 if (offset == MSR_INVALID)
2549 return NESTED_EXIT_DONE;
4c2161ae 2550
0d6b3537
JR
2551 /* Offset is in 32 bit units but need in 8 bit units */
2552 offset *= 4;
4c2161ae 2553
54bf36aa 2554 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
0d6b3537 2555 return NESTED_EXIT_DONE;
3d62d9aa 2556
0d6b3537 2557 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
2558}
2559
ab2f4d73
LP
2560/* DB exceptions for our internal use must not cause vmexit */
2561static int nested_svm_intercept_db(struct vcpu_svm *svm)
2562{
2563 unsigned long dr6;
2564
2565 /* if we're not singlestepping, it's not ours */
2566 if (!svm->nmi_singlestep)
2567 return NESTED_EXIT_DONE;
2568
2569 /* if it's not a singlestep exception, it's not ours */
2570 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
2571 return NESTED_EXIT_DONE;
2572 if (!(dr6 & DR6_BS))
2573 return NESTED_EXIT_DONE;
2574
2575 /* if the guest is singlestepping, it should get the vmexit */
2576 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
2577 disable_nmi_singlestep(svm);
2578 return NESTED_EXIT_DONE;
2579 }
2580
2581 /* it's ours, the nested hypervisor must not see this one */
2582 return NESTED_EXIT_HOST;
2583}
2584
410e4d57 2585static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 2586{
cf74a78b 2587 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 2588
410e4d57
JR
2589 switch (exit_code) {
2590 case SVM_EXIT_INTR:
2591 case SVM_EXIT_NMI:
ff47a49b 2592 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 2593 return NESTED_EXIT_HOST;
410e4d57 2594 case SVM_EXIT_NPF:
e0231715 2595 /* For now we are always handling NPFs when using them */
410e4d57
JR
2596 if (npt_enabled)
2597 return NESTED_EXIT_HOST;
2598 break;
410e4d57 2599 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487
GN
2600 /* When we're shadowing, trap PFs, but not async PF */
2601 if (!npt_enabled && svm->apf_reason == 0)
410e4d57
JR
2602 return NESTED_EXIT_HOST;
2603 break;
2604 default:
2605 break;
cf74a78b
AG
2606 }
2607
410e4d57
JR
2608 return NESTED_EXIT_CONTINUE;
2609}
2610
2611/*
2612 * If this function returns true, this #vmexit was already handled
2613 */
b8e88bc8 2614static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
2615{
2616 u32 exit_code = svm->vmcb->control.exit_code;
2617 int vmexit = NESTED_EXIT_HOST;
2618
cf74a78b 2619 switch (exit_code) {
9c4e40b9 2620 case SVM_EXIT_MSR:
3d62d9aa 2621 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 2622 break;
ce2ac085
JR
2623 case SVM_EXIT_IOIO:
2624 vmexit = nested_svm_intercept_ioio(svm);
2625 break;
4ee546b4
RJ
2626 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
2627 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
2628 if (svm->nested.intercept_cr & bit)
410e4d57 2629 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2630 break;
2631 }
3aed041a
JR
2632 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
2633 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
2634 if (svm->nested.intercept_dr & bit)
410e4d57 2635 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2636 break;
2637 }
2638 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
2639 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
ab2f4d73
LP
2640 if (svm->nested.intercept_exceptions & excp_bits) {
2641 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
2642 vmexit = nested_svm_intercept_db(svm);
2643 else
2644 vmexit = NESTED_EXIT_DONE;
2645 }
631bc487
GN
2646 /* async page fault always cause vmexit */
2647 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
2648 svm->apf_reason != 0)
2649 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2650 break;
2651 }
228070b1
JR
2652 case SVM_EXIT_ERR: {
2653 vmexit = NESTED_EXIT_DONE;
2654 break;
2655 }
cf74a78b
AG
2656 default: {
2657 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 2658 if (svm->nested.intercept & exit_bits)
410e4d57 2659 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
2660 }
2661 }
2662
b8e88bc8
JR
2663 return vmexit;
2664}
2665
2666static int nested_svm_exit_handled(struct vcpu_svm *svm)
2667{
2668 int vmexit;
2669
2670 vmexit = nested_svm_intercept(svm);
2671
2672 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 2673 nested_svm_vmexit(svm);
9c4e40b9
JR
2674
2675 return vmexit;
cf74a78b
AG
2676}
2677
0460a979
JR
2678static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
2679{
2680 struct vmcb_control_area *dst = &dst_vmcb->control;
2681 struct vmcb_control_area *from = &from_vmcb->control;
2682
4ee546b4 2683 dst->intercept_cr = from->intercept_cr;
3aed041a 2684 dst->intercept_dr = from->intercept_dr;
0460a979
JR
2685 dst->intercept_exceptions = from->intercept_exceptions;
2686 dst->intercept = from->intercept;
2687 dst->iopm_base_pa = from->iopm_base_pa;
2688 dst->msrpm_base_pa = from->msrpm_base_pa;
2689 dst->tsc_offset = from->tsc_offset;
2690 dst->asid = from->asid;
2691 dst->tlb_ctl = from->tlb_ctl;
2692 dst->int_ctl = from->int_ctl;
2693 dst->int_vector = from->int_vector;
2694 dst->int_state = from->int_state;
2695 dst->exit_code = from->exit_code;
2696 dst->exit_code_hi = from->exit_code_hi;
2697 dst->exit_info_1 = from->exit_info_1;
2698 dst->exit_info_2 = from->exit_info_2;
2699 dst->exit_int_info = from->exit_int_info;
2700 dst->exit_int_info_err = from->exit_int_info_err;
2701 dst->nested_ctl = from->nested_ctl;
2702 dst->event_inj = from->event_inj;
2703 dst->event_inj_err = from->event_inj_err;
2704 dst->nested_cr3 = from->nested_cr3;
2705 dst->lbr_ctl = from->lbr_ctl;
2706}
2707
34f80cfa 2708static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 2709{
34f80cfa 2710 struct vmcb *nested_vmcb;
e6aa9abd 2711 struct vmcb *hsave = svm->nested.hsave;
33740e40 2712 struct vmcb *vmcb = svm->vmcb;
7597f129 2713 struct page *page;
cf74a78b 2714
17897f36
JR
2715 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
2716 vmcb->control.exit_info_1,
2717 vmcb->control.exit_info_2,
2718 vmcb->control.exit_int_info,
e097e5ff
SH
2719 vmcb->control.exit_int_info_err,
2720 KVM_ISA_SVM);
17897f36 2721
7597f129 2722 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
34f80cfa
JR
2723 if (!nested_vmcb)
2724 return 1;
2725
2030753d
JR
2726 /* Exit Guest-Mode */
2727 leave_guest_mode(&svm->vcpu);
06fc7772
JR
2728 svm->nested.vmcb = 0;
2729
cf74a78b 2730 /* Give the current vmcb to the guest */
33740e40
JR
2731 disable_gif(svm);
2732
2733 nested_vmcb->save.es = vmcb->save.es;
2734 nested_vmcb->save.cs = vmcb->save.cs;
2735 nested_vmcb->save.ss = vmcb->save.ss;
2736 nested_vmcb->save.ds = vmcb->save.ds;
2737 nested_vmcb->save.gdtr = vmcb->save.gdtr;
2738 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 2739 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 2740 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 2741 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 2742 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 2743 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2744 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
2745 nested_vmcb->save.rip = vmcb->save.rip;
2746 nested_vmcb->save.rsp = vmcb->save.rsp;
2747 nested_vmcb->save.rax = vmcb->save.rax;
2748 nested_vmcb->save.dr7 = vmcb->save.dr7;
2749 nested_vmcb->save.dr6 = vmcb->save.dr6;
2750 nested_vmcb->save.cpl = vmcb->save.cpl;
2751
2752 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
2753 nested_vmcb->control.int_vector = vmcb->control.int_vector;
2754 nested_vmcb->control.int_state = vmcb->control.int_state;
2755 nested_vmcb->control.exit_code = vmcb->control.exit_code;
2756 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
2757 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
2758 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
2759 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
2760 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
6092d3d3
JR
2761
2762 if (svm->nrips_enabled)
2763 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
2764
2765 /*
2766 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
2767 * to make sure that we do not lose injected events. So check event_inj
2768 * here and copy it to exit_int_info if it is valid.
2769 * Exit_int_info and event_inj can't be both valid because the case
2770 * below only happens on a VMRUN instruction intercept which has
2771 * no valid exit_int_info set.
2772 */
2773 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
2774 struct vmcb_control_area *nc = &nested_vmcb->control;
2775
2776 nc->exit_int_info = vmcb->control.event_inj;
2777 nc->exit_int_info_err = vmcb->control.event_inj_err;
2778 }
2779
33740e40
JR
2780 nested_vmcb->control.tlb_ctl = 0;
2781 nested_vmcb->control.event_inj = 0;
2782 nested_vmcb->control.event_inj_err = 0;
cf74a78b
AG
2783
2784 /* We always set V_INTR_MASKING and remember the old value in hflags */
2785 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
2786 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
2787
cf74a78b 2788 /* Restore the original control entries */
0460a979 2789 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 2790
219b65dc
AG
2791 kvm_clear_exception_queue(&svm->vcpu);
2792 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 2793
4b16184c
JR
2794 svm->nested.nested_cr3 = 0;
2795
cf74a78b
AG
2796 /* Restore selected save entries */
2797 svm->vmcb->save.es = hsave->save.es;
2798 svm->vmcb->save.cs = hsave->save.cs;
2799 svm->vmcb->save.ss = hsave->save.ss;
2800 svm->vmcb->save.ds = hsave->save.ds;
2801 svm->vmcb->save.gdtr = hsave->save.gdtr;
2802 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 2803 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
2804 svm_set_efer(&svm->vcpu, hsave->save.efer);
2805 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
2806 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
2807 if (npt_enabled) {
2808 svm->vmcb->save.cr3 = hsave->save.cr3;
2809 svm->vcpu.arch.cr3 = hsave->save.cr3;
2810 } else {
2390218b 2811 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b
AG
2812 }
2813 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
2814 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
2815 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
2816 svm->vmcb->save.dr7 = 0;
2817 svm->vmcb->save.cpl = 0;
2818 svm->vmcb->control.exit_int_info = 0;
2819
8d28fec4
RJ
2820 mark_all_dirty(svm->vmcb);
2821
7597f129 2822 nested_svm_unmap(page);
cf74a78b 2823
4b16184c 2824 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
2825 kvm_mmu_reset_context(&svm->vcpu);
2826 kvm_mmu_load(&svm->vcpu);
2827
2828 return 0;
2829}
3d6368ef 2830
9738b2c9 2831static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 2832{
323c3d80
JR
2833 /*
2834 * This function merges the msr permission bitmaps of kvm and the
c5ec2e56 2835 * nested vmcb. It is optimized in that it only merges the parts where
323c3d80
JR
2836 * the kvm msr permission bitmap may contain zero bits
2837 */
3d6368ef 2838 int i;
9738b2c9 2839
323c3d80
JR
2840 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
2841 return true;
9738b2c9 2842
323c3d80
JR
2843 for (i = 0; i < MSRPM_OFFSETS; i++) {
2844 u32 value, p;
2845 u64 offset;
9738b2c9 2846
323c3d80
JR
2847 if (msrpm_offsets[i] == 0xffffffff)
2848 break;
3d6368ef 2849
0d6b3537
JR
2850 p = msrpm_offsets[i];
2851 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80 2852
54bf36aa 2853 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
323c3d80
JR
2854 return false;
2855
2856 svm->nested.msrpm[p] = svm->msrpm[p] | value;
2857 }
3d6368ef 2858
323c3d80 2859 svm->vmcb->control.msrpm_base_pa = __pa(svm->nested.msrpm);
9738b2c9
JR
2860
2861 return true;
3d6368ef
AG
2862}
2863
52c65a30
JR
2864static bool nested_vmcb_checks(struct vmcb *vmcb)
2865{
2866 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
2867 return false;
2868
dbe77584
JR
2869 if (vmcb->control.asid == 0)
2870 return false;
2871
4b16184c
JR
2872 if (vmcb->control.nested_ctl && !npt_enabled)
2873 return false;
2874
52c65a30
JR
2875 return true;
2876}
2877
9738b2c9 2878static bool nested_svm_vmrun(struct vcpu_svm *svm)
3d6368ef 2879{
9738b2c9 2880 struct vmcb *nested_vmcb;
e6aa9abd 2881 struct vmcb *hsave = svm->nested.hsave;
defbba56 2882 struct vmcb *vmcb = svm->vmcb;
7597f129 2883 struct page *page;
06fc7772 2884 u64 vmcb_gpa;
3d6368ef 2885
06fc7772 2886 vmcb_gpa = svm->vmcb->save.rax;
3d6368ef 2887
7597f129 2888 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9738b2c9
JR
2889 if (!nested_vmcb)
2890 return false;
2891
52c65a30
JR
2892 if (!nested_vmcb_checks(nested_vmcb)) {
2893 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
2894 nested_vmcb->control.exit_code_hi = 0;
2895 nested_vmcb->control.exit_info_1 = 0;
2896 nested_vmcb->control.exit_info_2 = 0;
2897
2898 nested_svm_unmap(page);
2899
2900 return false;
2901 }
2902
b75f4eb3 2903 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
0ac406de
JR
2904 nested_vmcb->save.rip,
2905 nested_vmcb->control.int_ctl,
2906 nested_vmcb->control.event_inj,
2907 nested_vmcb->control.nested_ctl);
2908
4ee546b4
RJ
2909 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
2910 nested_vmcb->control.intercept_cr >> 16,
2e554e8d
JR
2911 nested_vmcb->control.intercept_exceptions,
2912 nested_vmcb->control.intercept);
2913
3d6368ef 2914 /* Clear internal status */
219b65dc
AG
2915 kvm_clear_exception_queue(&svm->vcpu);
2916 kvm_clear_interrupt_queue(&svm->vcpu);
3d6368ef 2917
e0231715
JR
2918 /*
2919 * Save the old vmcb, so we don't need to pick what we save, but can
2920 * restore everything when a VMEXIT occurs
2921 */
defbba56
JR
2922 hsave->save.es = vmcb->save.es;
2923 hsave->save.cs = vmcb->save.cs;
2924 hsave->save.ss = vmcb->save.ss;
2925 hsave->save.ds = vmcb->save.ds;
2926 hsave->save.gdtr = vmcb->save.gdtr;
2927 hsave->save.idtr = vmcb->save.idtr;
f6801dff 2928 hsave->save.efer = svm->vcpu.arch.efer;
4d4ec087 2929 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
defbba56 2930 hsave->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 2931 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
b75f4eb3 2932 hsave->save.rip = kvm_rip_read(&svm->vcpu);
defbba56
JR
2933 hsave->save.rsp = vmcb->save.rsp;
2934 hsave->save.rax = vmcb->save.rax;
2935 if (npt_enabled)
2936 hsave->save.cr3 = vmcb->save.cr3;
2937 else
9f8fe504 2938 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
defbba56 2939
0460a979 2940 copy_vmcb_control_area(hsave, vmcb);
3d6368ef 2941
f6e78475 2942 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
2943 svm->vcpu.arch.hflags |= HF_HIF_MASK;
2944 else
2945 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
2946
4b16184c
JR
2947 if (nested_vmcb->control.nested_ctl) {
2948 kvm_mmu_unload(&svm->vcpu);
2949 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
2950 nested_svm_init_mmu_context(&svm->vcpu);
2951 }
2952
3d6368ef
AG
2953 /* Load the nested guest state */
2954 svm->vmcb->save.es = nested_vmcb->save.es;
2955 svm->vmcb->save.cs = nested_vmcb->save.cs;
2956 svm->vmcb->save.ss = nested_vmcb->save.ss;
2957 svm->vmcb->save.ds = nested_vmcb->save.ds;
2958 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
2959 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 2960 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
2961 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
2962 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
2963 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
2964 if (npt_enabled) {
2965 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
2966 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 2967 } else
2390218b 2968 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
2969
2970 /* Guest paging mode is active - reset mmu */
2971 kvm_mmu_reset_context(&svm->vcpu);
2972
defbba56 2973 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
3d6368ef
AG
2974 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
2975 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
2976 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
e0231715 2977
3d6368ef
AG
2978 /* In case we don't even reach vcpu_run, the fields are not updated */
2979 svm->vmcb->save.rax = nested_vmcb->save.rax;
2980 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
2981 svm->vmcb->save.rip = nested_vmcb->save.rip;
2982 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
2983 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
2984 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
2985
f7138538 2986 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 2987 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 2988
aad42c64 2989 /* cache intercepts */
4ee546b4 2990 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 2991 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
2992 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
2993 svm->nested.intercept = nested_vmcb->control.intercept;
2994
f40f6a45 2995 svm_flush_tlb(&svm->vcpu);
3d6368ef 2996 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
2997 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
2998 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
2999 else
3000 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3001
88ab24ad
JR
3002 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3003 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
3004 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3005 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
3006 }
3007
0d945bd9 3008 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 3009 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 3010
88ab24ad 3011 svm->vmcb->control.lbr_ctl = nested_vmcb->control.lbr_ctl;
3d6368ef
AG
3012 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3013 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3014 svm->vmcb->control.tsc_offset += nested_vmcb->control.tsc_offset;
3d6368ef
AG
3015 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3016 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3017
7597f129 3018 nested_svm_unmap(page);
9738b2c9 3019
2030753d
JR
3020 /* Enter Guest-Mode */
3021 enter_guest_mode(&svm->vcpu);
3022
384c6368
JR
3023 /*
3024 * Merge guest and host intercepts - must be called with vcpu in
3025 * guest-mode to take affect here
3026 */
3027 recalc_intercepts(svm);
3028
06fc7772 3029 svm->nested.vmcb = vmcb_gpa;
9738b2c9 3030
2af9194d 3031 enable_gif(svm);
3d6368ef 3032
8d28fec4
RJ
3033 mark_all_dirty(svm->vmcb);
3034
9738b2c9 3035 return true;
3d6368ef
AG
3036}
3037
9966bf68 3038static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
3039{
3040 to_vmcb->save.fs = from_vmcb->save.fs;
3041 to_vmcb->save.gs = from_vmcb->save.gs;
3042 to_vmcb->save.tr = from_vmcb->save.tr;
3043 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3044 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3045 to_vmcb->save.star = from_vmcb->save.star;
3046 to_vmcb->save.lstar = from_vmcb->save.lstar;
3047 to_vmcb->save.cstar = from_vmcb->save.cstar;
3048 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3049 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3050 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3051 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
3052}
3053
851ba692 3054static int vmload_interception(struct vcpu_svm *svm)
5542675b 3055{
9966bf68 3056 struct vmcb *nested_vmcb;
7597f129 3057 struct page *page;
9966bf68 3058
5542675b
AG
3059 if (nested_svm_check_permissions(svm))
3060 return 1;
3061
7597f129 3062 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3063 if (!nested_vmcb)
3064 return 1;
3065
e3e9ed3d
JR
3066 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3067 skip_emulated_instruction(&svm->vcpu);
3068
9966bf68 3069 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
7597f129 3070 nested_svm_unmap(page);
5542675b
AG
3071
3072 return 1;
3073}
3074
851ba692 3075static int vmsave_interception(struct vcpu_svm *svm)
5542675b 3076{
9966bf68 3077 struct vmcb *nested_vmcb;
7597f129 3078 struct page *page;
9966bf68 3079
5542675b
AG
3080 if (nested_svm_check_permissions(svm))
3081 return 1;
3082
7597f129 3083 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
9966bf68
JR
3084 if (!nested_vmcb)
3085 return 1;
3086
e3e9ed3d
JR
3087 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3088 skip_emulated_instruction(&svm->vcpu);
3089
9966bf68 3090 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
7597f129 3091 nested_svm_unmap(page);
5542675b
AG
3092
3093 return 1;
3094}
3095
851ba692 3096static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 3097{
3d6368ef
AG
3098 if (nested_svm_check_permissions(svm))
3099 return 1;
3100
b75f4eb3
RJ
3101 /* Save rip after vmrun instruction */
3102 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
3d6368ef 3103
9738b2c9 3104 if (!nested_svm_vmrun(svm))
3d6368ef
AG
3105 return 1;
3106
9738b2c9 3107 if (!nested_svm_vmrun_msrpm(svm))
1f8da478
JR
3108 goto failed;
3109
3110 return 1;
3111
3112failed:
3113
3114 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3115 svm->vmcb->control.exit_code_hi = 0;
3116 svm->vmcb->control.exit_info_1 = 0;
3117 svm->vmcb->control.exit_info_2 = 0;
3118
3119 nested_svm_vmexit(svm);
3d6368ef
AG
3120
3121 return 1;
3122}
3123
851ba692 3124static int stgi_interception(struct vcpu_svm *svm)
1371d904
AG
3125{
3126 if (nested_svm_check_permissions(svm))
3127 return 1;
3128
3129 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3130 skip_emulated_instruction(&svm->vcpu);
3842d135 3131 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 3132
2af9194d 3133 enable_gif(svm);
1371d904
AG
3134
3135 return 1;
3136}
3137
851ba692 3138static int clgi_interception(struct vcpu_svm *svm)
1371d904
AG
3139{
3140 if (nested_svm_check_permissions(svm))
3141 return 1;
3142
3143 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3144 skip_emulated_instruction(&svm->vcpu);
3145
2af9194d 3146 disable_gif(svm);
1371d904
AG
3147
3148 /* After a CLGI no interrupts should come */
340d3bc3
SS
3149 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3150 svm_clear_vintr(svm);
3151 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3152 mark_dirty(svm->vmcb, VMCB_INTR);
3153 }
decdbf6a 3154
1371d904
AG
3155 return 1;
3156}
3157
851ba692 3158static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
3159{
3160 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 3161
668f198f
DK
3162 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3163 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ec1ff790 3164
ff092385 3165 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
668f198f 3166 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
ff092385
AG
3167
3168 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3169 skip_emulated_instruction(&svm->vcpu);
3170 return 1;
3171}
3172
532a46b9
JR
3173static int skinit_interception(struct vcpu_svm *svm)
3174{
668f198f 3175 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
532a46b9
JR
3176
3177 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3178 return 1;
3179}
3180
dab429a7
DK
3181static int wbinvd_interception(struct vcpu_svm *svm)
3182{
6affcbed 3183 return kvm_emulate_wbinvd(&svm->vcpu);
dab429a7
DK
3184}
3185
81dd35d4
JR
3186static int xsetbv_interception(struct vcpu_svm *svm)
3187{
3188 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3189 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3190
3191 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3192 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
3193 skip_emulated_instruction(&svm->vcpu);
3194 }
3195
3196 return 1;
3197}
3198
851ba692 3199static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 3200{
37817f29 3201 u16 tss_selector;
64a7ec06
GN
3202 int reason;
3203 int int_type = svm->vmcb->control.exit_int_info &
3204 SVM_EXITINTINFO_TYPE_MASK;
8317c298 3205 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
3206 uint32_t type =
3207 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3208 uint32_t idt_v =
3209 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
3210 bool has_error_code = false;
3211 u32 error_code = 0;
37817f29
IE
3212
3213 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 3214
37817f29
IE
3215 if (svm->vmcb->control.exit_info_2 &
3216 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
3217 reason = TASK_SWITCH_IRET;
3218 else if (svm->vmcb->control.exit_info_2 &
3219 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3220 reason = TASK_SWITCH_JMP;
fe8e7f83 3221 else if (idt_v)
64a7ec06
GN
3222 reason = TASK_SWITCH_GATE;
3223 else
3224 reason = TASK_SWITCH_CALL;
3225
fe8e7f83
GN
3226 if (reason == TASK_SWITCH_GATE) {
3227 switch (type) {
3228 case SVM_EXITINTINFO_TYPE_NMI:
3229 svm->vcpu.arch.nmi_injected = false;
3230 break;
3231 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
3232 if (svm->vmcb->control.exit_info_2 &
3233 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3234 has_error_code = true;
3235 error_code =
3236 (u32)svm->vmcb->control.exit_info_2;
3237 }
fe8e7f83
GN
3238 kvm_clear_exception_queue(&svm->vcpu);
3239 break;
3240 case SVM_EXITINTINFO_TYPE_INTR:
3241 kvm_clear_interrupt_queue(&svm->vcpu);
3242 break;
3243 default:
3244 break;
3245 }
3246 }
64a7ec06 3247
8317c298
GN
3248 if (reason != TASK_SWITCH_GATE ||
3249 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3250 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f629cf84
GN
3251 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3252 skip_emulated_instruction(&svm->vcpu);
64a7ec06 3253
7f3d35fd
KW
3254 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3255 int_vec = -1;
3256
3257 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
acb54517
GN
3258 has_error_code, error_code) == EMULATE_FAIL) {
3259 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3260 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3261 svm->vcpu.run->internal.ndata = 0;
3262 return 0;
3263 }
3264 return 1;
6aa8b732
AK
3265}
3266
851ba692 3267static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 3268{
5fdbf976 3269 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
6a908b62 3270 return kvm_emulate_cpuid(&svm->vcpu);
6aa8b732
AK
3271}
3272
851ba692 3273static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
3274{
3275 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 3276 clr_intercept(svm, INTERCEPT_IRET);
44c11430 3277 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 3278 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
f303b4ce 3279 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
95ba8273
GN
3280 return 1;
3281}
3282
851ba692 3283static int invlpg_interception(struct vcpu_svm *svm)
a7052897 3284{
df4f3108
AP
3285 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3286 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
3287
3288 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
3289 skip_emulated_instruction(&svm->vcpu);
3290 return 1;
a7052897
MT
3291}
3292
851ba692 3293static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 3294{
51d8b661 3295 return emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
6aa8b732
AK
3296}
3297
332b56e4
AK
3298static int rdpmc_interception(struct vcpu_svm *svm)
3299{
3300 int err;
3301
3302 if (!static_cpu_has(X86_FEATURE_NRIPS))
3303 return emulate_on_interception(svm);
3304
3305 err = kvm_rdpmc(&svm->vcpu);
6affcbed 3306 return kvm_complete_insn_gp(&svm->vcpu, err);
332b56e4
AK
3307}
3308
52eb5a6d
XL
3309static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3310 unsigned long val)
628afd2a
JR
3311{
3312 unsigned long cr0 = svm->vcpu.arch.cr0;
3313 bool ret = false;
3314 u64 intercept;
3315
3316 intercept = svm->nested.intercept;
3317
3318 if (!is_guest_mode(&svm->vcpu) ||
3319 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3320 return false;
3321
3322 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3323 val &= ~SVM_CR0_SELECTIVE_MASK;
3324
3325 if (cr0 ^ val) {
3326 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3327 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3328 }
3329
3330 return ret;
3331}
3332
7ff76d58
AP
3333#define CR_VALID (1ULL << 63)
3334
3335static int cr_interception(struct vcpu_svm *svm)
3336{
3337 int reg, cr;
3338 unsigned long val;
3339 int err;
3340
3341 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3342 return emulate_on_interception(svm);
3343
3344 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3345 return emulate_on_interception(svm);
3346
3347 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
5e57518d
DK
3348 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3349 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3350 else
3351 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
7ff76d58
AP
3352
3353 err = 0;
3354 if (cr >= 16) { /* mov to cr */
3355 cr -= 16;
3356 val = kvm_register_read(&svm->vcpu, reg);
3357 switch (cr) {
3358 case 0:
628afd2a
JR
3359 if (!check_selective_cr0_intercepted(svm, val))
3360 err = kvm_set_cr0(&svm->vcpu, val);
977b2d03
JR
3361 else
3362 return 1;
3363
7ff76d58
AP
3364 break;
3365 case 3:
3366 err = kvm_set_cr3(&svm->vcpu, val);
3367 break;
3368 case 4:
3369 err = kvm_set_cr4(&svm->vcpu, val);
3370 break;
3371 case 8:
3372 err = kvm_set_cr8(&svm->vcpu, val);
3373 break;
3374 default:
3375 WARN(1, "unhandled write to CR%d", cr);
3376 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3377 return 1;
3378 }
3379 } else { /* mov from cr */
3380 switch (cr) {
3381 case 0:
3382 val = kvm_read_cr0(&svm->vcpu);
3383 break;
3384 case 2:
3385 val = svm->vcpu.arch.cr2;
3386 break;
3387 case 3:
9f8fe504 3388 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
3389 break;
3390 case 4:
3391 val = kvm_read_cr4(&svm->vcpu);
3392 break;
3393 case 8:
3394 val = kvm_get_cr8(&svm->vcpu);
3395 break;
3396 default:
3397 WARN(1, "unhandled read from CR%d", cr);
3398 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3399 return 1;
3400 }
3401 kvm_register_write(&svm->vcpu, reg, val);
3402 }
6affcbed 3403 return kvm_complete_insn_gp(&svm->vcpu, err);
7ff76d58
AP
3404}
3405
cae3797a
AP
3406static int dr_interception(struct vcpu_svm *svm)
3407{
3408 int reg, dr;
3409 unsigned long val;
cae3797a 3410
facb0139
PB
3411 if (svm->vcpu.guest_debug == 0) {
3412 /*
3413 * No more DR vmexits; force a reload of the debug registers
3414 * and reenter on this instruction. The next vmexit will
3415 * retrieve the full state of the debug registers.
3416 */
3417 clr_dr_intercepts(svm);
3418 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
3419 return 1;
3420 }
3421
cae3797a
AP
3422 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
3423 return emulate_on_interception(svm);
3424
3425 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
3426 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
3427
3428 if (dr >= 16) { /* mov to DRn */
16f8a6f9
NA
3429 if (!kvm_require_dr(&svm->vcpu, dr - 16))
3430 return 1;
cae3797a
AP
3431 val = kvm_register_read(&svm->vcpu, reg);
3432 kvm_set_dr(&svm->vcpu, dr - 16, val);
3433 } else {
16f8a6f9
NA
3434 if (!kvm_require_dr(&svm->vcpu, dr))
3435 return 1;
3436 kvm_get_dr(&svm->vcpu, dr, &val);
3437 kvm_register_write(&svm->vcpu, reg, val);
cae3797a
AP
3438 }
3439
2c46d2ae
JR
3440 skip_emulated_instruction(&svm->vcpu);
3441
cae3797a
AP
3442 return 1;
3443}
3444
851ba692 3445static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 3446{
851ba692 3447 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 3448 int r;
851ba692 3449
0a5fff19
GN
3450 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
3451 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 3452 r = cr_interception(svm);
35754c98 3453 if (lapic_in_kernel(&svm->vcpu))
7ff76d58 3454 return r;
0a5fff19 3455 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 3456 return r;
1d075434
JR
3457 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
3458 return 0;
3459}
3460
609e36d3 3461static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
6aa8b732 3462{
a2fa3e9f
GH
3463 struct vcpu_svm *svm = to_svm(vcpu);
3464
609e36d3 3465 switch (msr_info->index) {
af24a4e4 3466 case MSR_IA32_TSC: {
609e36d3 3467 msr_info->data = svm->vmcb->control.tsc_offset +
35181e86 3468 kvm_scale_tsc(vcpu, rdtsc());
fbc0db76 3469
6aa8b732
AK
3470 break;
3471 }
8c06585d 3472 case MSR_STAR:
609e36d3 3473 msr_info->data = svm->vmcb->save.star;
6aa8b732 3474 break;
0e859cac 3475#ifdef CONFIG_X86_64
6aa8b732 3476 case MSR_LSTAR:
609e36d3 3477 msr_info->data = svm->vmcb->save.lstar;
6aa8b732
AK
3478 break;
3479 case MSR_CSTAR:
609e36d3 3480 msr_info->data = svm->vmcb->save.cstar;
6aa8b732
AK
3481 break;
3482 case MSR_KERNEL_GS_BASE:
609e36d3 3483 msr_info->data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
3484 break;
3485 case MSR_SYSCALL_MASK:
609e36d3 3486 msr_info->data = svm->vmcb->save.sfmask;
6aa8b732
AK
3487 break;
3488#endif
3489 case MSR_IA32_SYSENTER_CS:
609e36d3 3490 msr_info->data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
3491 break;
3492 case MSR_IA32_SYSENTER_EIP:
609e36d3 3493 msr_info->data = svm->sysenter_eip;
6aa8b732
AK
3494 break;
3495 case MSR_IA32_SYSENTER_ESP:
609e36d3 3496 msr_info->data = svm->sysenter_esp;
6aa8b732 3497 break;
46896c73
PB
3498 case MSR_TSC_AUX:
3499 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3500 return 1;
3501 msr_info->data = svm->tsc_aux;
3502 break;
e0231715
JR
3503 /*
3504 * Nobody will change the following 5 values in the VMCB so we can
3505 * safely return them on rdmsr. They will always be 0 until LBRV is
3506 * implemented.
3507 */
a2938c80 3508 case MSR_IA32_DEBUGCTLMSR:
609e36d3 3509 msr_info->data = svm->vmcb->save.dbgctl;
a2938c80
JR
3510 break;
3511 case MSR_IA32_LASTBRANCHFROMIP:
609e36d3 3512 msr_info->data = svm->vmcb->save.br_from;
a2938c80
JR
3513 break;
3514 case MSR_IA32_LASTBRANCHTOIP:
609e36d3 3515 msr_info->data = svm->vmcb->save.br_to;
a2938c80
JR
3516 break;
3517 case MSR_IA32_LASTINTFROMIP:
609e36d3 3518 msr_info->data = svm->vmcb->save.last_excp_from;
a2938c80
JR
3519 break;
3520 case MSR_IA32_LASTINTTOIP:
609e36d3 3521 msr_info->data = svm->vmcb->save.last_excp_to;
a2938c80 3522 break;
b286d5d8 3523 case MSR_VM_HSAVE_PA:
609e36d3 3524 msr_info->data = svm->nested.hsave_msr;
b286d5d8 3525 break;
eb6f302e 3526 case MSR_VM_CR:
609e36d3 3527 msr_info->data = svm->nested.vm_cr_msr;
eb6f302e 3528 break;
c8a73f18 3529 case MSR_IA32_UCODE_REV:
609e36d3 3530 msr_info->data = 0x01000065;
c8a73f18 3531 break;
ae8b7875
BP
3532 case MSR_F15H_IC_CFG: {
3533
3534 int family, model;
3535
3536 family = guest_cpuid_family(vcpu);
3537 model = guest_cpuid_model(vcpu);
3538
3539 if (family < 0 || model < 0)
3540 return kvm_get_msr_common(vcpu, msr_info);
3541
3542 msr_info->data = 0;
3543
3544 if (family == 0x15 &&
3545 (model >= 0x2 && model < 0x20))
3546 msr_info->data = 0x1E;
3547 }
3548 break;
6aa8b732 3549 default:
609e36d3 3550 return kvm_get_msr_common(vcpu, msr_info);
6aa8b732
AK
3551 }
3552 return 0;
3553}
3554
851ba692 3555static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 3556{
668f198f 3557 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
609e36d3 3558 struct msr_data msr_info;
6aa8b732 3559
609e36d3
PB
3560 msr_info.index = ecx;
3561 msr_info.host_initiated = false;
3562 if (svm_get_msr(&svm->vcpu, &msr_info)) {
59200273 3563 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 3564 kvm_inject_gp(&svm->vcpu, 0);
59200273 3565 } else {
609e36d3 3566 trace_kvm_msr_read(ecx, msr_info.data);
af9ca2d7 3567
609e36d3
PB
3568 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
3569 msr_info.data & 0xffffffff);
3570 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
3571 msr_info.data >> 32);
5fdbf976 3572 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 3573 skip_emulated_instruction(&svm->vcpu);
6aa8b732
AK
3574 }
3575 return 1;
3576}
3577
4a810181
JR
3578static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
3579{
3580 struct vcpu_svm *svm = to_svm(vcpu);
3581 int svm_dis, chg_mask;
3582
3583 if (data & ~SVM_VM_CR_VALID_MASK)
3584 return 1;
3585
3586 chg_mask = SVM_VM_CR_VALID_MASK;
3587
3588 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
3589 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
3590
3591 svm->nested.vm_cr_msr &= ~chg_mask;
3592 svm->nested.vm_cr_msr |= (data & chg_mask);
3593
3594 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
3595
3596 /* check for svm_disable while efer.svme is set */
3597 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
3598 return 1;
3599
3600 return 0;
3601}
3602
8fe8ab46 3603static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
6aa8b732 3604{
a2fa3e9f
GH
3605 struct vcpu_svm *svm = to_svm(vcpu);
3606
8fe8ab46
WA
3607 u32 ecx = msr->index;
3608 u64 data = msr->data;
6aa8b732 3609 switch (ecx) {
f4e1b3c8 3610 case MSR_IA32_TSC:
8fe8ab46 3611 kvm_write_tsc(vcpu, msr);
6aa8b732 3612 break;
8c06585d 3613 case MSR_STAR:
a2fa3e9f 3614 svm->vmcb->save.star = data;
6aa8b732 3615 break;
49b14f24 3616#ifdef CONFIG_X86_64
6aa8b732 3617 case MSR_LSTAR:
a2fa3e9f 3618 svm->vmcb->save.lstar = data;
6aa8b732
AK
3619 break;
3620 case MSR_CSTAR:
a2fa3e9f 3621 svm->vmcb->save.cstar = data;
6aa8b732
AK
3622 break;
3623 case MSR_KERNEL_GS_BASE:
a2fa3e9f 3624 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
3625 break;
3626 case MSR_SYSCALL_MASK:
a2fa3e9f 3627 svm->vmcb->save.sfmask = data;
6aa8b732
AK
3628 break;
3629#endif
3630 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 3631 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
3632 break;
3633 case MSR_IA32_SYSENTER_EIP:
017cb99e 3634 svm->sysenter_eip = data;
a2fa3e9f 3635 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
3636 break;
3637 case MSR_IA32_SYSENTER_ESP:
017cb99e 3638 svm->sysenter_esp = data;
a2fa3e9f 3639 svm->vmcb->save.sysenter_esp = data;
6aa8b732 3640 break;
46896c73
PB
3641 case MSR_TSC_AUX:
3642 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
3643 return 1;
3644
3645 /*
3646 * This is rare, so we update the MSR here instead of using
3647 * direct_access_msrs. Doing that would require a rdmsr in
3648 * svm_vcpu_put.
3649 */
3650 svm->tsc_aux = data;
3651 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
3652 break;
a2938c80 3653 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 3654 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
a737f256
CD
3655 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
3656 __func__, data);
24e09cbf
JR
3657 break;
3658 }
3659 if (data & DEBUGCTL_RESERVED_BITS)
3660 return 1;
3661
3662 svm->vmcb->save.dbgctl = data;
b53ba3f9 3663 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
3664 if (data & (1ULL<<0))
3665 svm_enable_lbrv(svm);
3666 else
3667 svm_disable_lbrv(svm);
a2938c80 3668 break;
b286d5d8 3669 case MSR_VM_HSAVE_PA:
e6aa9abd 3670 svm->nested.hsave_msr = data;
62b9abaa 3671 break;
3c5d0a44 3672 case MSR_VM_CR:
4a810181 3673 return svm_set_vm_cr(vcpu, data);
3c5d0a44 3674 case MSR_VM_IGNNE:
a737f256 3675 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
3c5d0a44 3676 break;
44a95dae
SS
3677 case MSR_IA32_APICBASE:
3678 if (kvm_vcpu_apicv_active(vcpu))
3679 avic_update_vapic_bar(to_svm(vcpu), data);
3680 /* Follow through */
6aa8b732 3681 default:
8fe8ab46 3682 return kvm_set_msr_common(vcpu, msr);
6aa8b732
AK
3683 }
3684 return 0;
3685}
3686
851ba692 3687static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 3688{
8fe8ab46 3689 struct msr_data msr;
668f198f
DK
3690 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3691 u64 data = kvm_read_edx_eax(&svm->vcpu);
af9ca2d7 3692
8fe8ab46
WA
3693 msr.data = data;
3694 msr.index = ecx;
3695 msr.host_initiated = false;
af9ca2d7 3696
5fdbf976 3697 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
854e8bb1 3698 if (kvm_set_msr(&svm->vcpu, &msr)) {
59200273 3699 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 3700 kvm_inject_gp(&svm->vcpu, 0);
59200273
AK
3701 } else {
3702 trace_kvm_msr_write(ecx, data);
e756fc62 3703 skip_emulated_instruction(&svm->vcpu);
59200273 3704 }
6aa8b732
AK
3705 return 1;
3706}
3707
851ba692 3708static int msr_interception(struct vcpu_svm *svm)
6aa8b732 3709{
e756fc62 3710 if (svm->vmcb->control.exit_info_1)
851ba692 3711 return wrmsr_interception(svm);
6aa8b732 3712 else
851ba692 3713 return rdmsr_interception(svm);
6aa8b732
AK
3714}
3715
851ba692 3716static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 3717{
3842d135 3718 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 3719 svm_clear_vintr(svm);
85f455f7 3720 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 3721 mark_dirty(svm->vmcb, VMCB_INTR);
675acb75 3722 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
3723 return 1;
3724}
3725
565d0998
ML
3726static int pause_interception(struct vcpu_svm *svm)
3727{
3728 kvm_vcpu_on_spin(&(svm->vcpu));
3729 return 1;
3730}
3731
87c00572
GS
3732static int nop_interception(struct vcpu_svm *svm)
3733{
3734 skip_emulated_instruction(&(svm->vcpu));
3735 return 1;
3736}
3737
3738static int monitor_interception(struct vcpu_svm *svm)
3739{
3740 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
3741 return nop_interception(svm);
3742}
3743
3744static int mwait_interception(struct vcpu_svm *svm)
3745{
3746 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
3747 return nop_interception(svm);
3748}
3749
18f40c53
SS
3750enum avic_ipi_failure_cause {
3751 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
3752 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
3753 AVIC_IPI_FAILURE_INVALID_TARGET,
3754 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
3755};
3756
3757static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
3758{
3759 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
3760 u32 icrl = svm->vmcb->control.exit_info_1;
3761 u32 id = svm->vmcb->control.exit_info_2 >> 32;
5446a979 3762 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
18f40c53
SS
3763 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3764
3765 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
3766
3767 switch (id) {
3768 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
3769 /*
3770 * AVIC hardware handles the generation of
3771 * IPIs when the specified Message Type is Fixed
3772 * (also known as fixed delivery mode) and
3773 * the Trigger Mode is edge-triggered. The hardware
3774 * also supports self and broadcast delivery modes
3775 * specified via the Destination Shorthand(DSH)
3776 * field of the ICRL. Logical and physical APIC ID
3777 * formats are supported. All other IPI types cause
3778 * a #VMEXIT, which needs to emulated.
3779 */
3780 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
3781 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
3782 break;
3783 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
3784 int i;
3785 struct kvm_vcpu *vcpu;
3786 struct kvm *kvm = svm->vcpu.kvm;
3787 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3788
3789 /*
3790 * At this point, we expect that the AVIC HW has already
3791 * set the appropriate IRR bits on the valid target
3792 * vcpus. So, we just need to kick the appropriate vcpu.
3793 */
3794 kvm_for_each_vcpu(i, vcpu, kvm) {
3795 bool m = kvm_apic_match_dest(vcpu, apic,
3796 icrl & KVM_APIC_SHORT_MASK,
3797 GET_APIC_DEST_FIELD(icrh),
3798 icrl & KVM_APIC_DEST_MASK);
3799
3800 if (m && !avic_vcpu_is_running(vcpu))
3801 kvm_vcpu_wake_up(vcpu);
3802 }
3803 break;
3804 }
3805 case AVIC_IPI_FAILURE_INVALID_TARGET:
3806 break;
3807 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
3808 WARN_ONCE(1, "Invalid backing page\n");
3809 break;
3810 default:
3811 pr_err("Unknown IPI interception\n");
3812 }
3813
3814 return 1;
3815}
3816
3817static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
3818{
3819 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3820 int index;
3821 u32 *logical_apic_id_table;
3822 int dlid = GET_APIC_LOGICAL_ID(ldr);
3823
3824 if (!dlid)
3825 return NULL;
3826
3827 if (flat) { /* flat */
3828 index = ffs(dlid) - 1;
3829 if (index > 7)
3830 return NULL;
3831 } else { /* cluster */
3832 int cluster = (dlid & 0xf0) >> 4;
3833 int apic = ffs(dlid & 0x0f) - 1;
3834
3835 if ((apic < 0) || (apic > 7) ||
3836 (cluster >= 0xf))
3837 return NULL;
3838 index = (cluster << 2) + apic;
3839 }
3840
3841 logical_apic_id_table = (u32 *) page_address(vm_data->avic_logical_id_table_page);
3842
3843 return &logical_apic_id_table[index];
3844}
3845
3846static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
3847 bool valid)
3848{
3849 bool flat;
3850 u32 *entry, new_entry;
3851
3852 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
3853 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
3854 if (!entry)
3855 return -EINVAL;
3856
3857 new_entry = READ_ONCE(*entry);
3858 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
3859 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
3860 if (valid)
3861 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3862 else
3863 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
3864 WRITE_ONCE(*entry, new_entry);
3865
3866 return 0;
3867}
3868
3869static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
3870{
3871 int ret;
3872 struct vcpu_svm *svm = to_svm(vcpu);
3873 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
3874
3875 if (!ldr)
3876 return 1;
3877
3878 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
3879 if (ret && svm->ldr_reg) {
3880 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
3881 svm->ldr_reg = 0;
3882 } else {
3883 svm->ldr_reg = ldr;
3884 }
3885 return ret;
3886}
3887
3888static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
3889{
3890 u64 *old, *new;
3891 struct vcpu_svm *svm = to_svm(vcpu);
3892 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
3893 u32 id = (apic_id_reg >> 24) & 0xff;
3894
3895 if (vcpu->vcpu_id == id)
3896 return 0;
3897
3898 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
3899 new = avic_get_physical_id_entry(vcpu, id);
3900 if (!new || !old)
3901 return 1;
3902
3903 /* We need to move physical_id_entry to new offset */
3904 *new = *old;
3905 *old = 0ULL;
3906 to_svm(vcpu)->avic_physical_id_cache = new;
3907
3908 /*
3909 * Also update the guest physical APIC ID in the logical
3910 * APIC ID table entry if already setup the LDR.
3911 */
3912 if (svm->ldr_reg)
3913 avic_handle_ldr_update(vcpu);
3914
3915 return 0;
3916}
3917
3918static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
3919{
3920 struct vcpu_svm *svm = to_svm(vcpu);
3921 struct kvm_arch *vm_data = &vcpu->kvm->arch;
3922 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
3923 u32 mod = (dfr >> 28) & 0xf;
3924
3925 /*
3926 * We assume that all local APICs are using the same type.
3927 * If this changes, we need to flush the AVIC logical
3928 * APID id table.
3929 */
3930 if (vm_data->ldr_mode == mod)
3931 return 0;
3932
3933 clear_page(page_address(vm_data->avic_logical_id_table_page));
3934 vm_data->ldr_mode = mod;
3935
3936 if (svm->ldr_reg)
3937 avic_handle_ldr_update(vcpu);
3938 return 0;
3939}
3940
3941static int avic_unaccel_trap_write(struct vcpu_svm *svm)
3942{
3943 struct kvm_lapic *apic = svm->vcpu.arch.apic;
3944 u32 offset = svm->vmcb->control.exit_info_1 &
3945 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
3946
3947 switch (offset) {
3948 case APIC_ID:
3949 if (avic_handle_apic_id_update(&svm->vcpu))
3950 return 0;
3951 break;
3952 case APIC_LDR:
3953 if (avic_handle_ldr_update(&svm->vcpu))
3954 return 0;
3955 break;
3956 case APIC_DFR:
3957 avic_handle_dfr_update(&svm->vcpu);
3958 break;
3959 default:
3960 break;
3961 }
3962
3963 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
3964
3965 return 1;
3966}
3967
3968static bool is_avic_unaccelerated_access_trap(u32 offset)
3969{
3970 bool ret = false;
3971
3972 switch (offset) {
3973 case APIC_ID:
3974 case APIC_EOI:
3975 case APIC_RRR:
3976 case APIC_LDR:
3977 case APIC_DFR:
3978 case APIC_SPIV:
3979 case APIC_ESR:
3980 case APIC_ICR:
3981 case APIC_LVTT:
3982 case APIC_LVTTHMR:
3983 case APIC_LVTPC:
3984 case APIC_LVT0:
3985 case APIC_LVT1:
3986 case APIC_LVTERR:
3987 case APIC_TMICT:
3988 case APIC_TDCR:
3989 ret = true;
3990 break;
3991 default:
3992 break;
3993 }
3994 return ret;
3995}
3996
3997static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
3998{
3999 int ret = 0;
4000 u32 offset = svm->vmcb->control.exit_info_1 &
4001 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4002 u32 vector = svm->vmcb->control.exit_info_2 &
4003 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4004 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4005 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4006 bool trap = is_avic_unaccelerated_access_trap(offset);
4007
4008 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4009 trap, write, vector);
4010 if (trap) {
4011 /* Handling Trap */
4012 WARN_ONCE(!write, "svm: Handling trap read.\n");
4013 ret = avic_unaccel_trap_write(svm);
4014 } else {
4015 /* Handling Fault */
4016 ret = (emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
4017 }
4018
4019 return ret;
4020}
4021
09941fbb 4022static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
4023 [SVM_EXIT_READ_CR0] = cr_interception,
4024 [SVM_EXIT_READ_CR3] = cr_interception,
4025 [SVM_EXIT_READ_CR4] = cr_interception,
4026 [SVM_EXIT_READ_CR8] = cr_interception,
5e57518d 4027 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
628afd2a 4028 [SVM_EXIT_WRITE_CR0] = cr_interception,
7ff76d58
AP
4029 [SVM_EXIT_WRITE_CR3] = cr_interception,
4030 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 4031 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
4032 [SVM_EXIT_READ_DR0] = dr_interception,
4033 [SVM_EXIT_READ_DR1] = dr_interception,
4034 [SVM_EXIT_READ_DR2] = dr_interception,
4035 [SVM_EXIT_READ_DR3] = dr_interception,
4036 [SVM_EXIT_READ_DR4] = dr_interception,
4037 [SVM_EXIT_READ_DR5] = dr_interception,
4038 [SVM_EXIT_READ_DR6] = dr_interception,
4039 [SVM_EXIT_READ_DR7] = dr_interception,
4040 [SVM_EXIT_WRITE_DR0] = dr_interception,
4041 [SVM_EXIT_WRITE_DR1] = dr_interception,
4042 [SVM_EXIT_WRITE_DR2] = dr_interception,
4043 [SVM_EXIT_WRITE_DR3] = dr_interception,
4044 [SVM_EXIT_WRITE_DR4] = dr_interception,
4045 [SVM_EXIT_WRITE_DR5] = dr_interception,
4046 [SVM_EXIT_WRITE_DR6] = dr_interception,
4047 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
4048 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4049 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 4050 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715 4051 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
e0231715 4052 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
54a20552 4053 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
e0231715 4054 [SVM_EXIT_INTR] = intr_interception,
c47f098d 4055 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
4056 [SVM_EXIT_SMI] = nop_on_interception,
4057 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 4058 [SVM_EXIT_VINTR] = interrupt_window_interception,
332b56e4 4059 [SVM_EXIT_RDPMC] = rdpmc_interception,
6aa8b732 4060 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 4061 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 4062 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 4063 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 4064 [SVM_EXIT_HLT] = halt_interception,
a7052897 4065 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 4066 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 4067 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
4068 [SVM_EXIT_MSR] = msr_interception,
4069 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 4070 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 4071 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 4072 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
4073 [SVM_EXIT_VMLOAD] = vmload_interception,
4074 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
4075 [SVM_EXIT_STGI] = stgi_interception,
4076 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 4077 [SVM_EXIT_SKINIT] = skinit_interception,
dab429a7 4078 [SVM_EXIT_WBINVD] = wbinvd_interception,
87c00572
GS
4079 [SVM_EXIT_MONITOR] = monitor_interception,
4080 [SVM_EXIT_MWAIT] = mwait_interception,
81dd35d4 4081 [SVM_EXIT_XSETBV] = xsetbv_interception,
709ddebf 4082 [SVM_EXIT_NPF] = pf_interception,
64d60670 4083 [SVM_EXIT_RSM] = emulate_on_interception,
18f40c53
SS
4084 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4085 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
6aa8b732
AK
4086};
4087
ae8cc059 4088static void dump_vmcb(struct kvm_vcpu *vcpu)
3f10c846
JR
4089{
4090 struct vcpu_svm *svm = to_svm(vcpu);
4091 struct vmcb_control_area *control = &svm->vmcb->control;
4092 struct vmcb_save_area *save = &svm->vmcb->save;
4093
4094 pr_err("VMCB Control Area:\n");
ae8cc059
JP
4095 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4096 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4097 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4098 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4099 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4100 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4101 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
4102 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4103 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4104 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4105 pr_err("%-20s%d\n", "asid:", control->asid);
4106 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4107 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4108 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4109 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4110 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4111 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4112 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4113 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4114 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4115 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4116 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
44a95dae 4117 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
ae8cc059
JP
4118 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4119 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
4120 pr_err("%-20s%lld\n", "lbr_ctl:", control->lbr_ctl);
4121 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
44a95dae
SS
4122 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4123 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4124 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
3f10c846 4125 pr_err("VMCB State Save Area:\n");
ae8cc059
JP
4126 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4127 "es:",
4128 save->es.selector, save->es.attrib,
4129 save->es.limit, save->es.base);
4130 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4131 "cs:",
4132 save->cs.selector, save->cs.attrib,
4133 save->cs.limit, save->cs.base);
4134 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4135 "ss:",
4136 save->ss.selector, save->ss.attrib,
4137 save->ss.limit, save->ss.base);
4138 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4139 "ds:",
4140 save->ds.selector, save->ds.attrib,
4141 save->ds.limit, save->ds.base);
4142 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4143 "fs:",
4144 save->fs.selector, save->fs.attrib,
4145 save->fs.limit, save->fs.base);
4146 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4147 "gs:",
4148 save->gs.selector, save->gs.attrib,
4149 save->gs.limit, save->gs.base);
4150 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4151 "gdtr:",
4152 save->gdtr.selector, save->gdtr.attrib,
4153 save->gdtr.limit, save->gdtr.base);
4154 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4155 "ldtr:",
4156 save->ldtr.selector, save->ldtr.attrib,
4157 save->ldtr.limit, save->ldtr.base);
4158 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4159 "idtr:",
4160 save->idtr.selector, save->idtr.attrib,
4161 save->idtr.limit, save->idtr.base);
4162 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4163 "tr:",
4164 save->tr.selector, save->tr.attrib,
4165 save->tr.limit, save->tr.base);
3f10c846
JR
4166 pr_err("cpl: %d efer: %016llx\n",
4167 save->cpl, save->efer);
ae8cc059
JP
4168 pr_err("%-15s %016llx %-13s %016llx\n",
4169 "cr0:", save->cr0, "cr2:", save->cr2);
4170 pr_err("%-15s %016llx %-13s %016llx\n",
4171 "cr3:", save->cr3, "cr4:", save->cr4);
4172 pr_err("%-15s %016llx %-13s %016llx\n",
4173 "dr6:", save->dr6, "dr7:", save->dr7);
4174 pr_err("%-15s %016llx %-13s %016llx\n",
4175 "rip:", save->rip, "rflags:", save->rflags);
4176 pr_err("%-15s %016llx %-13s %016llx\n",
4177 "rsp:", save->rsp, "rax:", save->rax);
4178 pr_err("%-15s %016llx %-13s %016llx\n",
4179 "star:", save->star, "lstar:", save->lstar);
4180 pr_err("%-15s %016llx %-13s %016llx\n",
4181 "cstar:", save->cstar, "sfmask:", save->sfmask);
4182 pr_err("%-15s %016llx %-13s %016llx\n",
4183 "kernel_gs_base:", save->kernel_gs_base,
4184 "sysenter_cs:", save->sysenter_cs);
4185 pr_err("%-15s %016llx %-13s %016llx\n",
4186 "sysenter_esp:", save->sysenter_esp,
4187 "sysenter_eip:", save->sysenter_eip);
4188 pr_err("%-15s %016llx %-13s %016llx\n",
4189 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4190 pr_err("%-15s %016llx %-13s %016llx\n",
4191 "br_from:", save->br_from, "br_to:", save->br_to);
4192 pr_err("%-15s %016llx %-13s %016llx\n",
4193 "excp_from:", save->last_excp_from,
4194 "excp_to:", save->last_excp_to);
3f10c846
JR
4195}
4196
586f9607
AK
4197static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4198{
4199 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4200
4201 *info1 = control->exit_info_1;
4202 *info2 = control->exit_info_2;
4203}
4204
851ba692 4205static int handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 4206{
04d2cc77 4207 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 4208 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 4209 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 4210
8b89fe1f
PB
4211 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4212
0f89b207
TL
4213 vcpu->arch.gpa_available = (exit_code == SVM_EXIT_NPF);
4214
4ee546b4 4215 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
4216 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4217 if (npt_enabled)
4218 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 4219
cd3ff653
JR
4220 if (unlikely(svm->nested.exit_required)) {
4221 nested_svm_vmexit(svm);
4222 svm->nested.exit_required = false;
4223
4224 return 1;
4225 }
4226
2030753d 4227 if (is_guest_mode(vcpu)) {
410e4d57
JR
4228 int vmexit;
4229
d8cabddf
JR
4230 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4231 svm->vmcb->control.exit_info_1,
4232 svm->vmcb->control.exit_info_2,
4233 svm->vmcb->control.exit_int_info,
e097e5ff
SH
4234 svm->vmcb->control.exit_int_info_err,
4235 KVM_ISA_SVM);
d8cabddf 4236
410e4d57
JR
4237 vmexit = nested_svm_exit_special(svm);
4238
4239 if (vmexit == NESTED_EXIT_CONTINUE)
4240 vmexit = nested_svm_exit_handled(svm);
4241
4242 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 4243 return 1;
cf74a78b
AG
4244 }
4245
a5c3832d
JR
4246 svm_complete_interrupts(svm);
4247
04d2cc77
AK
4248 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4249 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4250 kvm_run->fail_entry.hardware_entry_failure_reason
4251 = svm->vmcb->control.exit_code;
3f10c846
JR
4252 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4253 dump_vmcb(vcpu);
04d2cc77
AK
4254 return 0;
4255 }
4256
a2fa3e9f 4257 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 4258 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
4259 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4260 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6614c7d0 4261 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
6aa8b732 4262 "exit_code 0x%x\n",
b8688d51 4263 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
4264 exit_code);
4265
9d8f549d 4266 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 4267 || !svm_exit_handlers[exit_code]) {
faac2458 4268 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
2bc19dc3
MT
4269 kvm_queue_exception(vcpu, UD_VECTOR);
4270 return 1;
6aa8b732
AK
4271 }
4272
851ba692 4273 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
4274}
4275
4276static void reload_tss(struct kvm_vcpu *vcpu)
4277{
4278 int cpu = raw_smp_processor_id();
4279
0fe1e009
TH
4280 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4281 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
4282 load_TR_desc();
4283}
4284
e756fc62 4285static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
4286{
4287 int cpu = raw_smp_processor_id();
4288
0fe1e009 4289 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 4290
4b656b12 4291 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
4292 if (svm->asid_generation != sd->asid_generation)
4293 new_asid(svm, sd);
6aa8b732
AK
4294}
4295
95ba8273
GN
4296static void svm_inject_nmi(struct kvm_vcpu *vcpu)
4297{
4298 struct vcpu_svm *svm = to_svm(vcpu);
4299
4300 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
4301 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 4302 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
4303 ++vcpu->stat.nmi_injections;
4304}
6aa8b732 4305
85f455f7 4306static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
4307{
4308 struct vmcb_control_area *control;
4309
340d3bc3 4310 /* The following fields are ignored when AVIC is enabled */
e756fc62 4311 control = &svm->vmcb->control;
85f455f7 4312 control->int_vector = irq;
6aa8b732
AK
4313 control->int_ctl &= ~V_INTR_PRIO_MASK;
4314 control->int_ctl |= V_IRQ_MASK |
4315 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 4316 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
4317}
4318
66fd3f7f 4319static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
4320{
4321 struct vcpu_svm *svm = to_svm(vcpu);
4322
2af9194d 4323 BUG_ON(!(gif_set(svm)));
cf74a78b 4324
9fb2d2b4
GN
4325 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
4326 ++vcpu->stat.irq_injections;
4327
219b65dc
AG
4328 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
4329 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
4330}
4331
3bbf3565
SS
4332static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
4333{
4334 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
4335}
4336
95ba8273 4337static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
4338{
4339 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 4340
3bbf3565
SS
4341 if (svm_nested_virtualize_tpr(vcpu) ||
4342 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4343 return;
4344
596f3142
RK
4345 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
4346
95ba8273 4347 if (irr == -1)
aaacfc9a
JR
4348 return;
4349
95ba8273 4350 if (tpr >= irr)
4ee546b4 4351 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 4352}
aaacfc9a 4353
8d14695f
YZ
4354static void svm_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
4355{
4356 return;
4357}
4358
d62caabb
AS
4359static bool svm_get_enable_apicv(void)
4360{
44a95dae
SS
4361 return avic;
4362}
4363
4364static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
4365{
d62caabb
AS
4366}
4367
67c9dddc 4368static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
44a95dae 4369{
d62caabb
AS
4370}
4371
44a95dae 4372/* Note: Currently only used by Hyper-V. */
d62caabb 4373static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
c7c9c56c 4374{
44a95dae
SS
4375 struct vcpu_svm *svm = to_svm(vcpu);
4376 struct vmcb *vmcb = svm->vmcb;
4377
4378 if (!avic)
4379 return;
4380
4381 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
4382 mark_dirty(vmcb, VMCB_INTR);
c7c9c56c
YZ
4383}
4384
6308630b 4385static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
c7c9c56c
YZ
4386{
4387 return;
4388}
4389
340d3bc3
SS
4390static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
4391{
4392 kvm_lapic_set_irr(vec, vcpu->arch.apic);
4393 smp_mb__after_atomic();
4394
4395 if (avic_vcpu_is_running(vcpu))
4396 wrmsrl(SVM_AVIC_DOORBELL,
7d669f50 4397 kvm_cpu_get_apicid(vcpu->cpu));
340d3bc3
SS
4398 else
4399 kvm_vcpu_wake_up(vcpu);
4400}
4401
411b44ba
SS
4402static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4403{
4404 unsigned long flags;
4405 struct amd_svm_iommu_ir *cur;
4406
4407 spin_lock_irqsave(&svm->ir_list_lock, flags);
4408 list_for_each_entry(cur, &svm->ir_list, node) {
4409 if (cur->data != pi->ir_data)
4410 continue;
4411 list_del(&cur->node);
4412 kfree(cur);
4413 break;
4414 }
4415 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4416}
4417
4418static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
4419{
4420 int ret = 0;
4421 unsigned long flags;
4422 struct amd_svm_iommu_ir *ir;
4423
4424 /**
4425 * In some cases, the existing irte is updaed and re-set,
4426 * so we need to check here if it's already been * added
4427 * to the ir_list.
4428 */
4429 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
4430 struct kvm *kvm = svm->vcpu.kvm;
4431 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
4432 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
4433 struct vcpu_svm *prev_svm;
4434
4435 if (!prev_vcpu) {
4436 ret = -EINVAL;
4437 goto out;
4438 }
4439
4440 prev_svm = to_svm(prev_vcpu);
4441 svm_ir_list_del(prev_svm, pi);
4442 }
4443
4444 /**
4445 * Allocating new amd_iommu_pi_data, which will get
4446 * add to the per-vcpu ir_list.
4447 */
4448 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
4449 if (!ir) {
4450 ret = -ENOMEM;
4451 goto out;
4452 }
4453 ir->data = pi->ir_data;
4454
4455 spin_lock_irqsave(&svm->ir_list_lock, flags);
4456 list_add(&ir->node, &svm->ir_list);
4457 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
4458out:
4459 return ret;
4460}
4461
4462/**
4463 * Note:
4464 * The HW cannot support posting multicast/broadcast
4465 * interrupts to a vCPU. So, we still use legacy interrupt
4466 * remapping for these kind of interrupts.
4467 *
4468 * For lowest-priority interrupts, we only support
4469 * those with single CPU as the destination, e.g. user
4470 * configures the interrupts via /proc/irq or uses
4471 * irqbalance to make the interrupts single-CPU.
4472 */
4473static int
4474get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
4475 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
4476{
4477 struct kvm_lapic_irq irq;
4478 struct kvm_vcpu *vcpu = NULL;
4479
4480 kvm_set_msi_irq(kvm, e, &irq);
4481
4482 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
4483 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
4484 __func__, irq.vector);
4485 return -1;
4486 }
4487
4488 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
4489 irq.vector);
4490 *svm = to_svm(vcpu);
4491 vcpu_info->pi_desc_addr = page_to_phys((*svm)->avic_backing_page);
4492 vcpu_info->vector = irq.vector;
4493
4494 return 0;
4495}
4496
4497/*
4498 * svm_update_pi_irte - set IRTE for Posted-Interrupts
4499 *
4500 * @kvm: kvm
4501 * @host_irq: host irq of the interrupt
4502 * @guest_irq: gsi of the interrupt
4503 * @set: set or unset PI
4504 * returns 0 on success, < 0 on failure
4505 */
4506static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
4507 uint32_t guest_irq, bool set)
4508{
4509 struct kvm_kernel_irq_routing_entry *e;
4510 struct kvm_irq_routing_table *irq_rt;
4511 int idx, ret = -EINVAL;
4512
4513 if (!kvm_arch_has_assigned_device(kvm) ||
4514 !irq_remapping_cap(IRQ_POSTING_CAP))
4515 return 0;
4516
4517 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
4518 __func__, host_irq, guest_irq, set);
4519
4520 idx = srcu_read_lock(&kvm->irq_srcu);
4521 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
4522 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
4523
4524 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
4525 struct vcpu_data vcpu_info;
4526 struct vcpu_svm *svm = NULL;
4527
4528 if (e->type != KVM_IRQ_ROUTING_MSI)
4529 continue;
4530
4531 /**
4532 * Here, we setup with legacy mode in the following cases:
4533 * 1. When cannot target interrupt to a specific vcpu.
4534 * 2. Unsetting posted interrupt.
4535 * 3. APIC virtialization is disabled for the vcpu.
4536 */
4537 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
4538 kvm_vcpu_apicv_active(&svm->vcpu)) {
4539 struct amd_iommu_pi_data pi;
4540
4541 /* Try to enable guest_mode in IRTE */
4542 pi.base = page_to_phys(svm->avic_backing_page) & AVIC_HPA_MASK;
4543 pi.ga_tag = AVIC_GATAG(kvm->arch.avic_vm_id,
4544 svm->vcpu.vcpu_id);
4545 pi.is_guest_mode = true;
4546 pi.vcpu_data = &vcpu_info;
4547 ret = irq_set_vcpu_affinity(host_irq, &pi);
4548
4549 /**
4550 * Here, we successfully setting up vcpu affinity in
4551 * IOMMU guest mode. Now, we need to store the posted
4552 * interrupt information in a per-vcpu ir_list so that
4553 * we can reference to them directly when we update vcpu
4554 * scheduling information in IOMMU irte.
4555 */
4556 if (!ret && pi.is_guest_mode)
4557 svm_ir_list_add(svm, &pi);
4558 } else {
4559 /* Use legacy mode in IRTE */
4560 struct amd_iommu_pi_data pi;
4561
4562 /**
4563 * Here, pi is used to:
4564 * - Tell IOMMU to use legacy mode for this interrupt.
4565 * - Retrieve ga_tag of prior interrupt remapping data.
4566 */
4567 pi.is_guest_mode = false;
4568 ret = irq_set_vcpu_affinity(host_irq, &pi);
4569
4570 /**
4571 * Check if the posted interrupt was previously
4572 * setup with the guest_mode by checking if the ga_tag
4573 * was cached. If so, we need to clean up the per-vcpu
4574 * ir_list.
4575 */
4576 if (!ret && pi.prev_ga_tag) {
4577 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
4578 struct kvm_vcpu *vcpu;
4579
4580 vcpu = kvm_get_vcpu_by_id(kvm, id);
4581 if (vcpu)
4582 svm_ir_list_del(to_svm(vcpu), &pi);
4583 }
4584 }
4585
4586 if (!ret && svm) {
4587 trace_kvm_pi_irte_update(svm->vcpu.vcpu_id,
4588 host_irq, e->gsi,
4589 vcpu_info.vector,
4590 vcpu_info.pi_desc_addr, set);
4591 }
4592
4593 if (ret < 0) {
4594 pr_err("%s: failed to update PI IRTE\n", __func__);
4595 goto out;
4596 }
4597 }
4598
4599 ret = 0;
4600out:
4601 srcu_read_unlock(&kvm->irq_srcu, idx);
4602 return ret;
4603}
4604
95ba8273
GN
4605static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
4606{
4607 struct vcpu_svm *svm = to_svm(vcpu);
4608 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
4609 int ret;
4610 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
4611 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
4612 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
4613
4614 return ret;
aaacfc9a
JR
4615}
4616
3cfc3092
JK
4617static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
4618{
4619 struct vcpu_svm *svm = to_svm(vcpu);
4620
4621 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
4622}
4623
4624static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4625{
4626 struct vcpu_svm *svm = to_svm(vcpu);
4627
4628 if (masked) {
4629 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 4630 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4631 } else {
4632 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 4633 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
4634 }
4635}
4636
78646121
GN
4637static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
4638{
4639 struct vcpu_svm *svm = to_svm(vcpu);
4640 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
4641 int ret;
4642
4643 if (!gif_set(svm) ||
4644 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
4645 return 0;
4646
f6e78475 4647 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 4648
2030753d 4649 if (is_guest_mode(vcpu))
7fcdb510
JR
4650 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
4651
4652 return ret;
78646121
GN
4653}
4654
c9a7953f 4655static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 4656{
219b65dc 4657 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 4658
340d3bc3
SS
4659 if (kvm_vcpu_apicv_active(vcpu))
4660 return;
4661
e0231715
JR
4662 /*
4663 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
4664 * 1, because that's a separate STGI/VMRUN intercept. The next time we
4665 * get that intercept, this function will be called again though and
4666 * we'll get the vintr intercept.
4667 */
8fe54654 4668 if (gif_set(svm) && nested_svm_intr(svm)) {
219b65dc
AG
4669 svm_set_vintr(svm);
4670 svm_inject_irq(svm, 0x0);
4671 }
85f455f7
ED
4672}
4673
c9a7953f 4674static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 4675{
04d2cc77 4676 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 4677
44c11430
GN
4678 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
4679 == HF_NMI_MASK)
c9a7953f 4680 return; /* IRET will cause a vm exit */
44c11430 4681
1a5e1852
LP
4682 if ((svm->vcpu.arch.hflags & HF_GIF_MASK) == 0)
4683 return; /* STGI will cause a vm exit */
4684
4685 if (svm->nested.exit_required)
4686 return; /* we're not going to run the guest yet */
4687
e0231715
JR
4688 /*
4689 * Something prevents NMI from been injected. Single step over possible
4690 * problem (IRET or exception injection or interrupt shadow)
4691 */
ab2f4d73 4692 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
6be7d306 4693 svm->nmi_singlestep = true;
44c11430 4694 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
c1150d8c
DL
4695}
4696
cbc94022
IE
4697static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
4698{
4699 return 0;
4700}
4701
d9e368d6
AK
4702static void svm_flush_tlb(struct kvm_vcpu *vcpu)
4703{
38e5e92f
JR
4704 struct vcpu_svm *svm = to_svm(vcpu);
4705
4706 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
4707 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
4708 else
4709 svm->asid_generation--;
d9e368d6
AK
4710}
4711
04d2cc77
AK
4712static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
4713{
4714}
4715
d7bf8221
JR
4716static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
4717{
4718 struct vcpu_svm *svm = to_svm(vcpu);
4719
3bbf3565 4720 if (svm_nested_virtualize_tpr(vcpu))
88ab24ad
JR
4721 return;
4722
4ee546b4 4723 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 4724 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 4725 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
4726 }
4727}
4728
649d6864
JR
4729static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
4730{
4731 struct vcpu_svm *svm = to_svm(vcpu);
4732 u64 cr8;
4733
3bbf3565
SS
4734 if (svm_nested_virtualize_tpr(vcpu) ||
4735 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
4736 return;
4737
649d6864
JR
4738 cr8 = kvm_get_cr8(vcpu);
4739 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
4740 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
4741}
4742
9222be18
GN
4743static void svm_complete_interrupts(struct vcpu_svm *svm)
4744{
4745 u8 vector;
4746 int type;
4747 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
4748 unsigned int3_injected = svm->int3_injected;
4749
4750 svm->int3_injected = 0;
9222be18 4751
bd3d1ec3
AK
4752 /*
4753 * If we've made progress since setting HF_IRET_MASK, we've
4754 * executed an IRET and can allow NMI injection.
4755 */
4756 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
4757 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 4758 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
4759 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4760 }
44c11430 4761
9222be18
GN
4762 svm->vcpu.arch.nmi_injected = false;
4763 kvm_clear_exception_queue(&svm->vcpu);
4764 kvm_clear_interrupt_queue(&svm->vcpu);
4765
4766 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
4767 return;
4768
3842d135
AK
4769 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
4770
9222be18
GN
4771 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
4772 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
4773
4774 switch (type) {
4775 case SVM_EXITINTINFO_TYPE_NMI:
4776 svm->vcpu.arch.nmi_injected = true;
4777 break;
4778 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
4779 /*
4780 * In case of software exceptions, do not reinject the vector,
4781 * but re-execute the instruction instead. Rewind RIP first
4782 * if we emulated INT3 before.
4783 */
4784 if (kvm_exception_is_soft(vector)) {
4785 if (vector == BP_VECTOR && int3_injected &&
4786 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
4787 kvm_rip_write(&svm->vcpu,
4788 kvm_rip_read(&svm->vcpu) -
4789 int3_injected);
9222be18 4790 break;
66b7138f 4791 }
9222be18
GN
4792 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
4793 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 4794 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
4795
4796 } else
ce7ddec4 4797 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
4798 break;
4799 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 4800 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
4801 break;
4802 default:
4803 break;
4804 }
4805}
4806
b463a6f7
AK
4807static void svm_cancel_injection(struct kvm_vcpu *vcpu)
4808{
4809 struct vcpu_svm *svm = to_svm(vcpu);
4810 struct vmcb_control_area *control = &svm->vmcb->control;
4811
4812 control->exit_int_info = control->event_inj;
4813 control->exit_int_info_err = control->event_inj_err;
4814 control->event_inj = 0;
4815 svm_complete_interrupts(svm);
4816}
4817
851ba692 4818static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 4819{
a2fa3e9f 4820 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 4821
2041a06a
JR
4822 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4823 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4824 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4825
cd3ff653
JR
4826 /*
4827 * A vmexit emulation is required before the vcpu can be executed
4828 * again.
4829 */
4830 if (unlikely(svm->nested.exit_required))
4831 return;
4832
a12713c2
LP
4833 /*
4834 * Disable singlestep if we're injecting an interrupt/exception.
4835 * We don't want our modified rflags to be pushed on the stack where
4836 * we might not be able to easily reset them if we disabled NMI
4837 * singlestep later.
4838 */
4839 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
4840 /*
4841 * Event injection happens before external interrupts cause a
4842 * vmexit and interrupts are disabled here, so smp_send_reschedule
4843 * is enough to force an immediate vmexit.
4844 */
4845 disable_nmi_singlestep(svm);
4846 smp_send_reschedule(vcpu->cpu);
4847 }
4848
e756fc62 4849 pre_svm_run(svm);
6aa8b732 4850
649d6864
JR
4851 sync_lapic_to_cr8(vcpu);
4852
cda0ffdd 4853 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 4854
04d2cc77
AK
4855 clgi();
4856
4857 local_irq_enable();
36241b8c 4858
6aa8b732 4859 asm volatile (
7454766f
AK
4860 "push %%" _ASM_BP "; \n\t"
4861 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
4862 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
4863 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
4864 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
4865 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
4866 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
05b3e0c2 4867#ifdef CONFIG_X86_64
fb3f0f51
RR
4868 "mov %c[r8](%[svm]), %%r8 \n\t"
4869 "mov %c[r9](%[svm]), %%r9 \n\t"
4870 "mov %c[r10](%[svm]), %%r10 \n\t"
4871 "mov %c[r11](%[svm]), %%r11 \n\t"
4872 "mov %c[r12](%[svm]), %%r12 \n\t"
4873 "mov %c[r13](%[svm]), %%r13 \n\t"
4874 "mov %c[r14](%[svm]), %%r14 \n\t"
4875 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
4876#endif
4877
6aa8b732 4878 /* Enter guest mode */
7454766f
AK
4879 "push %%" _ASM_AX " \n\t"
4880 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
4ecac3fd
AK
4881 __ex(SVM_VMLOAD) "\n\t"
4882 __ex(SVM_VMRUN) "\n\t"
4883 __ex(SVM_VMSAVE) "\n\t"
7454766f 4884 "pop %%" _ASM_AX " \n\t"
6aa8b732
AK
4885
4886 /* Save guest registers, load host registers */
7454766f
AK
4887 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
4888 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
4889 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
4890 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
4891 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
4892 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
05b3e0c2 4893#ifdef CONFIG_X86_64
fb3f0f51
RR
4894 "mov %%r8, %c[r8](%[svm]) \n\t"
4895 "mov %%r9, %c[r9](%[svm]) \n\t"
4896 "mov %%r10, %c[r10](%[svm]) \n\t"
4897 "mov %%r11, %c[r11](%[svm]) \n\t"
4898 "mov %%r12, %c[r12](%[svm]) \n\t"
4899 "mov %%r13, %c[r13](%[svm]) \n\t"
4900 "mov %%r14, %c[r14](%[svm]) \n\t"
4901 "mov %%r15, %c[r15](%[svm]) \n\t"
6aa8b732 4902#endif
7454766f 4903 "pop %%" _ASM_BP
6aa8b732 4904 :
fb3f0f51 4905 : [svm]"a"(svm),
6aa8b732 4906 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
4907 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
4908 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
4909 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
4910 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
4911 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
4912 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 4913#ifdef CONFIG_X86_64
ad312c7c
ZX
4914 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
4915 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
4916 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
4917 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
4918 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
4919 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
4920 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
4921 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 4922#endif
54a08c04
LV
4923 : "cc", "memory"
4924#ifdef CONFIG_X86_64
7454766f 4925 , "rbx", "rcx", "rdx", "rsi", "rdi"
54a08c04 4926 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
7454766f
AK
4927#else
4928 , "ebx", "ecx", "edx", "esi", "edi"
54a08c04
LV
4929#endif
4930 );
6aa8b732 4931
82ca2d10
AK
4932#ifdef CONFIG_X86_64
4933 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
4934#else
dacccfdd 4935 loadsegment(fs, svm->host.fs);
831ca609
AK
4936#ifndef CONFIG_X86_32_LAZY_GS
4937 loadsegment(gs, svm->host.gs);
4938#endif
9581d442 4939#endif
6aa8b732
AK
4940
4941 reload_tss(vcpu);
4942
56ba47dd
AK
4943 local_irq_disable();
4944
13c34e07
AK
4945 vcpu->arch.cr2 = svm->vmcb->save.cr2;
4946 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
4947 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
4948 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
4949
3781c01c
JR
4950 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
4951 kvm_before_handle_nmi(&svm->vcpu);
4952
4953 stgi();
4954
4955 /* Any pending NMI will happen here */
4956
4957 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
4958 kvm_after_handle_nmi(&svm->vcpu);
4959
d7bf8221
JR
4960 sync_cr8_to_lapic(vcpu);
4961
a2fa3e9f 4962 svm->next_rip = 0;
9222be18 4963
38e5e92f
JR
4964 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
4965
631bc487
GN
4966 /* if exit due to PF check for async PF */
4967 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
4968 svm->apf_reason = kvm_read_and_reset_pf_reason();
4969
6de4f3ad
AK
4970 if (npt_enabled) {
4971 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
4972 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
4973 }
fe5913e4
JR
4974
4975 /*
4976 * We need to handle MC intercepts here before the vcpu has a chance to
4977 * change the physical cpu
4978 */
4979 if (unlikely(svm->vmcb->control.exit_code ==
4980 SVM_EXIT_EXCP_BASE + MC_VECTOR))
4981 svm_handle_mce(svm);
8d28fec4
RJ
4982
4983 mark_all_clean(svm->vmcb);
6aa8b732 4984}
c207aee4 4985STACK_FRAME_NON_STANDARD(svm_vcpu_run);
6aa8b732 4986
6aa8b732
AK
4987static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
4988{
a2fa3e9f
GH
4989 struct vcpu_svm *svm = to_svm(vcpu);
4990
4991 svm->vmcb->save.cr3 = root;
dcca1a65 4992 mark_dirty(svm->vmcb, VMCB_CR);
f40f6a45 4993 svm_flush_tlb(vcpu);
6aa8b732
AK
4994}
4995
1c97f0a0
JR
4996static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
4997{
4998 struct vcpu_svm *svm = to_svm(vcpu);
4999
5000 svm->vmcb->control.nested_cr3 = root;
b2747166 5001 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
5002
5003 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 5004 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 5005 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0 5006
f40f6a45 5007 svm_flush_tlb(vcpu);
1c97f0a0
JR
5008}
5009
6aa8b732
AK
5010static int is_disabled(void)
5011{
6031a61c
JR
5012 u64 vm_cr;
5013
5014 rdmsrl(MSR_VM_CR, vm_cr);
5015 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5016 return 1;
5017
6aa8b732
AK
5018 return 0;
5019}
5020
102d8325
IM
5021static void
5022svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5023{
5024 /*
5025 * Patch in the VMMCALL instruction:
5026 */
5027 hypercall[0] = 0x0f;
5028 hypercall[1] = 0x01;
5029 hypercall[2] = 0xd9;
102d8325
IM
5030}
5031
002c7f7c
YS
5032static void svm_check_processor_compat(void *rtn)
5033{
5034 *(int *)rtn = 0;
5035}
5036
774ead3a
AK
5037static bool svm_cpu_has_accelerated_tpr(void)
5038{
5039 return false;
5040}
5041
6d396b55
PB
5042static bool svm_has_high_real_mode_segbase(void)
5043{
5044 return true;
5045}
5046
fc07e76a
PB
5047static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5048{
5049 return 0;
5050}
5051
0e851880
SY
5052static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5053{
6092d3d3 5054 struct vcpu_svm *svm = to_svm(vcpu);
46781eae 5055 struct kvm_cpuid_entry2 *entry;
6092d3d3
JR
5056
5057 /* Update nrips enabled cache */
5058 svm->nrips_enabled = !!guest_cpuid_has_nrips(&svm->vcpu);
46781eae
SS
5059
5060 if (!kvm_vcpu_apicv_active(vcpu))
5061 return;
5062
5063 entry = kvm_find_cpuid_entry(vcpu, 1, 0);
5064 if (entry)
5065 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
0e851880
SY
5066}
5067
d4330ef2
JR
5068static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5069{
c2c63a49 5070 switch (func) {
46781eae
SS
5071 case 0x1:
5072 if (avic)
5073 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5074 break;
4c62a2dc
JR
5075 case 0x80000001:
5076 if (nested)
5077 entry->ecx |= (1 << 2); /* Set SVM bit */
5078 break;
c2c63a49
JR
5079 case 0x8000000A:
5080 entry->eax = 1; /* SVM revision 1 */
5081 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5082 ASID emulation to nested SVM */
5083 entry->ecx = 0; /* Reserved */
7a190667
JR
5084 entry->edx = 0; /* Per default do not support any
5085 additional features */
5086
5087 /* Support next_rip if host supports it */
2a6b20b8 5088 if (boot_cpu_has(X86_FEATURE_NRIPS))
7a190667 5089 entry->edx |= SVM_FEATURE_NRIP;
c2c63a49 5090
3d4aeaad
JR
5091 /* Support NPT for the guest if enabled */
5092 if (npt_enabled)
5093 entry->edx |= SVM_FEATURE_NPT;
5094
c2c63a49
JR
5095 break;
5096 }
d4330ef2
JR
5097}
5098
17cc3935 5099static int svm_get_lpage_level(void)
344f414f 5100{
17cc3935 5101 return PT_PDPE_LEVEL;
344f414f
JR
5102}
5103
4e47c7a6
SY
5104static bool svm_rdtscp_supported(void)
5105{
46896c73 5106 return boot_cpu_has(X86_FEATURE_RDTSCP);
4e47c7a6
SY
5107}
5108
ad756a16
MJ
5109static bool svm_invpcid_supported(void)
5110{
5111 return false;
5112}
5113
93c4adc7
PB
5114static bool svm_mpx_supported(void)
5115{
5116 return false;
5117}
5118
55412b2e
WL
5119static bool svm_xsaves_supported(void)
5120{
5121 return false;
5122}
5123
f5f48ee1
SY
5124static bool svm_has_wbinvd_exit(void)
5125{
5126 return true;
5127}
5128
8061252e 5129#define PRE_EX(exit) { .exit_code = (exit), \
40e19b51 5130 .stage = X86_ICPT_PRE_EXCEPT, }
cfec82cb 5131#define POST_EX(exit) { .exit_code = (exit), \
40e19b51 5132 .stage = X86_ICPT_POST_EXCEPT, }
d7eb8203 5133#define POST_MEM(exit) { .exit_code = (exit), \
40e19b51 5134 .stage = X86_ICPT_POST_MEMACCESS, }
cfec82cb 5135
09941fbb 5136static const struct __x86_intercept {
cfec82cb
JR
5137 u32 exit_code;
5138 enum x86_intercept_stage stage;
cfec82cb
JR
5139} x86_intercept_map[] = {
5140 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5141 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5142 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5143 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5144 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
5145 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5146 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
5147 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5148 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5149 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5150 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5151 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5152 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5153 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5154 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
5155 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5156 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5157 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5158 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5159 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5160 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5161 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5162 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
5163 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5164 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5165 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
5166 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5167 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5168 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5169 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5170 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5171 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5172 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5173 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5174 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
bf608f88
JR
5175 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5176 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5177 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5178 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5179 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5180 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5181 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
f6511935
JR
5182 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5183 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5184 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5185 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
cfec82cb
JR
5186};
5187
8061252e 5188#undef PRE_EX
cfec82cb 5189#undef POST_EX
d7eb8203 5190#undef POST_MEM
cfec82cb 5191
8a76d7f2
JR
5192static int svm_check_intercept(struct kvm_vcpu *vcpu,
5193 struct x86_instruction_info *info,
5194 enum x86_intercept_stage stage)
5195{
cfec82cb
JR
5196 struct vcpu_svm *svm = to_svm(vcpu);
5197 int vmexit, ret = X86EMUL_CONTINUE;
5198 struct __x86_intercept icpt_info;
5199 struct vmcb *vmcb = svm->vmcb;
5200
5201 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
5202 goto out;
5203
5204 icpt_info = x86_intercept_map[info->intercept];
5205
40e19b51 5206 if (stage != icpt_info.stage)
cfec82cb
JR
5207 goto out;
5208
5209 switch (icpt_info.exit_code) {
5210 case SVM_EXIT_READ_CR0:
5211 if (info->intercept == x86_intercept_cr_read)
5212 icpt_info.exit_code += info->modrm_reg;
5213 break;
5214 case SVM_EXIT_WRITE_CR0: {
5215 unsigned long cr0, val;
5216 u64 intercept;
5217
5218 if (info->intercept == x86_intercept_cr_write)
5219 icpt_info.exit_code += info->modrm_reg;
5220
62baf44c
JK
5221 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
5222 info->intercept == x86_intercept_clts)
cfec82cb
JR
5223 break;
5224
5225 intercept = svm->nested.intercept;
5226
5227 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
5228 break;
5229
5230 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
5231 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
5232
5233 if (info->intercept == x86_intercept_lmsw) {
5234 cr0 &= 0xfUL;
5235 val &= 0xfUL;
5236 /* lmsw can't clear PE - catch this here */
5237 if (cr0 & X86_CR0_PE)
5238 val |= X86_CR0_PE;
5239 }
5240
5241 if (cr0 ^ val)
5242 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
5243
5244 break;
5245 }
3b88e41a
JR
5246 case SVM_EXIT_READ_DR0:
5247 case SVM_EXIT_WRITE_DR0:
5248 icpt_info.exit_code += info->modrm_reg;
5249 break;
8061252e
JR
5250 case SVM_EXIT_MSR:
5251 if (info->intercept == x86_intercept_wrmsr)
5252 vmcb->control.exit_info_1 = 1;
5253 else
5254 vmcb->control.exit_info_1 = 0;
5255 break;
bf608f88
JR
5256 case SVM_EXIT_PAUSE:
5257 /*
5258 * We get this for NOP only, but pause
5259 * is rep not, check this here
5260 */
5261 if (info->rep_prefix != REPE_PREFIX)
5262 goto out;
f6511935
JR
5263 case SVM_EXIT_IOIO: {
5264 u64 exit_info;
5265 u32 bytes;
5266
f6511935
JR
5267 if (info->intercept == x86_intercept_in ||
5268 info->intercept == x86_intercept_ins) {
6cbc5f5a
JK
5269 exit_info = ((info->src_val & 0xffff) << 16) |
5270 SVM_IOIO_TYPE_MASK;
f6511935 5271 bytes = info->dst_bytes;
6493f157 5272 } else {
6cbc5f5a 5273 exit_info = (info->dst_val & 0xffff) << 16;
6493f157 5274 bytes = info->src_bytes;
f6511935
JR
5275 }
5276
5277 if (info->intercept == x86_intercept_outs ||
5278 info->intercept == x86_intercept_ins)
5279 exit_info |= SVM_IOIO_STR_MASK;
5280
5281 if (info->rep_prefix)
5282 exit_info |= SVM_IOIO_REP_MASK;
5283
5284 bytes = min(bytes, 4u);
5285
5286 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
5287
5288 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
5289
5290 vmcb->control.exit_info_1 = exit_info;
5291 vmcb->control.exit_info_2 = info->next_rip;
5292
5293 break;
5294 }
cfec82cb
JR
5295 default:
5296 break;
5297 }
5298
f104765b
BD
5299 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
5300 if (static_cpu_has(X86_FEATURE_NRIPS))
5301 vmcb->control.next_rip = info->next_rip;
cfec82cb
JR
5302 vmcb->control.exit_code = icpt_info.exit_code;
5303 vmexit = nested_svm_exit_handled(svm);
5304
5305 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
5306 : X86EMUL_CONTINUE;
5307
5308out:
5309 return ret;
8a76d7f2
JR
5310}
5311
a547c6db
YZ
5312static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
5313{
5314 local_irq_enable();
f2485b3e
PB
5315 /*
5316 * We must have an instruction with interrupts enabled, so
5317 * the timer interrupt isn't delayed by the interrupt shadow.
5318 */
5319 asm("nop");
5320 local_irq_disable();
a547c6db
YZ
5321}
5322
ae97a3b8
RK
5323static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
5324{
5325}
5326
be8ca170
SS
5327static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
5328{
5329 if (avic_handle_apic_id_update(vcpu) != 0)
5330 return;
5331 if (avic_handle_dfr_update(vcpu) != 0)
5332 return;
5333 avic_handle_ldr_update(vcpu);
5334}
5335
74f16909
BP
5336static void svm_setup_mce(struct kvm_vcpu *vcpu)
5337{
5338 /* [63:9] are reserved. */
5339 vcpu->arch.mcg_cap &= 0x1ff;
5340}
5341
404f6aac 5342static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
6aa8b732
AK
5343 .cpu_has_kvm_support = has_svm,
5344 .disabled_by_bios = is_disabled,
5345 .hardware_setup = svm_hardware_setup,
5346 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 5347 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
5348 .hardware_enable = svm_hardware_enable,
5349 .hardware_disable = svm_hardware_disable,
774ead3a 5350 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
6d396b55 5351 .cpu_has_high_real_mode_segbase = svm_has_high_real_mode_segbase,
6aa8b732
AK
5352
5353 .vcpu_create = svm_create_vcpu,
5354 .vcpu_free = svm_free_vcpu,
04d2cc77 5355 .vcpu_reset = svm_vcpu_reset,
6aa8b732 5356
44a95dae
SS
5357 .vm_init = avic_vm_init,
5358 .vm_destroy = avic_vm_destroy,
5359
04d2cc77 5360 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
5361 .vcpu_load = svm_vcpu_load,
5362 .vcpu_put = svm_vcpu_put,
8221c137
SS
5363 .vcpu_blocking = svm_vcpu_blocking,
5364 .vcpu_unblocking = svm_vcpu_unblocking,
6aa8b732 5365
a96036b8 5366 .update_bp_intercept = update_bp_intercept,
6aa8b732
AK
5367 .get_msr = svm_get_msr,
5368 .set_msr = svm_set_msr,
5369 .get_segment_base = svm_get_segment_base,
5370 .get_segment = svm_get_segment,
5371 .set_segment = svm_set_segment,
2e4d2653 5372 .get_cpl = svm_get_cpl,
1747fb71 5373 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 5374 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
aff48baa 5375 .decache_cr3 = svm_decache_cr3,
25c4c276 5376 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 5377 .set_cr0 = svm_set_cr0,
6aa8b732
AK
5378 .set_cr3 = svm_set_cr3,
5379 .set_cr4 = svm_set_cr4,
5380 .set_efer = svm_set_efer,
5381 .get_idt = svm_get_idt,
5382 .set_idt = svm_set_idt,
5383 .get_gdt = svm_get_gdt,
5384 .set_gdt = svm_set_gdt,
73aaf249
JK
5385 .get_dr6 = svm_get_dr6,
5386 .set_dr6 = svm_set_dr6,
020df079 5387 .set_dr7 = svm_set_dr7,
facb0139 5388 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
6de4f3ad 5389 .cache_reg = svm_cache_reg,
6aa8b732
AK
5390 .get_rflags = svm_get_rflags,
5391 .set_rflags = svm_set_rflags,
be94f6b7
HH
5392
5393 .get_pkru = svm_get_pkru,
5394
6aa8b732 5395 .tlb_flush = svm_flush_tlb,
6aa8b732 5396
6aa8b732 5397 .run = svm_vcpu_run,
04d2cc77 5398 .handle_exit = handle_exit,
6aa8b732 5399 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
5400 .set_interrupt_shadow = svm_set_interrupt_shadow,
5401 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 5402 .patch_hypercall = svm_patch_hypercall,
2a8067f1 5403 .set_irq = svm_set_irq,
95ba8273 5404 .set_nmi = svm_inject_nmi,
298101da 5405 .queue_exception = svm_queue_exception,
b463a6f7 5406 .cancel_injection = svm_cancel_injection,
78646121 5407 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 5408 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
5409 .get_nmi_mask = svm_get_nmi_mask,
5410 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
5411 .enable_nmi_window = enable_nmi_window,
5412 .enable_irq_window = enable_irq_window,
5413 .update_cr8_intercept = update_cr8_intercept,
8d14695f 5414 .set_virtual_x2apic_mode = svm_set_virtual_x2apic_mode,
d62caabb
AS
5415 .get_enable_apicv = svm_get_enable_apicv,
5416 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
c7c9c56c 5417 .load_eoi_exitmap = svm_load_eoi_exitmap,
44a95dae
SS
5418 .hwapic_irr_update = svm_hwapic_irr_update,
5419 .hwapic_isr_update = svm_hwapic_isr_update,
be8ca170 5420 .apicv_post_state_restore = avic_post_state_restore,
cbc94022
IE
5421
5422 .set_tss_addr = svm_set_tss_addr,
67253af5 5423 .get_tdp_level = get_npt_level,
4b12f0de 5424 .get_mt_mask = svm_get_mt_mask,
229456fc 5425
586f9607 5426 .get_exit_info = svm_get_exit_info,
586f9607 5427
17cc3935 5428 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
5429
5430 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
5431
5432 .rdtscp_supported = svm_rdtscp_supported,
ad756a16 5433 .invpcid_supported = svm_invpcid_supported,
93c4adc7 5434 .mpx_supported = svm_mpx_supported,
55412b2e 5435 .xsaves_supported = svm_xsaves_supported,
d4330ef2
JR
5436
5437 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
5438
5439 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a
ZA
5440
5441 .write_tsc_offset = svm_write_tsc_offset,
1c97f0a0
JR
5442
5443 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
5444
5445 .check_intercept = svm_check_intercept,
a547c6db 5446 .handle_external_intr = svm_handle_external_intr,
ae97a3b8
RK
5447
5448 .sched_in = svm_sched_in,
25462f7f
WH
5449
5450 .pmu_ops = &amd_pmu_ops,
340d3bc3 5451 .deliver_posted_interrupt = svm_deliver_avic_intr,
411b44ba 5452 .update_pi_irte = svm_update_pi_irte,
74f16909 5453 .setup_mce = svm_setup_mce,
6aa8b732
AK
5454};
5455
5456static int __init svm_init(void)
5457{
cb498ea2 5458 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 5459 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
5460}
5461
5462static void __exit svm_exit(void)
5463{
cb498ea2 5464 kvm_exit();
6aa8b732
AK
5465}
5466
5467module_init(svm_init)
5468module_exit(svm_exit)