kvm: x86: svm: Fix NULL pointer dereference when AVIC not enabled
[linux-2.6-block.git] / arch / x86 / kvm / svm.c
CommitLineData
20c8ccb1 1// SPDX-License-Identifier: GPL-2.0-only
6aa8b732
AK
2/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * AMD SVM support
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
9611c187 8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
9 *
10 * Authors:
11 * Yaniv Kamay <yaniv@qumranet.com>
12 * Avi Kivity <avi@qumranet.com>
6aa8b732 13 */
44a95dae
SS
14
15#define pr_fmt(fmt) "SVM: " fmt
16
edf88417
AK
17#include <linux/kvm_host.h>
18
85f455f7 19#include "irq.h"
1d737c8a 20#include "mmu.h"
5fdbf976 21#include "kvm_cache_regs.h"
fe4c7b19 22#include "x86.h"
66f7b72e 23#include "cpuid.h"
25462f7f 24#include "pmu.h"
e495606d 25
6aa8b732 26#include <linux/module.h>
ae759544 27#include <linux/mod_devicetable.h>
9d8f549d 28#include <linux/kernel.h>
6aa8b732
AK
29#include <linux/vmalloc.h>
30#include <linux/highmem.h>
e8edc6e0 31#include <linux/sched.h>
af658dca 32#include <linux/trace_events.h>
5a0e3ad6 33#include <linux/slab.h>
5881f737
SS
34#include <linux/amd-iommu.h>
35#include <linux/hashtable.h>
c207aee4 36#include <linux/frame.h>
e9df0942 37#include <linux/psp-sev.h>
1654efcb 38#include <linux/file.h>
89c50580
BS
39#include <linux/pagemap.h>
40#include <linux/swap.h>
33af3a7e 41#include <linux/rwsem.h>
6aa8b732 42
8221c137 43#include <asm/apic.h>
1018faa6 44#include <asm/perf_event.h>
67ec6607 45#include <asm/tlbflush.h>
e495606d 46#include <asm/desc.h>
facb0139 47#include <asm/debugreg.h>
631bc487 48#include <asm/kvm_para.h>
411b44ba 49#include <asm/irq_remapping.h>
28a27752 50#include <asm/spec-ctrl.h>
6aa8b732 51
63d1142f 52#include <asm/virtext.h>
229456fc 53#include "trace.h"
63d1142f 54
4ecac3fd
AK
55#define __ex(x) __kvm_handle_fault_on_reboot(x)
56
6aa8b732
AK
57MODULE_AUTHOR("Qumranet");
58MODULE_LICENSE("GPL");
59
ae759544
JT
60static const struct x86_cpu_id svm_cpu_id[] = {
61 X86_FEATURE_MATCH(X86_FEATURE_SVM),
62 {}
63};
64MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
65
6aa8b732
AK
66#define IOPM_ALLOC_ORDER 2
67#define MSRPM_ALLOC_ORDER 1
68
6aa8b732
AK
69#define SEG_TYPE_LDT 2
70#define SEG_TYPE_BUSY_TSS16 3
71
6bc31bdc
AP
72#define SVM_FEATURE_LBRV (1 << 1)
73#define SVM_FEATURE_SVML (1 << 2)
ddce97aa
AP
74#define SVM_FEATURE_TSC_RATE (1 << 4)
75#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
76#define SVM_FEATURE_FLUSH_ASID (1 << 6)
77#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
6bc31bdc 78#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
80b7706e 79
340d3bc3
SS
80#define SVM_AVIC_DOORBELL 0xc001011b
81
410e4d57
JR
82#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
83#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
84#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
85
24e09cbf
JR
86#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
87
fbc0db76 88#define TSC_RATIO_RSVD 0xffffff0000000000ULL
92a1f12d
JR
89#define TSC_RATIO_MIN 0x0000000000000001ULL
90#define TSC_RATIO_MAX 0x000000ffffffffffULL
fbc0db76 91
5446a979 92#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
44a95dae
SS
93
94/*
95 * 0xff is broadcast, so the max index allowed for physical APIC ID
96 * table is 0xfe. APIC IDs above 0xff are reserved.
97 */
98#define AVIC_MAX_PHYSICAL_ID_COUNT 255
99
18f40c53
SS
100#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
101#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
102#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
103
5ea11f2b
SS
104/* AVIC GATAG is encoded using VM and VCPU IDs */
105#define AVIC_VCPU_ID_BITS 8
106#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
107
108#define AVIC_VM_ID_BITS 24
109#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
110#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
111
112#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
113 (y & AVIC_VCPU_ID_MASK))
114#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
115#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
116
67ec6607
JR
117static bool erratum_383_found __read_mostly;
118
6c8166a7
AK
119static const u32 host_save_user_msrs[] = {
120#ifdef CONFIG_X86_64
121 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
122 MSR_FS_BASE,
123#endif
124 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
46896c73 125 MSR_TSC_AUX,
6c8166a7
AK
126};
127
128#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
129
81811c16
SC
130struct kvm_sev_info {
131 bool active; /* SEV enabled guest */
132 unsigned int asid; /* ASID used for this guest */
133 unsigned int handle; /* SEV firmware handle */
134 int fd; /* SEV device fd */
135 unsigned long pages_locked; /* Number of pages locked */
136 struct list_head regions_list; /* List of registered regions */
137};
138
139struct kvm_svm {
140 struct kvm kvm;
141
142 /* Struct members for AVIC */
143 u32 avic_vm_id;
81811c16
SC
144 struct page *avic_logical_id_table_page;
145 struct page *avic_physical_id_table_page;
146 struct hlist_node hnode;
147
148 struct kvm_sev_info sev_info;
149};
150
6c8166a7
AK
151struct kvm_vcpu;
152
e6aa9abd
JR
153struct nested_state {
154 struct vmcb *hsave;
155 u64 hsave_msr;
4a810181 156 u64 vm_cr_msr;
e6aa9abd
JR
157 u64 vmcb;
158
159 /* These are the merged vectors */
160 u32 *msrpm;
161
162 /* gpa pointers to the real vectors */
163 u64 vmcb_msrpm;
ce2ac085 164 u64 vmcb_iopm;
aad42c64 165
cd3ff653
JR
166 /* A VMEXIT is required but not yet emulated */
167 bool exit_required;
168
aad42c64 169 /* cache for intercepts of the guest */
4ee546b4 170 u32 intercept_cr;
3aed041a 171 u32 intercept_dr;
aad42c64
JR
172 u32 intercept_exceptions;
173 u64 intercept;
174
5bd2edc3
JR
175 /* Nested Paging related state */
176 u64 nested_cr3;
e6aa9abd
JR
177};
178
323c3d80
JR
179#define MSRPM_OFFSETS 16
180static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
181
2b036c6b
BO
182/*
183 * Set osvw_len to higher value when updated Revision Guides
184 * are published and we know what the new status bits are
185 */
186static uint64_t osvw_len = 4, osvw_status;
187
6c8166a7
AK
188struct vcpu_svm {
189 struct kvm_vcpu vcpu;
190 struct vmcb *vmcb;
191 unsigned long vmcb_pa;
192 struct svm_cpu_data *svm_data;
193 uint64_t asid_generation;
194 uint64_t sysenter_esp;
195 uint64_t sysenter_eip;
46896c73 196 uint64_t tsc_aux;
6c8166a7 197
d1d93fa9
TL
198 u64 msr_decfg;
199
6c8166a7
AK
200 u64 next_rip;
201
202 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
afe9e66f 203 struct {
dacccfdd
AK
204 u16 fs;
205 u16 gs;
206 u16 ldt;
afe9e66f
AK
207 u64 gs_base;
208 } host;
6c8166a7 209
b2ac58f9 210 u64 spec_ctrl;
ccbcd267
TG
211 /*
212 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
213 * translated into the appropriate L2_CFG bits on the host to
214 * perform speculative control.
215 */
216 u64 virt_spec_ctrl;
b2ac58f9 217
6c8166a7 218 u32 *msrpm;
6c8166a7 219
bd3d1ec3
AK
220 ulong nmi_iret_rip;
221
e6aa9abd 222 struct nested_state nested;
6be7d306
JK
223
224 bool nmi_singlestep;
ab2f4d73 225 u64 nmi_singlestep_guest_rflags;
66b7138f
JK
226
227 unsigned int3_injected;
228 unsigned long int3_rip;
fbc0db76 229
6092d3d3
JR
230 /* cached guest cpuid flags for faster access */
231 bool nrips_enabled : 1;
44a95dae 232
18f40c53 233 u32 ldr_reg;
98d90582 234 u32 dfr_reg;
44a95dae
SS
235 struct page *avic_backing_page;
236 u64 *avic_physical_id_cache;
8221c137 237 bool avic_is_running;
411b44ba
SS
238
239 /*
240 * Per-vcpu list of struct amd_svm_iommu_ir:
241 * This is used mainly to store interrupt remapping information used
242 * when update the vcpu affinity. This avoids the need to scan for
243 * IRTE and try to match ga_tag in the IOMMU driver.
244 */
245 struct list_head ir_list;
246 spinlock_t ir_list_lock;
70cd94e6
BS
247
248 /* which host CPU was used for running this vcpu */
249 unsigned int last_cpu;
411b44ba
SS
250};
251
252/*
253 * This is a wrapper of struct amd_iommu_ir_data.
254 */
255struct amd_svm_iommu_ir {
256 struct list_head node; /* Used by SVM for per-vcpu ir_list */
257 void *data; /* Storing pointer to struct amd_ir_data */
6c8166a7
AK
258};
259
44a95dae 260#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
e44e3eac 261#define AVIC_LOGICAL_ID_ENTRY_VALID_BIT 31
44a95dae
SS
262#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
263
264#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
265#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
266#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
267#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
268
fbc0db76
JR
269static DEFINE_PER_CPU(u64, current_tsc_ratio);
270#define TSC_RATIO_DEFAULT 0x0100000000ULL
271
455716fa
JR
272#define MSR_INVALID 0xffffffffU
273
09941fbb 274static const struct svm_direct_access_msrs {
ac72a9b7
JR
275 u32 index; /* Index of the MSR */
276 bool always; /* True if intercept is always on */
277} direct_access_msrs[] = {
8c06585d 278 { .index = MSR_STAR, .always = true },
ac72a9b7
JR
279 { .index = MSR_IA32_SYSENTER_CS, .always = true },
280#ifdef CONFIG_X86_64
281 { .index = MSR_GS_BASE, .always = true },
282 { .index = MSR_FS_BASE, .always = true },
283 { .index = MSR_KERNEL_GS_BASE, .always = true },
284 { .index = MSR_LSTAR, .always = true },
285 { .index = MSR_CSTAR, .always = true },
286 { .index = MSR_SYSCALL_MASK, .always = true },
287#endif
b2ac58f9 288 { .index = MSR_IA32_SPEC_CTRL, .always = false },
15d45071 289 { .index = MSR_IA32_PRED_CMD, .always = false },
ac72a9b7
JR
290 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
291 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
292 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
293 { .index = MSR_IA32_LASTINTTOIP, .always = false },
294 { .index = MSR_INVALID, .always = false },
6c8166a7
AK
295};
296
709ddebf
JR
297/* enable NPT for AMD64 and X86 with PAE */
298#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
299static bool npt_enabled = true;
300#else
e0231715 301static bool npt_enabled;
709ddebf 302#endif
6c7dac72 303
8566ac8b
BM
304/*
305 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
306 * pause_filter_count: On processors that support Pause filtering(indicated
307 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
308 * count value. On VMRUN this value is loaded into an internal counter.
309 * Each time a pause instruction is executed, this counter is decremented
310 * until it reaches zero at which time a #VMEXIT is generated if pause
311 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
312 * Intercept Filtering for more details.
313 * This also indicate if ple logic enabled.
314 *
315 * pause_filter_thresh: In addition, some processor families support advanced
316 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
317 * the amount of time a guest is allowed to execute in a pause loop.
318 * In this mode, a 16-bit pause filter threshold field is added in the
319 * VMCB. The threshold value is a cycle count that is used to reset the
320 * pause counter. As with simple pause filtering, VMRUN loads the pause
321 * count value from VMCB into an internal counter. Then, on each pause
322 * instruction the hardware checks the elapsed number of cycles since
323 * the most recent pause instruction against the pause filter threshold.
324 * If the elapsed cycle count is greater than the pause filter threshold,
325 * then the internal pause count is reloaded from the VMCB and execution
326 * continues. If the elapsed cycle count is less than the pause filter
327 * threshold, then the internal pause count is decremented. If the count
328 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
329 * triggered. If advanced pause filtering is supported and pause filter
330 * threshold field is set to zero, the filter will operate in the simpler,
331 * count only mode.
332 */
333
334static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
335module_param(pause_filter_thresh, ushort, 0444);
336
337static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
338module_param(pause_filter_count, ushort, 0444);
339
340/* Default doubles per-vcpu window every exit. */
341static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
342module_param(pause_filter_count_grow, ushort, 0444);
343
344/* Default resets per-vcpu window every exit to pause_filter_count. */
345static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
346module_param(pause_filter_count_shrink, ushort, 0444);
347
348/* Default is to compute the maximum so we can never overflow. */
349static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
350module_param(pause_filter_count_max, ushort, 0444);
351
e2358851
DB
352/* allow nested paging (virtualized MMU) for all guests */
353static int npt = true;
6c7dac72 354module_param(npt, int, S_IRUGO);
e3da3acd 355
e2358851
DB
356/* allow nested virtualization in KVM/SVM */
357static int nested = true;
236de055
AG
358module_param(nested, int, S_IRUGO);
359
44a95dae
SS
360/* enable / disable AVIC */
361static int avic;
5b8abf1f 362#ifdef CONFIG_X86_LOCAL_APIC
44a95dae 363module_param(avic, int, S_IRUGO);
5b8abf1f 364#endif
44a95dae 365
d647eb63
PB
366/* enable/disable Next RIP Save */
367static int nrips = true;
368module_param(nrips, int, 0444);
369
89c8a498
JN
370/* enable/disable Virtual VMLOAD VMSAVE */
371static int vls = true;
372module_param(vls, int, 0444);
373
640bd6e5
JN
374/* enable/disable Virtual GIF */
375static int vgif = true;
376module_param(vgif, int, 0444);
5ea11f2b 377
e9df0942
BS
378/* enable/disable SEV support */
379static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
380module_param(sev, int, 0444);
381
6f2f8453
PB
382static bool __read_mostly dump_invalid_vmcb = 0;
383module_param(dump_invalid_vmcb, bool, 0644);
384
7607b717
BS
385static u8 rsm_ins_bytes[] = "\x0f\xaa";
386
79a8059d 387static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
c2ba05cc 388static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
a5c3832d 389static void svm_complete_interrupts(struct vcpu_svm *svm);
f3515dc3 390static void svm_toggle_avic_for_irq_window(struct kvm_vcpu *vcpu, bool activate);
6c3e4422 391static inline void avic_post_state_restore(struct kvm_vcpu *vcpu);
04d2cc77 392
410e4d57 393static int nested_svm_exit_handled(struct vcpu_svm *svm);
b8e88bc8 394static int nested_svm_intercept(struct vcpu_svm *svm);
cf74a78b 395static int nested_svm_vmexit(struct vcpu_svm *svm);
cf74a78b
AG
396static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
397 bool has_error_code, u32 error_code);
398
8d28fec4 399enum {
116a0a23
JR
400 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
401 pause filter count */
f56838e4 402 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
d48086d1 403 VMCB_ASID, /* ASID */
decdbf6a 404 VMCB_INTR, /* int_ctl, int_vector */
b2747166 405 VMCB_NPT, /* npt_en, nCR3, gPAT */
dcca1a65 406 VMCB_CR, /* CR0, CR3, CR4, EFER */
72214b96 407 VMCB_DR, /* DR6, DR7 */
17a703cb 408 VMCB_DT, /* GDT, IDT */
060d0c9a 409 VMCB_SEG, /* CS, DS, SS, ES, CPL */
0574dec0 410 VMCB_CR2, /* CR2 only */
b53ba3f9 411 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
44a95dae
SS
412 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
413 * AVIC PHYSICAL_TABLE pointer,
414 * AVIC LOGICAL_TABLE pointer
415 */
8d28fec4
RJ
416 VMCB_DIRTY_MAX,
417};
418
0574dec0
JR
419/* TPR and CR2 are always written before VMRUN */
420#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
8d28fec4 421
44a95dae
SS
422#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
423
33af3a7e
TL
424static int sev_flush_asids(void);
425static DECLARE_RWSEM(sev_deactivate_lock);
e3b9a9e1 426static DEFINE_MUTEX(sev_bitmap_lock);
ed3cd233 427static unsigned int max_sev_asid;
1654efcb
BS
428static unsigned int min_sev_asid;
429static unsigned long *sev_asid_bitmap;
33af3a7e 430static unsigned long *sev_reclaim_asid_bitmap;
89c50580 431#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
1654efcb 432
1e80fdc0
BS
433struct enc_region {
434 struct list_head list;
435 unsigned long npages;
436 struct page **pages;
437 unsigned long uaddr;
438 unsigned long size;
439};
440
81811c16
SC
441
442static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
443{
444 return container_of(kvm, struct kvm_svm, kvm);
445}
446
1654efcb
BS
447static inline bool svm_sev_enabled(void)
448{
853c1109 449 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
1654efcb
BS
450}
451
452static inline bool sev_guest(struct kvm *kvm)
453{
853c1109 454#ifdef CONFIG_KVM_AMD_SEV
81811c16 455 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
1654efcb
BS
456
457 return sev->active;
853c1109
PB
458#else
459 return false;
460#endif
1654efcb 461}
ed3cd233 462
70cd94e6
BS
463static inline int sev_get_asid(struct kvm *kvm)
464{
81811c16 465 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
70cd94e6
BS
466
467 return sev->asid;
468}
469
8d28fec4
RJ
470static inline void mark_all_dirty(struct vmcb *vmcb)
471{
472 vmcb->control.clean = 0;
473}
474
475static inline void mark_all_clean(struct vmcb *vmcb)
476{
477 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
478 & ~VMCB_ALWAYS_DIRTY_MASK;
479}
480
481static inline void mark_dirty(struct vmcb *vmcb, int bit)
482{
483 vmcb->control.clean &= ~(1 << bit);
484}
485
a2fa3e9f
GH
486static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
487{
fb3f0f51 488 return container_of(vcpu, struct vcpu_svm, vcpu);
a2fa3e9f
GH
489}
490
44a95dae
SS
491static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
492{
493 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
494 mark_dirty(svm->vmcb, VMCB_AVIC);
495}
496
340d3bc3
SS
497static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
498{
499 struct vcpu_svm *svm = to_svm(vcpu);
500 u64 *entry = svm->avic_physical_id_cache;
501
502 if (!entry)
503 return false;
504
505 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
506}
507
384c6368
JR
508static void recalc_intercepts(struct vcpu_svm *svm)
509{
510 struct vmcb_control_area *c, *h;
511 struct nested_state *g;
512
116a0a23
JR
513 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
514
384c6368
JR
515 if (!is_guest_mode(&svm->vcpu))
516 return;
517
518 c = &svm->vmcb->control;
519 h = &svm->nested.hsave->control;
520 g = &svm->nested;
521
4ee546b4 522 c->intercept_cr = h->intercept_cr | g->intercept_cr;
3aed041a 523 c->intercept_dr = h->intercept_dr | g->intercept_dr;
bd89525a 524 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
384c6368
JR
525 c->intercept = h->intercept | g->intercept;
526}
527
4ee546b4
RJ
528static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
529{
530 if (is_guest_mode(&svm->vcpu))
531 return svm->nested.hsave;
532 else
533 return svm->vmcb;
534}
535
536static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
537{
538 struct vmcb *vmcb = get_host_vmcb(svm);
539
540 vmcb->control.intercept_cr |= (1U << bit);
541
542 recalc_intercepts(svm);
543}
544
545static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
546{
547 struct vmcb *vmcb = get_host_vmcb(svm);
548
549 vmcb->control.intercept_cr &= ~(1U << bit);
550
551 recalc_intercepts(svm);
552}
553
554static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
555{
556 struct vmcb *vmcb = get_host_vmcb(svm);
557
558 return vmcb->control.intercept_cr & (1U << bit);
559}
560
5315c716 561static inline void set_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
562{
563 struct vmcb *vmcb = get_host_vmcb(svm);
564
5315c716
PB
565 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
566 | (1 << INTERCEPT_DR1_READ)
567 | (1 << INTERCEPT_DR2_READ)
568 | (1 << INTERCEPT_DR3_READ)
569 | (1 << INTERCEPT_DR4_READ)
570 | (1 << INTERCEPT_DR5_READ)
571 | (1 << INTERCEPT_DR6_READ)
572 | (1 << INTERCEPT_DR7_READ)
573 | (1 << INTERCEPT_DR0_WRITE)
574 | (1 << INTERCEPT_DR1_WRITE)
575 | (1 << INTERCEPT_DR2_WRITE)
576 | (1 << INTERCEPT_DR3_WRITE)
577 | (1 << INTERCEPT_DR4_WRITE)
578 | (1 << INTERCEPT_DR5_WRITE)
579 | (1 << INTERCEPT_DR6_WRITE)
580 | (1 << INTERCEPT_DR7_WRITE);
3aed041a
JR
581
582 recalc_intercepts(svm);
583}
584
5315c716 585static inline void clr_dr_intercepts(struct vcpu_svm *svm)
3aed041a
JR
586{
587 struct vmcb *vmcb = get_host_vmcb(svm);
588
5315c716 589 vmcb->control.intercept_dr = 0;
3aed041a
JR
590
591 recalc_intercepts(svm);
592}
593
18c918c5
JR
594static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
595{
596 struct vmcb *vmcb = get_host_vmcb(svm);
597
598 vmcb->control.intercept_exceptions |= (1U << bit);
599
600 recalc_intercepts(svm);
601}
602
603static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
604{
605 struct vmcb *vmcb = get_host_vmcb(svm);
606
607 vmcb->control.intercept_exceptions &= ~(1U << bit);
608
609 recalc_intercepts(svm);
610}
611
8a05a1b8
JR
612static inline void set_intercept(struct vcpu_svm *svm, int bit)
613{
614 struct vmcb *vmcb = get_host_vmcb(svm);
615
616 vmcb->control.intercept |= (1ULL << bit);
617
618 recalc_intercepts(svm);
619}
620
621static inline void clr_intercept(struct vcpu_svm *svm, int bit)
622{
623 struct vmcb *vmcb = get_host_vmcb(svm);
624
625 vmcb->control.intercept &= ~(1ULL << bit);
626
627 recalc_intercepts(svm);
628}
629
640bd6e5
JN
630static inline bool vgif_enabled(struct vcpu_svm *svm)
631{
632 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
633}
634
2af9194d
JR
635static inline void enable_gif(struct vcpu_svm *svm)
636{
640bd6e5
JN
637 if (vgif_enabled(svm))
638 svm->vmcb->control.int_ctl |= V_GIF_MASK;
639 else
640 svm->vcpu.arch.hflags |= HF_GIF_MASK;
2af9194d
JR
641}
642
643static inline void disable_gif(struct vcpu_svm *svm)
644{
640bd6e5
JN
645 if (vgif_enabled(svm))
646 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
647 else
648 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
2af9194d
JR
649}
650
651static inline bool gif_set(struct vcpu_svm *svm)
652{
640bd6e5
JN
653 if (vgif_enabled(svm))
654 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
655 else
656 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
2af9194d
JR
657}
658
4866d5e3 659static unsigned long iopm_base;
6aa8b732
AK
660
661struct kvm_ldttss_desc {
662 u16 limit0;
663 u16 base0;
e0231715
JR
664 unsigned base1:8, type:5, dpl:2, p:1;
665 unsigned limit1:4, zero0:3, g:1, base2:8;
6aa8b732
AK
666 u32 base3;
667 u32 zero1;
668} __attribute__((packed));
669
670struct svm_cpu_data {
671 int cpu;
672
5008fdf5
AK
673 u64 asid_generation;
674 u32 max_asid;
675 u32 next_asid;
4faefff3 676 u32 min_asid;
6aa8b732
AK
677 struct kvm_ldttss_desc *tss_desc;
678
679 struct page *save_area;
15d45071 680 struct vmcb *current_vmcb;
70cd94e6
BS
681
682 /* index = sev_asid, value = vmcb pointer */
683 struct vmcb **sev_vmcbs;
6aa8b732
AK
684};
685
686static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
687
09941fbb 688static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
6aa8b732 689
9d8f549d 690#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
691#define MSRS_RANGE_SIZE 2048
692#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
693
455716fa
JR
694static u32 svm_msrpm_offset(u32 msr)
695{
696 u32 offset;
697 int i;
698
699 for (i = 0; i < NUM_MSR_MAPS; i++) {
700 if (msr < msrpm_ranges[i] ||
701 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
702 continue;
703
704 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
705 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
706
707 /* Now we have the u8 offset - but need the u32 offset */
708 return offset / 4;
709 }
710
711 /* MSR not in any range */
712 return MSR_INVALID;
713}
714
6aa8b732
AK
715#define MAX_INST_SIZE 15
716
6aa8b732
AK
717static inline void clgi(void)
718{
ac5ffda2 719 asm volatile (__ex("clgi"));
6aa8b732
AK
720}
721
722static inline void stgi(void)
723{
ac5ffda2 724 asm volatile (__ex("stgi"));
6aa8b732
AK
725}
726
727static inline void invlpga(unsigned long addr, u32 asid)
728{
ac5ffda2 729 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
6aa8b732
AK
730}
731
855feb67 732static int get_npt_level(struct kvm_vcpu *vcpu)
4b16184c
JR
733{
734#ifdef CONFIG_X86_64
2a7266a8 735 return PT64_ROOT_4LEVEL;
4b16184c
JR
736#else
737 return PT32E_ROOT_LEVEL;
738#endif
739}
740
6aa8b732
AK
741static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
742{
6dc696d4 743 vcpu->arch.efer = efer;
9167ab79
PB
744
745 if (!npt_enabled) {
746 /* Shadow paging assumes NX to be available. */
747 efer |= EFER_NX;
748
749 if (!(efer & EFER_LMA))
750 efer &= ~EFER_LME;
751 }
6aa8b732 752
9962d032 753 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
dcca1a65 754 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
6aa8b732
AK
755}
756
6aa8b732
AK
757static int is_external_interrupt(u32 info)
758{
759 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
760 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
761}
762
37ccdcbe 763static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
2809f5d2
GC
764{
765 struct vcpu_svm *svm = to_svm(vcpu);
766 u32 ret = 0;
767
768 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
37ccdcbe
PB
769 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
770 return ret;
2809f5d2
GC
771}
772
773static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
774{
775 struct vcpu_svm *svm = to_svm(vcpu);
776
777 if (mask == 0)
778 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
779 else
780 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
781
782}
783
f8ea7c60 784static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
6aa8b732 785{
a2fa3e9f
GH
786 struct vcpu_svm *svm = to_svm(vcpu);
787
d647eb63 788 if (nrips && svm->vmcb->control.next_rip != 0) {
d2922422 789 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
6bc31bdc 790 svm->next_rip = svm->vmcb->control.next_rip;
f104765b 791 }
6bc31bdc 792
1957aa63
SC
793 if (!svm->next_rip) {
794 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
795 return 0;
796 } else {
797 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
798 pr_err("%s: ip 0x%lx next 0x%llx\n",
799 __func__, kvm_rip_read(vcpu), svm->next_rip);
800 kvm_rip_write(vcpu, svm->next_rip);
801 }
2809f5d2 802 svm_set_interrupt_shadow(vcpu, 0);
f8ea7c60 803
60fc3d02 804 return 1;
6aa8b732
AK
805}
806
cfcd20e5 807static void svm_queue_exception(struct kvm_vcpu *vcpu)
116a4752
JK
808{
809 struct vcpu_svm *svm = to_svm(vcpu);
cfcd20e5
WL
810 unsigned nr = vcpu->arch.exception.nr;
811 bool has_error_code = vcpu->arch.exception.has_error_code;
664f8e26 812 bool reinject = vcpu->arch.exception.injected;
cfcd20e5 813 u32 error_code = vcpu->arch.exception.error_code;
116a4752 814
e0231715
JR
815 /*
816 * If we are within a nested VM we'd better #VMEXIT and let the guest
817 * handle the exception
818 */
ce7ddec4
JR
819 if (!reinject &&
820 nested_svm_check_exception(svm, nr, has_error_code, error_code))
116a4752
JK
821 return;
822
da998b46
JM
823 kvm_deliver_exception_payload(&svm->vcpu);
824
d647eb63 825 if (nr == BP_VECTOR && !nrips) {
66b7138f
JK
826 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
827
828 /*
829 * For guest debugging where we have to reinject #BP if some
830 * INT3 is guest-owned:
831 * Emulate nRIP by moving RIP forward. Will fail if injection
832 * raises a fault that is not intercepted. Still better than
833 * failing in all cases.
834 */
f8ea7c60 835 (void)skip_emulated_instruction(&svm->vcpu);
66b7138f
JK
836 rip = kvm_rip_read(&svm->vcpu);
837 svm->int3_rip = rip + svm->vmcb->save.cs.base;
838 svm->int3_injected = rip - old_rip;
839 }
840
116a4752
JK
841 svm->vmcb->control.event_inj = nr
842 | SVM_EVTINJ_VALID
843 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
844 | SVM_EVTINJ_TYPE_EXEPT;
845 svm->vmcb->control.event_inj_err = error_code;
846}
847
67ec6607
JR
848static void svm_init_erratum_383(void)
849{
850 u32 low, high;
851 int err;
852 u64 val;
853
e6ee94d5 854 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
67ec6607
JR
855 return;
856
857 /* Use _safe variants to not break nested virtualization */
858 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
859 if (err)
860 return;
861
862 val |= (1ULL << 47);
863
864 low = lower_32_bits(val);
865 high = upper_32_bits(val);
866
867 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
868
869 erratum_383_found = true;
870}
871
2b036c6b
BO
872static void svm_init_osvw(struct kvm_vcpu *vcpu)
873{
874 /*
875 * Guests should see errata 400 and 415 as fixed (assuming that
876 * HLT and IO instructions are intercepted).
877 */
878 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
879 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
880
881 /*
882 * By increasing VCPU's osvw.length to 3 we are telling the guest that
883 * all osvw.status bits inside that length, including bit 0 (which is
884 * reserved for erratum 298), are valid. However, if host processor's
885 * osvw_len is 0 then osvw_status[0] carries no information. We need to
886 * be conservative here and therefore we tell the guest that erratum 298
887 * is present (because we really don't know).
888 */
889 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
890 vcpu->arch.osvw.status |= 1;
891}
892
6aa8b732
AK
893static int has_svm(void)
894{
63d1142f 895 const char *msg;
6aa8b732 896
63d1142f 897 if (!cpu_has_svm(&msg)) {
ff81ff10 898 printk(KERN_INFO "has_svm: %s\n", msg);
6aa8b732
AK
899 return 0;
900 }
901
6aa8b732
AK
902 return 1;
903}
904
13a34e06 905static void svm_hardware_disable(void)
6aa8b732 906{
fbc0db76
JR
907 /* Make sure we clean up behind us */
908 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
909 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
910
2c8dceeb 911 cpu_svm_disable();
1018faa6
JR
912
913 amd_pmu_disable_virt();
6aa8b732
AK
914}
915
13a34e06 916static int svm_hardware_enable(void)
6aa8b732
AK
917{
918
0fe1e009 919 struct svm_cpu_data *sd;
6aa8b732 920 uint64_t efer;
6aa8b732
AK
921 struct desc_struct *gdt;
922 int me = raw_smp_processor_id();
923
10474ae8
AG
924 rdmsrl(MSR_EFER, efer);
925 if (efer & EFER_SVME)
926 return -EBUSY;
927
6aa8b732 928 if (!has_svm()) {
1f5b77f5 929 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
10474ae8 930 return -EINVAL;
6aa8b732 931 }
0fe1e009 932 sd = per_cpu(svm_data, me);
0fe1e009 933 if (!sd) {
1f5b77f5 934 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
10474ae8 935 return -EINVAL;
6aa8b732
AK
936 }
937
0fe1e009
TH
938 sd->asid_generation = 1;
939 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
940 sd->next_asid = sd->max_asid + 1;
ed3cd233 941 sd->min_asid = max_sev_asid + 1;
6aa8b732 942
45fc8757 943 gdt = get_current_gdt_rw();
0fe1e009 944 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
6aa8b732 945
9962d032 946 wrmsrl(MSR_EFER, efer | EFER_SVME);
6aa8b732 947
d0316554 948 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
10474ae8 949
fbc0db76
JR
950 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
951 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
89cbc767 952 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
fbc0db76
JR
953 }
954
2b036c6b
BO
955
956 /*
957 * Get OSVW bits.
958 *
959 * Note that it is possible to have a system with mixed processor
960 * revisions and therefore different OSVW bits. If bits are not the same
961 * on different processors then choose the worst case (i.e. if erratum
962 * is present on one processor and not on another then assume that the
963 * erratum is present everywhere).
964 */
965 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
966 uint64_t len, status = 0;
967 int err;
968
969 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
970 if (!err)
971 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
972 &err);
973
974 if (err)
975 osvw_status = osvw_len = 0;
976 else {
977 if (len < osvw_len)
978 osvw_len = len;
979 osvw_status |= status;
980 osvw_status &= (1ULL << osvw_len) - 1;
981 }
982 } else
983 osvw_status = osvw_len = 0;
984
67ec6607
JR
985 svm_init_erratum_383();
986
1018faa6
JR
987 amd_pmu_enable_virt();
988
10474ae8 989 return 0;
6aa8b732
AK
990}
991
0da1db75
JR
992static void svm_cpu_uninit(int cpu)
993{
0fe1e009 994 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
0da1db75 995
0fe1e009 996 if (!sd)
0da1db75
JR
997 return;
998
999 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
70cd94e6 1000 kfree(sd->sev_vmcbs);
0fe1e009
TH
1001 __free_page(sd->save_area);
1002 kfree(sd);
0da1db75
JR
1003}
1004
6aa8b732
AK
1005static int svm_cpu_init(int cpu)
1006{
0fe1e009 1007 struct svm_cpu_data *sd;
6aa8b732
AK
1008 int r;
1009
0fe1e009
TH
1010 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1011 if (!sd)
6aa8b732 1012 return -ENOMEM;
0fe1e009 1013 sd->cpu = cpu;
6aa8b732 1014 r = -ENOMEM;
70cd94e6 1015 sd->save_area = alloc_page(GFP_KERNEL);
0fe1e009 1016 if (!sd->save_area)
6aa8b732
AK
1017 goto err_1;
1018
70cd94e6
BS
1019 if (svm_sev_enabled()) {
1020 r = -ENOMEM;
6da2ec56
KC
1021 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1022 sizeof(void *),
1023 GFP_KERNEL);
70cd94e6
BS
1024 if (!sd->sev_vmcbs)
1025 goto err_1;
1026 }
1027
0fe1e009 1028 per_cpu(svm_data, cpu) = sd;
6aa8b732
AK
1029
1030 return 0;
1031
1032err_1:
0fe1e009 1033 kfree(sd);
6aa8b732
AK
1034 return r;
1035
1036}
1037
ac72a9b7
JR
1038static bool valid_msr_intercept(u32 index)
1039{
1040 int i;
1041
1042 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1043 if (direct_access_msrs[i].index == index)
1044 return true;
1045
1046 return false;
1047}
1048
b2ac58f9
KA
1049static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1050{
1051 u8 bit_write;
1052 unsigned long tmp;
1053 u32 offset;
1054 u32 *msrpm;
1055
1056 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1057 to_svm(vcpu)->msrpm;
1058
1059 offset = svm_msrpm_offset(msr);
1060 bit_write = 2 * (msr & 0x0f) + 1;
1061 tmp = msrpm[offset];
1062
1063 BUG_ON(offset == MSR_INVALID);
1064
1065 return !!test_bit(bit_write, &tmp);
1066}
1067
bfc733a7
RR
1068static void set_msr_interception(u32 *msrpm, unsigned msr,
1069 int read, int write)
6aa8b732 1070{
455716fa
JR
1071 u8 bit_read, bit_write;
1072 unsigned long tmp;
1073 u32 offset;
6aa8b732 1074
ac72a9b7
JR
1075 /*
1076 * If this warning triggers extend the direct_access_msrs list at the
1077 * beginning of the file
1078 */
1079 WARN_ON(!valid_msr_intercept(msr));
1080
455716fa
JR
1081 offset = svm_msrpm_offset(msr);
1082 bit_read = 2 * (msr & 0x0f);
1083 bit_write = 2 * (msr & 0x0f) + 1;
1084 tmp = msrpm[offset];
1085
1086 BUG_ON(offset == MSR_INVALID);
1087
1088 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1089 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1090
1091 msrpm[offset] = tmp;
6aa8b732
AK
1092}
1093
f65c229c 1094static void svm_vcpu_init_msrpm(u32 *msrpm)
6aa8b732
AK
1095{
1096 int i;
1097
f65c229c
JR
1098 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1099
ac72a9b7
JR
1100 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1101 if (!direct_access_msrs[i].always)
1102 continue;
1103
1104 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1105 }
f65c229c
JR
1106}
1107
323c3d80
JR
1108static void add_msr_offset(u32 offset)
1109{
1110 int i;
1111
1112 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1113
1114 /* Offset already in list? */
1115 if (msrpm_offsets[i] == offset)
bfc733a7 1116 return;
323c3d80
JR
1117
1118 /* Slot used by another offset? */
1119 if (msrpm_offsets[i] != MSR_INVALID)
1120 continue;
1121
1122 /* Add offset to list */
1123 msrpm_offsets[i] = offset;
1124
1125 return;
6aa8b732 1126 }
323c3d80
JR
1127
1128 /*
1129 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1130 * increase MSRPM_OFFSETS in this case.
1131 */
bfc733a7 1132 BUG();
6aa8b732
AK
1133}
1134
323c3d80 1135static void init_msrpm_offsets(void)
f65c229c 1136{
323c3d80 1137 int i;
f65c229c 1138
323c3d80
JR
1139 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1140
1141 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1142 u32 offset;
1143
1144 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1145 BUG_ON(offset == MSR_INVALID);
1146
1147 add_msr_offset(offset);
1148 }
f65c229c
JR
1149}
1150
24e09cbf
JR
1151static void svm_enable_lbrv(struct vcpu_svm *svm)
1152{
1153 u32 *msrpm = svm->msrpm;
1154
0dc92119 1155 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
24e09cbf
JR
1156 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1157 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1158 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1159 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1160}
1161
1162static void svm_disable_lbrv(struct vcpu_svm *svm)
1163{
1164 u32 *msrpm = svm->msrpm;
1165
0dc92119 1166 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
24e09cbf
JR
1167 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1168 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1169 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1170 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1171}
1172
4aebd0e9
LP
1173static void disable_nmi_singlestep(struct vcpu_svm *svm)
1174{
1175 svm->nmi_singlestep = false;
640bd6e5 1176
ab2f4d73
LP
1177 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1178 /* Clear our flags if they were not set by the guest */
1179 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1180 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1181 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1182 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1183 }
4aebd0e9
LP
1184}
1185
5881f737 1186/* Note:
81811c16 1187 * This hash table is used to map VM_ID to a struct kvm_svm,
5881f737
SS
1188 * when handling AMD IOMMU GALOG notification to schedule in
1189 * a particular vCPU.
1190 */
1191#define SVM_VM_DATA_HASH_BITS 8
681bcea8 1192static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
3f0d4db7
DV
1193static u32 next_vm_id = 0;
1194static bool next_vm_id_wrapped = 0;
681bcea8 1195static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
5881f737
SS
1196
1197/* Note:
1198 * This function is called from IOMMU driver to notify
1199 * SVM to schedule in a particular vCPU of a particular VM.
1200 */
1201static int avic_ga_log_notifier(u32 ga_tag)
1202{
1203 unsigned long flags;
81811c16 1204 struct kvm_svm *kvm_svm;
5881f737
SS
1205 struct kvm_vcpu *vcpu = NULL;
1206 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1207 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1208
1209 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1210
1211 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
81811c16
SC
1212 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1213 if (kvm_svm->avic_vm_id != vm_id)
5881f737 1214 continue;
81811c16 1215 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
5881f737
SS
1216 break;
1217 }
1218 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1219
5881f737
SS
1220 /* Note:
1221 * At this point, the IOMMU should have already set the pending
1222 * bit in the vAPIC backing page. So, we just need to schedule
1223 * in the vcpu.
1224 */
1cf53587 1225 if (vcpu)
5881f737
SS
1226 kvm_vcpu_wake_up(vcpu);
1227
1228 return 0;
1229}
1230
e9df0942
BS
1231static __init int sev_hardware_setup(void)
1232{
1233 struct sev_user_data_status *status;
1234 int rc;
1235
1236 /* Maximum number of encrypted guests supported simultaneously */
1237 max_sev_asid = cpuid_ecx(0x8000001F);
1238
1239 if (!max_sev_asid)
1240 return 1;
1241
1654efcb
BS
1242 /* Minimum ASID value that should be used for SEV guest */
1243 min_sev_asid = cpuid_edx(0x8000001F);
1244
33af3a7e 1245 /* Initialize SEV ASID bitmaps */
a101c9d6 1246 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
1654efcb
BS
1247 if (!sev_asid_bitmap)
1248 return 1;
1249
33af3a7e
TL
1250 sev_reclaim_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
1251 if (!sev_reclaim_asid_bitmap)
1252 return 1;
1253
e9df0942
BS
1254 status = kmalloc(sizeof(*status), GFP_KERNEL);
1255 if (!status)
1256 return 1;
1257
1258 /*
1259 * Check SEV platform status.
1260 *
1261 * PLATFORM_STATUS can be called in any state, if we failed to query
1262 * the PLATFORM status then either PSP firmware does not support SEV
1263 * feature or SEV firmware is dead.
1264 */
1265 rc = sev_platform_status(status, NULL);
1266 if (rc)
1267 goto err;
1268
1269 pr_info("SEV supported\n");
1270
1271err:
1272 kfree(status);
1273 return rc;
1274}
1275
8566ac8b
BM
1276static void grow_ple_window(struct kvm_vcpu *vcpu)
1277{
1278 struct vcpu_svm *svm = to_svm(vcpu);
1279 struct vmcb_control_area *control = &svm->vmcb->control;
1280 int old = control->pause_filter_count;
1281
1282 control->pause_filter_count = __grow_ple_window(old,
1283 pause_filter_count,
1284 pause_filter_count_grow,
1285 pause_filter_count_max);
1286
4f75bcc3 1287 if (control->pause_filter_count != old) {
8566ac8b 1288 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
4f75bcc3
PX
1289 trace_kvm_ple_window_update(vcpu->vcpu_id,
1290 control->pause_filter_count, old);
1291 }
8566ac8b
BM
1292}
1293
1294static void shrink_ple_window(struct kvm_vcpu *vcpu)
1295{
1296 struct vcpu_svm *svm = to_svm(vcpu);
1297 struct vmcb_control_area *control = &svm->vmcb->control;
1298 int old = control->pause_filter_count;
1299
1300 control->pause_filter_count =
1301 __shrink_ple_window(old,
1302 pause_filter_count,
1303 pause_filter_count_shrink,
1304 pause_filter_count);
4f75bcc3 1305 if (control->pause_filter_count != old) {
8566ac8b 1306 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
4f75bcc3
PX
1307 trace_kvm_ple_window_update(vcpu->vcpu_id,
1308 control->pause_filter_count, old);
1309 }
8566ac8b
BM
1310}
1311
52918ed5
TL
1312/*
1313 * The default MMIO mask is a single bit (excluding the present bit),
1314 * which could conflict with the memory encryption bit. Check for
1315 * memory encryption support and override the default MMIO mask if
1316 * memory encryption is enabled.
1317 */
1318static __init void svm_adjust_mmio_mask(void)
1319{
1320 unsigned int enc_bit, mask_bit;
1321 u64 msr, mask;
1322
1323 /* If there is no memory encryption support, use existing mask */
1324 if (cpuid_eax(0x80000000) < 0x8000001f)
1325 return;
1326
1327 /* If memory encryption is not enabled, use existing mask */
1328 rdmsrl(MSR_K8_SYSCFG, msr);
1329 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
1330 return;
1331
1332 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
1333 mask_bit = boot_cpu_data.x86_phys_bits;
1334
1335 /* Increment the mask bit if it is the same as the encryption bit */
1336 if (enc_bit == mask_bit)
1337 mask_bit++;
1338
1339 /*
1340 * If the mask bit location is below 52, then some bits above the
1341 * physical addressing limit will always be reserved, so use the
1342 * rsvd_bits() function to generate the mask. This mask, along with
1343 * the present bit, will be used to generate a page fault with
1344 * PFER.RSV = 1.
1345 *
1346 * If the mask bit location is 52 (or above), then clear the mask.
1347 */
1348 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
1349
1350 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
1351}
1352
6aa8b732
AK
1353static __init int svm_hardware_setup(void)
1354{
1355 int cpu;
1356 struct page *iopm_pages;
f65c229c 1357 void *iopm_va;
6aa8b732
AK
1358 int r;
1359
6aa8b732
AK
1360 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1361
1362 if (!iopm_pages)
1363 return -ENOMEM;
c8681339
AL
1364
1365 iopm_va = page_address(iopm_pages);
1366 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
6aa8b732
AK
1367 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1368
323c3d80
JR
1369 init_msrpm_offsets();
1370
50a37eb4
JR
1371 if (boot_cpu_has(X86_FEATURE_NX))
1372 kvm_enable_efer_bits(EFER_NX);
1373
1b2fd70c
AG
1374 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1375 kvm_enable_efer_bits(EFER_FFXSR);
1376
92a1f12d 1377 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
92a1f12d 1378 kvm_has_tsc_control = true;
bc9b961b
HZ
1379 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1380 kvm_tsc_scaling_ratio_frac_bits = 32;
92a1f12d
JR
1381 }
1382
8566ac8b
BM
1383 /* Check for pause filtering support */
1384 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1385 pause_filter_count = 0;
1386 pause_filter_thresh = 0;
1387 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1388 pause_filter_thresh = 0;
1389 }
1390
236de055
AG
1391 if (nested) {
1392 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
eec4b140 1393 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
236de055
AG
1394 }
1395
e9df0942
BS
1396 if (sev) {
1397 if (boot_cpu_has(X86_FEATURE_SEV) &&
1398 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1399 r = sev_hardware_setup();
1400 if (r)
1401 sev = false;
1402 } else {
1403 sev = false;
1404 }
1405 }
1406
52918ed5
TL
1407 svm_adjust_mmio_mask();
1408
3230bb47 1409 for_each_possible_cpu(cpu) {
6aa8b732
AK
1410 r = svm_cpu_init(cpu);
1411 if (r)
f65c229c 1412 goto err;
6aa8b732 1413 }
33bd6a0b 1414
2a6b20b8 1415 if (!boot_cpu_has(X86_FEATURE_NPT))
e3da3acd
JR
1416 npt_enabled = false;
1417
6c7dac72
JR
1418 if (npt_enabled && !npt) {
1419 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1420 npt_enabled = false;
1421 }
1422
18552672 1423 if (npt_enabled) {
e3da3acd 1424 printk(KERN_INFO "kvm: Nested Paging enabled\n");
18552672 1425 kvm_enable_tdp();
5f4cb662
JR
1426 } else
1427 kvm_disable_tdp();
e3da3acd 1428
d647eb63
PB
1429 if (nrips) {
1430 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1431 nrips = false;
1432 }
1433
5b8abf1f
SS
1434 if (avic) {
1435 if (!npt_enabled ||
1436 !boot_cpu_has(X86_FEATURE_AVIC) ||
5881f737 1437 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
5b8abf1f 1438 avic = false;
5881f737 1439 } else {
5b8abf1f 1440 pr_info("AVIC enabled\n");
5881f737 1441
5881f737
SS
1442 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1443 }
5b8abf1f 1444 }
44a95dae 1445
89c8a498
JN
1446 if (vls) {
1447 if (!npt_enabled ||
5442c269 1448 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
89c8a498
JN
1449 !IS_ENABLED(CONFIG_X86_64)) {
1450 vls = false;
1451 } else {
1452 pr_info("Virtual VMLOAD VMSAVE supported\n");
1453 }
1454 }
1455
640bd6e5
JN
1456 if (vgif) {
1457 if (!boot_cpu_has(X86_FEATURE_VGIF))
1458 vgif = false;
1459 else
1460 pr_info("Virtual GIF supported\n");
1461 }
1462
6aa8b732
AK
1463 return 0;
1464
f65c229c 1465err:
6aa8b732
AK
1466 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1467 iopm_base = 0;
1468 return r;
1469}
1470
1471static __exit void svm_hardware_unsetup(void)
1472{
0da1db75
JR
1473 int cpu;
1474
33af3a7e 1475 if (svm_sev_enabled()) {
a101c9d6 1476 bitmap_free(sev_asid_bitmap);
33af3a7e
TL
1477 bitmap_free(sev_reclaim_asid_bitmap);
1478
1479 sev_flush_asids();
1480 }
1654efcb 1481
3230bb47 1482 for_each_possible_cpu(cpu)
0da1db75
JR
1483 svm_cpu_uninit(cpu);
1484
6aa8b732 1485 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
f65c229c 1486 iopm_base = 0;
6aa8b732
AK
1487}
1488
1489static void init_seg(struct vmcb_seg *seg)
1490{
1491 seg->selector = 0;
1492 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
e0231715 1493 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
6aa8b732
AK
1494 seg->limit = 0xffff;
1495 seg->base = 0;
1496}
1497
1498static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1499{
1500 seg->selector = 0;
1501 seg->attrib = SVM_SELECTOR_P_MASK | type;
1502 seg->limit = 0xffff;
1503 seg->base = 0;
1504}
1505
e79f245d
KA
1506static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1507{
1508 struct vcpu_svm *svm = to_svm(vcpu);
1509
1510 if (is_guest_mode(vcpu))
1511 return svm->nested.hsave->control.tsc_offset;
1512
1513 return vcpu->arch.tsc_offset;
1514}
1515
326e7425 1516static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
f4e1b3c8
ZA
1517{
1518 struct vcpu_svm *svm = to_svm(vcpu);
1519 u64 g_tsc_offset = 0;
1520
2030753d 1521 if (is_guest_mode(vcpu)) {
e79f245d 1522 /* Write L1's TSC offset. */
f4e1b3c8
ZA
1523 g_tsc_offset = svm->vmcb->control.tsc_offset -
1524 svm->nested.hsave->control.tsc_offset;
1525 svm->nested.hsave->control.tsc_offset = offset;
45c3af97
PB
1526 }
1527
1528 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1529 svm->vmcb->control.tsc_offset - g_tsc_offset,
1530 offset);
f4e1b3c8
ZA
1531
1532 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
116a0a23
JR
1533
1534 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
326e7425 1535 return svm->vmcb->control.tsc_offset;
f4e1b3c8
ZA
1536}
1537
44a95dae
SS
1538static void avic_init_vmcb(struct vcpu_svm *svm)
1539{
1540 struct vmcb *vmcb = svm->vmcb;
81811c16 1541 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
d0ec49d4 1542 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
81811c16
SC
1543 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1544 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
44a95dae
SS
1545
1546 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1547 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1548 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1549 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
6c3e4422
SS
1550 if (kvm_apicv_activated(svm->vcpu.kvm))
1551 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1552 else
1553 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
44a95dae
SS
1554}
1555
5690891b 1556static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 1557{
e6101a96
JR
1558 struct vmcb_control_area *control = &svm->vmcb->control;
1559 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732 1560
4ee546b4 1561 svm->vcpu.arch.hflags = 0;
bff78274 1562
4ee546b4
RJ
1563 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1564 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1565 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1566 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1567 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1568 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
3bbf3565
SS
1569 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1570 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
6aa8b732 1571
5315c716 1572 set_dr_intercepts(svm);
6aa8b732 1573
18c918c5
JR
1574 set_exception_intercept(svm, PF_VECTOR);
1575 set_exception_intercept(svm, UD_VECTOR);
1576 set_exception_intercept(svm, MC_VECTOR);
54a20552 1577 set_exception_intercept(svm, AC_VECTOR);
cbdb967a 1578 set_exception_intercept(svm, DB_VECTOR);
9718420e
LA
1579 /*
1580 * Guest access to VMware backdoor ports could legitimately
1581 * trigger #GP because of TSS I/O permission bitmap.
1582 * We intercept those #GP and allow access to them anyway
1583 * as VMware does.
1584 */
1585 if (enable_vmware_backdoor)
1586 set_exception_intercept(svm, GP_VECTOR);
6aa8b732 1587
8a05a1b8
JR
1588 set_intercept(svm, INTERCEPT_INTR);
1589 set_intercept(svm, INTERCEPT_NMI);
1590 set_intercept(svm, INTERCEPT_SMI);
1591 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
332b56e4 1592 set_intercept(svm, INTERCEPT_RDPMC);
8a05a1b8
JR
1593 set_intercept(svm, INTERCEPT_CPUID);
1594 set_intercept(svm, INTERCEPT_INVD);
8a05a1b8
JR
1595 set_intercept(svm, INTERCEPT_INVLPG);
1596 set_intercept(svm, INTERCEPT_INVLPGA);
1597 set_intercept(svm, INTERCEPT_IOIO_PROT);
1598 set_intercept(svm, INTERCEPT_MSR_PROT);
1599 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1600 set_intercept(svm, INTERCEPT_SHUTDOWN);
1601 set_intercept(svm, INTERCEPT_VMRUN);
1602 set_intercept(svm, INTERCEPT_VMMCALL);
1603 set_intercept(svm, INTERCEPT_VMLOAD);
1604 set_intercept(svm, INTERCEPT_VMSAVE);
1605 set_intercept(svm, INTERCEPT_STGI);
1606 set_intercept(svm, INTERCEPT_CLGI);
1607 set_intercept(svm, INTERCEPT_SKINIT);
1608 set_intercept(svm, INTERCEPT_WBINVD);
81dd35d4 1609 set_intercept(svm, INTERCEPT_XSETBV);
0cb8410b 1610 set_intercept(svm, INTERCEPT_RDPRU);
7607b717 1611 set_intercept(svm, INTERCEPT_RSM);
6aa8b732 1612
4d5422ce 1613 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
668fffa3
MT
1614 set_intercept(svm, INTERCEPT_MONITOR);
1615 set_intercept(svm, INTERCEPT_MWAIT);
1616 }
1617
caa057a2
WL
1618 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1619 set_intercept(svm, INTERCEPT_HLT);
1620
d0ec49d4
TL
1621 control->iopm_base_pa = __sme_set(iopm_base);
1622 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
6aa8b732
AK
1623 control->int_ctl = V_INTR_MASKING_MASK;
1624
1625 init_seg(&save->es);
1626 init_seg(&save->ss);
1627 init_seg(&save->ds);
1628 init_seg(&save->fs);
1629 init_seg(&save->gs);
1630
1631 save->cs.selector = 0xf000;
04b66839 1632 save->cs.base = 0xffff0000;
6aa8b732
AK
1633 /* Executable/Readable Code Segment */
1634 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1635 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1636 save->cs.limit = 0xffff;
6aa8b732
AK
1637
1638 save->gdtr.limit = 0xffff;
1639 save->idtr.limit = 0xffff;
1640
1641 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1642 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1643
5690891b 1644 svm_set_efer(&svm->vcpu, 0);
d77c26fc 1645 save->dr6 = 0xffff0ff0;
f6e78475 1646 kvm_set_rflags(&svm->vcpu, 2);
6aa8b732 1647 save->rip = 0x0000fff0;
5fdbf976 1648 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732 1649
e0231715 1650 /*
18fa000a 1651 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
d28bc9dd 1652 * It also updates the guest-visible cr0 value.
6aa8b732 1653 */
79a8059d 1654 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
ebae871a 1655 kvm_mmu_reset_context(&svm->vcpu);
18fa000a 1656
66aee91a 1657 save->cr4 = X86_CR4_PAE;
6aa8b732 1658 /* rdx = ?? */
709ddebf
JR
1659
1660 if (npt_enabled) {
1661 /* Setup VMCB for Nested Paging */
cea3a19b 1662 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
8a05a1b8 1663 clr_intercept(svm, INTERCEPT_INVLPG);
18c918c5 1664 clr_exception_intercept(svm, PF_VECTOR);
4ee546b4
RJ
1665 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1666 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
74545705 1667 save->g_pat = svm->vcpu.arch.pat;
709ddebf
JR
1668 save->cr3 = 0;
1669 save->cr4 = 0;
1670 }
f40f6a45 1671 svm->asid_generation = 0;
1371d904 1672
e6aa9abd 1673 svm->nested.vmcb = 0;
2af9194d
JR
1674 svm->vcpu.arch.hflags = 0;
1675
8566ac8b
BM
1676 if (pause_filter_count) {
1677 control->pause_filter_count = pause_filter_count;
1678 if (pause_filter_thresh)
1679 control->pause_filter_thresh = pause_filter_thresh;
8a05a1b8 1680 set_intercept(svm, INTERCEPT_PAUSE);
8566ac8b
BM
1681 } else {
1682 clr_intercept(svm, INTERCEPT_PAUSE);
565d0998
ML
1683 }
1684
67034bb9 1685 if (kvm_vcpu_apicv_active(&svm->vcpu))
44a95dae
SS
1686 avic_init_vmcb(svm);
1687
89c8a498
JN
1688 /*
1689 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1690 * in VMCB and clear intercepts to avoid #VMEXIT.
1691 */
1692 if (vls) {
1693 clr_intercept(svm, INTERCEPT_VMLOAD);
1694 clr_intercept(svm, INTERCEPT_VMSAVE);
1695 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1696 }
1697
640bd6e5
JN
1698 if (vgif) {
1699 clr_intercept(svm, INTERCEPT_STGI);
1700 clr_intercept(svm, INTERCEPT_CLGI);
1701 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1702 }
1703
35c6f649 1704 if (sev_guest(svm->vcpu.kvm)) {
1654efcb 1705 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
35c6f649
BS
1706 clr_exception_intercept(svm, UD_VECTOR);
1707 }
1654efcb 1708
8d28fec4
RJ
1709 mark_all_dirty(svm->vmcb);
1710
2af9194d 1711 enable_gif(svm);
44a95dae
SS
1712
1713}
1714
d3e7dec0
DC
1715static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1716 unsigned int index)
44a95dae
SS
1717{
1718 u64 *avic_physical_id_table;
81811c16 1719 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
44a95dae
SS
1720
1721 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1722 return NULL;
1723
81811c16 1724 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
44a95dae
SS
1725
1726 return &avic_physical_id_table[index];
1727}
1728
1729/**
1730 * Note:
1731 * AVIC hardware walks the nested page table to check permissions,
1732 * but does not use the SPA address specified in the leaf page
1733 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1734 * field of the VMCB. Therefore, we set up the
1735 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1736 */
dcbcfa28 1737static int avic_update_access_page(struct kvm *kvm, bool activate)
44a95dae 1738{
30510387 1739 int ret = 0;
44a95dae 1740
30510387 1741 mutex_lock(&kvm->slots_lock);
e2ed4078
SS
1742 /*
1743 * During kvm_destroy_vm(), kvm_pit_set_reinject() could trigger
1744 * APICv mode change, which update APIC_ACCESS_PAGE_PRIVATE_MEMSLOT
1745 * memory region. So, we need to ensure that kvm->mm == current->mm.
1746 */
1747 if ((kvm->arch.apic_access_page_done == activate) ||
1748 (kvm->mm != current->mm))
30510387 1749 goto out;
44a95dae 1750
30510387
WW
1751 ret = __x86_set_memory_region(kvm,
1752 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1753 APIC_DEFAULT_PHYS_BASE,
dcbcfa28 1754 activate ? PAGE_SIZE : 0);
44a95dae 1755 if (ret)
30510387 1756 goto out;
44a95dae 1757
dcbcfa28 1758 kvm->arch.apic_access_page_done = activate;
30510387
WW
1759out:
1760 mutex_unlock(&kvm->slots_lock);
1761 return ret;
44a95dae
SS
1762}
1763
1764static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1765{
44a95dae
SS
1766 u64 *entry, new_entry;
1767 int id = vcpu->vcpu_id;
1768 struct vcpu_svm *svm = to_svm(vcpu);
1769
44a95dae
SS
1770 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1771 return -EINVAL;
1772
1773 if (!svm->vcpu.arch.apic->regs)
1774 return -EINVAL;
1775
6c3e4422
SS
1776 if (kvm_apicv_activated(vcpu->kvm)) {
1777 int ret;
1778
1779 ret = avic_update_access_page(vcpu->kvm, true);
1780 if (ret)
1781 return ret;
1782 }
1783
44a95dae
SS
1784 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1785
1786 /* Setting AVIC backing page address in the phy APIC ID table */
1787 entry = avic_get_physical_id_entry(vcpu, id);
1788 if (!entry)
1789 return -EINVAL;
1790
d0ec49d4
TL
1791 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1792 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1793 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
44a95dae
SS
1794 WRITE_ONCE(*entry, new_entry);
1795
1796 svm->avic_physical_id_cache = entry;
1797
1798 return 0;
1799}
1800
e3b9a9e1 1801static void sev_asid_free(int asid)
1654efcb 1802{
70cd94e6
BS
1803 struct svm_cpu_data *sd;
1804 int cpu, pos;
1654efcb 1805
e3b9a9e1
TL
1806 mutex_lock(&sev_bitmap_lock);
1807
1654efcb 1808 pos = asid - 1;
33af3a7e 1809 __set_bit(pos, sev_reclaim_asid_bitmap);
70cd94e6
BS
1810
1811 for_each_possible_cpu(cpu) {
1812 sd = per_cpu(svm_data, cpu);
1813 sd->sev_vmcbs[pos] = NULL;
1814 }
1654efcb 1815
e3b9a9e1 1816 mutex_unlock(&sev_bitmap_lock);
1654efcb
BS
1817}
1818
59414c98
BS
1819static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1820{
1821 struct sev_data_decommission *decommission;
1822 struct sev_data_deactivate *data;
1823
1824 if (!handle)
1825 return;
1826
1827 data = kzalloc(sizeof(*data), GFP_KERNEL);
1828 if (!data)
1829 return;
1830
1831 /* deactivate handle */
1832 data->handle = handle;
83af5e65 1833
33af3a7e
TL
1834 /* Guard DEACTIVATE against WBINVD/DF_FLUSH used in ASID recycling */
1835 down_read(&sev_deactivate_lock);
59414c98 1836 sev_guest_deactivate(data, NULL);
33af3a7e 1837 up_read(&sev_deactivate_lock);
83af5e65 1838
59414c98
BS
1839 kfree(data);
1840
1841 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1842 if (!decommission)
1843 return;
1844
1845 /* decommission handle */
1846 decommission->handle = handle;
1847 sev_guest_decommission(decommission, NULL);
1848
1849 kfree(decommission);
1850}
1851
89c50580
BS
1852static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1853 unsigned long ulen, unsigned long *n,
1854 int write)
1855{
81811c16 1856 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
89c50580
BS
1857 unsigned long npages, npinned, size;
1858 unsigned long locked, lock_limit;
1859 struct page **pages;
86bf20cb
DC
1860 unsigned long first, last;
1861
1862 if (ulen == 0 || uaddr + ulen < uaddr)
1863 return NULL;
89c50580
BS
1864
1865 /* Calculate number of pages. */
1866 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1867 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1868 npages = (last - first + 1);
1869
1870 locked = sev->pages_locked + npages;
1871 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1872 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1873 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1874 return NULL;
1875 }
1876
1877 /* Avoid using vmalloc for smaller buffers. */
1878 size = npages * sizeof(struct page *);
1879 if (size > PAGE_SIZE)
1ec69647
BG
1880 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1881 PAGE_KERNEL);
89c50580 1882 else
1ec69647 1883 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
89c50580
BS
1884
1885 if (!pages)
1886 return NULL;
1887
1888 /* Pin the user virtual address. */
73b0140b 1889 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
89c50580
BS
1890 if (npinned != npages) {
1891 pr_err("SEV: Failure locking %lu pages.\n", npages);
1892 goto err;
1893 }
1894
1895 *n = npages;
1896 sev->pages_locked = locked;
1897
1898 return pages;
1899
1900err:
1901 if (npinned > 0)
1902 release_pages(pages, npinned);
1903
1904 kvfree(pages);
1905 return NULL;
1906}
1907
1908static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1909 unsigned long npages)
1910{
81811c16 1911 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
89c50580
BS
1912
1913 release_pages(pages, npages);
1914 kvfree(pages);
1915 sev->pages_locked -= npages;
1916}
1917
1918static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1919{
1920 uint8_t *page_virtual;
1921 unsigned long i;
1922
1923 if (npages == 0 || pages == NULL)
1924 return;
1925
1926 for (i = 0; i < npages; i++) {
1927 page_virtual = kmap_atomic(pages[i]);
1928 clflush_cache_range(page_virtual, PAGE_SIZE);
1929 kunmap_atomic(page_virtual);
1930 }
1931}
1932
1e80fdc0
BS
1933static void __unregister_enc_region_locked(struct kvm *kvm,
1934 struct enc_region *region)
1935{
1936 /*
1937 * The guest may change the memory encryption attribute from C=0 -> C=1
1938 * or vice versa for this memory range. Lets make sure caches are
1939 * flushed to ensure that guest data gets written into memory with
1940 * correct C-bit.
1941 */
1942 sev_clflush_pages(region->pages, region->npages);
1943
1944 sev_unpin_memory(kvm, region->pages, region->npages);
1945 list_del(&region->list);
1946 kfree(region);
1947}
1948
434a1e94
SC
1949static struct kvm *svm_vm_alloc(void)
1950{
1ec69647
BG
1951 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1952 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1953 PAGE_KERNEL);
81811c16 1954 return &kvm_svm->kvm;
434a1e94
SC
1955}
1956
1957static void svm_vm_free(struct kvm *kvm)
1958{
d1e5b0e9 1959 vfree(to_kvm_svm(kvm));
434a1e94
SC
1960}
1961
1654efcb
BS
1962static void sev_vm_destroy(struct kvm *kvm)
1963{
81811c16 1964 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
1e80fdc0
BS
1965 struct list_head *head = &sev->regions_list;
1966 struct list_head *pos, *q;
59414c98 1967
1654efcb
BS
1968 if (!sev_guest(kvm))
1969 return;
1970
1e80fdc0
BS
1971 mutex_lock(&kvm->lock);
1972
1973 /*
1974 * if userspace was terminated before unregistering the memory regions
1975 * then lets unpin all the registered memory.
1976 */
1977 if (!list_empty(head)) {
1978 list_for_each_safe(pos, q, head) {
1979 __unregister_enc_region_locked(kvm,
1980 list_entry(pos, struct enc_region, list));
1981 }
1982 }
1983
1984 mutex_unlock(&kvm->lock);
1985
59414c98 1986 sev_unbind_asid(kvm, sev->handle);
e3b9a9e1 1987 sev_asid_free(sev->asid);
1654efcb
BS
1988}
1989
44a95dae
SS
1990static void avic_vm_destroy(struct kvm *kvm)
1991{
5881f737 1992 unsigned long flags;
81811c16 1993 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
44a95dae 1994
3863dff0
DV
1995 if (!avic)
1996 return;
1997
81811c16
SC
1998 if (kvm_svm->avic_logical_id_table_page)
1999 __free_page(kvm_svm->avic_logical_id_table_page);
2000 if (kvm_svm->avic_physical_id_table_page)
2001 __free_page(kvm_svm->avic_physical_id_table_page);
5881f737
SS
2002
2003 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
81811c16 2004 hash_del(&kvm_svm->hnode);
5881f737 2005 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
44a95dae
SS
2006}
2007
1654efcb
BS
2008static void svm_vm_destroy(struct kvm *kvm)
2009{
2010 avic_vm_destroy(kvm);
2011 sev_vm_destroy(kvm);
2012}
2013
44a95dae
SS
2014static int avic_vm_init(struct kvm *kvm)
2015{
5881f737 2016 unsigned long flags;
3f0d4db7 2017 int err = -ENOMEM;
81811c16
SC
2018 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
2019 struct kvm_svm *k2;
44a95dae
SS
2020 struct page *p_page;
2021 struct page *l_page;
3f0d4db7 2022 u32 vm_id;
44a95dae
SS
2023
2024 if (!avic)
2025 return 0;
2026
2027 /* Allocating physical APIC ID table (4KB) */
1ec69647 2028 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
44a95dae
SS
2029 if (!p_page)
2030 goto free_avic;
2031
81811c16 2032 kvm_svm->avic_physical_id_table_page = p_page;
44a95dae
SS
2033 clear_page(page_address(p_page));
2034
2035 /* Allocating logical APIC ID table (4KB) */
1ec69647 2036 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
44a95dae
SS
2037 if (!l_page)
2038 goto free_avic;
2039
81811c16 2040 kvm_svm->avic_logical_id_table_page = l_page;
44a95dae
SS
2041 clear_page(page_address(l_page));
2042
5881f737 2043 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
3f0d4db7
DV
2044 again:
2045 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
2046 if (vm_id == 0) { /* id is 1-based, zero is not okay */
2047 next_vm_id_wrapped = 1;
2048 goto again;
2049 }
2050 /* Is it still in use? Only possible if wrapped at least once */
2051 if (next_vm_id_wrapped) {
81811c16
SC
2052 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
2053 if (k2->avic_vm_id == vm_id)
3f0d4db7
DV
2054 goto again;
2055 }
2056 }
81811c16
SC
2057 kvm_svm->avic_vm_id = vm_id;
2058 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
5881f737
SS
2059 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
2060
44a95dae
SS
2061 return 0;
2062
2063free_avic:
2064 avic_vm_destroy(kvm);
2065 return err;
6aa8b732
AK
2066}
2067
4e19c36f
SS
2068static int svm_vm_init(struct kvm *kvm)
2069{
2070 if (avic) {
2071 int ret = avic_vm_init(kvm);
2072 if (ret)
2073 return ret;
2074 }
2075
e8ef2a19 2076 kvm_apicv_init(kvm, avic);
4e19c36f
SS
2077 return 0;
2078}
2079
411b44ba
SS
2080static inline int
2081avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
8221c137 2082{
411b44ba
SS
2083 int ret = 0;
2084 unsigned long flags;
2085 struct amd_svm_iommu_ir *ir;
8221c137
SS
2086 struct vcpu_svm *svm = to_svm(vcpu);
2087
411b44ba
SS
2088 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2089 return 0;
8221c137 2090
411b44ba
SS
2091 /*
2092 * Here, we go through the per-vcpu ir_list to update all existing
2093 * interrupt remapping table entry targeting this vcpu.
2094 */
2095 spin_lock_irqsave(&svm->ir_list_lock, flags);
8221c137 2096
411b44ba
SS
2097 if (list_empty(&svm->ir_list))
2098 goto out;
8221c137 2099
411b44ba
SS
2100 list_for_each_entry(ir, &svm->ir_list, node) {
2101 ret = amd_iommu_update_ga(cpu, r, ir->data);
2102 if (ret)
2103 break;
2104 }
2105out:
2106 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2107 return ret;
8221c137
SS
2108}
2109
2110static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2111{
2112 u64 entry;
2113 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
7d669f50 2114 int h_physical_id = kvm_cpu_get_apicid(cpu);
8221c137
SS
2115 struct vcpu_svm *svm = to_svm(vcpu);
2116
2117 if (!kvm_vcpu_apicv_active(vcpu))
2118 return;
2119
c9bcd3e3
SS
2120 /*
2121 * Since the host physical APIC id is 8 bits,
2122 * we can support host APIC ID upto 255.
2123 */
2124 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
8221c137
SS
2125 return;
2126
2127 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2128 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2129
2130 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2131 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2132
2133 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2134 if (svm->avic_is_running)
2135 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2136
2137 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
411b44ba
SS
2138 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2139 svm->avic_is_running);
8221c137
SS
2140}
2141
2142static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2143{
2144 u64 entry;
2145 struct vcpu_svm *svm = to_svm(vcpu);
2146
2147 if (!kvm_vcpu_apicv_active(vcpu))
2148 return;
2149
2150 entry = READ_ONCE(*(svm->avic_physical_id_cache));
411b44ba
SS
2151 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2152 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2153
8221c137
SS
2154 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2155 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
6aa8b732
AK
2156}
2157
411b44ba
SS
2158/**
2159 * This function is called during VCPU halt/unhalt.
2160 */
2161static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2162{
2163 struct vcpu_svm *svm = to_svm(vcpu);
2164
2165 svm->avic_is_running = is_run;
2166 if (is_run)
2167 avic_vcpu_load(vcpu, vcpu->cpu);
2168 else
2169 avic_vcpu_put(vcpu);
2170}
2171
d28bc9dd 2172static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
04d2cc77
AK
2173{
2174 struct vcpu_svm *svm = to_svm(vcpu);
66f7b72e
JS
2175 u32 dummy;
2176 u32 eax = 1;
04d2cc77 2177
b2ac58f9 2178 svm->spec_ctrl = 0;
ccbcd267 2179 svm->virt_spec_ctrl = 0;
b2ac58f9 2180
d28bc9dd
NA
2181 if (!init_event) {
2182 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2183 MSR_IA32_APICBASE_ENABLE;
2184 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2185 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2186 }
5690891b 2187 init_vmcb(svm);
70433389 2188
e911eb3b 2189 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
de3cd117 2190 kvm_rdx_write(vcpu, eax);
44a95dae
SS
2191
2192 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2193 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
04d2cc77
AK
2194}
2195
dfa20099
SS
2196static int avic_init_vcpu(struct vcpu_svm *svm)
2197{
2198 int ret;
2199
67034bb9 2200 if (!kvm_vcpu_apicv_active(&svm->vcpu))
dfa20099
SS
2201 return 0;
2202
2203 ret = avic_init_backing_page(&svm->vcpu);
2204 if (ret)
2205 return ret;
2206
2207 INIT_LIST_HEAD(&svm->ir_list);
2208 spin_lock_init(&svm->ir_list_lock);
98d90582 2209 svm->dfr_reg = APIC_DFR_FLAT;
dfa20099
SS
2210
2211 return ret;
2212}
2213
987b2594 2214static int svm_create_vcpu(struct kvm_vcpu *vcpu)
6aa8b732 2215{
a2fa3e9f 2216 struct vcpu_svm *svm;
6aa8b732 2217 struct page *page;
f65c229c 2218 struct page *msrpm_pages;
b286d5d8 2219 struct page *hsave_page;
3d6368ef 2220 struct page *nested_msrpm_pages;
fb3f0f51 2221 int err;
6aa8b732 2222
a9dd6f09
SC
2223 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
2224 svm = to_svm(vcpu);
fb3f0f51 2225
b7af4043 2226 err = -ENOMEM;
1ec69647 2227 page = alloc_page(GFP_KERNEL_ACCOUNT);
b7af4043 2228 if (!page)
987b2594 2229 goto out;
6aa8b732 2230
1ec69647 2231 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
f65c229c 2232 if (!msrpm_pages)
b7af4043 2233 goto free_page1;
3d6368ef 2234
1ec69647 2235 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
3d6368ef 2236 if (!nested_msrpm_pages)
b7af4043 2237 goto free_page2;
f65c229c 2238
1ec69647 2239 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
b286d5d8 2240 if (!hsave_page)
b7af4043
TY
2241 goto free_page3;
2242
dfa20099
SS
2243 err = avic_init_vcpu(svm);
2244 if (err)
2245 goto free_page4;
44a95dae 2246
8221c137
SS
2247 /* We initialize this flag to true to make sure that the is_running
2248 * bit would be set the first time the vcpu is loaded.
2249 */
6c3e4422
SS
2250 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
2251 svm->avic_is_running = true;
8221c137 2252
e6aa9abd 2253 svm->nested.hsave = page_address(hsave_page);
b286d5d8 2254
b7af4043
TY
2255 svm->msrpm = page_address(msrpm_pages);
2256 svm_vcpu_init_msrpm(svm->msrpm);
2257
e6aa9abd 2258 svm->nested.msrpm = page_address(nested_msrpm_pages);
323c3d80 2259 svm_vcpu_init_msrpm(svm->nested.msrpm);
3d6368ef 2260
a2fa3e9f
GH
2261 svm->vmcb = page_address(page);
2262 clear_page(svm->vmcb);
d0ec49d4 2263 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
a2fa3e9f 2264 svm->asid_generation = 0;
5690891b 2265 init_vmcb(svm);
6aa8b732 2266
7f27179a 2267 svm_init_osvw(vcpu);
bab0c318 2268 vcpu->arch.microcode_version = 0x01000065;
2b036c6b 2269
a9dd6f09 2270 return 0;
36241b8c 2271
44a95dae
SS
2272free_page4:
2273 __free_page(hsave_page);
b7af4043
TY
2274free_page3:
2275 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2276free_page2:
2277 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2278free_page1:
2279 __free_page(page);
987b2594 2280out:
a9dd6f09 2281 return err;
6aa8b732
AK
2282}
2283
fd65d314
JM
2284static void svm_clear_current_vmcb(struct vmcb *vmcb)
2285{
2286 int i;
2287
2288 for_each_online_cpu(i)
2289 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2290}
2291
6aa8b732
AK
2292static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2293{
a2fa3e9f
GH
2294 struct vcpu_svm *svm = to_svm(vcpu);
2295
fd65d314
JM
2296 /*
2297 * The vmcb page can be recycled, causing a false negative in
2298 * svm_vcpu_load(). So, ensure that no logical CPU has this
2299 * vmcb page recorded as its current vmcb.
2300 */
2301 svm_clear_current_vmcb(svm->vmcb);
2302
d0ec49d4 2303 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
f65c229c 2304 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
e6aa9abd
JR
2305 __free_page(virt_to_page(svm->nested.hsave));
2306 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
6aa8b732
AK
2307}
2308
15ad7146 2309static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 2310{
a2fa3e9f 2311 struct vcpu_svm *svm = to_svm(vcpu);
15d45071 2312 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
15ad7146 2313 int i;
0cc5064d 2314
0cc5064d 2315 if (unlikely(cpu != vcpu->cpu)) {
4b656b12 2316 svm->asid_generation = 0;
8d28fec4 2317 mark_all_dirty(svm->vmcb);
0cc5064d 2318 }
94dfbdb3 2319
82ca2d10
AK
2320#ifdef CONFIG_X86_64
2321 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2322#endif
dacccfdd
AK
2323 savesegment(fs, svm->host.fs);
2324 savesegment(gs, svm->host.gs);
2325 svm->host.ldt = kvm_read_ldt();
2326
94dfbdb3 2327 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 2328 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
fbc0db76 2329
ad721883
HZ
2330 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2331 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2332 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2333 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2334 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2335 }
fbc0db76 2336 }
46896c73
PB
2337 /* This assumes that the kernel never uses MSR_TSC_AUX */
2338 if (static_cpu_has(X86_FEATURE_RDTSCP))
2339 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
8221c137 2340
15d45071
AR
2341 if (sd->current_vmcb != svm->vmcb) {
2342 sd->current_vmcb = svm->vmcb;
2343 indirect_branch_prediction_barrier();
2344 }
8221c137 2345 avic_vcpu_load(vcpu, cpu);
6aa8b732
AK
2346}
2347
2348static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2349{
a2fa3e9f 2350 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
2351 int i;
2352
8221c137
SS
2353 avic_vcpu_put(vcpu);
2354
e1beb1d3 2355 ++vcpu->stat.host_state_reload;
dacccfdd
AK
2356 kvm_load_ldt(svm->host.ldt);
2357#ifdef CONFIG_X86_64
2358 loadsegment(fs, svm->host.fs);
296f781a 2359 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
893a5ab6 2360 load_gs_index(svm->host.gs);
dacccfdd 2361#else
831ca609 2362#ifdef CONFIG_X86_32_LAZY_GS
dacccfdd 2363 loadsegment(gs, svm->host.gs);
831ca609 2364#endif
dacccfdd 2365#endif
94dfbdb3 2366 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 2367 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
2368}
2369
8221c137
SS
2370static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2371{
2372 avic_set_running(vcpu, false);
2373}
2374
2375static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2376{
6c3e4422
SS
2377 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
2378 kvm_vcpu_update_apicv(vcpu);
8221c137
SS
2379 avic_set_running(vcpu, true);
2380}
2381
6aa8b732
AK
2382static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2383{
9b611747
LP
2384 struct vcpu_svm *svm = to_svm(vcpu);
2385 unsigned long rflags = svm->vmcb->save.rflags;
2386
2387 if (svm->nmi_singlestep) {
2388 /* Hide our flags if they were not set by the guest */
2389 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2390 rflags &= ~X86_EFLAGS_TF;
2391 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2392 rflags &= ~X86_EFLAGS_RF;
2393 }
2394 return rflags;
6aa8b732
AK
2395}
2396
2397static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2398{
9b611747
LP
2399 if (to_svm(vcpu)->nmi_singlestep)
2400 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2401
ae9fedc7 2402 /*
bb3541f1 2403 * Any change of EFLAGS.VM is accompanied by a reload of SS
ae9fedc7
PB
2404 * (caused by either a task switch or an inter-privilege IRET),
2405 * so we do not need to update the CPL here.
2406 */
a2fa3e9f 2407 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
2408}
2409
6de4f3ad
AK
2410static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2411{
2412 switch (reg) {
2413 case VCPU_EXREG_PDPTR:
2414 BUG_ON(!npt_enabled);
9f8fe504 2415 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
6de4f3ad
AK
2416 break;
2417 default:
34059c25 2418 WARN_ON_ONCE(1);
6de4f3ad
AK
2419 }
2420}
2421
f0b85051
AG
2422static void svm_set_vintr(struct vcpu_svm *svm)
2423{
8a05a1b8 2424 set_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
2425}
2426
2427static void svm_clear_vintr(struct vcpu_svm *svm)
2428{
8a05a1b8 2429 clr_intercept(svm, INTERCEPT_VINTR);
f0b85051
AG
2430}
2431
6aa8b732
AK
2432static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2433{
a2fa3e9f 2434 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
2435
2436 switch (seg) {
2437 case VCPU_SREG_CS: return &save->cs;
2438 case VCPU_SREG_DS: return &save->ds;
2439 case VCPU_SREG_ES: return &save->es;
2440 case VCPU_SREG_FS: return &save->fs;
2441 case VCPU_SREG_GS: return &save->gs;
2442 case VCPU_SREG_SS: return &save->ss;
2443 case VCPU_SREG_TR: return &save->tr;
2444 case VCPU_SREG_LDTR: return &save->ldtr;
2445 }
2446 BUG();
8b6d44c7 2447 return NULL;
6aa8b732
AK
2448}
2449
2450static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2451{
2452 struct vmcb_seg *s = svm_seg(vcpu, seg);
2453
2454 return s->base;
2455}
2456
2457static void svm_get_segment(struct kvm_vcpu *vcpu,
2458 struct kvm_segment *var, int seg)
2459{
2460 struct vmcb_seg *s = svm_seg(vcpu, seg);
2461
2462 var->base = s->base;
2463 var->limit = s->limit;
2464 var->selector = s->selector;
2465 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2466 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2467 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2468 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2469 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2470 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2471 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
80112c89
JM
2472
2473 /*
2474 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2475 * However, the SVM spec states that the G bit is not observed by the
2476 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2477 * So let's synthesize a legal G bit for all segments, this helps
2478 * running KVM nested. It also helps cross-vendor migration, because
2479 * Intel's vmentry has a check on the 'G' bit.
2480 */
2481 var->g = s->limit > 0xfffff;
25022acc 2482
e0231715
JR
2483 /*
2484 * AMD's VMCB does not have an explicit unusable field, so emulate it
19bca6ab
AP
2485 * for cross vendor migration purposes by "not present"
2486 */
8eae9570 2487 var->unusable = !var->present;
19bca6ab 2488
1fbdc7a5 2489 switch (seg) {
1fbdc7a5
AP
2490 case VCPU_SREG_TR:
2491 /*
2492 * Work around a bug where the busy flag in the tr selector
2493 * isn't exposed
2494 */
c0d09828 2495 var->type |= 0x2;
1fbdc7a5
AP
2496 break;
2497 case VCPU_SREG_DS:
2498 case VCPU_SREG_ES:
2499 case VCPU_SREG_FS:
2500 case VCPU_SREG_GS:
2501 /*
2502 * The accessed bit must always be set in the segment
2503 * descriptor cache, although it can be cleared in the
2504 * descriptor, the cached bit always remains at 1. Since
2505 * Intel has a check on this, set it here to support
2506 * cross-vendor migration.
2507 */
2508 if (!var->unusable)
2509 var->type |= 0x1;
2510 break;
b586eb02 2511 case VCPU_SREG_SS:
e0231715
JR
2512 /*
2513 * On AMD CPUs sometimes the DB bit in the segment
b586eb02
AP
2514 * descriptor is left as 1, although the whole segment has
2515 * been made unusable. Clear it here to pass an Intel VMX
2516 * entry check when cross vendor migrating.
2517 */
2518 if (var->unusable)
2519 var->db = 0;
d9c1b543 2520 /* This is symmetric with svm_set_segment() */
33b458d2 2521 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
b586eb02 2522 break;
1fbdc7a5 2523 }
6aa8b732
AK
2524}
2525
2e4d2653
IE
2526static int svm_get_cpl(struct kvm_vcpu *vcpu)
2527{
2528 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2529
2530 return save->cpl;
2531}
2532
89a27f4d 2533static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 2534{
a2fa3e9f
GH
2535 struct vcpu_svm *svm = to_svm(vcpu);
2536
89a27f4d
GN
2537 dt->size = svm->vmcb->save.idtr.limit;
2538 dt->address = svm->vmcb->save.idtr.base;
6aa8b732
AK
2539}
2540
89a27f4d 2541static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 2542{
a2fa3e9f
GH
2543 struct vcpu_svm *svm = to_svm(vcpu);
2544
89a27f4d
GN
2545 svm->vmcb->save.idtr.limit = dt->size;
2546 svm->vmcb->save.idtr.base = dt->address ;
17a703cb 2547 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
2548}
2549
89a27f4d 2550static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 2551{
a2fa3e9f
GH
2552 struct vcpu_svm *svm = to_svm(vcpu);
2553
89a27f4d
GN
2554 dt->size = svm->vmcb->save.gdtr.limit;
2555 dt->address = svm->vmcb->save.gdtr.base;
6aa8b732
AK
2556}
2557
89a27f4d 2558static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 2559{
a2fa3e9f
GH
2560 struct vcpu_svm *svm = to_svm(vcpu);
2561
89a27f4d
GN
2562 svm->vmcb->save.gdtr.limit = dt->size;
2563 svm->vmcb->save.gdtr.base = dt->address ;
17a703cb 2564 mark_dirty(svm->vmcb, VMCB_DT);
6aa8b732
AK
2565}
2566
e8467fda
AK
2567static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2568{
2569}
2570
25c4c276 2571static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
2572{
2573}
2574
d225157b
AK
2575static void update_cr0_intercept(struct vcpu_svm *svm)
2576{
2577 ulong gcr0 = svm->vcpu.arch.cr0;
2578 u64 *hcr0 = &svm->vmcb->save.cr0;
2579
bd7e5b08
PB
2580 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2581 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
d225157b 2582
dcca1a65 2583 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 2584
bd7e5b08 2585 if (gcr0 == *hcr0) {
4ee546b4
RJ
2586 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2587 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b 2588 } else {
4ee546b4
RJ
2589 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2590 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
d225157b
AK
2591 }
2592}
2593
6aa8b732
AK
2594static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2595{
a2fa3e9f
GH
2596 struct vcpu_svm *svm = to_svm(vcpu);
2597
05b3e0c2 2598#ifdef CONFIG_X86_64
f6801dff 2599 if (vcpu->arch.efer & EFER_LME) {
707d92fa 2600 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
f6801dff 2601 vcpu->arch.efer |= EFER_LMA;
2b5203ee 2602 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
2603 }
2604
d77c26fc 2605 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
f6801dff 2606 vcpu->arch.efer &= ~EFER_LMA;
2b5203ee 2607 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
2608 }
2609 }
2610#endif
ad312c7c 2611 vcpu->arch.cr0 = cr0;
888f9f3e
AK
2612
2613 if (!npt_enabled)
2614 cr0 |= X86_CR0_PG | X86_CR0_WP;
02daab21 2615
bcf166a9
PB
2616 /*
2617 * re-enable caching here because the QEMU bios
2618 * does not do it - this results in some delay at
2619 * reboot
2620 */
2621 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2622 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 2623 svm->vmcb->save.cr0 = cr0;
dcca1a65 2624 mark_dirty(svm->vmcb, VMCB_CR);
d225157b 2625 update_cr0_intercept(svm);
6aa8b732
AK
2626}
2627
5e1746d6 2628static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
6aa8b732 2629{
1e02ce4c 2630 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
e5eab0ce
JR
2631 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2632
5e1746d6
NHE
2633 if (cr4 & X86_CR4_VMXE)
2634 return 1;
2635
e5eab0ce 2636 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
c2ba05cc 2637 svm_flush_tlb(vcpu, true);
6394b649 2638
ec077263
JR
2639 vcpu->arch.cr4 = cr4;
2640 if (!npt_enabled)
2641 cr4 |= X86_CR4_PAE;
6394b649 2642 cr4 |= host_cr4_mce;
ec077263 2643 to_svm(vcpu)->vmcb->save.cr4 = cr4;
dcca1a65 2644 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
5e1746d6 2645 return 0;
6aa8b732
AK
2646}
2647
2648static void svm_set_segment(struct kvm_vcpu *vcpu,
2649 struct kvm_segment *var, int seg)
2650{
a2fa3e9f 2651 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
2652 struct vmcb_seg *s = svm_seg(vcpu, seg);
2653
2654 s->base = var->base;
2655 s->limit = var->limit;
2656 s->selector = var->selector;
d9c1b543
RP
2657 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2658 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2659 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2660 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2661 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2662 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2663 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2664 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
ae9fedc7
PB
2665
2666 /*
2667 * This is always accurate, except if SYSRET returned to a segment
2668 * with SS.DPL != 3. Intel does not have this quirk, and always
2669 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2670 * would entail passing the CPL to userspace and back.
2671 */
2672 if (seg == VCPU_SREG_SS)
d9c1b543
RP
2673 /* This is symmetric with svm_get_segment() */
2674 svm->vmcb->save.cpl = (var->dpl & 3);
6aa8b732 2675
060d0c9a 2676 mark_dirty(svm->vmcb, VMCB_SEG);
6aa8b732
AK
2677}
2678
cbdb967a 2679static void update_bp_intercept(struct kvm_vcpu *vcpu)
6aa8b732 2680{
d0bfb940
JK
2681 struct vcpu_svm *svm = to_svm(vcpu);
2682
18c918c5 2683 clr_exception_intercept(svm, BP_VECTOR);
44c11430 2684
d0bfb940 2685 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
d0bfb940 2686 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
18c918c5 2687 set_exception_intercept(svm, BP_VECTOR);
d0bfb940
JK
2688 } else
2689 vcpu->guest_debug = 0;
44c11430
GN
2690}
2691
0fe1e009 2692static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
6aa8b732 2693{
0fe1e009
TH
2694 if (sd->next_asid > sd->max_asid) {
2695 ++sd->asid_generation;
4faefff3 2696 sd->next_asid = sd->min_asid;
a2fa3e9f 2697 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
2698 }
2699
0fe1e009
TH
2700 svm->asid_generation = sd->asid_generation;
2701 svm->vmcb->control.asid = sd->next_asid++;
d48086d1
JR
2702
2703 mark_dirty(svm->vmcb, VMCB_ASID);
6aa8b732
AK
2704}
2705
73aaf249
JK
2706static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2707{
2708 return to_svm(vcpu)->vmcb->save.dr6;
2709}
2710
2711static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2712{
2713 struct vcpu_svm *svm = to_svm(vcpu);
2714
2715 svm->vmcb->save.dr6 = value;
2716 mark_dirty(svm->vmcb, VMCB_DR);
2717}
2718
facb0139
PB
2719static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2720{
2721 struct vcpu_svm *svm = to_svm(vcpu);
2722
2723 get_debugreg(vcpu->arch.db[0], 0);
2724 get_debugreg(vcpu->arch.db[1], 1);
2725 get_debugreg(vcpu->arch.db[2], 2);
2726 get_debugreg(vcpu->arch.db[3], 3);
2727 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2728 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2729
2730 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2731 set_dr_intercepts(svm);
2732}
2733
020df079 2734static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
6aa8b732 2735{
42dbaa5a 2736 struct vcpu_svm *svm = to_svm(vcpu);
42dbaa5a 2737
020df079 2738 svm->vmcb->save.dr7 = value;
72214b96 2739 mark_dirty(svm->vmcb, VMCB_DR);
6aa8b732
AK
2740}
2741
851ba692 2742static int pf_interception(struct vcpu_svm *svm)
6aa8b732 2743{
0ede79e1 2744 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
1261bfa3 2745 u64 error_code = svm->vmcb->control.exit_info_1;
6aa8b732 2746
1261bfa3 2747 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
00b10fe1
BS
2748 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2749 svm->vmcb->control.insn_bytes : NULL,
d0006530
PB
2750 svm->vmcb->control.insn_len);
2751}
2752
2753static int npf_interception(struct vcpu_svm *svm)
2754{
0ede79e1 2755 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
d0006530
PB
2756 u64 error_code = svm->vmcb->control.exit_info_1;
2757
2758 trace_kvm_page_fault(fault_address, error_code);
2759 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
00b10fe1
BS
2760 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2761 svm->vmcb->control.insn_bytes : NULL,
d0006530 2762 svm->vmcb->control.insn_len);
6aa8b732
AK
2763}
2764
851ba692 2765static int db_interception(struct vcpu_svm *svm)
d0bfb940 2766{
851ba692 2767 struct kvm_run *kvm_run = svm->vcpu.run;
99c22179 2768 struct kvm_vcpu *vcpu = &svm->vcpu;
851ba692 2769
d0bfb940 2770 if (!(svm->vcpu.guest_debug &
44c11430 2771 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
6be7d306 2772 !svm->nmi_singlestep) {
d0bfb940
JK
2773 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2774 return 1;
2775 }
44c11430 2776
6be7d306 2777 if (svm->nmi_singlestep) {
4aebd0e9 2778 disable_nmi_singlestep(svm);
99c22179
VK
2779 /* Make sure we check for pending NMIs upon entry */
2780 kvm_make_request(KVM_REQ_EVENT, vcpu);
44c11430
GN
2781 }
2782
2783 if (svm->vcpu.guest_debug &
e0231715 2784 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
44c11430
GN
2785 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2786 kvm_run->debug.arch.pc =
2787 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2788 kvm_run->debug.arch.exception = DB_VECTOR;
2789 return 0;
2790 }
2791
2792 return 1;
d0bfb940
JK
2793}
2794
851ba692 2795static int bp_interception(struct vcpu_svm *svm)
d0bfb940 2796{
851ba692
AK
2797 struct kvm_run *kvm_run = svm->vcpu.run;
2798
d0bfb940
JK
2799 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2800 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2801 kvm_run->debug.arch.exception = BP_VECTOR;
2802 return 0;
2803}
2804
851ba692 2805static int ud_interception(struct vcpu_svm *svm)
7aa81cc0 2806{
082d06ed 2807 return handle_ud(&svm->vcpu);
7aa81cc0
AL
2808}
2809
54a20552
EN
2810static int ac_interception(struct vcpu_svm *svm)
2811{
2812 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2813 return 1;
2814}
2815
9718420e
LA
2816static int gp_interception(struct vcpu_svm *svm)
2817{
2818 struct kvm_vcpu *vcpu = &svm->vcpu;
2819 u32 error_code = svm->vmcb->control.exit_info_1;
9718420e
LA
2820
2821 WARN_ON_ONCE(!enable_vmware_backdoor);
2822
a6c6ed1e
SC
2823 /*
2824 * VMware backdoor emulation on #GP interception only handles IN{S},
2825 * OUT{S}, and RDPMC, none of which generate a non-zero error code.
2826 */
2827 if (error_code) {
2828 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2829 return 1;
2830 }
60fc3d02 2831 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
9718420e
LA
2832}
2833
67ec6607
JR
2834static bool is_erratum_383(void)
2835{
2836 int err, i;
2837 u64 value;
2838
2839 if (!erratum_383_found)
2840 return false;
2841
2842 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2843 if (err)
2844 return false;
2845
2846 /* Bit 62 may or may not be set for this mce */
2847 value &= ~(1ULL << 62);
2848
2849 if (value != 0xb600000000010015ULL)
2850 return false;
2851
2852 /* Clear MCi_STATUS registers */
2853 for (i = 0; i < 6; ++i)
2854 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2855
2856 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2857 if (!err) {
2858 u32 low, high;
2859
2860 value &= ~(1ULL << 2);
2861 low = lower_32_bits(value);
2862 high = upper_32_bits(value);
2863
2864 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2865 }
2866
2867 /* Flush tlb to evict multi-match entries */
2868 __flush_tlb_all();
2869
2870 return true;
2871}
2872
fe5913e4 2873static void svm_handle_mce(struct vcpu_svm *svm)
53371b50 2874{
67ec6607
JR
2875 if (is_erratum_383()) {
2876 /*
2877 * Erratum 383 triggered. Guest state is corrupt so kill the
2878 * guest.
2879 */
2880 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2881
a8eeb04a 2882 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
67ec6607
JR
2883
2884 return;
2885 }
2886
53371b50
JR
2887 /*
2888 * On an #MC intercept the MCE handler is not called automatically in
2889 * the host. So do it by hand here.
2890 */
2891 asm volatile (
2892 "int $0x12\n");
2893 /* not sure if we ever come back to this point */
2894
fe5913e4
JR
2895 return;
2896}
2897
2898static int mc_interception(struct vcpu_svm *svm)
2899{
53371b50
JR
2900 return 1;
2901}
2902
851ba692 2903static int shutdown_interception(struct vcpu_svm *svm)
46fe4ddd 2904{
851ba692
AK
2905 struct kvm_run *kvm_run = svm->vcpu.run;
2906
46fe4ddd
JR
2907 /*
2908 * VMCB is undefined after a SHUTDOWN intercept
2909 * so reinitialize it.
2910 */
a2fa3e9f 2911 clear_page(svm->vmcb);
5690891b 2912 init_vmcb(svm);
46fe4ddd
JR
2913
2914 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2915 return 0;
2916}
2917
851ba692 2918static int io_interception(struct vcpu_svm *svm)
6aa8b732 2919{
cf8f70bf 2920 struct kvm_vcpu *vcpu = &svm->vcpu;
d77c26fc 2921 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
dca7f128 2922 int size, in, string;
039576c0 2923 unsigned port;
6aa8b732 2924
e756fc62 2925 ++svm->vcpu.stat.io_exits;
e70669ab 2926 string = (io_info & SVM_IOIO_STR_MASK) != 0;
039576c0 2927 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
8370c3d0 2928 if (string)
60fc3d02 2929 return kvm_emulate_instruction(vcpu, 0);
cf8f70bf 2930
039576c0
AK
2931 port = io_info >> 16;
2932 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
cf8f70bf 2933 svm->next_rip = svm->vmcb->control.exit_info_2;
cf8f70bf 2934
dca7f128 2935 return kvm_fast_pio(&svm->vcpu, size, port, in);
6aa8b732
AK
2936}
2937
851ba692 2938static int nmi_interception(struct vcpu_svm *svm)
c47f098d
JR
2939{
2940 return 1;
2941}
2942
851ba692 2943static int intr_interception(struct vcpu_svm *svm)
a0698055
JR
2944{
2945 ++svm->vcpu.stat.irq_exits;
2946 return 1;
2947}
2948
851ba692 2949static int nop_on_interception(struct vcpu_svm *svm)
6aa8b732
AK
2950{
2951 return 1;
2952}
2953
851ba692 2954static int halt_interception(struct vcpu_svm *svm)
6aa8b732 2955{
e756fc62 2956 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
2957}
2958
851ba692 2959static int vmmcall_interception(struct vcpu_svm *svm)
02e235bc 2960{
0d9c055e 2961 return kvm_emulate_hypercall(&svm->vcpu);
02e235bc
AK
2962}
2963
5bd2edc3
JR
2964static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2965{
2966 struct vcpu_svm *svm = to_svm(vcpu);
2967
2968 return svm->nested.nested_cr3;
2969}
2970
e4e517b4
AK
2971static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2972{
2973 struct vcpu_svm *svm = to_svm(vcpu);
2974 u64 cr3 = svm->nested.nested_cr3;
2975 u64 pdpte;
2976 int ret;
2977
d0ec49d4 2978 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
54bf36aa 2979 offset_in_page(cr3) + index * 8, 8);
e4e517b4
AK
2980 if (ret)
2981 return 0;
2982 return pdpte;
2983}
2984
5bd2edc3
JR
2985static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2986 unsigned long root)
2987{
2988 struct vcpu_svm *svm = to_svm(vcpu);
2989
d0ec49d4 2990 svm->vmcb->control.nested_cr3 = __sme_set(root);
b2747166 2991 mark_dirty(svm->vmcb, VMCB_NPT);
5bd2edc3
JR
2992}
2993
6389ee94
AK
2994static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2995 struct x86_exception *fault)
5bd2edc3
JR
2996{
2997 struct vcpu_svm *svm = to_svm(vcpu);
2998
5e352519
PB
2999 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
3000 /*
3001 * TODO: track the cause of the nested page fault, and
3002 * correctly fill in the high bits of exit_info_1.
3003 */
3004 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
3005 svm->vmcb->control.exit_code_hi = 0;
3006 svm->vmcb->control.exit_info_1 = (1ULL << 32);
3007 svm->vmcb->control.exit_info_2 = fault->address;
3008 }
3009
3010 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
3011 svm->vmcb->control.exit_info_1 |= fault->error_code;
3012
3013 /*
3014 * The present bit is always zero for page structure faults on real
3015 * hardware.
3016 */
3017 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
3018 svm->vmcb->control.exit_info_1 &= ~1;
5bd2edc3
JR
3019
3020 nested_svm_vmexit(svm);
3021}
3022
8a3c1a33 3023static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
4b16184c 3024{
ad896af0 3025 WARN_ON(mmu_is_nested(vcpu));
3cf85f9f
VK
3026
3027 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
ad896af0 3028 kvm_init_shadow_mmu(vcpu);
44dd3ffa
VK
3029 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
3030 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
3031 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
3032 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
3033 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
3034 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
4b16184c 3035 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
4b16184c
JR
3036}
3037
3038static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
3039{
3cf85f9f 3040 vcpu->arch.mmu = &vcpu->arch.root_mmu;
44dd3ffa 3041 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
4b16184c
JR
3042}
3043
c0725420
AG
3044static int nested_svm_check_permissions(struct vcpu_svm *svm)
3045{
e9196ceb
DC
3046 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3047 !is_paging(&svm->vcpu)) {
c0725420
AG
3048 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3049 return 1;
3050 }
3051
3052 if (svm->vmcb->save.cpl) {
3053 kvm_inject_gp(&svm->vcpu, 0);
3054 return 1;
3055 }
3056
e9196ceb 3057 return 0;
c0725420
AG
3058}
3059
cf74a78b
AG
3060static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3061 bool has_error_code, u32 error_code)
3062{
b8e88bc8
JR
3063 int vmexit;
3064
2030753d 3065 if (!is_guest_mode(&svm->vcpu))
0295ad7d 3066 return 0;
cf74a78b 3067
adfe20fb
WL
3068 vmexit = nested_svm_intercept(svm);
3069 if (vmexit != NESTED_EXIT_DONE)
3070 return 0;
3071
0295ad7d
JR
3072 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3073 svm->vmcb->control.exit_code_hi = 0;
3074 svm->vmcb->control.exit_info_1 = error_code;
b96fb439
PB
3075
3076 /*
da998b46
JM
3077 * EXITINFO2 is undefined for all exception intercepts other
3078 * than #PF.
b96fb439 3079 */
adfe20fb
WL
3080 if (svm->vcpu.arch.exception.nested_apf)
3081 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
da998b46
JM
3082 else if (svm->vcpu.arch.exception.has_payload)
3083 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
adfe20fb
WL
3084 else
3085 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
b8e88bc8 3086
adfe20fb 3087 svm->nested.exit_required = true;
b8e88bc8 3088 return vmexit;
cf74a78b
AG
3089}
3090
8fe54654
JR
3091/* This function returns true if it is save to enable the irq window */
3092static inline bool nested_svm_intr(struct vcpu_svm *svm)
cf74a78b 3093{
2030753d 3094 if (!is_guest_mode(&svm->vcpu))
8fe54654 3095 return true;
cf74a78b 3096
26666957 3097 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
8fe54654 3098 return true;
cf74a78b 3099
26666957 3100 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
8fe54654 3101 return false;
cf74a78b 3102
a0a07cd2
GN
3103 /*
3104 * if vmexit was already requested (by intercepted exception
3105 * for instance) do not overwrite it with "external interrupt"
3106 * vmexit.
3107 */
3108 if (svm->nested.exit_required)
3109 return false;
3110
197717d5
JR
3111 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3112 svm->vmcb->control.exit_info_1 = 0;
3113 svm->vmcb->control.exit_info_2 = 0;
26666957 3114
cd3ff653
JR
3115 if (svm->nested.intercept & 1ULL) {
3116 /*
3117 * The #vmexit can't be emulated here directly because this
c5ec2e56 3118 * code path runs with irqs and preemption disabled. A
cd3ff653
JR
3119 * #vmexit emulation might sleep. Only signal request for
3120 * the #vmexit here.
3121 */
3122 svm->nested.exit_required = true;
236649de 3123 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
8fe54654 3124 return false;
cf74a78b
AG
3125 }
3126
8fe54654 3127 return true;
cf74a78b
AG
3128}
3129
887f500c
JR
3130/* This function returns true if it is save to enable the nmi window */
3131static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3132{
2030753d 3133 if (!is_guest_mode(&svm->vcpu))
887f500c
JR
3134 return true;
3135
3136 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3137 return true;
3138
3139 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3140 svm->nested.exit_required = true;
3141
3142 return false;
cf74a78b
AG
3143}
3144
ce2ac085
JR
3145static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
3146{
9bf41833
JK
3147 unsigned port, size, iopm_len;
3148 u16 val, mask;
3149 u8 start_bit;
ce2ac085 3150 u64 gpa;
34f80cfa 3151
ce2ac085
JR
3152 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3153 return NESTED_EXIT_HOST;
34f80cfa 3154
ce2ac085 3155 port = svm->vmcb->control.exit_info_1 >> 16;
9bf41833
JK
3156 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3157 SVM_IOIO_SIZE_SHIFT;
ce2ac085 3158 gpa = svm->nested.vmcb_iopm + (port / 8);
9bf41833
JK
3159 start_bit = port % 8;
3160 iopm_len = (start_bit + size > 8) ? 2 : 1;
3161 mask = (0xf >> (4 - size)) << start_bit;
3162 val = 0;
ce2ac085 3163
54bf36aa 3164 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
9bf41833 3165 return NESTED_EXIT_DONE;
ce2ac085 3166
9bf41833 3167 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
34f80cfa
JR
3168}
3169
d2477826 3170static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
4c2161ae 3171{
0d6b3537
JR
3172 u32 offset, msr, value;
3173 int write, mask;
4c2161ae 3174
3d62d9aa 3175 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
d2477826 3176 return NESTED_EXIT_HOST;
3d62d9aa 3177
0d6b3537
JR
3178 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3179 offset = svm_msrpm_offset(msr);
3180 write = svm->vmcb->control.exit_info_1 & 1;
3181 mask = 1 << ((2 * (msr & 0xf)) + write);
3d62d9aa 3182
0d6b3537
JR
3183 if (offset == MSR_INVALID)
3184 return NESTED_EXIT_DONE;
4c2161ae 3185
0d6b3537
JR
3186 /* Offset is in 32 bit units but need in 8 bit units */
3187 offset *= 4;
4c2161ae 3188
54bf36aa 3189 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
0d6b3537 3190 return NESTED_EXIT_DONE;
3d62d9aa 3191
0d6b3537 3192 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
4c2161ae
JR
3193}
3194
ab2f4d73
LP
3195/* DB exceptions for our internal use must not cause vmexit */
3196static int nested_svm_intercept_db(struct vcpu_svm *svm)
3197{
3198 unsigned long dr6;
3199
3200 /* if we're not singlestepping, it's not ours */
3201 if (!svm->nmi_singlestep)
3202 return NESTED_EXIT_DONE;
3203
3204 /* if it's not a singlestep exception, it's not ours */
3205 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3206 return NESTED_EXIT_DONE;
3207 if (!(dr6 & DR6_BS))
3208 return NESTED_EXIT_DONE;
3209
3210 /* if the guest is singlestepping, it should get the vmexit */
3211 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3212 disable_nmi_singlestep(svm);
3213 return NESTED_EXIT_DONE;
3214 }
3215
3216 /* it's ours, the nested hypervisor must not see this one */
3217 return NESTED_EXIT_HOST;
3218}
3219
410e4d57 3220static int nested_svm_exit_special(struct vcpu_svm *svm)
cf74a78b 3221{
cf74a78b 3222 u32 exit_code = svm->vmcb->control.exit_code;
4c2161ae 3223
410e4d57
JR
3224 switch (exit_code) {
3225 case SVM_EXIT_INTR:
3226 case SVM_EXIT_NMI:
ff47a49b 3227 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
410e4d57 3228 return NESTED_EXIT_HOST;
410e4d57 3229 case SVM_EXIT_NPF:
e0231715 3230 /* For now we are always handling NPFs when using them */
410e4d57
JR
3231 if (npt_enabled)
3232 return NESTED_EXIT_HOST;
3233 break;
410e4d57 3234 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
631bc487 3235 /* When we're shadowing, trap PFs, but not async PF */
1261bfa3 3236 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
410e4d57
JR
3237 return NESTED_EXIT_HOST;
3238 break;
3239 default:
3240 break;
cf74a78b
AG
3241 }
3242
410e4d57
JR
3243 return NESTED_EXIT_CONTINUE;
3244}
3245
3246/*
3247 * If this function returns true, this #vmexit was already handled
3248 */
b8e88bc8 3249static int nested_svm_intercept(struct vcpu_svm *svm)
410e4d57
JR
3250{
3251 u32 exit_code = svm->vmcb->control.exit_code;
3252 int vmexit = NESTED_EXIT_HOST;
3253
cf74a78b 3254 switch (exit_code) {
9c4e40b9 3255 case SVM_EXIT_MSR:
3d62d9aa 3256 vmexit = nested_svm_exit_handled_msr(svm);
9c4e40b9 3257 break;
ce2ac085
JR
3258 case SVM_EXIT_IOIO:
3259 vmexit = nested_svm_intercept_ioio(svm);
3260 break;
4ee546b4
RJ
3261 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3262 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3263 if (svm->nested.intercept_cr & bit)
410e4d57 3264 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
3265 break;
3266 }
3aed041a
JR
3267 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3268 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3269 if (svm->nested.intercept_dr & bit)
410e4d57 3270 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
3271 break;
3272 }
3273 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3274 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
ab2f4d73
LP
3275 if (svm->nested.intercept_exceptions & excp_bits) {
3276 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3277 vmexit = nested_svm_intercept_db(svm);
3278 else
3279 vmexit = NESTED_EXIT_DONE;
3280 }
631bc487
GN
3281 /* async page fault always cause vmexit */
3282 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
adfe20fb 3283 svm->vcpu.arch.exception.nested_apf != 0)
631bc487 3284 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
3285 break;
3286 }
228070b1
JR
3287 case SVM_EXIT_ERR: {
3288 vmexit = NESTED_EXIT_DONE;
3289 break;
3290 }
cf74a78b
AG
3291 default: {
3292 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
aad42c64 3293 if (svm->nested.intercept & exit_bits)
410e4d57 3294 vmexit = NESTED_EXIT_DONE;
cf74a78b
AG
3295 }
3296 }
3297
b8e88bc8
JR
3298 return vmexit;
3299}
3300
3301static int nested_svm_exit_handled(struct vcpu_svm *svm)
3302{
3303 int vmexit;
3304
3305 vmexit = nested_svm_intercept(svm);
3306
3307 if (vmexit == NESTED_EXIT_DONE)
9c4e40b9 3308 nested_svm_vmexit(svm);
9c4e40b9
JR
3309
3310 return vmexit;
cf74a78b
AG
3311}
3312
0460a979
JR
3313static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3314{
3315 struct vmcb_control_area *dst = &dst_vmcb->control;
3316 struct vmcb_control_area *from = &from_vmcb->control;
3317
4ee546b4 3318 dst->intercept_cr = from->intercept_cr;
3aed041a 3319 dst->intercept_dr = from->intercept_dr;
0460a979
JR
3320 dst->intercept_exceptions = from->intercept_exceptions;
3321 dst->intercept = from->intercept;
3322 dst->iopm_base_pa = from->iopm_base_pa;
3323 dst->msrpm_base_pa = from->msrpm_base_pa;
3324 dst->tsc_offset = from->tsc_offset;
3325 dst->asid = from->asid;
3326 dst->tlb_ctl = from->tlb_ctl;
3327 dst->int_ctl = from->int_ctl;
3328 dst->int_vector = from->int_vector;
3329 dst->int_state = from->int_state;
3330 dst->exit_code = from->exit_code;
3331 dst->exit_code_hi = from->exit_code_hi;
3332 dst->exit_info_1 = from->exit_info_1;
3333 dst->exit_info_2 = from->exit_info_2;
3334 dst->exit_int_info = from->exit_int_info;
3335 dst->exit_int_info_err = from->exit_int_info_err;
3336 dst->nested_ctl = from->nested_ctl;
3337 dst->event_inj = from->event_inj;
3338 dst->event_inj_err = from->event_inj_err;
3339 dst->nested_cr3 = from->nested_cr3;
0dc92119 3340 dst->virt_ext = from->virt_ext;
e081354d
TW
3341 dst->pause_filter_count = from->pause_filter_count;
3342 dst->pause_filter_thresh = from->pause_filter_thresh;
0460a979
JR
3343}
3344
34f80cfa 3345static int nested_svm_vmexit(struct vcpu_svm *svm)
cf74a78b 3346{
8c5fbf1a 3347 int rc;
34f80cfa 3348 struct vmcb *nested_vmcb;
e6aa9abd 3349 struct vmcb *hsave = svm->nested.hsave;
33740e40 3350 struct vmcb *vmcb = svm->vmcb;
8c5fbf1a 3351 struct kvm_host_map map;
cf74a78b 3352
17897f36
JR
3353 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3354 vmcb->control.exit_info_1,
3355 vmcb->control.exit_info_2,
3356 vmcb->control.exit_int_info,
e097e5ff
SH
3357 vmcb->control.exit_int_info_err,
3358 KVM_ISA_SVM);
17897f36 3359
8f38302c 3360 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
8c5fbf1a
KA
3361 if (rc) {
3362 if (rc == -EINVAL)
3363 kvm_inject_gp(&svm->vcpu, 0);
34f80cfa 3364 return 1;
8c5fbf1a
KA
3365 }
3366
3367 nested_vmcb = map.hva;
34f80cfa 3368
2030753d
JR
3369 /* Exit Guest-Mode */
3370 leave_guest_mode(&svm->vcpu);
06fc7772
JR
3371 svm->nested.vmcb = 0;
3372
cf74a78b 3373 /* Give the current vmcb to the guest */
33740e40
JR
3374 disable_gif(svm);
3375
3376 nested_vmcb->save.es = vmcb->save.es;
3377 nested_vmcb->save.cs = vmcb->save.cs;
3378 nested_vmcb->save.ss = vmcb->save.ss;
3379 nested_vmcb->save.ds = vmcb->save.ds;
3380 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3381 nested_vmcb->save.idtr = vmcb->save.idtr;
3f6a9d16 3382 nested_vmcb->save.efer = svm->vcpu.arch.efer;
cdbbdc12 3383 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
9f8fe504 3384 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
33740e40 3385 nested_vmcb->save.cr2 = vmcb->save.cr2;
cdbbdc12 3386 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
f6e78475 3387 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
33740e40
JR
3388 nested_vmcb->save.rip = vmcb->save.rip;
3389 nested_vmcb->save.rsp = vmcb->save.rsp;
3390 nested_vmcb->save.rax = vmcb->save.rax;
3391 nested_vmcb->save.dr7 = vmcb->save.dr7;
3392 nested_vmcb->save.dr6 = vmcb->save.dr6;
3393 nested_vmcb->save.cpl = vmcb->save.cpl;
3394
3395 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3396 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3397 nested_vmcb->control.int_state = vmcb->control.int_state;
3398 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3399 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3400 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3401 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3402 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3403 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
6092d3d3
JR
3404
3405 if (svm->nrips_enabled)
3406 nested_vmcb->control.next_rip = vmcb->control.next_rip;
8d23c466
AG
3407
3408 /*
3409 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3410 * to make sure that we do not lose injected events. So check event_inj
3411 * here and copy it to exit_int_info if it is valid.
3412 * Exit_int_info and event_inj can't be both valid because the case
3413 * below only happens on a VMRUN instruction intercept which has
3414 * no valid exit_int_info set.
3415 */
3416 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3417 struct vmcb_control_area *nc = &nested_vmcb->control;
3418
3419 nc->exit_int_info = vmcb->control.event_inj;
3420 nc->exit_int_info_err = vmcb->control.event_inj_err;
3421 }
3422
33740e40
JR
3423 nested_vmcb->control.tlb_ctl = 0;
3424 nested_vmcb->control.event_inj = 0;
3425 nested_vmcb->control.event_inj_err = 0;
cf74a78b 3426
e081354d
TW
3427 nested_vmcb->control.pause_filter_count =
3428 svm->vmcb->control.pause_filter_count;
3429 nested_vmcb->control.pause_filter_thresh =
3430 svm->vmcb->control.pause_filter_thresh;
3431
cf74a78b
AG
3432 /* We always set V_INTR_MASKING and remember the old value in hflags */
3433 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3434 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3435
cf74a78b 3436 /* Restore the original control entries */
0460a979 3437 copy_vmcb_control_area(vmcb, hsave);
cf74a78b 3438
e79f245d 3439 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
219b65dc
AG
3440 kvm_clear_exception_queue(&svm->vcpu);
3441 kvm_clear_interrupt_queue(&svm->vcpu);
cf74a78b 3442
4b16184c
JR
3443 svm->nested.nested_cr3 = 0;
3444
cf74a78b
AG
3445 /* Restore selected save entries */
3446 svm->vmcb->save.es = hsave->save.es;
3447 svm->vmcb->save.cs = hsave->save.cs;
3448 svm->vmcb->save.ss = hsave->save.ss;
3449 svm->vmcb->save.ds = hsave->save.ds;
3450 svm->vmcb->save.gdtr = hsave->save.gdtr;
3451 svm->vmcb->save.idtr = hsave->save.idtr;
f6e78475 3452 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
cf74a78b
AG
3453 svm_set_efer(&svm->vcpu, hsave->save.efer);
3454 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3455 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3456 if (npt_enabled) {
3457 svm->vmcb->save.cr3 = hsave->save.cr3;
3458 svm->vcpu.arch.cr3 = hsave->save.cr3;
3459 } else {
2390218b 3460 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
cf74a78b 3461 }
de3cd117 3462 kvm_rax_write(&svm->vcpu, hsave->save.rax);
e9c16c78
PB
3463 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3464 kvm_rip_write(&svm->vcpu, hsave->save.rip);
cf74a78b
AG
3465 svm->vmcb->save.dr7 = 0;
3466 svm->vmcb->save.cpl = 0;
3467 svm->vmcb->control.exit_int_info = 0;
3468
8d28fec4
RJ
3469 mark_all_dirty(svm->vmcb);
3470
8c5fbf1a 3471 kvm_vcpu_unmap(&svm->vcpu, &map, true);
cf74a78b 3472
4b16184c 3473 nested_svm_uninit_mmu_context(&svm->vcpu);
cf74a78b
AG
3474 kvm_mmu_reset_context(&svm->vcpu);
3475 kvm_mmu_load(&svm->vcpu);
3476
619ad846
VK
3477 /*
3478 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3479 * doesn't end up in L1.
3480 */
3481 svm->vcpu.arch.nmi_injected = false;
3482 kvm_clear_exception_queue(&svm->vcpu);
3483 kvm_clear_interrupt_queue(&svm->vcpu);
3484
cf74a78b
AG
3485 return 0;
3486}
3d6368ef 3487
9738b2c9 3488static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
3d6368ef 3489{
323c3d80
JR
3490 /*
3491 * This function merges the msr permission bitmaps of kvm and the
c5ec2e56 3492 * nested vmcb. It is optimized in that it only merges the parts where
323c3d80
JR
3493 * the kvm msr permission bitmap may contain zero bits
3494 */
3d6368ef 3495 int i;
9738b2c9 3496
323c3d80
JR
3497 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3498 return true;
9738b2c9 3499
323c3d80
JR
3500 for (i = 0; i < MSRPM_OFFSETS; i++) {
3501 u32 value, p;
3502 u64 offset;
9738b2c9 3503
323c3d80
JR
3504 if (msrpm_offsets[i] == 0xffffffff)
3505 break;
3d6368ef 3506
0d6b3537
JR
3507 p = msrpm_offsets[i];
3508 offset = svm->nested.vmcb_msrpm + (p * 4);
323c3d80 3509
54bf36aa 3510 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
323c3d80
JR
3511 return false;
3512
3513 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3514 }
3d6368ef 3515
d0ec49d4 3516 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
9738b2c9
JR
3517
3518 return true;
3d6368ef
AG
3519}
3520
52c65a30
JR
3521static bool nested_vmcb_checks(struct vmcb *vmcb)
3522{
3523 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3524 return false;
3525
dbe77584
JR
3526 if (vmcb->control.asid == 0)
3527 return false;
3528
cea3a19b
TL
3529 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3530 !npt_enabled)
4b16184c
JR
3531 return false;
3532
52c65a30
JR
3533 return true;
3534}
3535
c2634065 3536static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
8c5fbf1a 3537 struct vmcb *nested_vmcb, struct kvm_host_map *map)
3d6368ef 3538{
f6e78475 3539 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
3d6368ef
AG
3540 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3541 else
3542 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3543
cea3a19b 3544 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
4b16184c
JR
3545 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3546 nested_svm_init_mmu_context(&svm->vcpu);
3547 }
3548
3d6368ef
AG
3549 /* Load the nested guest state */
3550 svm->vmcb->save.es = nested_vmcb->save.es;
3551 svm->vmcb->save.cs = nested_vmcb->save.cs;
3552 svm->vmcb->save.ss = nested_vmcb->save.ss;
3553 svm->vmcb->save.ds = nested_vmcb->save.ds;
3554 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3555 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
f6e78475 3556 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
3d6368ef
AG
3557 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3558 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3559 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3560 if (npt_enabled) {
3561 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3562 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
0e5cbe36 3563 } else
2390218b 3564 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
0e5cbe36
JR
3565
3566 /* Guest paging mode is active - reset mmu */
3567 kvm_mmu_reset_context(&svm->vcpu);
3568
defbba56 3569 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
de3cd117 3570 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
e9c16c78
PB
3571 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3572 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
e0231715 3573
3d6368ef
AG
3574 /* In case we don't even reach vcpu_run, the fields are not updated */
3575 svm->vmcb->save.rax = nested_vmcb->save.rax;
3576 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3577 svm->vmcb->save.rip = nested_vmcb->save.rip;
3578 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3579 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3580 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3581
f7138538 3582 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
ce2ac085 3583 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
3d6368ef 3584
aad42c64 3585 /* cache intercepts */
4ee546b4 3586 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
3aed041a 3587 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
aad42c64
JR
3588 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3589 svm->nested.intercept = nested_vmcb->control.intercept;
3590
c2ba05cc 3591 svm_flush_tlb(&svm->vcpu, true);
3d6368ef 3592 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
3d6368ef
AG
3593 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3594 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3595 else
3596 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3597
88ab24ad
JR
3598 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3599 /* We only want the cr8 intercept bits of the guest */
4ee546b4
RJ
3600 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3601 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
88ab24ad
JR
3602 }
3603
0d945bd9 3604 /* We don't want to see VMMCALLs from a nested guest */
8a05a1b8 3605 clr_intercept(svm, INTERCEPT_VMMCALL);
0d945bd9 3606
e79f245d
KA
3607 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3608 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3609
0dc92119 3610 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
3d6368ef
AG
3611 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3612 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
3d6368ef
AG
3613 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3614 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3615
e081354d
TW
3616 svm->vmcb->control.pause_filter_count =
3617 nested_vmcb->control.pause_filter_count;
3618 svm->vmcb->control.pause_filter_thresh =
3619 nested_vmcb->control.pause_filter_thresh;
3620
8c5fbf1a 3621 kvm_vcpu_unmap(&svm->vcpu, map, true);
9738b2c9 3622
2030753d
JR
3623 /* Enter Guest-Mode */
3624 enter_guest_mode(&svm->vcpu);
3625
384c6368
JR
3626 /*
3627 * Merge guest and host intercepts - must be called with vcpu in
3628 * guest-mode to take affect here
3629 */
3630 recalc_intercepts(svm);
3631
06fc7772 3632 svm->nested.vmcb = vmcb_gpa;
9738b2c9 3633
2af9194d 3634 enable_gif(svm);
3d6368ef 3635
8d28fec4 3636 mark_all_dirty(svm->vmcb);
c2634065
LP
3637}
3638
e7134c1b 3639static int nested_svm_vmrun(struct vcpu_svm *svm)
c2634065 3640{
c8e16b78 3641 int ret;
c2634065
LP
3642 struct vmcb *nested_vmcb;
3643 struct vmcb *hsave = svm->nested.hsave;
3644 struct vmcb *vmcb = svm->vmcb;
8c5fbf1a 3645 struct kvm_host_map map;
c2634065
LP
3646 u64 vmcb_gpa;
3647
3648 vmcb_gpa = svm->vmcb->save.rax;
3649
c8e16b78 3650 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
a061985b 3651 if (ret == -EINVAL) {
c8e16b78 3652 kvm_inject_gp(&svm->vcpu, 0);
e7134c1b 3653 return 1;
c8e16b78
VK
3654 } else if (ret) {
3655 return kvm_skip_emulated_instruction(&svm->vcpu);
8c5fbf1a
KA
3656 }
3657
c8e16b78
VK
3658 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3659
8c5fbf1a 3660 nested_vmcb = map.hva;
c2634065
LP
3661
3662 if (!nested_vmcb_checks(nested_vmcb)) {
3663 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3664 nested_vmcb->control.exit_code_hi = 0;
3665 nested_vmcb->control.exit_info_1 = 0;
3666 nested_vmcb->control.exit_info_2 = 0;
3667
8c5fbf1a 3668 kvm_vcpu_unmap(&svm->vcpu, &map, true);
c2634065 3669
c8e16b78 3670 return ret;
c2634065
LP
3671 }
3672
3673 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3674 nested_vmcb->save.rip,
3675 nested_vmcb->control.int_ctl,
3676 nested_vmcb->control.event_inj,
3677 nested_vmcb->control.nested_ctl);
3678
3679 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3680 nested_vmcb->control.intercept_cr >> 16,
3681 nested_vmcb->control.intercept_exceptions,
3682 nested_vmcb->control.intercept);
3683
3684 /* Clear internal status */
3685 kvm_clear_exception_queue(&svm->vcpu);
3686 kvm_clear_interrupt_queue(&svm->vcpu);
3687
3688 /*
3689 * Save the old vmcb, so we don't need to pick what we save, but can
3690 * restore everything when a VMEXIT occurs
3691 */
3692 hsave->save.es = vmcb->save.es;
3693 hsave->save.cs = vmcb->save.cs;
3694 hsave->save.ss = vmcb->save.ss;
3695 hsave->save.ds = vmcb->save.ds;
3696 hsave->save.gdtr = vmcb->save.gdtr;
3697 hsave->save.idtr = vmcb->save.idtr;
3698 hsave->save.efer = svm->vcpu.arch.efer;
3699 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3700 hsave->save.cr4 = svm->vcpu.arch.cr4;
3701 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3702 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3703 hsave->save.rsp = vmcb->save.rsp;
3704 hsave->save.rax = vmcb->save.rax;
3705 if (npt_enabled)
3706 hsave->save.cr3 = vmcb->save.cr3;
3707 else
3708 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3709
3710 copy_vmcb_control_area(hsave, vmcb);
3711
8c5fbf1a 3712 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
8d28fec4 3713
e7134c1b
VK
3714 if (!nested_svm_vmrun_msrpm(svm)) {
3715 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3716 svm->vmcb->control.exit_code_hi = 0;
3717 svm->vmcb->control.exit_info_1 = 0;
3718 svm->vmcb->control.exit_info_2 = 0;
3719
3720 nested_svm_vmexit(svm);
3721 }
3722
c8e16b78 3723 return ret;
3d6368ef
AG
3724}
3725
9966bf68 3726static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
5542675b
AG
3727{
3728 to_vmcb->save.fs = from_vmcb->save.fs;
3729 to_vmcb->save.gs = from_vmcb->save.gs;
3730 to_vmcb->save.tr = from_vmcb->save.tr;
3731 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3732 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3733 to_vmcb->save.star = from_vmcb->save.star;
3734 to_vmcb->save.lstar = from_vmcb->save.lstar;
3735 to_vmcb->save.cstar = from_vmcb->save.cstar;
3736 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3737 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3738 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3739 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
5542675b
AG
3740}
3741
851ba692 3742static int vmload_interception(struct vcpu_svm *svm)
5542675b 3743{
9966bf68 3744 struct vmcb *nested_vmcb;
8c5fbf1a 3745 struct kvm_host_map map;
b742c1e6 3746 int ret;
9966bf68 3747
5542675b
AG
3748 if (nested_svm_check_permissions(svm))
3749 return 1;
3750
8c5fbf1a
KA
3751 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3752 if (ret) {
3753 if (ret == -EINVAL)
3754 kvm_inject_gp(&svm->vcpu, 0);
9966bf68 3755 return 1;
8c5fbf1a
KA
3756 }
3757
3758 nested_vmcb = map.hva;
9966bf68 3759
b742c1e6 3760 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3761
9966bf68 3762 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
8c5fbf1a 3763 kvm_vcpu_unmap(&svm->vcpu, &map, true);
5542675b 3764
b742c1e6 3765 return ret;
5542675b
AG
3766}
3767
851ba692 3768static int vmsave_interception(struct vcpu_svm *svm)
5542675b 3769{
9966bf68 3770 struct vmcb *nested_vmcb;
8c5fbf1a 3771 struct kvm_host_map map;
b742c1e6 3772 int ret;
9966bf68 3773
5542675b
AG
3774 if (nested_svm_check_permissions(svm))
3775 return 1;
3776
8c5fbf1a
KA
3777 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3778 if (ret) {
3779 if (ret == -EINVAL)
3780 kvm_inject_gp(&svm->vcpu, 0);
9966bf68 3781 return 1;
8c5fbf1a
KA
3782 }
3783
3784 nested_vmcb = map.hva;
9966bf68 3785
b742c1e6 3786 ret = kvm_skip_emulated_instruction(&svm->vcpu);
e3e9ed3d 3787
9966bf68 3788 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
8c5fbf1a 3789 kvm_vcpu_unmap(&svm->vcpu, &map, true);
5542675b 3790
b742c1e6 3791 return ret;
5542675b
AG
3792}
3793
851ba692 3794static int vmrun_interception(struct vcpu_svm *svm)
3d6368ef 3795{
3d6368ef
AG
3796 if (nested_svm_check_permissions(svm))
3797 return 1;
3798
e7134c1b 3799 return nested_svm_vmrun(svm);
3d6368ef
AG
3800}
3801
851ba692 3802static int stgi_interception(struct vcpu_svm *svm)
1371d904 3803{
b742c1e6
LP
3804 int ret;
3805
1371d904
AG
3806 if (nested_svm_check_permissions(svm))
3807 return 1;
3808
640bd6e5
JN
3809 /*
3810 * If VGIF is enabled, the STGI intercept is only added to
cc3d967f 3811 * detect the opening of the SMI/NMI window; remove it now.
640bd6e5
JN
3812 */
3813 if (vgif_enabled(svm))
3814 clr_intercept(svm, INTERCEPT_STGI);
3815
b742c1e6 3816 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3842d135 3817 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
1371d904 3818
2af9194d 3819 enable_gif(svm);
1371d904 3820
b742c1e6 3821 return ret;
1371d904
AG
3822}
3823
851ba692 3824static int clgi_interception(struct vcpu_svm *svm)
1371d904 3825{
b742c1e6
LP
3826 int ret;
3827
1371d904
AG
3828 if (nested_svm_check_permissions(svm))
3829 return 1;
3830
b742c1e6 3831 ret = kvm_skip_emulated_instruction(&svm->vcpu);
1371d904 3832
2af9194d 3833 disable_gif(svm);
1371d904
AG
3834
3835 /* After a CLGI no interrupts should come */
340d3bc3
SS
3836 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3837 svm_clear_vintr(svm);
3838 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3839 mark_dirty(svm->vmcb, VMCB_INTR);
3840 }
decdbf6a 3841
b742c1e6 3842 return ret;
1371d904
AG
3843}
3844
851ba692 3845static int invlpga_interception(struct vcpu_svm *svm)
ff092385
AG
3846{
3847 struct kvm_vcpu *vcpu = &svm->vcpu;
ff092385 3848
de3cd117
SC
3849 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3850 kvm_rax_read(&svm->vcpu));
ec1ff790 3851
ff092385 3852 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
de3cd117 3853 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
ff092385 3854
b742c1e6 3855 return kvm_skip_emulated_instruction(&svm->vcpu);
ff092385
AG
3856}
3857
532a46b9
JR
3858static int skinit_interception(struct vcpu_svm *svm)
3859{
de3cd117 3860 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
532a46b9
JR
3861
3862 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3863 return 1;
3864}
3865
dab429a7
DK
3866static int wbinvd_interception(struct vcpu_svm *svm)
3867{
6affcbed 3868 return kvm_emulate_wbinvd(&svm->vcpu);
dab429a7
DK
3869}
3870
81dd35d4
JR
3871static int xsetbv_interception(struct vcpu_svm *svm)
3872{
3873 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
de3cd117 3874 u32 index = kvm_rcx_read(&svm->vcpu);
81dd35d4
JR
3875
3876 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
b742c1e6 3877 return kvm_skip_emulated_instruction(&svm->vcpu);
81dd35d4
JR
3878 }
3879
3880 return 1;
3881}
3882
0cb8410b
JM
3883static int rdpru_interception(struct vcpu_svm *svm)
3884{
3885 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3886 return 1;
3887}
3888
851ba692 3889static int task_switch_interception(struct vcpu_svm *svm)
6aa8b732 3890{
37817f29 3891 u16 tss_selector;
64a7ec06
GN
3892 int reason;
3893 int int_type = svm->vmcb->control.exit_int_info &
3894 SVM_EXITINTINFO_TYPE_MASK;
8317c298 3895 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
fe8e7f83
GN
3896 uint32_t type =
3897 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3898 uint32_t idt_v =
3899 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
e269fb21
JK
3900 bool has_error_code = false;
3901 u32 error_code = 0;
37817f29
IE
3902
3903 tss_selector = (u16)svm->vmcb->control.exit_info_1;
64a7ec06 3904
37817f29
IE
3905 if (svm->vmcb->control.exit_info_2 &
3906 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
64a7ec06
GN
3907 reason = TASK_SWITCH_IRET;
3908 else if (svm->vmcb->control.exit_info_2 &
3909 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3910 reason = TASK_SWITCH_JMP;
fe8e7f83 3911 else if (idt_v)
64a7ec06
GN
3912 reason = TASK_SWITCH_GATE;
3913 else
3914 reason = TASK_SWITCH_CALL;
3915
fe8e7f83
GN
3916 if (reason == TASK_SWITCH_GATE) {
3917 switch (type) {
3918 case SVM_EXITINTINFO_TYPE_NMI:
3919 svm->vcpu.arch.nmi_injected = false;
3920 break;
3921 case SVM_EXITINTINFO_TYPE_EXEPT:
e269fb21
JK
3922 if (svm->vmcb->control.exit_info_2 &
3923 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3924 has_error_code = true;
3925 error_code =
3926 (u32)svm->vmcb->control.exit_info_2;
3927 }
fe8e7f83
GN
3928 kvm_clear_exception_queue(&svm->vcpu);
3929 break;
3930 case SVM_EXITINTINFO_TYPE_INTR:
3931 kvm_clear_interrupt_queue(&svm->vcpu);
3932 break;
3933 default:
3934 break;
3935 }
3936 }
64a7ec06 3937
8317c298
GN
3938 if (reason != TASK_SWITCH_GATE ||
3939 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3940 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
f8ea7c60 3941 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
60fc3d02 3942 if (!skip_emulated_instruction(&svm->vcpu))
738fece4 3943 return 0;
f8ea7c60 3944 }
64a7ec06 3945
7f3d35fd
KW
3946 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3947 int_vec = -1;
3948
1051778f 3949 return kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
60fc3d02 3950 has_error_code, error_code);
6aa8b732
AK
3951}
3952
851ba692 3953static int cpuid_interception(struct vcpu_svm *svm)
6aa8b732 3954{
6a908b62 3955 return kvm_emulate_cpuid(&svm->vcpu);
6aa8b732
AK
3956}
3957
851ba692 3958static int iret_interception(struct vcpu_svm *svm)
95ba8273
GN
3959{
3960 ++svm->vcpu.stat.nmi_window_exits;
8a05a1b8 3961 clr_intercept(svm, INTERCEPT_IRET);
44c11430 3962 svm->vcpu.arch.hflags |= HF_IRET_MASK;
bd3d1ec3 3963 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
f303b4ce 3964 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
95ba8273
GN
3965 return 1;
3966}
3967
851ba692 3968static int invlpg_interception(struct vcpu_svm *svm)
a7052897 3969{
df4f3108 3970 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
60fc3d02 3971 return kvm_emulate_instruction(&svm->vcpu, 0);
df4f3108
AP
3972
3973 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
b742c1e6 3974 return kvm_skip_emulated_instruction(&svm->vcpu);
a7052897
MT
3975}
3976
851ba692 3977static int emulate_on_interception(struct vcpu_svm *svm)
6aa8b732 3978{
60fc3d02 3979 return kvm_emulate_instruction(&svm->vcpu, 0);
6aa8b732
AK
3980}
3981
7607b717
BS
3982static int rsm_interception(struct vcpu_svm *svm)
3983{
60fc3d02 3984 return kvm_emulate_instruction_from_buffer(&svm->vcpu, rsm_ins_bytes, 2);
7607b717
BS
3985}
3986
332b56e4
AK
3987static int rdpmc_interception(struct vcpu_svm *svm)
3988{
3989 int err;
3990
d647eb63 3991 if (!nrips)
332b56e4
AK
3992 return emulate_on_interception(svm);
3993
3994 err = kvm_rdpmc(&svm->vcpu);
6affcbed 3995 return kvm_complete_insn_gp(&svm->vcpu, err);
332b56e4
AK
3996}
3997
52eb5a6d
XL
3998static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3999 unsigned long val)
628afd2a
JR
4000{
4001 unsigned long cr0 = svm->vcpu.arch.cr0;
4002 bool ret = false;
4003 u64 intercept;
4004
4005 intercept = svm->nested.intercept;
4006
4007 if (!is_guest_mode(&svm->vcpu) ||
4008 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
4009 return false;
4010
4011 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
4012 val &= ~SVM_CR0_SELECTIVE_MASK;
4013
4014 if (cr0 ^ val) {
4015 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4016 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
4017 }
4018
4019 return ret;
4020}
4021
7ff76d58
AP
4022#define CR_VALID (1ULL << 63)
4023
4024static int cr_interception(struct vcpu_svm *svm)
4025{
4026 int reg, cr;
4027 unsigned long val;
4028 int err;
4029
4030 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
4031 return emulate_on_interception(svm);
4032
4033 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4034 return emulate_on_interception(svm);
4035
4036 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
5e57518d
DK
4037 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4038 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4039 else
4040 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
7ff76d58
AP
4041
4042 err = 0;
4043 if (cr >= 16) { /* mov to cr */
4044 cr -= 16;
4045 val = kvm_register_read(&svm->vcpu, reg);
4046 switch (cr) {
4047 case 0:
628afd2a
JR
4048 if (!check_selective_cr0_intercepted(svm, val))
4049 err = kvm_set_cr0(&svm->vcpu, val);
977b2d03
JR
4050 else
4051 return 1;
4052
7ff76d58
AP
4053 break;
4054 case 3:
4055 err = kvm_set_cr3(&svm->vcpu, val);
4056 break;
4057 case 4:
4058 err = kvm_set_cr4(&svm->vcpu, val);
4059 break;
4060 case 8:
4061 err = kvm_set_cr8(&svm->vcpu, val);
4062 break;
4063 default:
4064 WARN(1, "unhandled write to CR%d", cr);
4065 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4066 return 1;
4067 }
4068 } else { /* mov from cr */
4069 switch (cr) {
4070 case 0:
4071 val = kvm_read_cr0(&svm->vcpu);
4072 break;
4073 case 2:
4074 val = svm->vcpu.arch.cr2;
4075 break;
4076 case 3:
9f8fe504 4077 val = kvm_read_cr3(&svm->vcpu);
7ff76d58
AP
4078 break;
4079 case 4:
4080 val = kvm_read_cr4(&svm->vcpu);
4081 break;
4082 case 8:
4083 val = kvm_get_cr8(&svm->vcpu);
4084 break;
4085 default:
4086 WARN(1, "unhandled read from CR%d", cr);
4087 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4088 return 1;
4089 }
4090 kvm_register_write(&svm->vcpu, reg, val);
4091 }
6affcbed 4092 return kvm_complete_insn_gp(&svm->vcpu, err);
7ff76d58
AP
4093}
4094
cae3797a
AP
4095static int dr_interception(struct vcpu_svm *svm)
4096{
4097 int reg, dr;
4098 unsigned long val;
cae3797a 4099
facb0139
PB
4100 if (svm->vcpu.guest_debug == 0) {
4101 /*
4102 * No more DR vmexits; force a reload of the debug registers
4103 * and reenter on this instruction. The next vmexit will
4104 * retrieve the full state of the debug registers.
4105 */
4106 clr_dr_intercepts(svm);
4107 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4108 return 1;
4109 }
4110
cae3797a
AP
4111 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4112 return emulate_on_interception(svm);
4113
4114 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4115 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4116
4117 if (dr >= 16) { /* mov to DRn */
16f8a6f9
NA
4118 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4119 return 1;
cae3797a
AP
4120 val = kvm_register_read(&svm->vcpu, reg);
4121 kvm_set_dr(&svm->vcpu, dr - 16, val);
4122 } else {
16f8a6f9
NA
4123 if (!kvm_require_dr(&svm->vcpu, dr))
4124 return 1;
4125 kvm_get_dr(&svm->vcpu, dr, &val);
4126 kvm_register_write(&svm->vcpu, reg, val);
cae3797a
AP
4127 }
4128
b742c1e6 4129 return kvm_skip_emulated_instruction(&svm->vcpu);
cae3797a
AP
4130}
4131
851ba692 4132static int cr8_write_interception(struct vcpu_svm *svm)
1d075434 4133{
851ba692 4134 struct kvm_run *kvm_run = svm->vcpu.run;
eea1cff9 4135 int r;
851ba692 4136
0a5fff19
GN
4137 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4138 /* instruction emulation calls kvm_set_cr8() */
7ff76d58 4139 r = cr_interception(svm);
35754c98 4140 if (lapic_in_kernel(&svm->vcpu))
7ff76d58 4141 return r;
0a5fff19 4142 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
7ff76d58 4143 return r;
1d075434
JR
4144 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4145 return 0;
4146}
4147
801e459a
TL
4148static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4149{
d1d93fa9
TL
4150 msr->data = 0;
4151
4152 switch (msr->index) {
4153 case MSR_F10H_DECFG:
4154 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4155 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4156 break;
4157 default:
4158 return 1;
4159 }
4160
4161 return 0;
801e459a
TL
4162}
4163
609e36d3 4164static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
6aa8b732 4165{
a2fa3e9f
GH
4166 struct vcpu_svm *svm = to_svm(vcpu);
4167
609e36d3 4168 switch (msr_info->index) {
8c06585d 4169 case MSR_STAR:
609e36d3 4170 msr_info->data = svm->vmcb->save.star;
6aa8b732 4171 break;
0e859cac 4172#ifdef CONFIG_X86_64
6aa8b732 4173 case MSR_LSTAR:
609e36d3 4174 msr_info->data = svm->vmcb->save.lstar;
6aa8b732
AK
4175 break;
4176 case MSR_CSTAR:
609e36d3 4177 msr_info->data = svm->vmcb->save.cstar;
6aa8b732
AK
4178 break;
4179 case MSR_KERNEL_GS_BASE:
609e36d3 4180 msr_info->data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
4181 break;
4182 case MSR_SYSCALL_MASK:
609e36d3 4183 msr_info->data = svm->vmcb->save.sfmask;
6aa8b732
AK
4184 break;
4185#endif
4186 case MSR_IA32_SYSENTER_CS:
609e36d3 4187 msr_info->data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
4188 break;
4189 case MSR_IA32_SYSENTER_EIP:
609e36d3 4190 msr_info->data = svm->sysenter_eip;
6aa8b732
AK
4191 break;
4192 case MSR_IA32_SYSENTER_ESP:
609e36d3 4193 msr_info->data = svm->sysenter_esp;
6aa8b732 4194 break;
46896c73
PB
4195 case MSR_TSC_AUX:
4196 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4197 return 1;
4198 msr_info->data = svm->tsc_aux;
4199 break;
e0231715
JR
4200 /*
4201 * Nobody will change the following 5 values in the VMCB so we can
4202 * safely return them on rdmsr. They will always be 0 until LBRV is
4203 * implemented.
4204 */
a2938c80 4205 case MSR_IA32_DEBUGCTLMSR:
609e36d3 4206 msr_info->data = svm->vmcb->save.dbgctl;
a2938c80
JR
4207 break;
4208 case MSR_IA32_LASTBRANCHFROMIP:
609e36d3 4209 msr_info->data = svm->vmcb->save.br_from;
a2938c80
JR
4210 break;
4211 case MSR_IA32_LASTBRANCHTOIP:
609e36d3 4212 msr_info->data = svm->vmcb->save.br_to;
a2938c80
JR
4213 break;
4214 case MSR_IA32_LASTINTFROMIP:
609e36d3 4215 msr_info->data = svm->vmcb->save.last_excp_from;
a2938c80
JR
4216 break;
4217 case MSR_IA32_LASTINTTOIP:
609e36d3 4218 msr_info->data = svm->vmcb->save.last_excp_to;
a2938c80 4219 break;
b286d5d8 4220 case MSR_VM_HSAVE_PA:
609e36d3 4221 msr_info->data = svm->nested.hsave_msr;
b286d5d8 4222 break;
eb6f302e 4223 case MSR_VM_CR:
609e36d3 4224 msr_info->data = svm->nested.vm_cr_msr;
eb6f302e 4225 break;
b2ac58f9
KA
4226 case MSR_IA32_SPEC_CTRL:
4227 if (!msr_info->host_initiated &&
df7e8818
PB
4228 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4229 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
6ac2f49e
KRW
4230 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4231 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
b2ac58f9
KA
4232 return 1;
4233
4234 msr_info->data = svm->spec_ctrl;
4235 break;
bc226f07
TL
4236 case MSR_AMD64_VIRT_SPEC_CTRL:
4237 if (!msr_info->host_initiated &&
4238 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4239 return 1;
4240
4241 msr_info->data = svm->virt_spec_ctrl;
4242 break;
ae8b7875
BP
4243 case MSR_F15H_IC_CFG: {
4244
4245 int family, model;
4246
4247 family = guest_cpuid_family(vcpu);
4248 model = guest_cpuid_model(vcpu);
4249
4250 if (family < 0 || model < 0)
4251 return kvm_get_msr_common(vcpu, msr_info);
4252
4253 msr_info->data = 0;
4254
4255 if (family == 0x15 &&
4256 (model >= 0x2 && model < 0x20))
4257 msr_info->data = 0x1E;
4258 }
4259 break;
d1d93fa9
TL
4260 case MSR_F10H_DECFG:
4261 msr_info->data = svm->msr_decfg;
4262 break;
6aa8b732 4263 default:
609e36d3 4264 return kvm_get_msr_common(vcpu, msr_info);
6aa8b732
AK
4265 }
4266 return 0;
4267}
4268
851ba692 4269static int rdmsr_interception(struct vcpu_svm *svm)
6aa8b732 4270{
1edce0a9 4271 return kvm_emulate_rdmsr(&svm->vcpu);
6aa8b732
AK
4272}
4273
4a810181
JR
4274static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4275{
4276 struct vcpu_svm *svm = to_svm(vcpu);
4277 int svm_dis, chg_mask;
4278
4279 if (data & ~SVM_VM_CR_VALID_MASK)
4280 return 1;
4281
4282 chg_mask = SVM_VM_CR_VALID_MASK;
4283
4284 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4285 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4286
4287 svm->nested.vm_cr_msr &= ~chg_mask;
4288 svm->nested.vm_cr_msr |= (data & chg_mask);
4289
4290 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4291
4292 /* check for svm_disable while efer.svme is set */
4293 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4294 return 1;
4295
4296 return 0;
4297}
4298
8fe8ab46 4299static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
6aa8b732 4300{
a2fa3e9f
GH
4301 struct vcpu_svm *svm = to_svm(vcpu);
4302
8fe8ab46
WA
4303 u32 ecx = msr->index;
4304 u64 data = msr->data;
6aa8b732 4305 switch (ecx) {
15038e14
PB
4306 case MSR_IA32_CR_PAT:
4307 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4308 return 1;
4309 vcpu->arch.pat = data;
4310 svm->vmcb->save.g_pat = data;
4311 mark_dirty(svm->vmcb, VMCB_NPT);
4312 break;
b2ac58f9
KA
4313 case MSR_IA32_SPEC_CTRL:
4314 if (!msr->host_initiated &&
df7e8818
PB
4315 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4316 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
6ac2f49e
KRW
4317 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4318 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
b2ac58f9
KA
4319 return 1;
4320
6441fa61 4321 if (data & ~kvm_spec_ctrl_valid_bits(vcpu))
b2ac58f9
KA
4322 return 1;
4323
4324 svm->spec_ctrl = data;
b2ac58f9
KA
4325 if (!data)
4326 break;
4327
4328 /*
4329 * For non-nested:
4330 * When it's written (to non-zero) for the first time, pass
4331 * it through.
4332 *
4333 * For nested:
4334 * The handling of the MSR bitmap for L2 guests is done in
4335 * nested_svm_vmrun_msrpm.
4336 * We update the L1 MSR bit as well since it will end up
4337 * touching the MSR anyway now.
4338 */
4339 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4340 break;
15d45071
AR
4341 case MSR_IA32_PRED_CMD:
4342 if (!msr->host_initiated &&
e7c587da 4343 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
15d45071
AR
4344 return 1;
4345
4346 if (data & ~PRED_CMD_IBPB)
4347 return 1;
6441fa61
PB
4348 if (!boot_cpu_has(X86_FEATURE_AMD_IBPB))
4349 return 1;
15d45071
AR
4350 if (!data)
4351 break;
4352
4353 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
15d45071
AR
4354 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4355 break;
bc226f07
TL
4356 case MSR_AMD64_VIRT_SPEC_CTRL:
4357 if (!msr->host_initiated &&
4358 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4359 return 1;
4360
4361 if (data & ~SPEC_CTRL_SSBD)
4362 return 1;
4363
4364 svm->virt_spec_ctrl = data;
4365 break;
8c06585d 4366 case MSR_STAR:
a2fa3e9f 4367 svm->vmcb->save.star = data;
6aa8b732 4368 break;
49b14f24 4369#ifdef CONFIG_X86_64
6aa8b732 4370 case MSR_LSTAR:
a2fa3e9f 4371 svm->vmcb->save.lstar = data;
6aa8b732
AK
4372 break;
4373 case MSR_CSTAR:
a2fa3e9f 4374 svm->vmcb->save.cstar = data;
6aa8b732
AK
4375 break;
4376 case MSR_KERNEL_GS_BASE:
a2fa3e9f 4377 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
4378 break;
4379 case MSR_SYSCALL_MASK:
a2fa3e9f 4380 svm->vmcb->save.sfmask = data;
6aa8b732
AK
4381 break;
4382#endif
4383 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 4384 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
4385 break;
4386 case MSR_IA32_SYSENTER_EIP:
017cb99e 4387 svm->sysenter_eip = data;
a2fa3e9f 4388 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
4389 break;
4390 case MSR_IA32_SYSENTER_ESP:
017cb99e 4391 svm->sysenter_esp = data;
a2fa3e9f 4392 svm->vmcb->save.sysenter_esp = data;
6aa8b732 4393 break;
46896c73
PB
4394 case MSR_TSC_AUX:
4395 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4396 return 1;
4397
4398 /*
4399 * This is rare, so we update the MSR here instead of using
4400 * direct_access_msrs. Doing that would require a rdmsr in
4401 * svm_vcpu_put.
4402 */
4403 svm->tsc_aux = data;
4404 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4405 break;
a2938c80 4406 case MSR_IA32_DEBUGCTLMSR:
2a6b20b8 4407 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
a737f256
CD
4408 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4409 __func__, data);
24e09cbf
JR
4410 break;
4411 }
4412 if (data & DEBUGCTL_RESERVED_BITS)
4413 return 1;
4414
4415 svm->vmcb->save.dbgctl = data;
b53ba3f9 4416 mark_dirty(svm->vmcb, VMCB_LBR);
24e09cbf
JR
4417 if (data & (1ULL<<0))
4418 svm_enable_lbrv(svm);
4419 else
4420 svm_disable_lbrv(svm);
a2938c80 4421 break;
b286d5d8 4422 case MSR_VM_HSAVE_PA:
e6aa9abd 4423 svm->nested.hsave_msr = data;
62b9abaa 4424 break;
3c5d0a44 4425 case MSR_VM_CR:
4a810181 4426 return svm_set_vm_cr(vcpu, data);
3c5d0a44 4427 case MSR_VM_IGNNE:
a737f256 4428 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
3c5d0a44 4429 break;
d1d93fa9
TL
4430 case MSR_F10H_DECFG: {
4431 struct kvm_msr_entry msr_entry;
4432
4433 msr_entry.index = msr->index;
4434 if (svm_get_msr_feature(&msr_entry))
4435 return 1;
4436
4437 /* Check the supported bits */
4438 if (data & ~msr_entry.data)
4439 return 1;
4440
4441 /* Don't allow the guest to change a bit, #GP */
4442 if (!msr->host_initiated && (data ^ msr_entry.data))
4443 return 1;
4444
4445 svm->msr_decfg = data;
4446 break;
4447 }
44a95dae
SS
4448 case MSR_IA32_APICBASE:
4449 if (kvm_vcpu_apicv_active(vcpu))
4450 avic_update_vapic_bar(to_svm(vcpu), data);
b2869f28 4451 /* Fall through */
6aa8b732 4452 default:
8fe8ab46 4453 return kvm_set_msr_common(vcpu, msr);
6aa8b732
AK
4454 }
4455 return 0;
4456}
4457
851ba692 4458static int wrmsr_interception(struct vcpu_svm *svm)
6aa8b732 4459{
1edce0a9 4460 return kvm_emulate_wrmsr(&svm->vcpu);
6aa8b732
AK
4461}
4462
851ba692 4463static int msr_interception(struct vcpu_svm *svm)
6aa8b732 4464{
e756fc62 4465 if (svm->vmcb->control.exit_info_1)
851ba692 4466 return wrmsr_interception(svm);
6aa8b732 4467 else
851ba692 4468 return rdmsr_interception(svm);
6aa8b732
AK
4469}
4470
851ba692 4471static int interrupt_window_interception(struct vcpu_svm *svm)
c1150d8c 4472{
3842d135 4473 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
f0b85051 4474 svm_clear_vintr(svm);
f3515dc3
SS
4475
4476 /*
4477 * For AVIC, the only reason to end up here is ExtINTs.
4478 * In this case AVIC was temporarily disabled for
4479 * requesting the IRQ window and we have to re-enable it.
4480 */
4481 svm_toggle_avic_for_irq_window(&svm->vcpu, true);
4482
85f455f7 4483 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
decdbf6a 4484 mark_dirty(svm->vmcb, VMCB_INTR);
675acb75 4485 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
4486 return 1;
4487}
4488
565d0998
ML
4489static int pause_interception(struct vcpu_svm *svm)
4490{
de63ad4c
LM
4491 struct kvm_vcpu *vcpu = &svm->vcpu;
4492 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4493
8566ac8b
BM
4494 if (pause_filter_thresh)
4495 grow_ple_window(vcpu);
4496
de63ad4c 4497 kvm_vcpu_on_spin(vcpu, in_kernel);
565d0998
ML
4498 return 1;
4499}
4500
87c00572
GS
4501static int nop_interception(struct vcpu_svm *svm)
4502{
b742c1e6 4503 return kvm_skip_emulated_instruction(&(svm->vcpu));
87c00572
GS
4504}
4505
4506static int monitor_interception(struct vcpu_svm *svm)
4507{
4508 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4509 return nop_interception(svm);
4510}
4511
4512static int mwait_interception(struct vcpu_svm *svm)
4513{
4514 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4515 return nop_interception(svm);
4516}
4517
18f40c53
SS
4518enum avic_ipi_failure_cause {
4519 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4520 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4521 AVIC_IPI_FAILURE_INVALID_TARGET,
4522 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4523};
4524
4525static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4526{
4527 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4528 u32 icrl = svm->vmcb->control.exit_info_1;
4529 u32 id = svm->vmcb->control.exit_info_2 >> 32;
5446a979 4530 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
18f40c53
SS
4531 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4532
4533 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4534
4535 switch (id) {
4536 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4537 /*
4538 * AVIC hardware handles the generation of
4539 * IPIs when the specified Message Type is Fixed
4540 * (also known as fixed delivery mode) and
4541 * the Trigger Mode is edge-triggered. The hardware
4542 * also supports self and broadcast delivery modes
4543 * specified via the Destination Shorthand(DSH)
4544 * field of the ICRL. Logical and physical APIC ID
4545 * formats are supported. All other IPI types cause
4546 * a #VMEXIT, which needs to emulated.
4547 */
4548 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4549 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4550 break;
4551 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
4a58038b
SS
4552 int i;
4553 struct kvm_vcpu *vcpu;
4554 struct kvm *kvm = svm->vcpu.kvm;
18f40c53
SS
4555 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4556
4557 /*
4a58038b
SS
4558 * At this point, we expect that the AVIC HW has already
4559 * set the appropriate IRR bits on the valid target
4560 * vcpus. So, we just need to kick the appropriate vcpu.
18f40c53 4561 */
4a58038b
SS
4562 kvm_for_each_vcpu(i, vcpu, kvm) {
4563 bool m = kvm_apic_match_dest(vcpu, apic,
ac8ef992 4564 icrl & APIC_SHORT_MASK,
4a58038b 4565 GET_APIC_DEST_FIELD(icrh),
ac8ef992 4566 icrl & APIC_DEST_MASK);
4a58038b
SS
4567
4568 if (m && !avic_vcpu_is_running(vcpu))
4569 kvm_vcpu_wake_up(vcpu);
4570 }
18f40c53
SS
4571 break;
4572 }
4573 case AVIC_IPI_FAILURE_INVALID_TARGET:
37ef0c44
SS
4574 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4575 index, svm->vcpu.vcpu_id, icrh, icrl);
18f40c53
SS
4576 break;
4577 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4578 WARN_ONCE(1, "Invalid backing page\n");
4579 break;
4580 default:
4581 pr_err("Unknown IPI interception\n");
4582 }
4583
4584 return 1;
4585}
4586
4587static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4588{
81811c16 4589 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
18f40c53
SS
4590 int index;
4591 u32 *logical_apic_id_table;
4592 int dlid = GET_APIC_LOGICAL_ID(ldr);
4593
4594 if (!dlid)
4595 return NULL;
4596
4597 if (flat) { /* flat */
4598 index = ffs(dlid) - 1;
4599 if (index > 7)
4600 return NULL;
4601 } else { /* cluster */
4602 int cluster = (dlid & 0xf0) >> 4;
4603 int apic = ffs(dlid & 0x0f) - 1;
4604
4605 if ((apic < 0) || (apic > 7) ||
4606 (cluster >= 0xf))
4607 return NULL;
4608 index = (cluster << 2) + apic;
4609 }
4610
81811c16 4611 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
18f40c53
SS
4612
4613 return &logical_apic_id_table[index];
4614}
4615
98d90582 4616static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
18f40c53
SS
4617{
4618 bool flat;
4619 u32 *entry, new_entry;
4620
4621 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4622 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4623 if (!entry)
4624 return -EINVAL;
4625
4626 new_entry = READ_ONCE(*entry);
4627 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4628 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
98d90582 4629 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
18f40c53
SS
4630 WRITE_ONCE(*entry, new_entry);
4631
4632 return 0;
4633}
4634
98d90582
SS
4635static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4636{
4637 struct vcpu_svm *svm = to_svm(vcpu);
4638 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4639 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4640
4641 if (entry)
e44e3eac 4642 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
98d90582
SS
4643}
4644
18f40c53
SS
4645static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4646{
98d90582 4647 int ret = 0;
18f40c53
SS
4648 struct vcpu_svm *svm = to_svm(vcpu);
4649 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
5c94ac5d 4650 u32 id = kvm_xapic_id(vcpu->arch.apic);
18f40c53 4651
98d90582
SS
4652 if (ldr == svm->ldr_reg)
4653 return 0;
18f40c53 4654
98d90582
SS
4655 avic_invalidate_logical_id_entry(vcpu);
4656
4657 if (ldr)
5c94ac5d 4658 ret = avic_ldr_write(vcpu, id, ldr);
98d90582
SS
4659
4660 if (!ret)
18f40c53 4661 svm->ldr_reg = ldr;
98d90582 4662
18f40c53
SS
4663 return ret;
4664}
4665
4666static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4667{
4668 u64 *old, *new;
4669 struct vcpu_svm *svm = to_svm(vcpu);
5c94ac5d 4670 u32 id = kvm_xapic_id(vcpu->arch.apic);
18f40c53
SS
4671
4672 if (vcpu->vcpu_id == id)
4673 return 0;
4674
4675 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4676 new = avic_get_physical_id_entry(vcpu, id);
4677 if (!new || !old)
4678 return 1;
4679
4680 /* We need to move physical_id_entry to new offset */
4681 *new = *old;
4682 *old = 0ULL;
4683 to_svm(vcpu)->avic_physical_id_cache = new;
4684
4685 /*
4686 * Also update the guest physical APIC ID in the logical
4687 * APIC ID table entry if already setup the LDR.
4688 */
4689 if (svm->ldr_reg)
4690 avic_handle_ldr_update(vcpu);
4691
4692 return 0;
4693}
4694
98d90582 4695static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
18f40c53
SS
4696{
4697 struct vcpu_svm *svm = to_svm(vcpu);
18f40c53 4698 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
18f40c53 4699
98d90582
SS
4700 if (svm->dfr_reg == dfr)
4701 return;
18f40c53 4702
98d90582
SS
4703 avic_invalidate_logical_id_entry(vcpu);
4704 svm->dfr_reg = dfr;
18f40c53
SS
4705}
4706
4707static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4708{
4709 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4710 u32 offset = svm->vmcb->control.exit_info_1 &
4711 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4712
4713 switch (offset) {
4714 case APIC_ID:
4715 if (avic_handle_apic_id_update(&svm->vcpu))
4716 return 0;
4717 break;
4718 case APIC_LDR:
4719 if (avic_handle_ldr_update(&svm->vcpu))
4720 return 0;
4721 break;
4722 case APIC_DFR:
4723 avic_handle_dfr_update(&svm->vcpu);
4724 break;
4725 default:
4726 break;
4727 }
4728
4729 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4730
4731 return 1;
4732}
4733
4734static bool is_avic_unaccelerated_access_trap(u32 offset)
4735{
4736 bool ret = false;
4737
4738 switch (offset) {
4739 case APIC_ID:
4740 case APIC_EOI:
4741 case APIC_RRR:
4742 case APIC_LDR:
4743 case APIC_DFR:
4744 case APIC_SPIV:
4745 case APIC_ESR:
4746 case APIC_ICR:
4747 case APIC_LVTT:
4748 case APIC_LVTTHMR:
4749 case APIC_LVTPC:
4750 case APIC_LVT0:
4751 case APIC_LVT1:
4752 case APIC_LVTERR:
4753 case APIC_TMICT:
4754 case APIC_TDCR:
4755 ret = true;
4756 break;
4757 default:
4758 break;
4759 }
4760 return ret;
4761}
4762
4763static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4764{
4765 int ret = 0;
4766 u32 offset = svm->vmcb->control.exit_info_1 &
4767 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4768 u32 vector = svm->vmcb->control.exit_info_2 &
4769 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4770 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4771 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4772 bool trap = is_avic_unaccelerated_access_trap(offset);
4773
4774 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4775 trap, write, vector);
4776 if (trap) {
4777 /* Handling Trap */
4778 WARN_ONCE(!write, "svm: Handling trap read.\n");
4779 ret = avic_unaccel_trap_write(svm);
4780 } else {
4781 /* Handling Fault */
60fc3d02 4782 ret = kvm_emulate_instruction(&svm->vcpu, 0);
18f40c53
SS
4783 }
4784
4785 return ret;
4786}
4787
09941fbb 4788static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
7ff76d58
AP
4789 [SVM_EXIT_READ_CR0] = cr_interception,
4790 [SVM_EXIT_READ_CR3] = cr_interception,
4791 [SVM_EXIT_READ_CR4] = cr_interception,
4792 [SVM_EXIT_READ_CR8] = cr_interception,
5e57518d 4793 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
628afd2a 4794 [SVM_EXIT_WRITE_CR0] = cr_interception,
7ff76d58
AP
4795 [SVM_EXIT_WRITE_CR3] = cr_interception,
4796 [SVM_EXIT_WRITE_CR4] = cr_interception,
e0231715 4797 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
cae3797a
AP
4798 [SVM_EXIT_READ_DR0] = dr_interception,
4799 [SVM_EXIT_READ_DR1] = dr_interception,
4800 [SVM_EXIT_READ_DR2] = dr_interception,
4801 [SVM_EXIT_READ_DR3] = dr_interception,
4802 [SVM_EXIT_READ_DR4] = dr_interception,
4803 [SVM_EXIT_READ_DR5] = dr_interception,
4804 [SVM_EXIT_READ_DR6] = dr_interception,
4805 [SVM_EXIT_READ_DR7] = dr_interception,
4806 [SVM_EXIT_WRITE_DR0] = dr_interception,
4807 [SVM_EXIT_WRITE_DR1] = dr_interception,
4808 [SVM_EXIT_WRITE_DR2] = dr_interception,
4809 [SVM_EXIT_WRITE_DR3] = dr_interception,
4810 [SVM_EXIT_WRITE_DR4] = dr_interception,
4811 [SVM_EXIT_WRITE_DR5] = dr_interception,
4812 [SVM_EXIT_WRITE_DR6] = dr_interception,
4813 [SVM_EXIT_WRITE_DR7] = dr_interception,
d0bfb940
JK
4814 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4815 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
7aa81cc0 4816 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
e0231715 4817 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
e0231715 4818 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
54a20552 4819 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
9718420e 4820 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
e0231715 4821 [SVM_EXIT_INTR] = intr_interception,
c47f098d 4822 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
4823 [SVM_EXIT_SMI] = nop_on_interception,
4824 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 4825 [SVM_EXIT_VINTR] = interrupt_window_interception,
332b56e4 4826 [SVM_EXIT_RDPMC] = rdpmc_interception,
6aa8b732 4827 [SVM_EXIT_CPUID] = cpuid_interception,
95ba8273 4828 [SVM_EXIT_IRET] = iret_interception,
cf5a94d1 4829 [SVM_EXIT_INVD] = emulate_on_interception,
565d0998 4830 [SVM_EXIT_PAUSE] = pause_interception,
6aa8b732 4831 [SVM_EXIT_HLT] = halt_interception,
a7052897 4832 [SVM_EXIT_INVLPG] = invlpg_interception,
ff092385 4833 [SVM_EXIT_INVLPGA] = invlpga_interception,
e0231715 4834 [SVM_EXIT_IOIO] = io_interception,
6aa8b732
AK
4835 [SVM_EXIT_MSR] = msr_interception,
4836 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 4837 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
3d6368ef 4838 [SVM_EXIT_VMRUN] = vmrun_interception,
02e235bc 4839 [SVM_EXIT_VMMCALL] = vmmcall_interception,
5542675b
AG
4840 [SVM_EXIT_VMLOAD] = vmload_interception,
4841 [SVM_EXIT_VMSAVE] = vmsave_interception,
1371d904
AG
4842 [SVM_EXIT_STGI] = stgi_interception,
4843 [SVM_EXIT_CLGI] = clgi_interception,
532a46b9 4844 [SVM_EXIT_SKINIT] = skinit_interception,
dab429a7 4845 [SVM_EXIT_WBINVD] = wbinvd_interception,
87c00572
GS
4846 [SVM_EXIT_MONITOR] = monitor_interception,
4847 [SVM_EXIT_MWAIT] = mwait_interception,
81dd35d4 4848 [SVM_EXIT_XSETBV] = xsetbv_interception,
0cb8410b 4849 [SVM_EXIT_RDPRU] = rdpru_interception,
d0006530 4850 [SVM_EXIT_NPF] = npf_interception,
7607b717 4851 [SVM_EXIT_RSM] = rsm_interception,
18f40c53
SS
4852 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4853 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
6aa8b732
AK
4854};
4855
ae8cc059 4856static void dump_vmcb(struct kvm_vcpu *vcpu)
3f10c846
JR
4857{
4858 struct vcpu_svm *svm = to_svm(vcpu);
4859 struct vmcb_control_area *control = &svm->vmcb->control;
4860 struct vmcb_save_area *save = &svm->vmcb->save;
4861
6f2f8453
PB
4862 if (!dump_invalid_vmcb) {
4863 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4864 return;
4865 }
4866
3f10c846 4867 pr_err("VMCB Control Area:\n");
ae8cc059
JP
4868 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4869 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4870 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4871 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4872 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4873 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4874 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
1d8fb44a
BM
4875 pr_err("%-20s%d\n", "pause filter threshold:",
4876 control->pause_filter_thresh);
ae8cc059
JP
4877 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4878 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4879 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4880 pr_err("%-20s%d\n", "asid:", control->asid);
4881 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4882 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4883 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4884 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4885 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4886 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4887 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4888 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4889 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4890 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4891 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
44a95dae 4892 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
ae8cc059
JP
4893 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4894 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
0dc92119 4895 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
ae8cc059 4896 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
44a95dae
SS
4897 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4898 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4899 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
3f10c846 4900 pr_err("VMCB State Save Area:\n");
ae8cc059
JP
4901 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4902 "es:",
4903 save->es.selector, save->es.attrib,
4904 save->es.limit, save->es.base);
4905 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4906 "cs:",
4907 save->cs.selector, save->cs.attrib,
4908 save->cs.limit, save->cs.base);
4909 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4910 "ss:",
4911 save->ss.selector, save->ss.attrib,
4912 save->ss.limit, save->ss.base);
4913 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4914 "ds:",
4915 save->ds.selector, save->ds.attrib,
4916 save->ds.limit, save->ds.base);
4917 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4918 "fs:",
4919 save->fs.selector, save->fs.attrib,
4920 save->fs.limit, save->fs.base);
4921 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4922 "gs:",
4923 save->gs.selector, save->gs.attrib,
4924 save->gs.limit, save->gs.base);
4925 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4926 "gdtr:",
4927 save->gdtr.selector, save->gdtr.attrib,
4928 save->gdtr.limit, save->gdtr.base);
4929 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4930 "ldtr:",
4931 save->ldtr.selector, save->ldtr.attrib,
4932 save->ldtr.limit, save->ldtr.base);
4933 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4934 "idtr:",
4935 save->idtr.selector, save->idtr.attrib,
4936 save->idtr.limit, save->idtr.base);
4937 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4938 "tr:",
4939 save->tr.selector, save->tr.attrib,
4940 save->tr.limit, save->tr.base);
3f10c846
JR
4941 pr_err("cpl: %d efer: %016llx\n",
4942 save->cpl, save->efer);
ae8cc059
JP
4943 pr_err("%-15s %016llx %-13s %016llx\n",
4944 "cr0:", save->cr0, "cr2:", save->cr2);
4945 pr_err("%-15s %016llx %-13s %016llx\n",
4946 "cr3:", save->cr3, "cr4:", save->cr4);
4947 pr_err("%-15s %016llx %-13s %016llx\n",
4948 "dr6:", save->dr6, "dr7:", save->dr7);
4949 pr_err("%-15s %016llx %-13s %016llx\n",
4950 "rip:", save->rip, "rflags:", save->rflags);
4951 pr_err("%-15s %016llx %-13s %016llx\n",
4952 "rsp:", save->rsp, "rax:", save->rax);
4953 pr_err("%-15s %016llx %-13s %016llx\n",
4954 "star:", save->star, "lstar:", save->lstar);
4955 pr_err("%-15s %016llx %-13s %016llx\n",
4956 "cstar:", save->cstar, "sfmask:", save->sfmask);
4957 pr_err("%-15s %016llx %-13s %016llx\n",
4958 "kernel_gs_base:", save->kernel_gs_base,
4959 "sysenter_cs:", save->sysenter_cs);
4960 pr_err("%-15s %016llx %-13s %016llx\n",
4961 "sysenter_esp:", save->sysenter_esp,
4962 "sysenter_eip:", save->sysenter_eip);
4963 pr_err("%-15s %016llx %-13s %016llx\n",
4964 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4965 pr_err("%-15s %016llx %-13s %016llx\n",
4966 "br_from:", save->br_from, "br_to:", save->br_to);
4967 pr_err("%-15s %016llx %-13s %016llx\n",
4968 "excp_from:", save->last_excp_from,
4969 "excp_to:", save->last_excp_to);
3f10c846
JR
4970}
4971
586f9607
AK
4972static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4973{
4974 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4975
4976 *info1 = control->exit_info_1;
4977 *info2 = control->exit_info_2;
4978}
4979
1e9e2622
WL
4980static int handle_exit(struct kvm_vcpu *vcpu,
4981 enum exit_fastpath_completion exit_fastpath)
6aa8b732 4982{
04d2cc77 4983 struct vcpu_svm *svm = to_svm(vcpu);
851ba692 4984 struct kvm_run *kvm_run = vcpu->run;
a2fa3e9f 4985 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 4986
8b89fe1f
PB
4987 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4988
4ee546b4 4989 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
2be4fc7a
JR
4990 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4991 if (npt_enabled)
4992 vcpu->arch.cr3 = svm->vmcb->save.cr3;
af9ca2d7 4993
cd3ff653
JR
4994 if (unlikely(svm->nested.exit_required)) {
4995 nested_svm_vmexit(svm);
4996 svm->nested.exit_required = false;
4997
4998 return 1;
4999 }
5000
2030753d 5001 if (is_guest_mode(vcpu)) {
410e4d57
JR
5002 int vmexit;
5003
d8cabddf
JR
5004 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
5005 svm->vmcb->control.exit_info_1,
5006 svm->vmcb->control.exit_info_2,
5007 svm->vmcb->control.exit_int_info,
e097e5ff
SH
5008 svm->vmcb->control.exit_int_info_err,
5009 KVM_ISA_SVM);
d8cabddf 5010
410e4d57
JR
5011 vmexit = nested_svm_exit_special(svm);
5012
5013 if (vmexit == NESTED_EXIT_CONTINUE)
5014 vmexit = nested_svm_exit_handled(svm);
5015
5016 if (vmexit == NESTED_EXIT_DONE)
cf74a78b 5017 return 1;
cf74a78b
AG
5018 }
5019
a5c3832d
JR
5020 svm_complete_interrupts(svm);
5021
04d2cc77
AK
5022 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5023 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5024 kvm_run->fail_entry.hardware_entry_failure_reason
5025 = svm->vmcb->control.exit_code;
3f10c846 5026 dump_vmcb(vcpu);
04d2cc77
AK
5027 return 0;
5028 }
5029
a2fa3e9f 5030 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf 5031 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
55c5e464
JR
5032 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5033 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
6614c7d0 5034 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
6aa8b732 5035 "exit_code 0x%x\n",
b8688d51 5036 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
5037 exit_code);
5038
1e9e2622
WL
5039 if (exit_fastpath == EXIT_FASTPATH_SKIP_EMUL_INS) {
5040 kvm_skip_emulated_instruction(vcpu);
5041 return 1;
5042 } else if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 5043 || !svm_exit_handlers[exit_code]) {
7396d337
LA
5044 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%x\n", exit_code);
5045 dump_vmcb(vcpu);
5046 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5047 vcpu->run->internal.suberror =
5048 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
5049 vcpu->run->internal.ndata = 1;
5050 vcpu->run->internal.data[0] = exit_code;
5051 return 0;
6aa8b732
AK
5052 }
5053
3dcb2a3f
AA
5054#ifdef CONFIG_RETPOLINE
5055 if (exit_code == SVM_EXIT_MSR)
5056 return msr_interception(svm);
5057 else if (exit_code == SVM_EXIT_VINTR)
5058 return interrupt_window_interception(svm);
5059 else if (exit_code == SVM_EXIT_INTR)
5060 return intr_interception(svm);
5061 else if (exit_code == SVM_EXIT_HLT)
5062 return halt_interception(svm);
5063 else if (exit_code == SVM_EXIT_NPF)
5064 return npf_interception(svm);
5065#endif
851ba692 5066 return svm_exit_handlers[exit_code](svm);
6aa8b732
AK
5067}
5068
5069static void reload_tss(struct kvm_vcpu *vcpu)
5070{
5071 int cpu = raw_smp_processor_id();
5072
0fe1e009
TH
5073 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5074 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
5075 load_TR_desc();
5076}
5077
70cd94e6
BS
5078static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5079{
5080 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5081 int asid = sev_get_asid(svm->vcpu.kvm);
5082
5083 /* Assign the asid allocated with this SEV guest */
5084 svm->vmcb->control.asid = asid;
5085
5086 /*
5087 * Flush guest TLB:
5088 *
5089 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5090 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5091 */
5092 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5093 svm->last_cpu == cpu)
5094 return;
5095
5096 svm->last_cpu = cpu;
5097 sd->sev_vmcbs[asid] = svm->vmcb;
5098 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5099 mark_dirty(svm->vmcb, VMCB_ASID);
5100}
5101
e756fc62 5102static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
5103{
5104 int cpu = raw_smp_processor_id();
5105
0fe1e009 5106 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
6aa8b732 5107
70cd94e6
BS
5108 if (sev_guest(svm->vcpu.kvm))
5109 return pre_sev_run(svm, cpu);
5110
4b656b12 5111 /* FIXME: handle wraparound of asid_generation */
0fe1e009
TH
5112 if (svm->asid_generation != sd->asid_generation)
5113 new_asid(svm, sd);
6aa8b732
AK
5114}
5115
95ba8273
GN
5116static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5117{
5118 struct vcpu_svm *svm = to_svm(vcpu);
5119
5120 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5121 vcpu->arch.hflags |= HF_NMI_MASK;
8a05a1b8 5122 set_intercept(svm, INTERCEPT_IRET);
95ba8273
GN
5123 ++vcpu->stat.nmi_injections;
5124}
6aa8b732 5125
85f455f7 5126static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
5127{
5128 struct vmcb_control_area *control;
5129
340d3bc3 5130 /* The following fields are ignored when AVIC is enabled */
e756fc62 5131 control = &svm->vmcb->control;
85f455f7 5132 control->int_vector = irq;
6aa8b732
AK
5133 control->int_ctl &= ~V_INTR_PRIO_MASK;
5134 control->int_ctl |= V_IRQ_MASK |
5135 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
decdbf6a 5136 mark_dirty(svm->vmcb, VMCB_INTR);
6aa8b732
AK
5137}
5138
66fd3f7f 5139static void svm_set_irq(struct kvm_vcpu *vcpu)
2a8067f1
ED
5140{
5141 struct vcpu_svm *svm = to_svm(vcpu);
5142
2af9194d 5143 BUG_ON(!(gif_set(svm)));
cf74a78b 5144
9fb2d2b4
GN
5145 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5146 ++vcpu->stat.irq_injections;
5147
219b65dc
AG
5148 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5149 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
2a8067f1
ED
5150}
5151
3bbf3565
SS
5152static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5153{
5154 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5155}
5156
95ba8273 5157static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
aaacfc9a
JR
5158{
5159 struct vcpu_svm *svm = to_svm(vcpu);
aaacfc9a 5160
49d654d8 5161 if (svm_nested_virtualize_tpr(vcpu))
88ab24ad
JR
5162 return;
5163
596f3142
RK
5164 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5165
95ba8273 5166 if (irr == -1)
aaacfc9a
JR
5167 return;
5168
95ba8273 5169 if (tpr >= irr)
4ee546b4 5170 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
95ba8273 5171}
aaacfc9a 5172
8d860bbe 5173static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
8d14695f
YZ
5174{
5175 return;
5176}
5177
44a95dae
SS
5178static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5179{
d62caabb
AS
5180}
5181
67c9dddc 5182static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
44a95dae 5183{
d62caabb
AS
5184}
5185
f3515dc3
SS
5186static void svm_toggle_avic_for_irq_window(struct kvm_vcpu *vcpu, bool activate)
5187{
5188 if (!avic || !lapic_in_kernel(vcpu))
5189 return;
5190
5191 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
5192 kvm_request_apicv_update(vcpu->kvm, activate,
5193 APICV_INHIBIT_REASON_IRQWIN);
5194 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
5195}
5196
8937d762
SS
5197static int svm_set_pi_irte_mode(struct kvm_vcpu *vcpu, bool activate)
5198{
5199 int ret = 0;
5200 unsigned long flags;
5201 struct amd_svm_iommu_ir *ir;
5202 struct vcpu_svm *svm = to_svm(vcpu);
5203
5204 if (!kvm_arch_has_assigned_device(vcpu->kvm))
5205 return 0;
5206
5207 /*
5208 * Here, we go through the per-vcpu ir_list to update all existing
5209 * interrupt remapping table entry targeting this vcpu.
5210 */
5211 spin_lock_irqsave(&svm->ir_list_lock, flags);
5212
5213 if (list_empty(&svm->ir_list))
5214 goto out;
5215
5216 list_for_each_entry(ir, &svm->ir_list, node) {
5217 if (activate)
5218 ret = amd_iommu_activate_guest_mode(ir->data);
5219 else
5220 ret = amd_iommu_deactivate_guest_mode(ir->data);
5221 if (ret)
5222 break;
5223 }
5224out:
5225 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5226 return ret;
5227}
5228
d62caabb 5229static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
c7c9c56c 5230{
44a95dae
SS
5231 struct vcpu_svm *svm = to_svm(vcpu);
5232 struct vmcb *vmcb = svm->vmcb;
8937d762 5233 bool activated = kvm_vcpu_apicv_active(vcpu);
44a95dae 5234
93fd9666
SS
5235 if (!avic)
5236 return;
5237
6c3e4422
SS
5238 if (activated) {
5239 /**
5240 * During AVIC temporary deactivation, guest could update
5241 * APIC ID, DFR and LDR registers, which would not be trapped
5242 * by avic_unaccelerated_access_interception(). In this case,
5243 * we need to check and update the AVIC logical APIC ID table
5244 * accordingly before re-activating.
5245 */
5246 avic_post_state_restore(vcpu);
c57cd3c8 5247 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
6c3e4422 5248 } else {
c57cd3c8 5249 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
6c3e4422 5250 }
c57cd3c8 5251 mark_dirty(vmcb, VMCB_AVIC);
8937d762
SS
5252
5253 svm_set_pi_irte_mode(vcpu, activated);
c7c9c56c
YZ
5254}
5255
6308630b 5256static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
c7c9c56c
YZ
5257{
5258 return;
5259}
5260
340d3bc3
SS
5261static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5262{
5263 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5264 smp_mb__after_atomic();
5265
0532dd52
SS
5266 if (avic_vcpu_is_running(vcpu)) {
5267 int cpuid = vcpu->cpu;
5268
5269 if (cpuid != get_cpu())
5270 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5271 put_cpu();
5272 } else
340d3bc3
SS
5273 kvm_vcpu_wake_up(vcpu);
5274}
5275
17e433b5
WL
5276static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5277{
5278 return false;
5279}
5280
411b44ba
SS
5281static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5282{
5283 unsigned long flags;
5284 struct amd_svm_iommu_ir *cur;
5285
5286 spin_lock_irqsave(&svm->ir_list_lock, flags);
5287 list_for_each_entry(cur, &svm->ir_list, node) {
5288 if (cur->data != pi->ir_data)
5289 continue;
5290 list_del(&cur->node);
5291 kfree(cur);
5292 break;
5293 }
5294 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5295}
5296
5297static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5298{
5299 int ret = 0;
5300 unsigned long flags;
5301 struct amd_svm_iommu_ir *ir;
5302
5303 /**
5304 * In some cases, the existing irte is updaed and re-set,
5305 * so we need to check here if it's already been * added
5306 * to the ir_list.
5307 */
5308 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5309 struct kvm *kvm = svm->vcpu.kvm;
5310 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5311 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5312 struct vcpu_svm *prev_svm;
5313
5314 if (!prev_vcpu) {
5315 ret = -EINVAL;
5316 goto out;
5317 }
5318
5319 prev_svm = to_svm(prev_vcpu);
5320 svm_ir_list_del(prev_svm, pi);
5321 }
5322
5323 /**
5324 * Allocating new amd_iommu_pi_data, which will get
5325 * add to the per-vcpu ir_list.
5326 */
1ec69647 5327 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
411b44ba
SS
5328 if (!ir) {
5329 ret = -ENOMEM;
5330 goto out;
5331 }
5332 ir->data = pi->ir_data;
5333
5334 spin_lock_irqsave(&svm->ir_list_lock, flags);
5335 list_add(&ir->node, &svm->ir_list);
5336 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5337out:
5338 return ret;
5339}
5340
5341/**
5342 * Note:
5343 * The HW cannot support posting multicast/broadcast
5344 * interrupts to a vCPU. So, we still use legacy interrupt
5345 * remapping for these kind of interrupts.
5346 *
5347 * For lowest-priority interrupts, we only support
5348 * those with single CPU as the destination, e.g. user
5349 * configures the interrupts via /proc/irq or uses
5350 * irqbalance to make the interrupts single-CPU.
5351 */
5352static int
5353get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5354 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5355{
5356 struct kvm_lapic_irq irq;
5357 struct kvm_vcpu *vcpu = NULL;
5358
5359 kvm_set_msi_irq(kvm, e, &irq);
5360
fdcf7562
AG
5361 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu) ||
5362 !kvm_irq_is_postable(&irq)) {
411b44ba
SS
5363 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5364 __func__, irq.vector);
5365 return -1;
5366 }
5367
5368 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5369 irq.vector);
5370 *svm = to_svm(vcpu);
d0ec49d4 5371 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
411b44ba
SS
5372 vcpu_info->vector = irq.vector;
5373
5374 return 0;
5375}
5376
5377/*
5378 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5379 *
5380 * @kvm: kvm
5381 * @host_irq: host irq of the interrupt
5382 * @guest_irq: gsi of the interrupt
5383 * @set: set or unset PI
5384 * returns 0 on success, < 0 on failure
5385 */
5386static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5387 uint32_t guest_irq, bool set)
5388{
5389 struct kvm_kernel_irq_routing_entry *e;
5390 struct kvm_irq_routing_table *irq_rt;
5391 int idx, ret = -EINVAL;
5392
5393 if (!kvm_arch_has_assigned_device(kvm) ||
5394 !irq_remapping_cap(IRQ_POSTING_CAP))
5395 return 0;
5396
5397 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5398 __func__, host_irq, guest_irq, set);
5399
5400 idx = srcu_read_lock(&kvm->irq_srcu);
5401 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5402 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5403
5404 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5405 struct vcpu_data vcpu_info;
5406 struct vcpu_svm *svm = NULL;
5407
5408 if (e->type != KVM_IRQ_ROUTING_MSI)
5409 continue;
5410
5411 /**
5412 * Here, we setup with legacy mode in the following cases:
5413 * 1. When cannot target interrupt to a specific vcpu.
5414 * 2. Unsetting posted interrupt.
5415 * 3. APIC virtialization is disabled for the vcpu.
fdcf7562 5416 * 4. IRQ has incompatible delivery mode (SMI, INIT, etc)
411b44ba
SS
5417 */
5418 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5419 kvm_vcpu_apicv_active(&svm->vcpu)) {
5420 struct amd_iommu_pi_data pi;
5421
5422 /* Try to enable guest_mode in IRTE */
d0ec49d4
TL
5423 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5424 AVIC_HPA_MASK);
81811c16 5425 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
411b44ba
SS
5426 svm->vcpu.vcpu_id);
5427 pi.is_guest_mode = true;
5428 pi.vcpu_data = &vcpu_info;
5429 ret = irq_set_vcpu_affinity(host_irq, &pi);
5430
5431 /**
5432 * Here, we successfully setting up vcpu affinity in
5433 * IOMMU guest mode. Now, we need to store the posted
5434 * interrupt information in a per-vcpu ir_list so that
5435 * we can reference to them directly when we update vcpu
5436 * scheduling information in IOMMU irte.
5437 */
5438 if (!ret && pi.is_guest_mode)
5439 svm_ir_list_add(svm, &pi);
5440 } else {
5441 /* Use legacy mode in IRTE */
5442 struct amd_iommu_pi_data pi;
5443
5444 /**
5445 * Here, pi is used to:
5446 * - Tell IOMMU to use legacy mode for this interrupt.
5447 * - Retrieve ga_tag of prior interrupt remapping data.
5448 */
5449 pi.is_guest_mode = false;
5450 ret = irq_set_vcpu_affinity(host_irq, &pi);
5451
5452 /**
5453 * Check if the posted interrupt was previously
5454 * setup with the guest_mode by checking if the ga_tag
5455 * was cached. If so, we need to clean up the per-vcpu
5456 * ir_list.
5457 */
5458 if (!ret && pi.prev_ga_tag) {
5459 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5460 struct kvm_vcpu *vcpu;
5461
5462 vcpu = kvm_get_vcpu_by_id(kvm, id);
5463 if (vcpu)
5464 svm_ir_list_del(to_svm(vcpu), &pi);
5465 }
5466 }
5467
5468 if (!ret && svm) {
2698d82e 5469 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5470 e->gsi, vcpu_info.vector,
411b44ba
SS
5471 vcpu_info.pi_desc_addr, set);
5472 }
5473
5474 if (ret < 0) {
5475 pr_err("%s: failed to update PI IRTE\n", __func__);
5476 goto out;
5477 }
5478 }
5479
5480 ret = 0;
5481out:
5482 srcu_read_unlock(&kvm->irq_srcu, idx);
5483 return ret;
5484}
5485
95ba8273
GN
5486static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
5487{
5488 struct vcpu_svm *svm = to_svm(vcpu);
5489 struct vmcb *vmcb = svm->vmcb;
924584cc
JR
5490 int ret;
5491 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5492 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5493 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5494
5495 return ret;
aaacfc9a
JR
5496}
5497
3cfc3092
JK
5498static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5499{
5500 struct vcpu_svm *svm = to_svm(vcpu);
5501
5502 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5503}
5504
5505static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5506{
5507 struct vcpu_svm *svm = to_svm(vcpu);
5508
5509 if (masked) {
5510 svm->vcpu.arch.hflags |= HF_NMI_MASK;
8a05a1b8 5511 set_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
5512 } else {
5513 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
8a05a1b8 5514 clr_intercept(svm, INTERCEPT_IRET);
3cfc3092
JK
5515 }
5516}
5517
78646121
GN
5518static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5519{
5520 struct vcpu_svm *svm = to_svm(vcpu);
5521 struct vmcb *vmcb = svm->vmcb;
7fcdb510
JR
5522 int ret;
5523
5524 if (!gif_set(svm) ||
5525 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5526 return 0;
5527
f6e78475 5528 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
7fcdb510 5529
2030753d 5530 if (is_guest_mode(vcpu))
7fcdb510
JR
5531 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5532
5533 return ret;
78646121
GN
5534}
5535
c9a7953f 5536static void enable_irq_window(struct kvm_vcpu *vcpu)
6aa8b732 5537{
219b65dc 5538 struct vcpu_svm *svm = to_svm(vcpu);
219b65dc 5539
e0231715
JR
5540 /*
5541 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5542 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5543 * get that intercept, this function will be called again though and
640bd6e5
JN
5544 * we'll get the vintr intercept. However, if the vGIF feature is
5545 * enabled, the STGI interception will not occur. Enable the irq
5546 * window under the assumption that the hardware will set the GIF.
e0231715 5547 */
640bd6e5 5548 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
f3515dc3
SS
5549 /*
5550 * IRQ window is not needed when AVIC is enabled,
5551 * unless we have pending ExtINT since it cannot be injected
5552 * via AVIC. In such case, we need to temporarily disable AVIC,
5553 * and fallback to injecting IRQ via V_IRQ.
5554 */
5555 svm_toggle_avic_for_irq_window(vcpu, false);
219b65dc
AG
5556 svm_set_vintr(svm);
5557 svm_inject_irq(svm, 0x0);
5558 }
85f455f7
ED
5559}
5560
c9a7953f 5561static void enable_nmi_window(struct kvm_vcpu *vcpu)
c1150d8c 5562{
04d2cc77 5563 struct vcpu_svm *svm = to_svm(vcpu);
c1150d8c 5564
44c11430
GN
5565 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5566 == HF_NMI_MASK)
c9a7953f 5567 return; /* IRET will cause a vm exit */
44c11430 5568
640bd6e5
JN
5569 if (!gif_set(svm)) {
5570 if (vgif_enabled(svm))
5571 set_intercept(svm, INTERCEPT_STGI);
1a5e1852 5572 return; /* STGI will cause a vm exit */
640bd6e5 5573 }
1a5e1852
LP
5574
5575 if (svm->nested.exit_required)
5576 return; /* we're not going to run the guest yet */
5577
e0231715
JR
5578 /*
5579 * Something prevents NMI from been injected. Single step over possible
5580 * problem (IRET or exception injection or interrupt shadow)
5581 */
ab2f4d73 5582 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
6be7d306 5583 svm->nmi_singlestep = true;
44c11430 5584 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
c1150d8c
DL
5585}
5586
cbc94022
IE
5587static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5588{
5589 return 0;
5590}
5591
2ac52ab8
SC
5592static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5593{
5594 return 0;
5595}
5596
c2ba05cc 5597static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
d9e368d6 5598{
38e5e92f
JR
5599 struct vcpu_svm *svm = to_svm(vcpu);
5600
5601 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5602 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5603 else
5604 svm->asid_generation--;
d9e368d6
AK
5605}
5606
faff8758
JS
5607static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5608{
5609 struct vcpu_svm *svm = to_svm(vcpu);
5610
5611 invlpga(gva, svm->vmcb->control.asid);
5612}
5613
04d2cc77
AK
5614static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5615{
5616}
5617
d7bf8221
JR
5618static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5619{
5620 struct vcpu_svm *svm = to_svm(vcpu);
5621
3bbf3565 5622 if (svm_nested_virtualize_tpr(vcpu))
88ab24ad
JR
5623 return;
5624
4ee546b4 5625 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
d7bf8221 5626 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
615d5193 5627 kvm_set_cr8(vcpu, cr8);
d7bf8221
JR
5628 }
5629}
5630
649d6864
JR
5631static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5632{
5633 struct vcpu_svm *svm = to_svm(vcpu);
5634 u64 cr8;
5635
3bbf3565
SS
5636 if (svm_nested_virtualize_tpr(vcpu) ||
5637 kvm_vcpu_apicv_active(vcpu))
88ab24ad
JR
5638 return;
5639
649d6864
JR
5640 cr8 = kvm_get_cr8(vcpu);
5641 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5642 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5643}
5644
9222be18
GN
5645static void svm_complete_interrupts(struct vcpu_svm *svm)
5646{
5647 u8 vector;
5648 int type;
5649 u32 exitintinfo = svm->vmcb->control.exit_int_info;
66b7138f
JK
5650 unsigned int3_injected = svm->int3_injected;
5651
5652 svm->int3_injected = 0;
9222be18 5653
bd3d1ec3
AK
5654 /*
5655 * If we've made progress since setting HF_IRET_MASK, we've
5656 * executed an IRET and can allow NMI injection.
5657 */
5658 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5659 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
44c11430 5660 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3842d135
AK
5661 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5662 }
44c11430 5663
9222be18
GN
5664 svm->vcpu.arch.nmi_injected = false;
5665 kvm_clear_exception_queue(&svm->vcpu);
5666 kvm_clear_interrupt_queue(&svm->vcpu);
5667
5668 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5669 return;
5670
3842d135
AK
5671 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5672
9222be18
GN
5673 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5674 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5675
5676 switch (type) {
5677 case SVM_EXITINTINFO_TYPE_NMI:
5678 svm->vcpu.arch.nmi_injected = true;
5679 break;
5680 case SVM_EXITINTINFO_TYPE_EXEPT:
66b7138f
JK
5681 /*
5682 * In case of software exceptions, do not reinject the vector,
5683 * but re-execute the instruction instead. Rewind RIP first
5684 * if we emulated INT3 before.
5685 */
5686 if (kvm_exception_is_soft(vector)) {
5687 if (vector == BP_VECTOR && int3_injected &&
5688 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5689 kvm_rip_write(&svm->vcpu,
5690 kvm_rip_read(&svm->vcpu) -
5691 int3_injected);
9222be18 5692 break;
66b7138f 5693 }
9222be18
GN
5694 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5695 u32 err = svm->vmcb->control.exit_int_info_err;
ce7ddec4 5696 kvm_requeue_exception_e(&svm->vcpu, vector, err);
9222be18
GN
5697
5698 } else
ce7ddec4 5699 kvm_requeue_exception(&svm->vcpu, vector);
9222be18
GN
5700 break;
5701 case SVM_EXITINTINFO_TYPE_INTR:
66fd3f7f 5702 kvm_queue_interrupt(&svm->vcpu, vector, false);
9222be18
GN
5703 break;
5704 default:
5705 break;
5706 }
5707}
5708
b463a6f7
AK
5709static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5710{
5711 struct vcpu_svm *svm = to_svm(vcpu);
5712 struct vmcb_control_area *control = &svm->vmcb->control;
5713
5714 control->exit_int_info = control->event_inj;
5715 control->exit_int_info_err = control->event_inj_err;
5716 control->event_inj = 0;
5717 svm_complete_interrupts(svm);
5718}
5719
851ba692 5720static void svm_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 5721{
a2fa3e9f 5722 struct vcpu_svm *svm = to_svm(vcpu);
d9e368d6 5723
2041a06a
JR
5724 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5725 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5726 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5727
cd3ff653
JR
5728 /*
5729 * A vmexit emulation is required before the vcpu can be executed
5730 * again.
5731 */
5732 if (unlikely(svm->nested.exit_required))
5733 return;
5734
a12713c2
LP
5735 /*
5736 * Disable singlestep if we're injecting an interrupt/exception.
5737 * We don't want our modified rflags to be pushed on the stack where
5738 * we might not be able to easily reset them if we disabled NMI
5739 * singlestep later.
5740 */
5741 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5742 /*
5743 * Event injection happens before external interrupts cause a
5744 * vmexit and interrupts are disabled here, so smp_send_reschedule
5745 * is enough to force an immediate vmexit.
5746 */
5747 disable_nmi_singlestep(svm);
5748 smp_send_reschedule(vcpu->cpu);
5749 }
5750
e756fc62 5751 pre_svm_run(svm);
6aa8b732 5752
649d6864
JR
5753 sync_lapic_to_cr8(vcpu);
5754
cda0ffdd 5755 svm->vmcb->save.cr2 = vcpu->arch.cr2;
6aa8b732 5756
04d2cc77 5757 clgi();
139a12cf 5758 kvm_load_guest_xsave_state(vcpu);
04d2cc77 5759
b6c4bc65
WL
5760 if (lapic_in_kernel(vcpu) &&
5761 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5762 kvm_wait_lapic_expire(vcpu);
5763
b2ac58f9
KA
5764 /*
5765 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5766 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5767 * is no need to worry about the conditional branch over the wrmsr
5768 * being speculatively taken.
5769 */
ccbcd267 5770 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
b2ac58f9 5771
024d83ca
TG
5772 local_irq_enable();
5773
6aa8b732 5774 asm volatile (
7454766f
AK
5775 "push %%" _ASM_BP "; \n\t"
5776 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5777 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5778 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5779 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5780 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5781 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
05b3e0c2 5782#ifdef CONFIG_X86_64
fb3f0f51
RR
5783 "mov %c[r8](%[svm]), %%r8 \n\t"
5784 "mov %c[r9](%[svm]), %%r9 \n\t"
5785 "mov %c[r10](%[svm]), %%r10 \n\t"
5786 "mov %c[r11](%[svm]), %%r11 \n\t"
5787 "mov %c[r12](%[svm]), %%r12 \n\t"
5788 "mov %c[r13](%[svm]), %%r13 \n\t"
5789 "mov %c[r14](%[svm]), %%r14 \n\t"
5790 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
5791#endif
5792
6aa8b732 5793 /* Enter guest mode */
7454766f
AK
5794 "push %%" _ASM_AX " \n\t"
5795 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
ac5ffda2
UB
5796 __ex("vmload %%" _ASM_AX) "\n\t"
5797 __ex("vmrun %%" _ASM_AX) "\n\t"
5798 __ex("vmsave %%" _ASM_AX) "\n\t"
7454766f 5799 "pop %%" _ASM_AX " \n\t"
6aa8b732
AK
5800
5801 /* Save guest registers, load host registers */
7454766f
AK
5802 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5803 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5804 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5805 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5806 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5807 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
05b3e0c2 5808#ifdef CONFIG_X86_64
fb3f0f51
RR
5809 "mov %%r8, %c[r8](%[svm]) \n\t"
5810 "mov %%r9, %c[r9](%[svm]) \n\t"
5811 "mov %%r10, %c[r10](%[svm]) \n\t"
5812 "mov %%r11, %c[r11](%[svm]) \n\t"
5813 "mov %%r12, %c[r12](%[svm]) \n\t"
5814 "mov %%r13, %c[r13](%[svm]) \n\t"
5815 "mov %%r14, %c[r14](%[svm]) \n\t"
5816 "mov %%r15, %c[r15](%[svm]) \n\t"
0cb5b306
JM
5817 /*
5818 * Clear host registers marked as clobbered to prevent
5819 * speculative use.
5820 */
43ce76ce
UB
5821 "xor %%r8d, %%r8d \n\t"
5822 "xor %%r9d, %%r9d \n\t"
5823 "xor %%r10d, %%r10d \n\t"
5824 "xor %%r11d, %%r11d \n\t"
5825 "xor %%r12d, %%r12d \n\t"
5826 "xor %%r13d, %%r13d \n\t"
5827 "xor %%r14d, %%r14d \n\t"
5828 "xor %%r15d, %%r15d \n\t"
6aa8b732 5829#endif
43ce76ce
UB
5830 "xor %%ebx, %%ebx \n\t"
5831 "xor %%ecx, %%ecx \n\t"
5832 "xor %%edx, %%edx \n\t"
5833 "xor %%esi, %%esi \n\t"
5834 "xor %%edi, %%edi \n\t"
7454766f 5835 "pop %%" _ASM_BP
6aa8b732 5836 :
fb3f0f51 5837 : [svm]"a"(svm),
6aa8b732 5838 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
5839 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5840 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5841 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5842 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5843 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5844 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 5845#ifdef CONFIG_X86_64
ad312c7c
ZX
5846 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5847 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5848 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5849 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5850 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5851 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5852 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5853 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 5854#endif
54a08c04
LV
5855 : "cc", "memory"
5856#ifdef CONFIG_X86_64
7454766f 5857 , "rbx", "rcx", "rdx", "rsi", "rdi"
54a08c04 5858 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
7454766f
AK
5859#else
5860 , "ebx", "ecx", "edx", "esi", "edi"
54a08c04
LV
5861#endif
5862 );
6aa8b732 5863
15e6c22f
TG
5864 /* Eliminate branch target predictions from guest mode */
5865 vmexit_fill_RSB();
5866
5867#ifdef CONFIG_X86_64
5868 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5869#else
5870 loadsegment(fs, svm->host.fs);
5871#ifndef CONFIG_X86_32_LAZY_GS
5872 loadsegment(gs, svm->host.gs);
5873#endif
5874#endif
5875
b2ac58f9
KA
5876 /*
5877 * We do not use IBRS in the kernel. If this vCPU has used the
5878 * SPEC_CTRL MSR it may have left it on; save the value and
5879 * turn it off. This is much more efficient than blindly adding
5880 * it to the atomic save/restore list. Especially as the former
5881 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5882 *
5883 * For non-nested case:
5884 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5885 * save it.
5886 *
5887 * For nested case:
5888 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5889 * save it.
5890 */
946fbbc1 5891 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
ecb586bd 5892 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
b2ac58f9 5893
6aa8b732
AK
5894 reload_tss(vcpu);
5895
56ba47dd
AK
5896 local_irq_disable();
5897
024d83ca
TG
5898 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5899
13c34e07
AK
5900 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5901 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5902 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5903 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5904
3781c01c 5905 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
dd60d217 5906 kvm_before_interrupt(&svm->vcpu);
3781c01c 5907
139a12cf 5908 kvm_load_host_xsave_state(vcpu);
3781c01c
JR
5909 stgi();
5910
5911 /* Any pending NMI will happen here */
5912
5913 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
dd60d217 5914 kvm_after_interrupt(&svm->vcpu);
3781c01c 5915
d7bf8221
JR
5916 sync_cr8_to_lapic(vcpu);
5917
a2fa3e9f 5918 svm->next_rip = 0;
9222be18 5919
38e5e92f
JR
5920 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5921
631bc487
GN
5922 /* if exit due to PF check for async PF */
5923 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
1261bfa3 5924 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
631bc487 5925
6de4f3ad
AK
5926 if (npt_enabled) {
5927 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5928 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5929 }
fe5913e4
JR
5930
5931 /*
5932 * We need to handle MC intercepts here before the vcpu has a chance to
5933 * change the physical cpu
5934 */
5935 if (unlikely(svm->vmcb->control.exit_code ==
5936 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5937 svm_handle_mce(svm);
8d28fec4
RJ
5938
5939 mark_all_clean(svm->vmcb);
6aa8b732 5940}
c207aee4 5941STACK_FRAME_NON_STANDARD(svm_vcpu_run);
6aa8b732 5942
6aa8b732
AK
5943static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5944{
a2fa3e9f
GH
5945 struct vcpu_svm *svm = to_svm(vcpu);
5946
d0ec49d4 5947 svm->vmcb->save.cr3 = __sme_set(root);
dcca1a65 5948 mark_dirty(svm->vmcb, VMCB_CR);
6aa8b732
AK
5949}
5950
1c97f0a0
JR
5951static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5952{
5953 struct vcpu_svm *svm = to_svm(vcpu);
5954
d0ec49d4 5955 svm->vmcb->control.nested_cr3 = __sme_set(root);
b2747166 5956 mark_dirty(svm->vmcb, VMCB_NPT);
1c97f0a0
JR
5957
5958 /* Also sync guest cr3 here in case we live migrate */
9f8fe504 5959 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
dcca1a65 5960 mark_dirty(svm->vmcb, VMCB_CR);
1c97f0a0
JR
5961}
5962
6aa8b732
AK
5963static int is_disabled(void)
5964{
6031a61c
JR
5965 u64 vm_cr;
5966
5967 rdmsrl(MSR_VM_CR, vm_cr);
5968 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5969 return 1;
5970
6aa8b732
AK
5971 return 0;
5972}
5973
102d8325
IM
5974static void
5975svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5976{
5977 /*
5978 * Patch in the VMMCALL instruction:
5979 */
5980 hypercall[0] = 0x0f;
5981 hypercall[1] = 0x01;
5982 hypercall[2] = 0xd9;
102d8325
IM
5983}
5984
f257d6dc 5985static int __init svm_check_processor_compat(void)
002c7f7c 5986{
f257d6dc 5987 return 0;
002c7f7c
YS
5988}
5989
774ead3a
AK
5990static bool svm_cpu_has_accelerated_tpr(void)
5991{
5992 return false;
5993}
5994
bc226f07 5995static bool svm_has_emulated_msr(int index)
6d396b55 5996{
e87555e5
VK
5997 switch (index) {
5998 case MSR_IA32_MCG_EXT_CTL:
95c5c7c7 5999 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
e87555e5
VK
6000 return false;
6001 default:
6002 break;
6003 }
6004
6d396b55
PB
6005 return true;
6006}
6007
fc07e76a
PB
6008static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
6009{
6010 return 0;
6011}
6012
0e851880
SY
6013static void svm_cpuid_update(struct kvm_vcpu *vcpu)
6014{
6092d3d3
JR
6015 struct vcpu_svm *svm = to_svm(vcpu);
6016
7204160e 6017 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
96be4e06 6018 boot_cpu_has(X86_FEATURE_XSAVE) &&
7204160e
AL
6019 boot_cpu_has(X86_FEATURE_XSAVES);
6020
6092d3d3 6021 /* Update nrips enabled cache */
d6321d49 6022 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
46781eae
SS
6023
6024 if (!kvm_vcpu_apicv_active(vcpu))
6025 return;
6026
1b4d56b8 6027 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
9a0bf054
SS
6028
6029 /*
6030 * Currently, AVIC does not work with nested virtualization.
6031 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
6032 */
6033 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
6034 kvm_request_apicv_update(vcpu->kvm, false,
6035 APICV_INHIBIT_REASON_NESTED);
0e851880
SY
6036}
6037
87382003 6038#define F feature_bit
50896de4 6039
d4330ef2
JR
6040static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6041{
c2c63a49 6042 switch (func) {
46781eae
SS
6043 case 0x1:
6044 if (avic)
87382003 6045 entry->ecx &= ~F(X2APIC);
46781eae 6046 break;
4c62a2dc
JR
6047 case 0x80000001:
6048 if (nested)
6049 entry->ecx |= (1 << 2); /* Set SVM bit */
6050 break;
50896de4
PB
6051 case 0x80000008:
6052 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
6053 boot_cpu_has(X86_FEATURE_AMD_SSBD))
6054 entry->ebx |= F(VIRT_SSBD);
6055 break;
c2c63a49
JR
6056 case 0x8000000A:
6057 entry->eax = 1; /* SVM revision 1 */
6058 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
6059 ASID emulation to nested SVM */
6060 entry->ecx = 0; /* Reserved */
7a190667
JR
6061 entry->edx = 0; /* Per default do not support any
6062 additional features */
6063
6064 /* Support next_rip if host supports it */
2a6b20b8 6065 if (boot_cpu_has(X86_FEATURE_NRIPS))
50896de4 6066 entry->edx |= F(NRIPS);
c2c63a49 6067
3d4aeaad
JR
6068 /* Support NPT for the guest if enabled */
6069 if (npt_enabled)
50896de4 6070 entry->edx |= F(NPT);
3d4aeaad 6071
c2c63a49 6072 }
d4330ef2
JR
6073}
6074
17cc3935 6075static int svm_get_lpage_level(void)
344f414f 6076{
17cc3935 6077 return PT_PDPE_LEVEL;
344f414f
JR
6078}
6079
4e47c7a6
SY
6080static bool svm_rdtscp_supported(void)
6081{
46896c73 6082 return boot_cpu_has(X86_FEATURE_RDTSCP);
4e47c7a6
SY
6083}
6084
ad756a16
MJ
6085static bool svm_invpcid_supported(void)
6086{
6087 return false;
6088}
6089
93c4adc7
PB
6090static bool svm_mpx_supported(void)
6091{
6092 return false;
6093}
6094
55412b2e
WL
6095static bool svm_xsaves_supported(void)
6096{
52297436 6097 return boot_cpu_has(X86_FEATURE_XSAVES);
55412b2e
WL
6098}
6099
66336cab
PB
6100static bool svm_umip_emulated(void)
6101{
6102 return false;
6103}
6104
86f5201d
CP
6105static bool svm_pt_supported(void)
6106{
6107 return false;
6108}
6109
f5f48ee1
SY
6110static bool svm_has_wbinvd_exit(void)
6111{
6112 return true;
6113}
6114
a47970ed
JA
6115static bool svm_pku_supported(void)
6116{
6117 return false;
6118}
6119
8061252e 6120#define PRE_EX(exit) { .exit_code = (exit), \
40e19b51 6121 .stage = X86_ICPT_PRE_EXCEPT, }
cfec82cb 6122#define POST_EX(exit) { .exit_code = (exit), \
40e19b51 6123 .stage = X86_ICPT_POST_EXCEPT, }
d7eb8203 6124#define POST_MEM(exit) { .exit_code = (exit), \
40e19b51 6125 .stage = X86_ICPT_POST_MEMACCESS, }
cfec82cb 6126
09941fbb 6127static const struct __x86_intercept {
cfec82cb
JR
6128 u32 exit_code;
6129 enum x86_intercept_stage stage;
cfec82cb
JR
6130} x86_intercept_map[] = {
6131 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6132 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6133 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6134 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6135 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
3b88e41a
JR
6136 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6137 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
dee6bb70
JR
6138 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6139 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6140 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6141 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6142 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6143 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6144 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6145 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
01de8b09
JR
6146 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6147 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6148 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6149 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6150 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6151 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6152 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6153 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
d7eb8203
JR
6154 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6155 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6156 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
8061252e
JR
6157 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6158 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6159 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6160 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6161 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6162 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6163 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6164 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6165 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
bf608f88
JR
6166 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6167 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6168 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6169 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6170 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6171 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6172 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
f6511935
JR
6173 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6174 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6175 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6176 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
02d4160f 6177 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
cfec82cb
JR
6178};
6179
8061252e 6180#undef PRE_EX
cfec82cb 6181#undef POST_EX
d7eb8203 6182#undef POST_MEM
cfec82cb 6183
8a76d7f2
JR
6184static int svm_check_intercept(struct kvm_vcpu *vcpu,
6185 struct x86_instruction_info *info,
6186 enum x86_intercept_stage stage)
6187{
cfec82cb
JR
6188 struct vcpu_svm *svm = to_svm(vcpu);
6189 int vmexit, ret = X86EMUL_CONTINUE;
6190 struct __x86_intercept icpt_info;
6191 struct vmcb *vmcb = svm->vmcb;
6192
6193 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6194 goto out;
6195
6196 icpt_info = x86_intercept_map[info->intercept];
6197
40e19b51 6198 if (stage != icpt_info.stage)
cfec82cb
JR
6199 goto out;
6200
6201 switch (icpt_info.exit_code) {
6202 case SVM_EXIT_READ_CR0:
6203 if (info->intercept == x86_intercept_cr_read)
6204 icpt_info.exit_code += info->modrm_reg;
6205 break;
6206 case SVM_EXIT_WRITE_CR0: {
6207 unsigned long cr0, val;
6208 u64 intercept;
6209
6210 if (info->intercept == x86_intercept_cr_write)
6211 icpt_info.exit_code += info->modrm_reg;
6212
62baf44c
JK
6213 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6214 info->intercept == x86_intercept_clts)
cfec82cb
JR
6215 break;
6216
6217 intercept = svm->nested.intercept;
6218
6219 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6220 break;
6221
6222 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6223 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6224
6225 if (info->intercept == x86_intercept_lmsw) {
6226 cr0 &= 0xfUL;
6227 val &= 0xfUL;
6228 /* lmsw can't clear PE - catch this here */
6229 if (cr0 & X86_CR0_PE)
6230 val |= X86_CR0_PE;
6231 }
6232
6233 if (cr0 ^ val)
6234 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6235
6236 break;
6237 }
3b88e41a
JR
6238 case SVM_EXIT_READ_DR0:
6239 case SVM_EXIT_WRITE_DR0:
6240 icpt_info.exit_code += info->modrm_reg;
6241 break;
8061252e
JR
6242 case SVM_EXIT_MSR:
6243 if (info->intercept == x86_intercept_wrmsr)
6244 vmcb->control.exit_info_1 = 1;
6245 else
6246 vmcb->control.exit_info_1 = 0;
6247 break;
bf608f88
JR
6248 case SVM_EXIT_PAUSE:
6249 /*
6250 * We get this for NOP only, but pause
6251 * is rep not, check this here
6252 */
6253 if (info->rep_prefix != REPE_PREFIX)
6254 goto out;
49a8afca 6255 break;
f6511935
JR
6256 case SVM_EXIT_IOIO: {
6257 u64 exit_info;
6258 u32 bytes;
6259
f6511935
JR
6260 if (info->intercept == x86_intercept_in ||
6261 info->intercept == x86_intercept_ins) {
6cbc5f5a
JK
6262 exit_info = ((info->src_val & 0xffff) << 16) |
6263 SVM_IOIO_TYPE_MASK;
f6511935 6264 bytes = info->dst_bytes;
6493f157 6265 } else {
6cbc5f5a 6266 exit_info = (info->dst_val & 0xffff) << 16;
6493f157 6267 bytes = info->src_bytes;
f6511935
JR
6268 }
6269
6270 if (info->intercept == x86_intercept_outs ||
6271 info->intercept == x86_intercept_ins)
6272 exit_info |= SVM_IOIO_STR_MASK;
6273
6274 if (info->rep_prefix)
6275 exit_info |= SVM_IOIO_REP_MASK;
6276
6277 bytes = min(bytes, 4u);
6278
6279 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6280
6281 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6282
6283 vmcb->control.exit_info_1 = exit_info;
6284 vmcb->control.exit_info_2 = info->next_rip;
6285
6286 break;
6287 }
cfec82cb
JR
6288 default:
6289 break;
6290 }
6291
f104765b
BD
6292 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6293 if (static_cpu_has(X86_FEATURE_NRIPS))
6294 vmcb->control.next_rip = info->next_rip;
cfec82cb
JR
6295 vmcb->control.exit_code = icpt_info.exit_code;
6296 vmexit = nested_svm_exit_handled(svm);
6297
6298 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6299 : X86EMUL_CONTINUE;
6300
6301out:
6302 return ret;
8a76d7f2
JR
6303}
6304
1e9e2622
WL
6305static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu,
6306 enum exit_fastpath_completion *exit_fastpath)
a547c6db 6307{
1e9e2622
WL
6308 if (!is_guest_mode(vcpu) &&
6309 to_svm(vcpu)->vmcb->control.exit_code == EXIT_REASON_MSR_WRITE)
6310 *exit_fastpath = handle_fastpath_set_msr_irqoff(vcpu);
a547c6db
YZ
6311}
6312
ae97a3b8
RK
6313static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6314{
8566ac8b
BM
6315 if (pause_filter_thresh)
6316 shrink_ple_window(vcpu);
ae97a3b8
RK
6317}
6318
be8ca170
SS
6319static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6320{
6321 if (avic_handle_apic_id_update(vcpu) != 0)
6322 return;
98d90582 6323 avic_handle_dfr_update(vcpu);
be8ca170
SS
6324 avic_handle_ldr_update(vcpu);
6325}
6326
74f16909
BP
6327static void svm_setup_mce(struct kvm_vcpu *vcpu)
6328{
6329 /* [63:9] are reserved. */
6330 vcpu->arch.mcg_cap &= 0x1ff;
6331}
6332
72d7b374
LP
6333static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6334{
05cade71
LP
6335 struct vcpu_svm *svm = to_svm(vcpu);
6336
6337 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6338 if (!gif_set(svm))
6339 return 0;
6340
6341 if (is_guest_mode(&svm->vcpu) &&
6342 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6343 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6344 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6345 svm->nested.exit_required = true;
6346 return 0;
6347 }
6348
72d7b374
LP
6349 return 1;
6350}
6351
0234bf88
LP
6352static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6353{
05cade71
LP
6354 struct vcpu_svm *svm = to_svm(vcpu);
6355 int ret;
6356
6357 if (is_guest_mode(vcpu)) {
6358 /* FED8h - SVM Guest */
6359 put_smstate(u64, smstate, 0x7ed8, 1);
6360 /* FEE0h - SVM Guest VMCB Physical Address */
6361 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6362
6363 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6364 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6365 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6366
6367 ret = nested_svm_vmexit(svm);
6368 if (ret)
6369 return ret;
6370 }
0234bf88
LP
6371 return 0;
6372}
6373
ed19321f 6374static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
0234bf88 6375{
05cade71
LP
6376 struct vcpu_svm *svm = to_svm(vcpu);
6377 struct vmcb *nested_vmcb;
8c5fbf1a 6378 struct kvm_host_map map;
ed19321f
SC
6379 u64 guest;
6380 u64 vmcb;
05cade71 6381
ed19321f
SC
6382 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6383 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
05cade71 6384
ed19321f 6385 if (guest) {
8c5fbf1a 6386 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
9ec19493 6387 return 1;
8c5fbf1a
KA
6388 nested_vmcb = map.hva;
6389 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
05cade71 6390 }
9ec19493 6391 return 0;
0234bf88
LP
6392}
6393
cc3d967f
LP
6394static int enable_smi_window(struct kvm_vcpu *vcpu)
6395{
6396 struct vcpu_svm *svm = to_svm(vcpu);
6397
6398 if (!gif_set(svm)) {
6399 if (vgif_enabled(svm))
6400 set_intercept(svm, INTERCEPT_STGI);
6401 /* STGI will cause a vm exit */
6402 return 1;
6403 }
6404 return 0;
6405}
6406
33af3a7e
TL
6407static int sev_flush_asids(void)
6408{
6409 int ret, error;
6410
6411 /*
6412 * DEACTIVATE will clear the WBINVD indicator causing DF_FLUSH to fail,
6413 * so it must be guarded.
6414 */
6415 down_write(&sev_deactivate_lock);
6416
6417 wbinvd_on_all_cpus();
6418 ret = sev_guest_df_flush(&error);
6419
6420 up_write(&sev_deactivate_lock);
6421
6422 if (ret)
6423 pr_err("SEV: DF_FLUSH failed, ret=%d, error=%#x\n", ret, error);
6424
6425 return ret;
6426}
6427
6428/* Must be called with the sev_bitmap_lock held */
6429static bool __sev_recycle_asids(void)
6430{
6431 int pos;
6432
6433 /* Check if there are any ASIDs to reclaim before performing a flush */
6434 pos = find_next_bit(sev_reclaim_asid_bitmap,
6435 max_sev_asid, min_sev_asid - 1);
6436 if (pos >= max_sev_asid)
6437 return false;
6438
6439 if (sev_flush_asids())
6440 return false;
6441
6442 bitmap_xor(sev_asid_bitmap, sev_asid_bitmap, sev_reclaim_asid_bitmap,
6443 max_sev_asid);
6444 bitmap_zero(sev_reclaim_asid_bitmap, max_sev_asid);
6445
6446 return true;
6447}
6448
1654efcb
BS
6449static int sev_asid_new(void)
6450{
33af3a7e 6451 bool retry = true;
1654efcb
BS
6452 int pos;
6453
e3b9a9e1
TL
6454 mutex_lock(&sev_bitmap_lock);
6455
1654efcb
BS
6456 /*
6457 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6458 */
33af3a7e 6459again:
1654efcb 6460 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
e3b9a9e1 6461 if (pos >= max_sev_asid) {
33af3a7e
TL
6462 if (retry && __sev_recycle_asids()) {
6463 retry = false;
6464 goto again;
6465 }
e3b9a9e1 6466 mutex_unlock(&sev_bitmap_lock);
1654efcb 6467 return -EBUSY;
e3b9a9e1
TL
6468 }
6469
6470 __set_bit(pos, sev_asid_bitmap);
6471
6472 mutex_unlock(&sev_bitmap_lock);
1654efcb 6473
1654efcb
BS
6474 return pos + 1;
6475}
6476
6477static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6478{
81811c16 6479 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
1654efcb
BS
6480 int asid, ret;
6481
6482 ret = -EBUSY;
3f14a89d
DR
6483 if (unlikely(sev->active))
6484 return ret;
6485
1654efcb
BS
6486 asid = sev_asid_new();
6487 if (asid < 0)
6488 return ret;
6489
6490 ret = sev_platform_init(&argp->error);
6491 if (ret)
6492 goto e_free;
6493
6494 sev->active = true;
6495 sev->asid = asid;
1e80fdc0 6496 INIT_LIST_HEAD(&sev->regions_list);
1654efcb
BS
6497
6498 return 0;
6499
6500e_free:
e3b9a9e1 6501 sev_asid_free(asid);
1654efcb
BS
6502 return ret;
6503}
6504
59414c98
BS
6505static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6506{
6507 struct sev_data_activate *data;
6508 int asid = sev_get_asid(kvm);
6509 int ret;
6510
1ec69647 6511 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
59414c98
BS
6512 if (!data)
6513 return -ENOMEM;
6514
6515 /* activate ASID on the given handle */
6516 data->handle = handle;
6517 data->asid = asid;
6518 ret = sev_guest_activate(data, error);
6519 kfree(data);
6520
6521 return ret;
6522}
6523
89c50580 6524static int __sev_issue_cmd(int fd, int id, void *data, int *error)
59414c98
BS
6525{
6526 struct fd f;
6527 int ret;
6528
6529 f = fdget(fd);
6530 if (!f.file)
6531 return -EBADF;
6532
6533 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6534
6535 fdput(f);
6536 return ret;
6537}
6538
89c50580
BS
6539static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6540{
81811c16 6541 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
89c50580
BS
6542
6543 return __sev_issue_cmd(sev->fd, id, data, error);
6544}
6545
59414c98
BS
6546static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6547{
81811c16 6548 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
59414c98
BS
6549 struct sev_data_launch_start *start;
6550 struct kvm_sev_launch_start params;
6551 void *dh_blob, *session_blob;
6552 int *error = &argp->error;
6553 int ret;
6554
6555 if (!sev_guest(kvm))
6556 return -ENOTTY;
6557
6558 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6559 return -EFAULT;
6560
1ec69647 6561 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
59414c98
BS
6562 if (!start)
6563 return -ENOMEM;
6564
6565 dh_blob = NULL;
6566 if (params.dh_uaddr) {
6567 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6568 if (IS_ERR(dh_blob)) {
6569 ret = PTR_ERR(dh_blob);
6570 goto e_free;
6571 }
6572
6573 start->dh_cert_address = __sme_set(__pa(dh_blob));
6574 start->dh_cert_len = params.dh_len;
6575 }
6576
6577 session_blob = NULL;
6578 if (params.session_uaddr) {
6579 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6580 if (IS_ERR(session_blob)) {
6581 ret = PTR_ERR(session_blob);
6582 goto e_free_dh;
6583 }
6584
6585 start->session_address = __sme_set(__pa(session_blob));
6586 start->session_len = params.session_len;
6587 }
6588
6589 start->handle = params.handle;
6590 start->policy = params.policy;
6591
6592 /* create memory encryption context */
89c50580 6593 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
59414c98
BS
6594 if (ret)
6595 goto e_free_session;
6596
6597 /* Bind ASID to this guest */
6598 ret = sev_bind_asid(kvm, start->handle, error);
6599 if (ret)
6600 goto e_free_session;
6601
6602 /* return handle to userspace */
6603 params.handle = start->handle;
6604 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6605 sev_unbind_asid(kvm, start->handle);
6606 ret = -EFAULT;
6607 goto e_free_session;
6608 }
6609
6610 sev->handle = start->handle;
6611 sev->fd = argp->sev_fd;
6612
6613e_free_session:
6614 kfree(session_blob);
6615e_free_dh:
6616 kfree(dh_blob);
6617e_free:
6618 kfree(start);
6619 return ret;
6620}
6621
ede885ec
DR
6622static unsigned long get_num_contig_pages(unsigned long idx,
6623 struct page **inpages, unsigned long npages)
89c50580
BS
6624{
6625 unsigned long paddr, next_paddr;
ede885ec 6626 unsigned long i = idx + 1, pages = 1;
89c50580
BS
6627
6628 /* find the number of contiguous pages starting from idx */
6629 paddr = __sme_page_pa(inpages[idx]);
6630 while (i < npages) {
6631 next_paddr = __sme_page_pa(inpages[i++]);
6632 if ((paddr + PAGE_SIZE) == next_paddr) {
6633 pages++;
6634 paddr = next_paddr;
6635 continue;
6636 }
6637 break;
6638 }
6639
6640 return pages;
6641}
6642
6643static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6644{
ede885ec 6645 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
81811c16 6646 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
89c50580
BS
6647 struct kvm_sev_launch_update_data params;
6648 struct sev_data_launch_update_data *data;
6649 struct page **inpages;
ede885ec 6650 int ret;
89c50580
BS
6651
6652 if (!sev_guest(kvm))
6653 return -ENOTTY;
6654
6655 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6656 return -EFAULT;
6657
1ec69647 6658 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
89c50580
BS
6659 if (!data)
6660 return -ENOMEM;
6661
6662 vaddr = params.uaddr;
6663 size = params.len;
6664 vaddr_end = vaddr + size;
6665
6666 /* Lock the user memory. */
6667 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6668 if (!inpages) {
6669 ret = -ENOMEM;
6670 goto e_free;
6671 }
6672
6673 /*
6674 * The LAUNCH_UPDATE command will perform in-place encryption of the
6675 * memory content (i.e it will write the same memory region with C=1).
6676 * It's possible that the cache may contain the data with C=0, i.e.,
6677 * unencrypted so invalidate it first.
6678 */
6679 sev_clflush_pages(inpages, npages);
6680
6681 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6682 int offset, len;
6683
6684 /*
6685 * If the user buffer is not page-aligned, calculate the offset
6686 * within the page.
6687 */
6688 offset = vaddr & (PAGE_SIZE - 1);
6689
6690 /* Calculate the number of pages that can be encrypted in one go. */
6691 pages = get_num_contig_pages(i, inpages, npages);
6692
6693 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6694
6695 data->handle = sev->handle;
6696 data->len = len;
6697 data->address = __sme_page_pa(inpages[i]) + offset;
6698 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6699 if (ret)
6700 goto e_unpin;
6701
6702 size -= len;
6703 next_vaddr = vaddr + len;
6704 }
6705
6706e_unpin:
6707 /* content of memory is updated, mark pages dirty */
6708 for (i = 0; i < npages; i++) {
6709 set_page_dirty_lock(inpages[i]);
6710 mark_page_accessed(inpages[i]);
6711 }
6712 /* unlock the user pages */
6713 sev_unpin_memory(kvm, inpages, npages);
6714e_free:
6715 kfree(data);
6716 return ret;
6717}
6718
0d0736f7
BS
6719static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6720{
3e233385 6721 void __user *measure = (void __user *)(uintptr_t)argp->data;
81811c16 6722 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
0d0736f7
BS
6723 struct sev_data_launch_measure *data;
6724 struct kvm_sev_launch_measure params;
3e233385 6725 void __user *p = NULL;
0d0736f7
BS
6726 void *blob = NULL;
6727 int ret;
6728
6729 if (!sev_guest(kvm))
6730 return -ENOTTY;
6731
3e233385 6732 if (copy_from_user(&params, measure, sizeof(params)))
0d0736f7
BS
6733 return -EFAULT;
6734
1ec69647 6735 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
0d0736f7
BS
6736 if (!data)
6737 return -ENOMEM;
6738
6739 /* User wants to query the blob length */
6740 if (!params.len)
6741 goto cmd;
6742
3e233385
BS
6743 p = (void __user *)(uintptr_t)params.uaddr;
6744 if (p) {
0d0736f7
BS
6745 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6746 ret = -EINVAL;
6747 goto e_free;
6748 }
6749
0d0736f7
BS
6750 ret = -ENOMEM;
6751 blob = kmalloc(params.len, GFP_KERNEL);
6752 if (!blob)
6753 goto e_free;
6754
6755 data->address = __psp_pa(blob);
6756 data->len = params.len;
6757 }
6758
6759cmd:
6760 data->handle = sev->handle;
6761 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6762
6763 /*
6764 * If we query the session length, FW responded with expected data.
6765 */
6766 if (!params.len)
6767 goto done;
6768
6769 if (ret)
6770 goto e_free_blob;
6771
6772 if (blob) {
3e233385 6773 if (copy_to_user(p, blob, params.len))
0d0736f7
BS
6774 ret = -EFAULT;
6775 }
6776
6777done:
6778 params.len = data->len;
3e233385 6779 if (copy_to_user(measure, &params, sizeof(params)))
0d0736f7
BS
6780 ret = -EFAULT;
6781e_free_blob:
6782 kfree(blob);
6783e_free:
6784 kfree(data);
6785 return ret;
6786}
6787
5bdb0e2f
BS
6788static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6789{
81811c16 6790 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
5bdb0e2f
BS
6791 struct sev_data_launch_finish *data;
6792 int ret;
6793
6794 if (!sev_guest(kvm))
6795 return -ENOTTY;
6796
1ec69647 6797 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
5bdb0e2f
BS
6798 if (!data)
6799 return -ENOMEM;
6800
6801 data->handle = sev->handle;
6802 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6803
6804 kfree(data);
6805 return ret;
6806}
6807
255d9e75
BS
6808static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6809{
81811c16 6810 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
255d9e75
BS
6811 struct kvm_sev_guest_status params;
6812 struct sev_data_guest_status *data;
6813 int ret;
6814
6815 if (!sev_guest(kvm))
6816 return -ENOTTY;
6817
1ec69647 6818 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
255d9e75
BS
6819 if (!data)
6820 return -ENOMEM;
6821
6822 data->handle = sev->handle;
6823 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6824 if (ret)
6825 goto e_free;
6826
6827 params.policy = data->policy;
6828 params.state = data->state;
6829 params.handle = data->handle;
6830
6831 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6832 ret = -EFAULT;
6833e_free:
6834 kfree(data);
6835 return ret;
6836}
6837
24f41fb2
BS
6838static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6839 unsigned long dst, int size,
6840 int *error, bool enc)
6841{
81811c16 6842 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
24f41fb2
BS
6843 struct sev_data_dbg *data;
6844 int ret;
6845
1ec69647 6846 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
24f41fb2
BS
6847 if (!data)
6848 return -ENOMEM;
6849
6850 data->handle = sev->handle;
6851 data->dst_addr = dst;
6852 data->src_addr = src;
6853 data->len = size;
6854
6855 ret = sev_issue_cmd(kvm,
6856 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6857 data, error);
6858 kfree(data);
6859 return ret;
6860}
6861
6862static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6863 unsigned long dst_paddr, int sz, int *err)
6864{
6865 int offset;
6866
6867 /*
6868 * Its safe to read more than we are asked, caller should ensure that
6869 * destination has enough space.
6870 */
6871 src_paddr = round_down(src_paddr, 16);
6872 offset = src_paddr & 15;
6873 sz = round_up(sz + offset, 16);
6874
6875 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6876}
6877
6878static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6879 unsigned long __user dst_uaddr,
6880 unsigned long dst_paddr,
6881 int size, int *err)
6882{
6883 struct page *tpage = NULL;
6884 int ret, offset;
6885
6886 /* if inputs are not 16-byte then use intermediate buffer */
6887 if (!IS_ALIGNED(dst_paddr, 16) ||
6888 !IS_ALIGNED(paddr, 16) ||
6889 !IS_ALIGNED(size, 16)) {
6890 tpage = (void *)alloc_page(GFP_KERNEL);
6891 if (!tpage)
6892 return -ENOMEM;
6893
6894 dst_paddr = __sme_page_pa(tpage);
6895 }
6896
6897 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6898 if (ret)
6899 goto e_free;
6900
6901 if (tpage) {
6902 offset = paddr & 15;
6903 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6904 page_address(tpage) + offset, size))
6905 ret = -EFAULT;
6906 }
6907
6908e_free:
6909 if (tpage)
6910 __free_page(tpage);
6911
6912 return ret;
6913}
6914
7d1594f5
BS
6915static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6916 unsigned long __user vaddr,
6917 unsigned long dst_paddr,
6918 unsigned long __user dst_vaddr,
6919 int size, int *error)
6920{
6921 struct page *src_tpage = NULL;
6922 struct page *dst_tpage = NULL;
6923 int ret, len = size;
6924
6925 /* If source buffer is not aligned then use an intermediate buffer */
6926 if (!IS_ALIGNED(vaddr, 16)) {
6927 src_tpage = alloc_page(GFP_KERNEL);
6928 if (!src_tpage)
6929 return -ENOMEM;
6930
6931 if (copy_from_user(page_address(src_tpage),
6932 (void __user *)(uintptr_t)vaddr, size)) {
6933 __free_page(src_tpage);
6934 return -EFAULT;
6935 }
6936
6937 paddr = __sme_page_pa(src_tpage);
6938 }
6939
6940 /*
6941 * If destination buffer or length is not aligned then do read-modify-write:
6942 * - decrypt destination in an intermediate buffer
6943 * - copy the source buffer in an intermediate buffer
6944 * - use the intermediate buffer as source buffer
6945 */
6946 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6947 int dst_offset;
6948
6949 dst_tpage = alloc_page(GFP_KERNEL);
6950 if (!dst_tpage) {
6951 ret = -ENOMEM;
6952 goto e_free;
6953 }
6954
6955 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6956 __sme_page_pa(dst_tpage), size, error);
6957 if (ret)
6958 goto e_free;
6959
6960 /*
6961 * If source is kernel buffer then use memcpy() otherwise
6962 * copy_from_user().
6963 */
6964 dst_offset = dst_paddr & 15;
6965
6966 if (src_tpage)
6967 memcpy(page_address(dst_tpage) + dst_offset,
6968 page_address(src_tpage), size);
6969 else {
6970 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6971 (void __user *)(uintptr_t)vaddr, size)) {
6972 ret = -EFAULT;
6973 goto e_free;
6974 }
6975 }
6976
6977 paddr = __sme_page_pa(dst_tpage);
6978 dst_paddr = round_down(dst_paddr, 16);
6979 len = round_up(size, 16);
6980 }
6981
6982 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6983
6984e_free:
6985 if (src_tpage)
6986 __free_page(src_tpage);
6987 if (dst_tpage)
6988 __free_page(dst_tpage);
6989 return ret;
6990}
6991
24f41fb2
BS
6992static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6993{
6994 unsigned long vaddr, vaddr_end, next_vaddr;
0186ec82 6995 unsigned long dst_vaddr;
24f41fb2
BS
6996 struct page **src_p, **dst_p;
6997 struct kvm_sev_dbg debug;
6998 unsigned long n;
b86bc285
DR
6999 unsigned int size;
7000 int ret;
24f41fb2
BS
7001
7002 if (!sev_guest(kvm))
7003 return -ENOTTY;
7004
7005 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
7006 return -EFAULT;
7007
b86bc285
DR
7008 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
7009 return -EINVAL;
7010 if (!debug.dst_uaddr)
7011 return -EINVAL;
7012
24f41fb2
BS
7013 vaddr = debug.src_uaddr;
7014 size = debug.len;
7015 vaddr_end = vaddr + size;
7016 dst_vaddr = debug.dst_uaddr;
24f41fb2
BS
7017
7018 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
7019 int len, s_off, d_off;
7020
7021 /* lock userspace source and destination page */
7022 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
7023 if (!src_p)
7024 return -EFAULT;
7025
7026 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
7027 if (!dst_p) {
7028 sev_unpin_memory(kvm, src_p, n);
7029 return -EFAULT;
7030 }
7031
7032 /*
7033 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
7034 * memory content (i.e it will write the same memory region with C=1).
7035 * It's possible that the cache may contain the data with C=0, i.e.,
7036 * unencrypted so invalidate it first.
7037 */
7038 sev_clflush_pages(src_p, 1);
7039 sev_clflush_pages(dst_p, 1);
7040
7041 /*
7042 * Since user buffer may not be page aligned, calculate the
7043 * offset within the page.
7044 */
7045 s_off = vaddr & ~PAGE_MASK;
7046 d_off = dst_vaddr & ~PAGE_MASK;
7047 len = min_t(size_t, (PAGE_SIZE - s_off), size);
7048
7d1594f5
BS
7049 if (dec)
7050 ret = __sev_dbg_decrypt_user(kvm,
7051 __sme_page_pa(src_p[0]) + s_off,
7052 dst_vaddr,
7053 __sme_page_pa(dst_p[0]) + d_off,
7054 len, &argp->error);
7055 else
7056 ret = __sev_dbg_encrypt_user(kvm,
7057 __sme_page_pa(src_p[0]) + s_off,
7058 vaddr,
7059 __sme_page_pa(dst_p[0]) + d_off,
7060 dst_vaddr,
7061 len, &argp->error);
24f41fb2 7062
b86bc285
DR
7063 sev_unpin_memory(kvm, src_p, n);
7064 sev_unpin_memory(kvm, dst_p, n);
24f41fb2
BS
7065
7066 if (ret)
7067 goto err;
7068
7069 next_vaddr = vaddr + len;
7070 dst_vaddr = dst_vaddr + len;
7071 size -= len;
7072 }
7073err:
7074 return ret;
7075}
7076
9f5b5b95
BS
7077static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
7078{
81811c16 7079 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
9f5b5b95
BS
7080 struct sev_data_launch_secret *data;
7081 struct kvm_sev_launch_secret params;
7082 struct page **pages;
7083 void *blob, *hdr;
7084 unsigned long n;
9c5e0afa 7085 int ret, offset;
9f5b5b95
BS
7086
7087 if (!sev_guest(kvm))
7088 return -ENOTTY;
7089
7090 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
7091 return -EFAULT;
7092
7093 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
7094 if (!pages)
7095 return -ENOMEM;
7096
7097 /*
7098 * The secret must be copied into contiguous memory region, lets verify
7099 * that userspace memory pages are contiguous before we issue command.
7100 */
7101 if (get_num_contig_pages(0, pages, n) != n) {
7102 ret = -EINVAL;
7103 goto e_unpin_memory;
7104 }
7105
7106 ret = -ENOMEM;
1ec69647 7107 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
9f5b5b95
BS
7108 if (!data)
7109 goto e_unpin_memory;
7110
9c5e0afa
BS
7111 offset = params.guest_uaddr & (PAGE_SIZE - 1);
7112 data->guest_address = __sme_page_pa(pages[0]) + offset;
7113 data->guest_len = params.guest_len;
7114
9f5b5b95
BS
7115 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
7116 if (IS_ERR(blob)) {
7117 ret = PTR_ERR(blob);
7118 goto e_free;
7119 }
7120
7121 data->trans_address = __psp_pa(blob);
7122 data->trans_len = params.trans_len;
7123
7124 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
7125 if (IS_ERR(hdr)) {
7126 ret = PTR_ERR(hdr);
7127 goto e_free_blob;
7128 }
9c5e0afa
BS
7129 data->hdr_address = __psp_pa(hdr);
7130 data->hdr_len = params.hdr_len;
9f5b5b95
BS
7131
7132 data->handle = sev->handle;
7133 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
7134
7135 kfree(hdr);
7136
7137e_free_blob:
7138 kfree(blob);
7139e_free:
7140 kfree(data);
7141e_unpin_memory:
7142 sev_unpin_memory(kvm, pages, n);
7143 return ret;
7144}
7145
1654efcb
BS
7146static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
7147{
7148 struct kvm_sev_cmd sev_cmd;
7149 int r;
7150
7151 if (!svm_sev_enabled())
7152 return -ENOTTY;
7153
7154 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7155 return -EFAULT;
7156
7157 mutex_lock(&kvm->lock);
7158
7159 switch (sev_cmd.id) {
7160 case KVM_SEV_INIT:
7161 r = sev_guest_init(kvm, &sev_cmd);
7162 break;
59414c98
BS
7163 case KVM_SEV_LAUNCH_START:
7164 r = sev_launch_start(kvm, &sev_cmd);
7165 break;
89c50580
BS
7166 case KVM_SEV_LAUNCH_UPDATE_DATA:
7167 r = sev_launch_update_data(kvm, &sev_cmd);
7168 break;
0d0736f7
BS
7169 case KVM_SEV_LAUNCH_MEASURE:
7170 r = sev_launch_measure(kvm, &sev_cmd);
7171 break;
5bdb0e2f
BS
7172 case KVM_SEV_LAUNCH_FINISH:
7173 r = sev_launch_finish(kvm, &sev_cmd);
7174 break;
255d9e75
BS
7175 case KVM_SEV_GUEST_STATUS:
7176 r = sev_guest_status(kvm, &sev_cmd);
7177 break;
24f41fb2
BS
7178 case KVM_SEV_DBG_DECRYPT:
7179 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7180 break;
7d1594f5
BS
7181 case KVM_SEV_DBG_ENCRYPT:
7182 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7183 break;
9f5b5b95
BS
7184 case KVM_SEV_LAUNCH_SECRET:
7185 r = sev_launch_secret(kvm, &sev_cmd);
7186 break;
1654efcb
BS
7187 default:
7188 r = -EINVAL;
7189 goto out;
7190 }
7191
7192 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7193 r = -EFAULT;
7194
7195out:
7196 mutex_unlock(&kvm->lock);
7197 return r;
7198}
7199
1e80fdc0
BS
7200static int svm_register_enc_region(struct kvm *kvm,
7201 struct kvm_enc_region *range)
7202{
81811c16 7203 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
1e80fdc0
BS
7204 struct enc_region *region;
7205 int ret = 0;
7206
7207 if (!sev_guest(kvm))
7208 return -ENOTTY;
7209
86bf20cb
DC
7210 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7211 return -EINVAL;
7212
1ec69647 7213 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
1e80fdc0
BS
7214 if (!region)
7215 return -ENOMEM;
7216
7217 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7218 if (!region->pages) {
7219 ret = -ENOMEM;
7220 goto e_free;
7221 }
7222
7223 /*
7224 * The guest may change the memory encryption attribute from C=0 -> C=1
7225 * or vice versa for this memory range. Lets make sure caches are
7226 * flushed to ensure that guest data gets written into memory with
7227 * correct C-bit.
7228 */
7229 sev_clflush_pages(region->pages, region->npages);
7230
7231 region->uaddr = range->addr;
7232 region->size = range->size;
7233
7234 mutex_lock(&kvm->lock);
7235 list_add_tail(&region->list, &sev->regions_list);
7236 mutex_unlock(&kvm->lock);
7237
7238 return ret;
7239
7240e_free:
7241 kfree(region);
7242 return ret;
7243}
7244
7245static struct enc_region *
7246find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7247{
81811c16 7248 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
1e80fdc0
BS
7249 struct list_head *head = &sev->regions_list;
7250 struct enc_region *i;
7251
7252 list_for_each_entry(i, head, list) {
7253 if (i->uaddr == range->addr &&
7254 i->size == range->size)
7255 return i;
7256 }
7257
7258 return NULL;
7259}
7260
7261
7262static int svm_unregister_enc_region(struct kvm *kvm,
7263 struct kvm_enc_region *range)
7264{
7265 struct enc_region *region;
7266 int ret;
7267
7268 mutex_lock(&kvm->lock);
7269
7270 if (!sev_guest(kvm)) {
7271 ret = -ENOTTY;
7272 goto failed;
7273 }
7274
7275 region = find_enc_region(kvm, range);
7276 if (!region) {
7277 ret = -EINVAL;
7278 goto failed;
7279 }
7280
7281 __unregister_enc_region_locked(kvm, region);
7282
7283 mutex_unlock(&kvm->lock);
7284 return 0;
7285
7286failed:
7287 mutex_unlock(&kvm->lock);
7288 return ret;
7289}
7290
05d5a486
SB
7291static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7292{
118154bd
LA
7293 unsigned long cr4 = kvm_read_cr4(vcpu);
7294 bool smep = cr4 & X86_CR4_SMEP;
7295 bool smap = cr4 & X86_CR4_SMAP;
7296 bool is_user = svm_get_cpl(vcpu) == 3;
05d5a486
SB
7297
7298 /*
118154bd
LA
7299 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7300 *
7301 * Errata:
7302 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7303 * possible that CPU microcode implementing DecodeAssist will fail
7304 * to read bytes of instruction which caused #NPF. In this case,
7305 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7306 * return 0 instead of the correct guest instruction bytes.
7307 *
7308 * This happens because CPU microcode reading instruction bytes
7309 * uses a special opcode which attempts to read data using CPL=0
7310 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7311 * fault, it gives up and returns no instruction bytes.
7312 *
7313 * Detection:
7314 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7315 * returned 0 in GuestIntrBytes field of the VMCB.
7316 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7317 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7318 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7319 * a SMEP fault instead of #NPF).
7320 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7321 * As most guests enable SMAP if they have also enabled SMEP, use above
7322 * logic in order to attempt minimize false-positive of detecting errata
7323 * while still preserving all cases semantic correctness.
7324 *
7325 * Workaround:
7326 * To determine what instruction the guest was executing, the hypervisor
7327 * will have to decode the instruction at the instruction pointer.
05d5a486
SB
7328 *
7329 * In non SEV guest, hypervisor will be able to read the guest
7330 * memory to decode the instruction pointer when insn_len is zero
7331 * so we return true to indicate that decoding is possible.
7332 *
7333 * But in the SEV guest, the guest memory is encrypted with the
7334 * guest specific key and hypervisor will not be able to decode the
7335 * instruction pointer so we will not able to workaround it. Lets
7336 * print the error and request to kill the guest.
7337 */
118154bd 7338 if (smap && (!smep || is_user)) {
05d5a486
SB
7339 if (!sev_guest(vcpu->kvm))
7340 return true;
7341
118154bd 7342 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
05d5a486
SB
7343 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7344 }
7345
7346 return false;
7347}
7348
4b9852f4
LA
7349static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7350{
7351 struct vcpu_svm *svm = to_svm(vcpu);
7352
7353 /*
7354 * TODO: Last condition latch INIT signals on vCPU when
7355 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
7356 * To properly emulate the INIT intercept, SVM should implement
7357 * kvm_x86_ops->check_nested_events() and call nested_svm_vmexit()
7358 * there if an INIT signal is pending.
7359 */
7360 return !gif_set(svm) ||
7361 (svm->vmcb->control.intercept & (1ULL << INTERCEPT_INIT));
7362}
7363
ef8efd7a
SS
7364static bool svm_check_apicv_inhibit_reasons(ulong bit)
7365{
f4fdc0a2 7366 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
9a0bf054 7367 BIT(APICV_INHIBIT_REASON_HYPERV) |
f3515dc3 7368 BIT(APICV_INHIBIT_REASON_NESTED) |
e2ed4078
SS
7369 BIT(APICV_INHIBIT_REASON_IRQWIN) |
7370 BIT(APICV_INHIBIT_REASON_PIT_REINJ);
ef8efd7a
SS
7371
7372 return supported & BIT(bit);
7373}
7374
2de9d0cc
SS
7375static void svm_pre_update_apicv_exec_ctrl(struct kvm *kvm, bool activate)
7376{
7377 avic_update_access_page(kvm, activate);
7378}
7379
404f6aac 7380static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
6aa8b732
AK
7381 .cpu_has_kvm_support = has_svm,
7382 .disabled_by_bios = is_disabled,
7383 .hardware_setup = svm_hardware_setup,
7384 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 7385 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
7386 .hardware_enable = svm_hardware_enable,
7387 .hardware_disable = svm_hardware_disable,
774ead3a 7388 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
bc226f07 7389 .has_emulated_msr = svm_has_emulated_msr,
6aa8b732
AK
7390
7391 .vcpu_create = svm_create_vcpu,
7392 .vcpu_free = svm_free_vcpu,
04d2cc77 7393 .vcpu_reset = svm_vcpu_reset,
6aa8b732 7394
434a1e94
SC
7395 .vm_alloc = svm_vm_alloc,
7396 .vm_free = svm_vm_free,
4e19c36f 7397 .vm_init = svm_vm_init,
1654efcb 7398 .vm_destroy = svm_vm_destroy,
44a95dae 7399
04d2cc77 7400 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
7401 .vcpu_load = svm_vcpu_load,
7402 .vcpu_put = svm_vcpu_put,
8221c137
SS
7403 .vcpu_blocking = svm_vcpu_blocking,
7404 .vcpu_unblocking = svm_vcpu_unblocking,
6aa8b732 7405
a96036b8 7406 .update_bp_intercept = update_bp_intercept,
801e459a 7407 .get_msr_feature = svm_get_msr_feature,
6aa8b732
AK
7408 .get_msr = svm_get_msr,
7409 .set_msr = svm_set_msr,
7410 .get_segment_base = svm_get_segment_base,
7411 .get_segment = svm_get_segment,
7412 .set_segment = svm_set_segment,
2e4d2653 7413 .get_cpl = svm_get_cpl,
1747fb71 7414 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
e8467fda 7415 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
25c4c276 7416 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 7417 .set_cr0 = svm_set_cr0,
6aa8b732
AK
7418 .set_cr3 = svm_set_cr3,
7419 .set_cr4 = svm_set_cr4,
7420 .set_efer = svm_set_efer,
7421 .get_idt = svm_get_idt,
7422 .set_idt = svm_set_idt,
7423 .get_gdt = svm_get_gdt,
7424 .set_gdt = svm_set_gdt,
73aaf249
JK
7425 .get_dr6 = svm_get_dr6,
7426 .set_dr6 = svm_set_dr6,
020df079 7427 .set_dr7 = svm_set_dr7,
facb0139 7428 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
6de4f3ad 7429 .cache_reg = svm_cache_reg,
6aa8b732
AK
7430 .get_rflags = svm_get_rflags,
7431 .set_rflags = svm_set_rflags,
be94f6b7 7432
6aa8b732 7433 .tlb_flush = svm_flush_tlb,
faff8758 7434 .tlb_flush_gva = svm_flush_tlb_gva,
6aa8b732 7435
6aa8b732 7436 .run = svm_vcpu_run,
04d2cc77 7437 .handle_exit = handle_exit,
6aa8b732 7438 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
7439 .set_interrupt_shadow = svm_set_interrupt_shadow,
7440 .get_interrupt_shadow = svm_get_interrupt_shadow,
102d8325 7441 .patch_hypercall = svm_patch_hypercall,
2a8067f1 7442 .set_irq = svm_set_irq,
95ba8273 7443 .set_nmi = svm_inject_nmi,
298101da 7444 .queue_exception = svm_queue_exception,
b463a6f7 7445 .cancel_injection = svm_cancel_injection,
78646121 7446 .interrupt_allowed = svm_interrupt_allowed,
95ba8273 7447 .nmi_allowed = svm_nmi_allowed,
3cfc3092
JK
7448 .get_nmi_mask = svm_get_nmi_mask,
7449 .set_nmi_mask = svm_set_nmi_mask,
95ba8273
GN
7450 .enable_nmi_window = enable_nmi_window,
7451 .enable_irq_window = enable_irq_window,
7452 .update_cr8_intercept = update_cr8_intercept,
8d860bbe 7453 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
d62caabb 7454 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
ef8efd7a 7455 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
2de9d0cc 7456 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
c7c9c56c 7457 .load_eoi_exitmap = svm_load_eoi_exitmap,
44a95dae
SS
7458 .hwapic_irr_update = svm_hwapic_irr_update,
7459 .hwapic_isr_update = svm_hwapic_isr_update,
fa59cc00 7460 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
be8ca170 7461 .apicv_post_state_restore = avic_post_state_restore,
cbc94022
IE
7462
7463 .set_tss_addr = svm_set_tss_addr,
2ac52ab8 7464 .set_identity_map_addr = svm_set_identity_map_addr,
67253af5 7465 .get_tdp_level = get_npt_level,
4b12f0de 7466 .get_mt_mask = svm_get_mt_mask,
229456fc 7467
586f9607 7468 .get_exit_info = svm_get_exit_info,
586f9607 7469
17cc3935 7470 .get_lpage_level = svm_get_lpage_level,
0e851880
SY
7471
7472 .cpuid_update = svm_cpuid_update,
4e47c7a6
SY
7473
7474 .rdtscp_supported = svm_rdtscp_supported,
ad756a16 7475 .invpcid_supported = svm_invpcid_supported,
93c4adc7 7476 .mpx_supported = svm_mpx_supported,
55412b2e 7477 .xsaves_supported = svm_xsaves_supported,
66336cab 7478 .umip_emulated = svm_umip_emulated,
86f5201d 7479 .pt_supported = svm_pt_supported,
a47970ed 7480 .pku_supported = svm_pku_supported,
d4330ef2
JR
7481
7482 .set_supported_cpuid = svm_set_supported_cpuid,
f5f48ee1
SY
7483
7484 .has_wbinvd_exit = svm_has_wbinvd_exit,
99e3e30a 7485
e79f245d 7486 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
326e7425 7487 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
1c97f0a0
JR
7488
7489 .set_tdp_cr3 = set_tdp_cr3,
8a76d7f2
JR
7490
7491 .check_intercept = svm_check_intercept,
95b5a48c 7492 .handle_exit_irqoff = svm_handle_exit_irqoff,
ae97a3b8 7493
d264ee0c
SC
7494 .request_immediate_exit = __kvm_request_immediate_exit,
7495
ae97a3b8 7496 .sched_in = svm_sched_in,
25462f7f
WH
7497
7498 .pmu_ops = &amd_pmu_ops,
340d3bc3 7499 .deliver_posted_interrupt = svm_deliver_avic_intr,
17e433b5 7500 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
411b44ba 7501 .update_pi_irte = svm_update_pi_irte,
74f16909 7502 .setup_mce = svm_setup_mce,
0234bf88 7503
72d7b374 7504 .smi_allowed = svm_smi_allowed,
0234bf88
LP
7505 .pre_enter_smm = svm_pre_enter_smm,
7506 .pre_leave_smm = svm_pre_leave_smm,
cc3d967f 7507 .enable_smi_window = enable_smi_window,
1654efcb
BS
7508
7509 .mem_enc_op = svm_mem_enc_op,
1e80fdc0
BS
7510 .mem_enc_reg_region = svm_register_enc_region,
7511 .mem_enc_unreg_region = svm_unregister_enc_region,
57b119da 7512
956e255c 7513 .nested_enable_evmcs = NULL,
ea152987 7514 .nested_get_evmcs_version = NULL,
05d5a486
SB
7515
7516 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
4b9852f4
LA
7517
7518 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
6aa8b732
AK
7519};
7520
7521static int __init svm_init(void)
7522{
cb498ea2 7523 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
0ee75bea 7524 __alignof__(struct vcpu_svm), THIS_MODULE);
6aa8b732
AK
7525}
7526
7527static void __exit svm_exit(void)
7528{
cb498ea2 7529 kvm_exit();
6aa8b732
AK
7530}
7531
7532module_init(svm_init)
7533module_exit(svm_exit)