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