blob: be25831830b056921193414dff00ab8865382df8 [file] [log] [blame]
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001#define pr_fmt(fmt) "SVM: " fmt
2
Avi Kivityedf88412007-12-16 11:02:48 +02003#include <linux/kvm_host.h>
4
Eddie Dong85f455f2007-07-06 12:20:49 +03005#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +08006#include "mmu.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007#include "kvm_cache_regs.h"
Gleb Natapovfe4c7b12009-03-23 11:23:18 +02008#include "x86.h"
Julian Stecklina66f7b722012-12-05 15:26:19 +01009#include "cpuid.h"
Wei Huang25462f72015-06-19 15:45:05 +020010#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040011
Avi Kivity6aa8b732006-12-10 02:21:36 -080012#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070013#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020014#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080015#include <linux/vmalloc.h>
16#include <linux/highmem.h>
Joerg Roedelef0f6492020-03-31 12:17:38 -040017#include <linux/amd-iommu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040019#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050021#include <linux/hashtable.h>
Julien Thierry00089c02020-09-04 16:30:25 +010022#include <linux/objtool.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060023#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060024#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060025#include <linux/pagemap.h>
26#include <linux/swap.h>
Tom Lendacky33af3a72019-10-03 21:17:48 +000027#include <linux/rwsem.h>
Tom Lendacky4d96f912021-09-08 17:58:37 -050028#include <linux/cc_platform.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050030#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010031#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020032#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040033#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010034#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020035#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050036#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020037#include <asm/spec-ctrl.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010038#include <asm/cpu_device_id.h>
Tom Lendackyf1c63662020-12-14 10:29:50 -050039#include <asm/traps.h>
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020040#include <asm/fpu/api.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041
Eduardo Habkost63d11422008-11-17 19:03:20 -020042#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030043#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020044
Joerg Roedel883b0a92020-03-24 10:41:52 +010045#include "svm.h"
Sean Christopherson35a78312020-12-30 16:27:00 -080046#include "svm_ops.h"
Joerg Roedel883b0a92020-03-24 10:41:52 +010047
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +000048#include "kvm_onhyperv.h"
49#include "svm_onhyperv.h"
50
Avi Kivity6aa8b732006-12-10 02:21:36 -080051MODULE_AUTHOR("Qumranet");
52MODULE_LICENSE("GPL");
53
Valdis Klētnieks575b2552020-02-27 21:49:52 -050054#ifdef MODULE
Josh Triplettae759542012-03-28 11:32:28 -070055static const struct x86_cpu_id svm_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010056 X86_MATCH_FEATURE(X86_FEATURE_SVM, NULL),
Josh Triplettae759542012-03-28 11:32:28 -070057 {}
58};
59MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050060#endif
Josh Triplettae759542012-03-28 11:32:28 -070061
Avi Kivity6aa8b732006-12-10 02:21:36 -080062#define SEG_TYPE_LDT 2
63#define SEG_TYPE_BUSY_TSS16 3
64
Andre Przywara6bc31bd2010-04-11 23:07:28 +020065#define SVM_FEATURE_LBRV (1 << 1)
66#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010067#define SVM_FEATURE_TSC_RATE (1 << 4)
68#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
69#define SVM_FEATURE_FLUSH_ASID (1 << 6)
70#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020071#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030072
Joerg Roedel24e09cb2008-02-13 18:58:47 +010073#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
74
Joerg Roedelfbc0db72011-03-25 09:44:46 +010075#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010076#define TSC_RATIO_MIN 0x0000000000000001ULL
77#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010078
Joerg Roedel67ec6602010-05-17 14:43:35 +020079static bool erratum_383_found __read_mostly;
80
Joerg Roedel883b0a92020-03-24 10:41:52 +010081u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
Joerg Roedel323c3d82010-03-01 15:34:37 +010082
Boris Ostrovsky2b036c62012-01-09 14:00:35 -050083/*
84 * Set osvw_len to higher value when updated Revision Guides
85 * are published and we know what the new status bits are
86 */
87static uint64_t osvw_len = 4, osvw_status;
88
Joerg Roedelfbc0db72011-03-25 09:44:46 +010089static DEFINE_PER_CPU(u64, current_tsc_ratio);
90#define TSC_RATIO_DEFAULT 0x0100000000ULL
91
Mathias Krause09941fb2012-08-30 01:30:20 +020092static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +010093 u32 index; /* Index of the MSR */
Tom Lendacky376c6d22020-12-10 11:10:06 -060094 bool always; /* True if intercept is initially cleared */
Alexander Graffd6fa732020-09-25 16:34:19 +020095} direct_access_msrs[MAX_DIRECT_ACCESS_MSRS] = {
Brian Gerst8c065852010-07-17 09:03:26 -040096 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010097 { .index = MSR_IA32_SYSENTER_CS, .always = true },
Maxim Levitskyadc2a232021-04-01 14:19:28 +030098 { .index = MSR_IA32_SYSENTER_EIP, .always = false },
99 { .index = MSR_IA32_SYSENTER_ESP, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100100#ifdef CONFIG_X86_64
101 { .index = MSR_GS_BASE, .always = true },
102 { .index = MSR_FS_BASE, .always = true },
103 { .index = MSR_KERNEL_GS_BASE, .always = true },
104 { .index = MSR_LSTAR, .always = true },
105 { .index = MSR_CSTAR, .always = true },
106 { .index = MSR_SYSCALL_MASK, .always = true },
107#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100108 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100109 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100110 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
111 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
112 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
113 { .index = MSR_IA32_LASTINTTOIP, .always = false },
Tom Lendacky376c6d22020-12-10 11:10:06 -0600114 { .index = MSR_EFER, .always = false },
115 { .index = MSR_IA32_CR_PAT, .always = false },
116 { .index = MSR_AMD64_SEV_ES_GHCB, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100117 { .index = MSR_INVALID, .always = false },
Avi Kivity6c8166a2009-05-31 18:15:37 +0300118};
119
Babu Moger8566ac82018-03-16 16:37:26 -0400120/*
121 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
122 * pause_filter_count: On processors that support Pause filtering(indicated
123 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
124 * count value. On VMRUN this value is loaded into an internal counter.
125 * Each time a pause instruction is executed, this counter is decremented
126 * until it reaches zero at which time a #VMEXIT is generated if pause
127 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
128 * Intercept Filtering for more details.
129 * This also indicate if ple logic enabled.
130 *
131 * pause_filter_thresh: In addition, some processor families support advanced
132 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
133 * the amount of time a guest is allowed to execute in a pause loop.
134 * In this mode, a 16-bit pause filter threshold field is added in the
135 * VMCB. The threshold value is a cycle count that is used to reset the
136 * pause counter. As with simple pause filtering, VMRUN loads the pause
137 * count value from VMCB into an internal counter. Then, on each pause
138 * instruction the hardware checks the elapsed number of cycles since
139 * the most recent pause instruction against the pause filter threshold.
140 * If the elapsed cycle count is greater than the pause filter threshold,
141 * then the internal pause count is reloaded from the VMCB and execution
142 * continues. If the elapsed cycle count is less than the pause filter
143 * threshold, then the internal pause count is decremented. If the count
144 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
145 * triggered. If advanced pause filtering is supported and pause filter
146 * threshold field is set to zero, the filter will operate in the simpler,
147 * count only mode.
148 */
149
150static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
151module_param(pause_filter_thresh, ushort, 0444);
152
153static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
154module_param(pause_filter_count, ushort, 0444);
155
156/* Default doubles per-vcpu window every exit. */
157static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
158module_param(pause_filter_count_grow, ushort, 0444);
159
160/* Default resets per-vcpu window every exit to pause_filter_count. */
161static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
162module_param(pause_filter_count_shrink, ushort, 0444);
163
164/* Default is to compute the maximum so we can never overflow. */
165static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
166module_param(pause_filter_count_max, ushort, 0444);
167
Sean Christopherson99840a72021-03-04 18:16:37 -0800168/*
169 * Use nested page tables by default. Note, NPT may get forced off by
170 * svm_hardware_setup() if it's unsupported by hardware or the host kernel.
171 */
172bool npt_enabled = true;
173module_param_named(npt, npt_enabled, bool, 0444);
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100174
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100175/* allow nested virtualization in KVM/SVM */
176static int nested = true;
Alexander Graf236de052008-11-25 20:17:10 +0100177module_param(nested, int, S_IRUGO);
178
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200179/* enable/disable Next RIP Save */
180static int nrips = true;
181module_param(nrips, int, 0444);
182
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500183/* enable/disable Virtual VMLOAD VMSAVE */
184static int vls = true;
185module_param(vls, int, 0444);
186
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500187/* enable/disable Virtual GIF */
188static int vgif = true;
189module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500190
Maxim Levitsky4c849262021-09-14 18:48:19 +0300191/* enable/disable LBR virtualization */
192static int lbrv = true;
193module_param(lbrv, int, 0444);
194
Maxim Levitskyf8006502021-09-14 18:48:23 +0300195static int tsc_scaling = true;
196module_param(tsc_scaling, int, 0444);
197
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200198/*
199 * enable / disable AVIC. Because the defaults differ for APICv
200 * support between VMX and SVM we cannot use module_param_named.
201 */
202static bool avic;
203module_param(avic, bool, 0444);
204
Tom Lendacky291bd202020-12-10 11:09:47 -0600205bool __read_mostly dump_invalid_vmcb;
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200206module_param(dump_invalid_vmcb, bool, 0644);
207
Maxim Levitsky4b639a92021-07-07 15:51:00 +0300208
209bool intercept_smi = true;
210module_param(intercept_smi, bool, 0444);
211
212
Wei Yongjun2e215212021-02-10 07:59:58 +0000213static bool svm_gp_erratum_intercept = true;
Bandan Das82a11e9c2021-01-26 03:18:29 -0500214
Brijesh Singh7607b712018-02-19 10:14:44 -0600215static u8 rsm_ins_bytes[] = "\x0f\xaa";
216
Harvey Harrison4866d5e2008-02-19 10:32:02 -0800217static unsigned long iopm_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800218
219struct kvm_ldttss_desc {
220 u16 limit0;
221 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100222 unsigned base1:8, type:5, dpl:2, p:1;
223 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800224 u32 base3;
225 u32 zero1;
226} __attribute__((packed));
227
Joerg Roedeleaf78262020-03-24 10:41:54 +0100228DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229
Sean Christopherson844d69c2021-04-23 15:34:04 -0700230/*
231 * Only MSR_TSC_AUX is switched via the user return hook. EFER is switched via
232 * the VMCB, and the SYSCALL/SYSENTER MSRs are handled by VMLOAD/VMSAVE.
233 *
234 * RDTSCP and RDPID are not used in the kernel, specifically to allow KVM to
235 * defer the restoration of TSC_AUX until the CPU returns to userspace.
236 */
Sean Christopherson0caa0a72021-05-04 10:17:25 -0700237static int tsc_aux_uret_slot __read_mostly = -1;
Sean Christopherson844d69c2021-04-23 15:34:04 -0700238
Mathias Krause09941fb2012-08-30 01:30:20 +0200239static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800240
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200241#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800242#define MSRS_RANGE_SIZE 2048
243#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
244
Joerg Roedel883b0a92020-03-24 10:41:52 +0100245u32 svm_msrpm_offset(u32 msr)
Joerg Roedel455716f2010-03-01 15:34:35 +0100246{
247 u32 offset;
248 int i;
249
250 for (i = 0; i < NUM_MSR_MAPS; i++) {
251 if (msr < msrpm_ranges[i] ||
252 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
253 continue;
254
255 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
256 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
257
258 /* Now we have the u8 offset - but need the u32 offset */
259 return offset / 4;
260 }
261
262 /* MSR not in any range */
263 return MSR_INVALID;
264}
265
Avi Kivity6aa8b732006-12-10 02:21:36 -0800266#define MAX_INST_SIZE 15
267
Lai Jiangshan1af4a112021-11-18 19:08:07 +0800268static int get_npt_level(void)
Joerg Roedel4b161842010-09-10 17:31:03 +0200269{
270#ifdef CONFIG_X86_64
Wei Huang43e540c2021-08-18 11:55:49 -0500271 return pgtable_l5_enabled() ? PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200272#else
273 return PT32E_ROOT_LEVEL;
274#endif
275}
276
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300277int svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800278{
Paolo Bonzinic513f482020-05-18 13:08:37 -0400279 struct vcpu_svm *svm = to_svm(vcpu);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300280 u64 old_efer = vcpu->arch.efer;
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000281 vcpu->arch.efer = efer;
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100282
283 if (!npt_enabled) {
284 /* Shadow paging assumes NX to be available. */
285 efer |= EFER_NX;
286
287 if (!(efer & EFER_LMA))
288 efer &= ~EFER_LME;
289 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800290
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300291 if ((old_efer & EFER_SVME) != (efer & EFER_SVME)) {
292 if (!(efer & EFER_SVME)) {
293 svm_leave_nested(svm);
294 svm_set_gif(svm, true);
Bandan Das82a11e9c2021-01-26 03:18:29 -0500295 /* #GP intercept is still needed for vmware backdoor */
296 if (!enable_vmware_backdoor)
297 clr_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300298
299 /*
300 * Free the nested guest state, unless we are in SMM.
301 * In this case we will return to the nested guest
302 * as soon as we leave SMM.
303 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500304 if (!is_smm(vcpu))
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300305 svm_free_nested(svm);
306
307 } else {
308 int ret = svm_allocate_nested(svm);
309
310 if (ret) {
311 vcpu->arch.efer = old_efer;
312 return ret;
313 }
Bandan Das82a11e9c2021-01-26 03:18:29 -0500314
Sean Christopherson0b0be062022-01-20 01:07:13 +0000315 /*
316 * Never intercept #GP for SEV guests, KVM can't
317 * decrypt guest memory to workaround the erratum.
318 */
319 if (svm_gp_erratum_intercept && !sev_guest(vcpu->kvm))
Bandan Das82a11e9c2021-01-26 03:18:29 -0500320 set_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300321 }
Paolo Bonzinic513f482020-05-18 13:08:37 -0400322 }
323
324 svm->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedel06e78522020-06-25 10:03:23 +0200325 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300326 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800327}
328
Avi Kivity6aa8b732006-12-10 02:21:36 -0800329static int is_external_interrupt(u32 info)
330{
331 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
332 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
333}
334
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200335static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400336{
337 struct vcpu_svm *svm = to_svm(vcpu);
338 u32 ret = 0;
339
340 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200341 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
342 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400343}
344
345static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
346{
347 struct vcpu_svm *svm = to_svm(vcpu);
348
349 if (mask == 0)
350 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
351 else
352 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
353
354}
355
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200356static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400358 struct vcpu_svm *svm = to_svm(vcpu);
359
Tom Lendackyf1c63662020-12-14 10:29:50 -0500360 /*
361 * SEV-ES does not expose the next RIP. The RIP update is controlled by
362 * the type of exit and the #VC handler in the guest.
363 */
364 if (sev_es_guest(vcpu->kvm))
365 goto done;
366
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200367 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200368 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200369 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400370 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200371
Sean Christopherson1957aa62019-08-27 14:40:39 -0700372 if (!svm->next_rip) {
373 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
374 return 0;
375 } else {
Sean Christopherson1957aa62019-08-27 14:40:39 -0700376 kvm_rip_write(vcpu, svm->next_rip);
377 }
Tom Lendackyf1c63662020-12-14 10:29:50 -0500378
379done:
Glauber Costa2809f5d2009-05-12 16:21:05 -0400380 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200381
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700382 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800383}
384
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700385static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100386{
387 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700388 unsigned nr = vcpu->arch.exception.nr;
389 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700390 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100391
Paolo Bonzini63129752021-03-02 14:40:39 -0500392 kvm_deliver_exception_payload(vcpu);
Jim Mattsonda998b42018-10-16 14:29:22 -0700393
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200394 if (nr == BP_VECTOR && !nrips) {
Paolo Bonzini63129752021-03-02 14:40:39 -0500395 unsigned long rip, old_rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100396
397 /*
398 * For guest debugging where we have to reinject #BP if some
399 * INT3 is guest-owned:
400 * Emulate nRIP by moving RIP forward. Will fail if injection
401 * raises a fault that is not intercepted. Still better than
402 * failing in all cases.
403 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500404 (void)skip_emulated_instruction(vcpu);
405 rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100406 svm->int3_rip = rip + svm->vmcb->save.cs.base;
407 svm->int3_injected = rip - old_rip;
408 }
409
Jan Kiszka116a4752010-02-23 17:47:54 +0100410 svm->vmcb->control.event_inj = nr
411 | SVM_EVTINJ_VALID
412 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
413 | SVM_EVTINJ_TYPE_EXEPT;
414 svm->vmcb->control.event_inj_err = error_code;
415}
416
Joerg Roedel67ec6602010-05-17 14:43:35 +0200417static void svm_init_erratum_383(void)
418{
419 u32 low, high;
420 int err;
421 u64 val;
422
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100423 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200424 return;
425
426 /* Use _safe variants to not break nested virtualization */
427 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
428 if (err)
429 return;
430
431 val |= (1ULL << 47);
432
433 low = lower_32_bits(val);
434 high = upper_32_bits(val);
435
436 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
437
438 erratum_383_found = true;
439}
440
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500441static void svm_init_osvw(struct kvm_vcpu *vcpu)
442{
443 /*
444 * Guests should see errata 400 and 415 as fixed (assuming that
445 * HLT and IO instructions are intercepted).
446 */
447 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
448 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
449
450 /*
451 * By increasing VCPU's osvw.length to 3 we are telling the guest that
452 * all osvw.status bits inside that length, including bit 0 (which is
453 * reserved for erratum 298), are valid. However, if host processor's
454 * osvw_len is 0 then osvw_status[0] carries no information. We need to
455 * be conservative here and therefore we tell the guest that erratum 298
456 * is present (because we really don't know).
457 */
458 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
459 vcpu->arch.osvw.status |= 1;
460}
461
Avi Kivity6aa8b732006-12-10 02:21:36 -0800462static int has_svm(void)
463{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200464 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800465
Eduardo Habkost63d11422008-11-17 19:03:20 -0200466 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800467 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800468 return 0;
469 }
470
Tom Lendacky4d96f912021-09-08 17:58:37 -0500471 if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) {
Sean Christophersonccd85d92021-02-02 13:20:17 -0800472 pr_info("KVM is unsupported when running as an SEV guest\n");
473 return 0;
474 }
475
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476 return 1;
477}
478
Radim Krčmář13a34e02014-08-28 15:13:03 +0200479static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800480{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100481 /* Make sure we clean up behind us */
Maxim Levitskyf8006502021-09-14 18:48:23 +0300482 if (tsc_scaling)
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100483 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
484
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200485 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100486
487 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800488}
489
Radim Krčmář13a34e02014-08-28 15:13:03 +0200490static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800491{
492
Tejun Heo0fe1e002009-10-29 22:34:14 +0900493 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800494 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800495 struct desc_struct *gdt;
496 int me = raw_smp_processor_id();
497
Alexander Graf10474ae2009-09-15 11:37:46 +0200498 rdmsrl(MSR_EFER, efer);
499 if (efer & EFER_SVME)
500 return -EBUSY;
501
Avi Kivity6aa8b732006-12-10 02:21:36 -0800502 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200503 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200504 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800505 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900506 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900507 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200508 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200509 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800510 }
511
Tejun Heo0fe1e002009-10-29 22:34:14 +0900512 sd->asid_generation = 1;
513 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
514 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600515 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800516
Thomas Garnier45fc8752017-03-14 10:05:08 -0700517 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900518 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519
Alexander Graf9962d032008-11-25 20:17:02 +0100520 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800521
Tom Lendacky85ca8be2020-12-10 11:10:04 -0600522 wrmsrl(MSR_VM_HSAVE_PA, __sme_page_pa(sd->save_area));
Alexander Graf10474ae2009-09-15 11:37:46 +0200523
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100524 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Maxim Levitskyf8006502021-09-14 18:48:23 +0300525 /*
526 * Set the default value, even if we don't use TSC scaling
527 * to avoid having stale value in the msr
528 */
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100529 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500530 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100531 }
532
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500533
534 /*
535 * Get OSVW bits.
536 *
537 * Note that it is possible to have a system with mixed processor
538 * revisions and therefore different OSVW bits. If bits are not the same
539 * on different processors then choose the worst case (i.e. if erratum
540 * is present on one processor and not on another then assume that the
541 * erratum is present everywhere).
542 */
543 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
544 uint64_t len, status = 0;
545 int err;
546
547 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
548 if (!err)
549 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
550 &err);
551
552 if (err)
553 osvw_status = osvw_len = 0;
554 else {
555 if (len < osvw_len)
556 osvw_len = len;
557 osvw_status |= status;
558 osvw_status &= (1ULL << osvw_len) - 1;
559 }
560 } else
561 osvw_status = osvw_len = 0;
562
Joerg Roedel67ec6602010-05-17 14:43:35 +0200563 svm_init_erratum_383();
564
Joerg Roedel1018faa2012-02-29 14:57:32 +0100565 amd_pmu_enable_virt();
566
Alexander Graf10474ae2009-09-15 11:37:46 +0200567 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800568}
569
Joerg Roedel0da1db752008-07-02 16:02:11 +0200570static void svm_cpu_uninit(int cpu)
571{
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800572 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200573
Tejun Heo0fe1e002009-10-29 22:34:14 +0900574 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200575 return;
576
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800577 per_cpu(svm_data, cpu) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600578 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900579 __free_page(sd->save_area);
580 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200581}
582
Avi Kivity6aa8b732006-12-10 02:21:36 -0800583static int svm_cpu_init(int cpu)
584{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900585 struct svm_cpu_data *sd;
Sean Christophersonb95c2212021-04-21 19:11:22 -0700586 int ret = -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800587
Tejun Heo0fe1e002009-10-29 22:34:14 +0900588 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
589 if (!sd)
Sean Christophersonb95c2212021-04-21 19:11:22 -0700590 return ret;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900591 sd->cpu = cpu;
Lai Jiangshan58356762021-11-18 19:08:08 +0800592 sd->save_area = alloc_page(GFP_KERNEL | __GFP_ZERO);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900593 if (!sd->save_area)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800594 goto free_cpu_data;
Sean Christophersonb95c2212021-04-21 19:11:22 -0700595
Sean Christophersonb95c2212021-04-21 19:11:22 -0700596 ret = sev_cpu_init(sd);
597 if (ret)
598 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600599
Tejun Heo0fe1e002009-10-29 22:34:14 +0900600 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601
602 return 0;
603
Miaohe Lind80b64f2020-01-04 16:56:49 +0800604free_save_area:
605 __free_page(sd->save_area);
606free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900607 kfree(sd);
Sean Christophersonb95c2212021-04-21 19:11:22 -0700608 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609
610}
611
Alexander Graffd6fa732020-09-25 16:34:19 +0200612static int direct_access_msr_slot(u32 msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800613{
Alexander Graffd6fa732020-09-25 16:34:19 +0200614 u32 i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800615
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100616 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
Alexander Graffd6fa732020-09-25 16:34:19 +0200617 if (direct_access_msrs[i].index == msr)
618 return i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800619
Alexander Graffd6fa732020-09-25 16:34:19 +0200620 return -ENOENT;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100621}
622
Alexander Graffd6fa732020-09-25 16:34:19 +0200623static void set_shadow_msr_intercept(struct kvm_vcpu *vcpu, u32 msr, int read,
624 int write)
625{
626 struct vcpu_svm *svm = to_svm(vcpu);
627 int slot = direct_access_msr_slot(msr);
628
629 if (slot == -ENOENT)
630 return;
631
632 /* Set the shadow bitmaps to the desired intercept states */
633 if (read)
634 set_bit(slot, svm->shadow_msr_intercept.read);
635 else
636 clear_bit(slot, svm->shadow_msr_intercept.read);
637
638 if (write)
639 set_bit(slot, svm->shadow_msr_intercept.write);
640 else
641 clear_bit(slot, svm->shadow_msr_intercept.write);
642}
643
644static bool valid_msr_intercept(u32 index)
645{
646 return direct_access_msr_slot(index) != -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647}
648
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200649static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100650{
651 u8 bit_write;
652 unsigned long tmp;
653 u32 offset;
654 u32 *msrpm;
655
656 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
657 to_svm(vcpu)->msrpm;
658
659 offset = svm_msrpm_offset(msr);
660 bit_write = 2 * (msr & 0x0f) + 1;
661 tmp = msrpm[offset];
662
663 BUG_ON(offset == MSR_INVALID);
664
665 return !!test_bit(bit_write, &tmp);
666}
667
Alexander Graffd6fa732020-09-25 16:34:19 +0200668static void set_msr_interception_bitmap(struct kvm_vcpu *vcpu, u32 *msrpm,
669 u32 msr, int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670{
Joerg Roedel455716f2010-03-01 15:34:35 +0100671 u8 bit_read, bit_write;
672 unsigned long tmp;
673 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100675 /*
676 * If this warning triggers extend the direct_access_msrs list at the
677 * beginning of the file
678 */
679 WARN_ON(!valid_msr_intercept(msr));
680
Alexander Graffd6fa732020-09-25 16:34:19 +0200681 /* Enforce non allowed MSRs to trap */
682 if (read && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ))
683 read = 0;
684
685 if (write && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE))
686 write = 0;
687
Joerg Roedel455716f2010-03-01 15:34:35 +0100688 offset = svm_msrpm_offset(msr);
689 bit_read = 2 * (msr & 0x0f);
690 bit_write = 2 * (msr & 0x0f) + 1;
691 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800692
Joerg Roedel455716f2010-03-01 15:34:35 +0100693 BUG_ON(offset == MSR_INVALID);
694
695 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
696 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
697
698 msrpm[offset] = tmp;
Vineeth Pillaic4327f12021-06-03 15:14:39 +0000699
700 svm_hv_vmcb_dirty_nested_enlightenments(vcpu);
701
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702}
703
Tom Lendacky376c6d22020-12-10 11:10:06 -0600704void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
705 int read, int write)
Alexander Graffd6fa732020-09-25 16:34:19 +0200706{
707 set_shadow_msr_intercept(vcpu, msr, read, write);
708 set_msr_interception_bitmap(vcpu, msrpm, msr, read, write);
709}
710
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300711u32 *svm_vcpu_alloc_msrpm(void)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100712{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400713 unsigned int order = get_order(MSRPM_SIZE);
714 struct page *pages = alloc_pages(GFP_KERNEL_ACCOUNT, order);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200715 u32 *msrpm;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100716
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300717 if (!pages)
718 return NULL;
719
720 msrpm = page_address(pages);
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400721 memset(msrpm, 0xff, PAGE_SIZE * (1 << order));
Joerg Roedelf65c2292008-02-13 18:58:46 +0100722
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200723 return msrpm;
724}
725
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300726void svm_vcpu_init_msrpm(struct kvm_vcpu *vcpu, u32 *msrpm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800727{
Joerg Roedelf65c2292008-02-13 18:58:46 +0100728 int i;
729
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100730 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
731 if (!direct_access_msrs[i].always)
732 continue;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200733 set_msr_interception(vcpu, msrpm, direct_access_msrs[i].index, 1, 1);
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100734 }
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300735}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300737
738void svm_vcpu_free_msrpm(u32 *msrpm)
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300739{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400740 __free_pages(virt_to_page(msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741}
742
Alexander Graffd6fa732020-09-25 16:34:19 +0200743static void svm_msr_filter_changed(struct kvm_vcpu *vcpu)
744{
745 struct vcpu_svm *svm = to_svm(vcpu);
746 u32 i;
747
748 /*
749 * Set intercept permissions for all direct access MSRs again. They
750 * will automatically get filtered through the MSR filter, so we are
751 * back in sync after this.
752 */
753 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
754 u32 msr = direct_access_msrs[i].index;
755 u32 read = test_bit(i, svm->shadow_msr_intercept.read);
756 u32 write = test_bit(i, svm->shadow_msr_intercept.write);
757
758 set_msr_interception_bitmap(vcpu, svm->msrpm, msr, read, write);
Anthony Liguoric8681332007-04-30 09:48:11 +0300759 }
760}
761
Joerg Roedel323c3d82010-03-01 15:34:37 +0100762static void add_msr_offset(u32 offset)
763{
764 int i;
765
766 for (i = 0; i < MSRPM_OFFSETS; ++i) {
767
768 /* Offset already in list? */
769 if (msrpm_offsets[i] == offset)
770 return;
771
772 /* Slot used by another offset? */
773 if (msrpm_offsets[i] != MSR_INVALID)
774 continue;
775
776 /* Add offset to list */
777 msrpm_offsets[i] = offset;
778
779 return;
780 }
781
782 /*
783 * If this BUG triggers the msrpm_offsets table has an overflow. Just
784 * increase MSRPM_OFFSETS in this case.
785 */
786 BUG();
787}
788
789static void init_msrpm_offsets(void)
790{
791 int i;
792
793 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
794
795 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
796 u32 offset;
797
798 offset = svm_msrpm_offset(direct_access_msrs[i].index);
799 BUG_ON(offset == MSR_INVALID);
800
801 add_msr_offset(offset);
802 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803}
804
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200805static void svm_enable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200807 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500809 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200810 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
811 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
812 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
813 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800814}
815
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200816static void svm_disable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200818 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800819
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500820 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200821 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
822 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
823 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
824 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800825}
826
Joerg Roedel883b0a92020-03-24 10:41:52 +0100827void disable_nmi_singlestep(struct vcpu_svm *svm)
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200828{
829 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500830
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200831 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
832 /* Clear our flags if they were not set by the guest */
833 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
834 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
835 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
836 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
837 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200838}
839
Babu Moger8566ac82018-03-16 16:37:26 -0400840static void grow_ple_window(struct kvm_vcpu *vcpu)
841{
842 struct vcpu_svm *svm = to_svm(vcpu);
843 struct vmcb_control_area *control = &svm->vmcb->control;
844 int old = control->pause_filter_count;
845
846 control->pause_filter_count = __grow_ple_window(old,
847 pause_filter_count,
848 pause_filter_count_grow,
849 pause_filter_count_max);
850
Peter Xu4f75bcc2019-09-06 10:17:22 +0800851 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200852 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800853 trace_kvm_ple_window_update(vcpu->vcpu_id,
854 control->pause_filter_count, old);
855 }
Babu Moger8566ac82018-03-16 16:37:26 -0400856}
857
858static void shrink_ple_window(struct kvm_vcpu *vcpu)
859{
860 struct vcpu_svm *svm = to_svm(vcpu);
861 struct vmcb_control_area *control = &svm->vmcb->control;
862 int old = control->pause_filter_count;
863
864 control->pause_filter_count =
865 __shrink_ple_window(old,
866 pause_filter_count,
867 pause_filter_count_shrink,
868 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800869 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200870 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800871 trace_kvm_ple_window_update(vcpu->vcpu_id,
872 control->pause_filter_count, old);
873 }
Babu Moger8566ac82018-03-16 16:37:26 -0400874}
875
Li RongQingdd58f3c2020-02-23 16:13:12 +0800876static void svm_hardware_teardown(void)
877{
878 int cpu;
879
Sean Christopherson4cafd0c2021-04-21 19:11:20 -0700880 sev_hardware_teardown();
Li RongQingdd58f3c2020-02-23 16:13:12 +0800881
882 for_each_possible_cpu(cpu)
883 svm_cpu_uninit(cpu);
884
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400885 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT),
886 get_order(IOPM_SIZE));
Li RongQingdd58f3c2020-02-23 16:13:12 +0800887 iopm_base = 0;
888}
889
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890static void init_seg(struct vmcb_seg *seg)
891{
892 seg->selector = 0;
893 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +0100894 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 seg->limit = 0xffff;
896 seg->base = 0;
897}
898
899static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
900{
901 seg->selector = 0;
902 seg->attrib = SVM_SELECTOR_P_MASK | type;
903 seg->limit = 0xffff;
904 seg->base = 0;
905}
906
Ilias Stamatis307a94c2021-05-26 19:44:13 +0100907static u64 svm_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
908{
909 struct vcpu_svm *svm = to_svm(vcpu);
910
911 return svm->nested.ctl.tsc_offset;
912}
913
914static u64 svm_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
915{
Maxim Levitsky5228eb92021-09-14 18:48:24 +0300916 struct vcpu_svm *svm = to_svm(vcpu);
917
918 return svm->tsc_ratio_msr;
Ilias Stamatis307a94c2021-05-26 19:44:13 +0100919}
920
Ilias Stamatisedcfe542021-05-26 19:44:15 +0100921static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -1000922{
923 struct vcpu_svm *svm = to_svm(vcpu);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -1000924
Ilias Stamatisedcfe542021-05-26 19:44:15 +0100925 svm->vmcb01.ptr->control.tsc_offset = vcpu->arch.l1_tsc_offset;
926 svm->vmcb->control.tsc_offset = offset;
Joerg Roedel06e78522020-06-25 10:03:23 +0200927 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -1000928}
929
Maxim Levitsky5228eb92021-09-14 18:48:24 +0300930void svm_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
Ilias Stamatis1ab92872021-06-07 11:54:38 +0100931{
932 wrmsrl(MSR_AMD64_TSC_RATIO, multiplier);
933}
934
Sean Christopherson3b195ac2021-05-04 10:17:22 -0700935/* Evaluate instruction intercepts that depend on guest CPUID features. */
936static void svm_recalc_instruction_intercepts(struct kvm_vcpu *vcpu,
937 struct vcpu_svm *svm)
Babu Moger4407a792020-09-11 14:29:19 -0500938{
939 /*
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -0800940 * Intercept INVPCID if shadow paging is enabled to sync/free shadow
941 * roots, or if INVPCID is disabled in the guest to inject #UD.
Babu Moger4407a792020-09-11 14:29:19 -0500942 */
943 if (kvm_cpu_cap_has(X86_FEATURE_INVPCID)) {
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -0800944 if (!npt_enabled ||
945 !guest_cpuid_has(&svm->vcpu, X86_FEATURE_INVPCID))
Babu Moger4407a792020-09-11 14:29:19 -0500946 svm_set_intercept(svm, INTERCEPT_INVPCID);
947 else
948 svm_clr_intercept(svm, INTERCEPT_INVPCID);
949 }
Sean Christopherson3b195ac2021-05-04 10:17:22 -0700950
951 if (kvm_cpu_cap_has(X86_FEATURE_RDTSCP)) {
952 if (guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
953 svm_clr_intercept(svm, INTERCEPT_RDTSCP);
954 else
955 svm_set_intercept(svm, INTERCEPT_RDTSCP);
956 }
Babu Moger4407a792020-09-11 14:29:19 -0500957}
958
Paolo Bonzini36e81942021-09-23 12:46:07 -0400959static inline void init_vmcb_after_set_cpuid(struct kvm_vcpu *vcpu)
960{
961 struct vcpu_svm *svm = to_svm(vcpu);
962
963 if (guest_cpuid_is_intel(vcpu)) {
964 /*
965 * We must intercept SYSENTER_EIP and SYSENTER_ESP
966 * accesses because the processor only stores 32 bits.
967 * For the same reason we cannot use virtual VMLOAD/VMSAVE.
968 */
969 svm_set_intercept(svm, INTERCEPT_VMLOAD);
970 svm_set_intercept(svm, INTERCEPT_VMSAVE);
971 svm->vmcb->control.virt_ext &= ~VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
972
973 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 0, 0);
974 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 0, 0);
975 } else {
976 /*
977 * If hardware supports Virtual VMLOAD VMSAVE then enable it
978 * in VMCB and clear intercepts to avoid #VMEXIT.
979 */
980 if (vls) {
981 svm_clr_intercept(svm, INTERCEPT_VMLOAD);
982 svm_clr_intercept(svm, INTERCEPT_VMSAVE);
983 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
984 }
985 /* No need to intercept these MSRs */
986 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 1, 1);
987 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 1, 1);
988 }
989}
990
Paolo Bonzini63129752021-03-02 14:40:39 -0500991static void init_vmcb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992{
Paolo Bonzini63129752021-03-02 14:40:39 -0500993 struct vcpu_svm *svm = to_svm(vcpu);
Joerg Roedele6101a92008-02-13 18:58:45 +0100994 struct vmcb_control_area *control = &svm->vmcb->control;
995 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996
Babu Moger830bd712020-09-11 14:28:50 -0500997 svm_set_intercept(svm, INTERCEPT_CR0_READ);
998 svm_set_intercept(svm, INTERCEPT_CR3_READ);
999 svm_set_intercept(svm, INTERCEPT_CR4_READ);
1000 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1001 svm_set_intercept(svm, INTERCEPT_CR3_WRITE);
1002 svm_set_intercept(svm, INTERCEPT_CR4_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001003 if (!kvm_vcpu_apicv_active(vcpu))
Babu Moger830bd712020-09-11 14:28:50 -05001004 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005
Paolo Bonzini5315c712014-03-03 13:08:29 +01001006 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007
Joerg Roedel18c918c2010-11-30 18:03:59 +01001008 set_exception_intercept(svm, PF_VECTOR);
1009 set_exception_intercept(svm, UD_VECTOR);
1010 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001011 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001012 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001013 /*
1014 * Guest access to VMware backdoor ports could legitimately
1015 * trigger #GP because of TSS I/O permission bitmap.
1016 * We intercept those #GP and allow access to them anyway
Sean Christopherson0b0be062022-01-20 01:07:13 +00001017 * as VMware does. Don't intercept #GP for SEV guests as KVM can't
1018 * decrypt guest memory to decode the faulting instruction.
Liran Alon97184202018-03-12 13:12:52 +02001019 */
Sean Christopherson0b0be062022-01-20 01:07:13 +00001020 if (enable_vmware_backdoor && !sev_guest(vcpu->kvm))
Liran Alon97184202018-03-12 13:12:52 +02001021 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022
Joerg Roedela284ba52020-06-25 10:03:24 +02001023 svm_set_intercept(svm, INTERCEPT_INTR);
1024 svm_set_intercept(svm, INTERCEPT_NMI);
Maxim Levitsky4b639a92021-07-07 15:51:00 +03001025
1026 if (intercept_smi)
1027 svm_set_intercept(svm, INTERCEPT_SMI);
1028
Joerg Roedela284ba52020-06-25 10:03:24 +02001029 svm_set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
1030 svm_set_intercept(svm, INTERCEPT_RDPMC);
1031 svm_set_intercept(svm, INTERCEPT_CPUID);
1032 svm_set_intercept(svm, INTERCEPT_INVD);
1033 svm_set_intercept(svm, INTERCEPT_INVLPG);
1034 svm_set_intercept(svm, INTERCEPT_INVLPGA);
1035 svm_set_intercept(svm, INTERCEPT_IOIO_PROT);
1036 svm_set_intercept(svm, INTERCEPT_MSR_PROT);
1037 svm_set_intercept(svm, INTERCEPT_TASK_SWITCH);
1038 svm_set_intercept(svm, INTERCEPT_SHUTDOWN);
1039 svm_set_intercept(svm, INTERCEPT_VMRUN);
1040 svm_set_intercept(svm, INTERCEPT_VMMCALL);
1041 svm_set_intercept(svm, INTERCEPT_VMLOAD);
1042 svm_set_intercept(svm, INTERCEPT_VMSAVE);
1043 svm_set_intercept(svm, INTERCEPT_STGI);
1044 svm_set_intercept(svm, INTERCEPT_CLGI);
1045 svm_set_intercept(svm, INTERCEPT_SKINIT);
1046 svm_set_intercept(svm, INTERCEPT_WBINVD);
1047 svm_set_intercept(svm, INTERCEPT_XSETBV);
1048 svm_set_intercept(svm, INTERCEPT_RDPRU);
1049 svm_set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050
Paolo Bonzini63129752021-03-02 14:40:39 -05001051 if (!kvm_mwait_in_guest(vcpu->kvm)) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001052 svm_set_intercept(svm, INTERCEPT_MONITOR);
1053 svm_set_intercept(svm, INTERCEPT_MWAIT);
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001054 }
1055
Paolo Bonzini63129752021-03-02 14:40:39 -05001056 if (!kvm_hlt_in_guest(vcpu->kvm))
Joerg Roedela284ba52020-06-25 10:03:24 +02001057 svm_set_intercept(svm, INTERCEPT_HLT);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001058
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001059 control->iopm_base_pa = __sme_set(iopm_base);
1060 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 control->int_ctl = V_INTR_MASKING_MASK;
1062
1063 init_seg(&save->es);
1064 init_seg(&save->ss);
1065 init_seg(&save->ds);
1066 init_seg(&save->fs);
1067 init_seg(&save->gs);
1068
1069 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001070 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001071 /* Executable/Readable Code Segment */
1072 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1073 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1074 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075
Sean Christopherson4f117ce2021-07-13 09:32:41 -07001076 save->gdtr.base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077 save->gdtr.limit = 0xffff;
Sean Christopherson4f117ce2021-07-13 09:32:41 -07001078 save->idtr.base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079 save->idtr.limit = 0xffff;
1080
1081 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1082 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1083
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001084 if (npt_enabled) {
1085 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001086 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedela284ba52020-06-25 10:03:24 +02001087 svm_clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001088 clr_exception_intercept(svm, PF_VECTOR);
Babu Moger830bd712020-09-11 14:28:50 -05001089 svm_clr_intercept(svm, INTERCEPT_CR3_READ);
1090 svm_clr_intercept(svm, INTERCEPT_CR3_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001091 save->g_pat = vcpu->arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001092 save->cr3 = 0;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001093 }
Cathy Avery193015a2021-01-12 11:43:13 -05001094 svm->current_vmcb->asid_generation = 0;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001095 svm->asid = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001096
Maxim Levitskyc74ad082021-05-03 15:54:43 +03001097 svm->nested.vmcb12_gpa = INVALID_GPA;
1098 svm->nested.last_vmcb12_gpa = INVALID_GPA;
Joerg Roedel2af91942009-08-07 11:49:28 +02001099
Paolo Bonzini63129752021-03-02 14:40:39 -05001100 if (!kvm_pause_in_guest(vcpu->kvm)) {
Babu Moger8566ac82018-03-16 16:37:26 -04001101 control->pause_filter_count = pause_filter_count;
1102 if (pause_filter_thresh)
1103 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedela284ba52020-06-25 10:03:24 +02001104 svm_set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001105 } else {
Joerg Roedela284ba52020-06-25 10:03:24 +02001106 svm_clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001107 }
1108
Sean Christopherson3b195ac2021-05-04 10:17:22 -07001109 svm_recalc_instruction_intercepts(vcpu, svm);
Babu Moger4407a792020-09-11 14:29:19 -05001110
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001111 /*
Babu Mogerd00b99c2021-02-17 10:56:04 -05001112 * If the host supports V_SPEC_CTRL then disable the interception
1113 * of MSR_IA32_SPEC_CTRL.
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001114 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05001115 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
1116 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
1117
Paolo Bonzini63129752021-03-02 14:40:39 -05001118 if (kvm_vcpu_apicv_active(vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001119 avic_init_vmcb(svm);
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001120
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001121 if (vgif) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001122 svm_clr_intercept(svm, INTERCEPT_STGI);
1123 svm_clr_intercept(svm, INTERCEPT_CLGI);
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001124 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1125 }
1126
Paolo Bonzini63129752021-03-02 14:40:39 -05001127 if (sev_guest(vcpu->kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001128 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001129 clr_exception_intercept(svm, UD_VECTOR);
Tom Lendacky376c6d22020-12-10 11:10:06 -06001130
Paolo Bonzini63129752021-03-02 14:40:39 -05001131 if (sev_es_guest(vcpu->kvm)) {
Tom Lendacky376c6d22020-12-10 11:10:06 -06001132 /* Perform SEV-ES specific VMCB updates */
1133 sev_es_init_vmcb(svm);
1134 }
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001135 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001136
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00001137 svm_hv_init_vmcb(svm->vmcb);
Paolo Bonzini36e81942021-09-23 12:46:07 -04001138 init_vmcb_after_set_cpuid(vcpu);
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00001139
Joerg Roedel06e78522020-06-25 10:03:23 +02001140 vmcb_mark_all_dirty(svm->vmcb);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001141
Joerg Roedel2af91942009-08-07 11:49:28 +02001142 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001143}
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001144
Sean Christopherson9ebe5302021-09-20 17:03:02 -07001145static void __svm_vcpu_reset(struct kvm_vcpu *vcpu)
1146{
1147 struct vcpu_svm *svm = to_svm(vcpu);
1148
1149 svm_vcpu_init_msrpm(vcpu, svm->msrpm);
1150
1151 svm_init_osvw(vcpu);
1152 vcpu->arch.microcode_version = 0x01000065;
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001153 svm->tsc_ratio_msr = kvm_default_tsc_scaling_ratio;
Sean Christopherson9ebe5302021-09-20 17:03:02 -07001154
1155 if (sev_es_guest(vcpu->kvm))
1156 sev_es_vcpu_reset(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001157}
1158
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001159static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001160{
1161 struct vcpu_svm *svm = to_svm(vcpu);
1162
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001163 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02001164 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001165
Paolo Bonzini63129752021-03-02 14:40:39 -05001166 init_vmcb(vcpu);
Sean Christopherson9ebe5302021-09-20 17:03:02 -07001167
1168 if (!init_event)
1169 __svm_vcpu_reset(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001170}
1171
Cathy Avery4995a362021-01-13 07:07:52 -05001172void svm_switch_vmcb(struct vcpu_svm *svm, struct kvm_vmcb_info *target_vmcb)
1173{
1174 svm->current_vmcb = target_vmcb;
1175 svm->vmcb = target_vmcb->ptr;
Cathy Avery4995a362021-01-13 07:07:52 -05001176}
1177
Sean Christopherson987b2592019-12-18 13:54:55 -08001178static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001180 struct vcpu_svm *svm;
Cathy Avery4995a362021-01-13 07:07:52 -05001181 struct page *vmcb01_page;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001182 struct page *vmsa_page = NULL;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001183 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001185 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
1186 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001187
Joerg Roedelf65c2292008-02-13 18:58:46 +01001188 err = -ENOMEM;
Cathy Avery4995a362021-01-13 07:07:52 -05001189 vmcb01_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1190 if (!vmcb01_page)
Sean Christopherson987b2592019-12-18 13:54:55 -08001191 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001192
Paolo Bonzini63129752021-03-02 14:40:39 -05001193 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001194 /*
1195 * SEV-ES guests require a separate VMSA page used to contain
1196 * the encrypted register state of the guest.
1197 */
1198 vmsa_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1199 if (!vmsa_page)
1200 goto error_free_vmcb_page;
Tom Lendackyed02b212020-12-10 11:10:01 -06001201
1202 /*
1203 * SEV-ES guests maintain an encrypted version of their FPU
1204 * state which is restored and saved on VMRUN and VMEXIT.
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02001205 * Mark vcpu->arch.guest_fpu->fpstate as scratch so it won't
1206 * do xsave/xrstor on it.
Tom Lendackyed02b212020-12-10 11:10:01 -06001207 */
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02001208 fpstate_set_confidential(&vcpu->arch.guest_fpu);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001209 }
1210
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001211 err = avic_init_vcpu(svm);
1212 if (err)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001213 goto error_free_vmsa_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001214
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001215 svm->msrpm = svm_vcpu_alloc_msrpm();
Chen Zhou054409a2020-11-17 10:54:26 +08001216 if (!svm->msrpm) {
1217 err = -ENOMEM;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001218 goto error_free_vmsa_page;
Chen Zhou054409a2020-11-17 10:54:26 +08001219 }
Alexander Grafb286d5d2008-11-25 20:17:05 +01001220
Cathy Avery4995a362021-01-13 07:07:52 -05001221 svm->vmcb01.ptr = page_address(vmcb01_page);
1222 svm->vmcb01.pa = __sme_set(page_to_pfn(vmcb01_page) << PAGE_SHIFT);
Sean Christopherson9ebe5302021-09-20 17:03:02 -07001223 svm_switch_vmcb(svm, &svm->vmcb01);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001224
1225 if (vmsa_page)
Peter Gondab67a4cc2021-10-21 10:42:59 -07001226 svm->sev_es.vmsa = page_address(vmsa_page);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001227
Michael Rotha7fc06d2021-02-02 13:01:26 -06001228 svm->guest_state_loaded = false;
Cathy Avery4995a362021-01-13 07:07:52 -05001229
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001230 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08001231
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001232error_free_vmsa_page:
1233 if (vmsa_page)
1234 __free_page(vmsa_page);
Maxim Levitsky8d22b902020-08-27 20:11:42 +03001235error_free_vmcb_page:
Cathy Avery4995a362021-01-13 07:07:52 -05001236 __free_page(vmcb01_page);
Sean Christopherson987b2592019-12-18 13:54:55 -08001237out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001238 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001239}
1240
Jim Mattsonfd65d312018-05-22 09:54:20 -07001241static void svm_clear_current_vmcb(struct vmcb *vmcb)
1242{
1243 int i;
1244
1245 for_each_online_cpu(i)
1246 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
1247}
1248
Avi Kivity6aa8b732006-12-10 02:21:36 -08001249static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1250{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001251 struct vcpu_svm *svm = to_svm(vcpu);
1252
Jim Mattsonfd65d312018-05-22 09:54:20 -07001253 /*
1254 * The vmcb page can be recycled, causing a false negative in
1255 * svm_vcpu_load(). So, ensure that no logical CPU has this
1256 * vmcb page recorded as its current vmcb.
1257 */
1258 svm_clear_current_vmcb(svm->vmcb);
1259
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03001260 svm_free_nested(svm);
1261
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001262 sev_free_vcpu(vcpu);
1263
Cathy Avery4995a362021-01-13 07:07:52 -05001264 __free_page(pfn_to_page(__sme_clr(svm->vmcb01.pa) >> PAGE_SHIFT));
Krish Sadhukhan47903dc2021-04-12 17:56:05 -04001265 __free_pages(virt_to_page(svm->msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001266}
1267
Michael Rotha7fc06d2021-02-02 13:01:26 -06001268static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001269{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001270 struct vcpu_svm *svm = to_svm(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001271 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity0cc50642007-03-25 12:07:27 +02001272
Tom Lendackyce7ea0c2021-05-06 15:14:41 -05001273 if (sev_es_guest(vcpu->kvm))
1274 sev_es_unmap_ghcb(svm);
1275
Michael Rotha7fc06d2021-02-02 13:01:26 -06001276 if (svm->guest_state_loaded)
1277 return;
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001278
Michael Rotha7fc06d2021-02-02 13:01:26 -06001279 /*
Michael Rotha7fc06d2021-02-02 13:01:26 -06001280 * Save additional host state that will be restored on VMEXIT (sev-es)
1281 * or subsequent vmload of host save area.
1282 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001283 if (sev_es_guest(vcpu->kvm)) {
Michael Rotha7fc06d2021-02-02 13:01:26 -06001284 sev_es_prepare_guest_switch(svm, vcpu->cpu);
Tom Lendacky86137772020-12-10 11:10:07 -06001285 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06001286 vmsave(__sme_page_pa(sd->save_area));
Tom Lendacky86137772020-12-10 11:10:07 -06001287 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001288
Maxim Levitskyf8006502021-09-14 18:48:23 +03001289 if (tsc_scaling) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001290 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1291 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1292 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1293 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1294 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001295 }
Michael Rotha7fc06d2021-02-02 13:01:26 -06001296
Sean Christopherson0caa0a72021-05-04 10:17:25 -07001297 if (likely(tsc_aux_uret_slot >= 0))
1298 kvm_set_user_return_msr(tsc_aux_uret_slot, svm->tsc_aux, -1ull);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001299
Michael Rotha7fc06d2021-02-02 13:01:26 -06001300 svm->guest_state_loaded = true;
1301}
1302
1303static void svm_prepare_host_switch(struct kvm_vcpu *vcpu)
1304{
Sean Christopherson844d69c2021-04-23 15:34:04 -07001305 to_svm(vcpu)->guest_state_loaded = false;
Michael Rotha7fc06d2021-02-02 13:01:26 -06001306}
1307
1308static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1309{
1310 struct vcpu_svm *svm = to_svm(vcpu);
1311 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
1312
Ashok Raj15d45072018-02-01 22:59:43 +01001313 if (sd->current_vmcb != svm->vmcb) {
1314 sd->current_vmcb = svm->vmcb;
1315 indirect_branch_prediction_barrier();
1316 }
Maxim Levitskybf5f6b92021-08-10 23:52:49 +03001317 if (kvm_vcpu_apicv_active(vcpu))
1318 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001319}
1320
1321static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1322{
Maxim Levitskybf5f6b92021-08-10 23:52:49 +03001323 if (kvm_vcpu_apicv_active(vcpu))
1324 avic_vcpu_put(vcpu);
1325
Michael Rotha7fc06d2021-02-02 13:01:26 -06001326 svm_prepare_host_switch(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001327
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001328 ++vcpu->stat.host_state_reload;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001329}
1330
Avi Kivity6aa8b732006-12-10 02:21:36 -08001331static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1332{
Ladi Prosek9b611742017-06-21 09:06:59 +02001333 struct vcpu_svm *svm = to_svm(vcpu);
1334 unsigned long rflags = svm->vmcb->save.rflags;
1335
1336 if (svm->nmi_singlestep) {
1337 /* Hide our flags if they were not set by the guest */
1338 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1339 rflags &= ~X86_EFLAGS_TF;
1340 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1341 rflags &= ~X86_EFLAGS_RF;
1342 }
1343 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001344}
1345
1346static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1347{
Ladi Prosek9b611742017-06-21 09:06:59 +02001348 if (to_svm(vcpu)->nmi_singlestep)
1349 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1350
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001351 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001352 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001353 * (caused by either a task switch or an inter-privilege IRET),
1354 * so we do not need to update the CPL here.
1355 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001356 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001357}
1358
Marc Orrc5063552021-12-09 07:52:57 -08001359static bool svm_get_if_flag(struct kvm_vcpu *vcpu)
1360{
1361 struct vmcb *vmcb = to_svm(vcpu)->vmcb;
1362
1363 return sev_es_guest(vcpu->kvm)
1364 ? vmcb->control.int_state & SVM_GUEST_INTERRUPT_MASK
1365 : kvm_get_rflags(vcpu) & X86_EFLAGS_IF;
1366}
1367
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001368static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1369{
Lai Jiangshan40e49c42021-11-08 20:43:55 +08001370 kvm_register_mark_available(vcpu, reg);
1371
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001372 switch (reg) {
1373 case VCPU_EXREG_PDPTR:
Lai Jiangshan40e49c42021-11-08 20:43:55 +08001374 /*
1375 * When !npt_enabled, mmu->pdptrs[] is already available since
1376 * it is always updated per SDM when moving to CRs.
1377 */
1378 if (npt_enabled)
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001379 load_pdptrs(vcpu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001380 break;
1381 default:
Sean Christopherson67369272021-07-02 15:04:25 -07001382 KVM_BUG_ON(1, vcpu->kvm);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001383 }
1384}
1385
Suravee Suthikulpanite14b7782020-05-06 08:17:55 -05001386static void svm_set_vintr(struct vcpu_svm *svm)
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001387{
1388 struct vmcb_control_area *control;
1389
Maxim Levitskyf1577ab2021-07-13 17:20:16 +03001390 /*
1391 * The following fields are ignored when AVIC is enabled
1392 */
1393 WARN_ON(kvm_apicv_activated(svm->vcpu.kvm));
1394
Joerg Roedela284ba52020-06-25 10:03:24 +02001395 svm_set_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001396
1397 /*
1398 * This is just a dummy VINTR to actually cause a vmexit to happen.
1399 * Actual injection of virtual interrupts happens through EVENTINJ.
1400 */
1401 control = &svm->vmcb->control;
1402 control->int_vector = 0x0;
1403 control->int_ctl &= ~V_INTR_PRIO_MASK;
1404 control->int_ctl |= V_IRQ_MASK |
1405 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedel06e78522020-06-25 10:03:23 +02001406 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001407}
1408
Alexander Graff0b85052008-11-25 20:17:01 +01001409static void svm_clear_vintr(struct vcpu_svm *svm)
1410{
Joerg Roedela284ba52020-06-25 10:03:24 +02001411 svm_clr_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001412
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001413 /* Drop int_ctl fields related to VINTR injection. */
Maxim Levitsky0f923e02021-07-15 01:56:24 +03001414 svm->vmcb->control.int_ctl &= ~V_IRQ_INJECTION_BITS_MASK;
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001415 if (is_guest_mode(&svm->vcpu)) {
Maxim Levitsky0f923e02021-07-15 01:56:24 +03001416 svm->vmcb01.ptr->control.int_ctl &= ~V_IRQ_INJECTION_BITS_MASK;
Paolo Bonzinifb7333d2020-06-08 07:11:47 -04001417
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001418 WARN_ON((svm->vmcb->control.int_ctl & V_TPR_MASK) !=
1419 (svm->nested.ctl.int_ctl & V_TPR_MASK));
Maxim Levitsky0f923e02021-07-15 01:56:24 +03001420
1421 svm->vmcb->control.int_ctl |= svm->nested.ctl.int_ctl &
1422 V_IRQ_INJECTION_BITS_MASK;
Maxim Levitskyaee77e12021-09-14 18:48:12 +03001423
1424 svm->vmcb->control.int_vector = svm->nested.ctl.int_vector;
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001425 }
1426
Joerg Roedel06e78522020-06-25 10:03:23 +02001427 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001428}
1429
Avi Kivity6aa8b732006-12-10 02:21:36 -08001430static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1431{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001432 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001433 struct vmcb_save_area *save01 = &to_svm(vcpu)->vmcb01.ptr->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434
1435 switch (seg) {
1436 case VCPU_SREG_CS: return &save->cs;
1437 case VCPU_SREG_DS: return &save->ds;
1438 case VCPU_SREG_ES: return &save->es;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001439 case VCPU_SREG_FS: return &save01->fs;
1440 case VCPU_SREG_GS: return &save01->gs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001441 case VCPU_SREG_SS: return &save->ss;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001442 case VCPU_SREG_TR: return &save01->tr;
1443 case VCPU_SREG_LDTR: return &save01->ldtr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001444 }
1445 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001446 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001447}
1448
1449static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1450{
1451 struct vmcb_seg *s = svm_seg(vcpu, seg);
1452
1453 return s->base;
1454}
1455
1456static void svm_get_segment(struct kvm_vcpu *vcpu,
1457 struct kvm_segment *var, int seg)
1458{
1459 struct vmcb_seg *s = svm_seg(vcpu, seg);
1460
1461 var->base = s->base;
1462 var->limit = s->limit;
1463 var->selector = s->selector;
1464 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1465 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1466 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1467 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1468 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1469 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1470 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301471
1472 /*
1473 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1474 * However, the SVM spec states that the G bit is not observed by the
1475 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1476 * So let's synthesize a legal G bit for all segments, this helps
1477 * running KVM nested. It also helps cross-vendor migration, because
1478 * Intel's vmentry has a check on the 'G' bit.
1479 */
1480 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001481
Joerg Roedele0231712010-02-24 18:59:10 +01001482 /*
1483 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001484 * for cross vendor migration purposes by "not present"
1485 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001486 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001487
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001488 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001489 case VCPU_SREG_TR:
1490 /*
1491 * Work around a bug where the busy flag in the tr selector
1492 * isn't exposed
1493 */
Amit Shahc0d09822008-10-27 09:04:18 +00001494 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001495 break;
1496 case VCPU_SREG_DS:
1497 case VCPU_SREG_ES:
1498 case VCPU_SREG_FS:
1499 case VCPU_SREG_GS:
1500 /*
1501 * The accessed bit must always be set in the segment
1502 * descriptor cache, although it can be cleared in the
1503 * descriptor, the cached bit always remains at 1. Since
1504 * Intel has a check on this, set it here to support
1505 * cross-vendor migration.
1506 */
1507 if (!var->unusable)
1508 var->type |= 0x1;
1509 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001510 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001511 /*
1512 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001513 * descriptor is left as 1, although the whole segment has
1514 * been made unusable. Clear it here to pass an Intel VMX
1515 * entry check when cross vendor migrating.
1516 */
1517 if (var->unusable)
1518 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001519 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001520 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001521 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001522 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001523}
1524
Izik Eidus2e4d2652008-03-24 19:38:34 +02001525static int svm_get_cpl(struct kvm_vcpu *vcpu)
1526{
1527 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1528
1529 return save->cpl;
1530}
1531
Gleb Natapov89a27f42010-02-16 10:51:48 +02001532static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001534 struct vcpu_svm *svm = to_svm(vcpu);
1535
Gleb Natapov89a27f42010-02-16 10:51:48 +02001536 dt->size = svm->vmcb->save.idtr.limit;
1537 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001538}
1539
Gleb Natapov89a27f42010-02-16 10:51:48 +02001540static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001542 struct vcpu_svm *svm = to_svm(vcpu);
1543
Gleb Natapov89a27f42010-02-16 10:51:48 +02001544 svm->vmcb->save.idtr.limit = dt->size;
1545 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001546 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547}
1548
Gleb Natapov89a27f42010-02-16 10:51:48 +02001549static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001551 struct vcpu_svm *svm = to_svm(vcpu);
1552
Gleb Natapov89a27f42010-02-16 10:51:48 +02001553 dt->size = svm->vmcb->save.gdtr.limit;
1554 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555}
1556
Gleb Natapov89a27f42010-02-16 10:51:48 +02001557static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001559 struct vcpu_svm *svm = to_svm(vcpu);
1560
Gleb Natapov89a27f42010-02-16 10:51:48 +02001561 svm->vmcb->save.gdtr.limit = dt->size;
1562 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001563 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564}
1565
Michael Roth405329f2021-12-16 11:13:54 -06001566static void svm_post_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1567{
1568 struct vcpu_svm *svm = to_svm(vcpu);
1569
1570 /*
1571 * For guests that don't set guest_state_protected, the cr3 update is
1572 * handled via kvm_mmu_load() while entering the guest. For guests
1573 * that do (SEV-ES/SEV-SNP), the cr3 update needs to be written to
1574 * VMCB save area now, since the save area will become the initial
1575 * contents of the VMSA, and future VMCB save area updates won't be
1576 * seen.
1577 */
1578 if (sev_es_guest(vcpu->kvm)) {
1579 svm->vmcb->save.cr3 = cr3;
1580 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
1581 }
1582}
1583
Joerg Roedel883b0a92020-03-24 10:41:52 +01001584void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001586 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001587 u64 hcr0 = cr0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001588
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001589#ifdef CONFIG_X86_64
Tom Lendackyf1c63662020-12-14 10:29:50 -05001590 if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001591 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001592 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001593 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001594 }
1595
Mike Dayd77c26f2007-10-08 09:02:08 -04001596 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001597 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001598 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001599 }
1600 }
1601#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001602 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02001603
1604 if (!npt_enabled)
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001605 hcr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02001606
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02001607 /*
1608 * re-enable caching here because the QEMU bios
1609 * does not do it - this results in some delay at
1610 * reboot
1611 */
1612 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001613 hcr0 &= ~(X86_CR0_CD | X86_CR0_NW);
1614
1615 svm->vmcb->save.cr0 = hcr0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001616 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001617
1618 /*
1619 * SEV-ES guests must always keep the CR intercepts cleared. CR
1620 * tracking is done using the CR write traps.
1621 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001622 if (sev_es_guest(vcpu->kvm))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001623 return;
1624
1625 if (hcr0 == cr0) {
1626 /* Selective CR0 write remains on. */
1627 svm_clr_intercept(svm, INTERCEPT_CR0_READ);
1628 svm_clr_intercept(svm, INTERCEPT_CR0_WRITE);
1629 } else {
1630 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1631 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1632 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001633}
1634
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07001635static bool svm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1636{
1637 return true;
1638}
1639
1640void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001641{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07001642 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Paolo Bonzinidc924b02020-11-15 09:44:18 -05001643 unsigned long old_cr4 = vcpu->arch.cr4;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02001644
1645 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Sean Christophersonf55ac302020-03-20 14:28:12 -07001646 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02001647
Joerg Roedelec077262008-04-09 14:15:28 +02001648 vcpu->arch.cr4 = cr4;
1649 if (!npt_enabled)
1650 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02001651 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02001652 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedel06e78522020-06-25 10:03:23 +02001653 vmcb_mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Jim Mattson2259c172020-10-29 10:06:48 -07001654
1655 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
1656 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001657}
1658
1659static void svm_set_segment(struct kvm_vcpu *vcpu,
1660 struct kvm_segment *var, int seg)
1661{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001662 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663 struct vmcb_seg *s = svm_seg(vcpu, seg);
1664
1665 s->base = var->base;
1666 s->limit = var->limit;
1667 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02001668 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1669 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1670 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1671 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
1672 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1673 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1674 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1675 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001676
1677 /*
1678 * This is always accurate, except if SYSRET returned to a segment
1679 * with SS.DPL != 3. Intel does not have this quirk, and always
1680 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1681 * would entail passing the CPL to userspace and back.
1682 */
1683 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02001684 /* This is symmetric with svm_get_segment() */
1685 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686
Joerg Roedel06e78522020-06-25 10:03:23 +02001687 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688}
1689
Jason Baronb6a7cc32021-01-14 22:27:54 -05001690static void svm_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001692 struct vcpu_svm *svm = to_svm(vcpu);
1693
Joerg Roedel18c918c2010-11-30 18:03:59 +01001694 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03001695
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001696 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001697 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01001698 set_exception_intercept(svm, BP_VECTOR);
Paolo Bonzini69869822020-07-10 17:48:06 +02001699 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001700}
1701
Tejun Heo0fe1e002009-10-29 22:34:14 +09001702static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001704 if (sd->next_asid > sd->max_asid) {
1705 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06001706 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001707 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001708 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709 }
1710
Cathy Avery193015a2021-01-12 11:43:13 -05001711 svm->current_vmcb->asid_generation = sd->asid_generation;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001712 svm->asid = sd->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001713}
1714
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001715static void svm_set_dr6(struct vcpu_svm *svm, unsigned long value)
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001716{
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001717 struct vmcb *vmcb = svm->vmcb;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001718
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001719 if (svm->vcpu.arch.guest_state_protected)
1720 return;
1721
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001722 if (unlikely(value != vmcb->save.dr6)) {
1723 vmcb->save.dr6 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001724 vmcb_mark_dirty(vmcb, VMCB_DR);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001725 }
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001726}
1727
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001728static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1729{
1730 struct vcpu_svm *svm = to_svm(vcpu);
1731
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001732 if (vcpu->arch.guest_state_protected)
1733 return;
1734
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001735 get_debugreg(vcpu->arch.db[0], 0);
1736 get_debugreg(vcpu->arch.db[1], 1);
1737 get_debugreg(vcpu->arch.db[2], 2);
1738 get_debugreg(vcpu->arch.db[3], 3);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001739 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001740 * We cannot reset svm->vmcb->save.dr6 to DR6_ACTIVE_LOW here,
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001741 * because db_interception might need it. We can do it before vmentry.
1742 */
Paolo Bonzini5679b802020-05-04 11:28:25 -04001743 vcpu->arch.dr6 = svm->vmcb->save.dr6;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001744 vcpu->arch.dr7 = svm->vmcb->save.dr7;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001745 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1746 set_dr_intercepts(svm);
1747}
1748
Gleb Natapov020df072010-04-13 10:05:23 +03001749static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001750{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001751 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001752
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001753 if (vcpu->arch.guest_state_protected)
1754 return;
1755
Gleb Natapov020df072010-04-13 10:05:23 +03001756 svm->vmcb->save.dr7 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001757 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758}
1759
Paolo Bonzini63129752021-03-02 14:40:39 -05001760static int pf_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001761{
Paolo Bonzini63129752021-03-02 14:40:39 -05001762 struct vcpu_svm *svm = to_svm(vcpu);
1763
Sean Christopherson6d1b8672021-03-04 17:10:56 -08001764 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001765 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001766
Paolo Bonzini63129752021-03-02 14:40:39 -05001767 return kvm_handle_page_fault(vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001768 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1769 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001770 svm->vmcb->control.insn_len);
1771}
1772
Paolo Bonzini63129752021-03-02 14:40:39 -05001773static int npf_interception(struct kvm_vcpu *vcpu)
Paolo Bonzinid0006532017-08-11 18:36:43 +02001774{
Paolo Bonzini63129752021-03-02 14:40:39 -05001775 struct vcpu_svm *svm = to_svm(vcpu);
1776
Sean Christopherson76ff3712021-06-24 19:03:54 -07001777 u64 fault_address = svm->vmcb->control.exit_info_2;
Paolo Bonzinid0006532017-08-11 18:36:43 +02001778 u64 error_code = svm->vmcb->control.exit_info_1;
1779
1780 trace_kvm_page_fault(fault_address, error_code);
Paolo Bonzini63129752021-03-02 14:40:39 -05001781 return kvm_mmu_page_fault(vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001782 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1783 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001784 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785}
1786
Paolo Bonzini63129752021-03-02 14:40:39 -05001787static int db_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001788{
Paolo Bonzini63129752021-03-02 14:40:39 -05001789 struct kvm_run *kvm_run = vcpu->run;
1790 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03001791
Paolo Bonzini63129752021-03-02 14:40:39 -05001792 if (!(vcpu->guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03001793 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02001794 !svm->nmi_singlestep) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001795 u32 payload = svm->vmcb->save.dr6 ^ DR6_ACTIVE_LOW;
Paolo Bonzini63129752021-03-02 14:40:39 -05001796 kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001797 return 1;
1798 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001799
Jan Kiszka6be7d302009-10-18 13:24:54 +02001800 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001801 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001802 /* Make sure we check for pending NMIs upon entry */
1803 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03001804 }
1805
Paolo Bonzini63129752021-03-02 14:40:39 -05001806 if (vcpu->guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01001807 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03001808 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Paolo Bonzinidee919d2020-05-04 09:34:10 -04001809 kvm_run->debug.arch.dr6 = svm->vmcb->save.dr6;
1810 kvm_run->debug.arch.dr7 = svm->vmcb->save.dr7;
Gleb Natapov44c11432009-05-11 13:35:52 +03001811 kvm_run->debug.arch.pc =
1812 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1813 kvm_run->debug.arch.exception = DB_VECTOR;
1814 return 0;
1815 }
1816
1817 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001818}
1819
Paolo Bonzini63129752021-03-02 14:40:39 -05001820static int bp_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001821{
Paolo Bonzini63129752021-03-02 14:40:39 -05001822 struct vcpu_svm *svm = to_svm(vcpu);
1823 struct kvm_run *kvm_run = vcpu->run;
Avi Kivity851ba692009-08-24 11:10:17 +03001824
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001825 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1826 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1827 kvm_run->debug.arch.exception = BP_VECTOR;
1828 return 0;
1829}
1830
Paolo Bonzini63129752021-03-02 14:40:39 -05001831static int ud_interception(struct kvm_vcpu *vcpu)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001832{
Paolo Bonzini63129752021-03-02 14:40:39 -05001833 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001834}
1835
Paolo Bonzini63129752021-03-02 14:40:39 -05001836static int ac_interception(struct kvm_vcpu *vcpu)
Eric Northup54a20552015-11-03 18:03:53 +01001837{
Paolo Bonzini63129752021-03-02 14:40:39 -05001838 kvm_queue_exception_e(vcpu, AC_VECTOR, 0);
Eric Northup54a20552015-11-03 18:03:53 +01001839 return 1;
1840}
1841
Joerg Roedel67ec6602010-05-17 14:43:35 +02001842static bool is_erratum_383(void)
1843{
1844 int err, i;
1845 u64 value;
1846
1847 if (!erratum_383_found)
1848 return false;
1849
1850 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
1851 if (err)
1852 return false;
1853
1854 /* Bit 62 may or may not be set for this mce */
1855 value &= ~(1ULL << 62);
1856
1857 if (value != 0xb600000000010015ULL)
1858 return false;
1859
1860 /* Clear MCi_STATUS registers */
1861 for (i = 0; i < 6; ++i)
1862 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
1863
1864 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
1865 if (!err) {
1866 u32 low, high;
1867
1868 value &= ~(1ULL << 2);
1869 low = lower_32_bits(value);
1870 high = upper_32_bits(value);
1871
1872 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
1873 }
1874
1875 /* Flush tlb to evict multi-match entries */
1876 __flush_tlb_all();
1877
1878 return true;
1879}
1880
Paolo Bonzini63129752021-03-02 14:40:39 -05001881static void svm_handle_mce(struct kvm_vcpu *vcpu)
Joerg Roedel53371b52008-04-09 14:15:30 +02001882{
Joerg Roedel67ec6602010-05-17 14:43:35 +02001883 if (is_erratum_383()) {
1884 /*
1885 * Erratum 383 triggered. Guest state is corrupt so kill the
1886 * guest.
1887 */
1888 pr_err("KVM: Guest triggered AMD Erratum 383\n");
1889
Paolo Bonzini63129752021-03-02 14:40:39 -05001890 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02001891
1892 return;
1893 }
1894
Joerg Roedel53371b52008-04-09 14:15:30 +02001895 /*
1896 * On an #MC intercept the MCE handler is not called automatically in
1897 * the host. So do it by hand here.
1898 */
Uros Bizjak1c164cb2020-04-11 17:36:27 +02001899 kvm_machine_check();
Joerg Roedelfe5913e2010-05-17 14:43:34 +02001900}
1901
Paolo Bonzini63129752021-03-02 14:40:39 -05001902static int mc_interception(struct kvm_vcpu *vcpu)
Joerg Roedelfe5913e2010-05-17 14:43:34 +02001903{
Joerg Roedel53371b52008-04-09 14:15:30 +02001904 return 1;
1905}
1906
Paolo Bonzini63129752021-03-02 14:40:39 -05001907static int shutdown_interception(struct kvm_vcpu *vcpu)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001908{
Paolo Bonzini63129752021-03-02 14:40:39 -05001909 struct kvm_run *kvm_run = vcpu->run;
1910 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03001911
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001912 /*
Tom Lendacky8164a5f2020-12-10 11:09:45 -06001913 * The VM save area has already been encrypted so it
1914 * cannot be reinitialized - just terminate.
1915 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001916 if (sev_es_guest(vcpu->kvm))
Tom Lendacky8164a5f2020-12-10 11:09:45 -06001917 return -EINVAL;
1918
1919 /*
Sean Christopherson265e4352021-07-13 09:33:22 -07001920 * VMCB is undefined after a SHUTDOWN intercept. INIT the vCPU to put
1921 * the VMCB in a known good state. Unfortuately, KVM doesn't have
1922 * KVM_MP_STATE_SHUTDOWN and can't add it without potentially breaking
1923 * userspace. At a platform view, INIT is acceptable behavior as
1924 * there exist bare metal platforms that automatically INIT the CPU
1925 * in response to shutdown.
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001926 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001927 clear_page(svm->vmcb);
Sean Christopherson265e4352021-07-13 09:33:22 -07001928 kvm_vcpu_reset(vcpu, true);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001929
1930 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1931 return 0;
1932}
1933
Paolo Bonzini63129752021-03-02 14:40:39 -05001934static int io_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001935{
Paolo Bonzini63129752021-03-02 14:40:39 -05001936 struct vcpu_svm *svm = to_svm(vcpu);
Mike Dayd77c26f2007-10-08 09:02:08 -04001937 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08001938 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02001939 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001940
Paolo Bonzini63129752021-03-02 14:40:39 -05001941 ++vcpu->stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03001942 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001943 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1944 port = io_info >> 16;
1945 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -06001946
1947 if (string) {
1948 if (sev_es_guest(vcpu->kvm))
1949 return sev_es_string_io(svm, size, port, in);
1950 else
1951 return kvm_emulate_instruction(vcpu, 0);
1952 }
1953
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02001954 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02001955
Paolo Bonzini63129752021-03-02 14:40:39 -05001956 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001957}
1958
Paolo Bonzini63129752021-03-02 14:40:39 -05001959static int nmi_interception(struct kvm_vcpu *vcpu)
Joerg Roedelc47f0982008-04-30 17:56:00 +02001960{
1961 return 1;
1962}
1963
Maxim Levitsky991afbb2021-07-07 15:50:58 +03001964static int smi_interception(struct kvm_vcpu *vcpu)
1965{
1966 return 1;
1967}
1968
Paolo Bonzini63129752021-03-02 14:40:39 -05001969static int intr_interception(struct kvm_vcpu *vcpu)
Joerg Roedela0698052008-04-30 17:56:01 +02001970{
Paolo Bonzini63129752021-03-02 14:40:39 -05001971 ++vcpu->stat.irq_exits;
Joerg Roedela0698052008-04-30 17:56:01 +02001972 return 1;
1973}
1974
Sean Christopherson2ac636a2021-02-04 16:57:45 -08001975static int vmload_vmsave_interception(struct kvm_vcpu *vcpu, bool vmload)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976{
Paolo Bonzini63129752021-03-02 14:40:39 -05001977 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05001978 struct vmcb *vmcb12;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01001979 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02001980 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02001981
Paolo Bonzini63129752021-03-02 14:40:39 -05001982 if (nested_svm_check_permissions(vcpu))
Alexander Graf55426752008-11-25 20:17:06 +01001983 return 1;
1984
Paolo Bonzini63129752021-03-02 14:40:39 -05001985 ret = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01001986 if (ret) {
1987 if (ret == -EINVAL)
Paolo Bonzini63129752021-03-02 14:40:39 -05001988 kvm_inject_gp(vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02001989 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01001990 }
1991
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05001992 vmcb12 = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02001993
Paolo Bonzini63129752021-03-02 14:40:39 -05001994 ret = kvm_skip_emulated_instruction(vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02001995
Maxim Levitskyadc2a232021-04-01 14:19:28 +03001996 if (vmload) {
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02001997 svm_copy_vmloadsave_state(svm->vmcb, vmcb12);
Maxim Levitskyadc2a232021-04-01 14:19:28 +03001998 svm->sysenter_eip_hi = 0;
1999 svm->sysenter_esp_hi = 0;
Vitaly Kuznetsov9a9e7482021-07-16 16:41:04 +02002000 } else {
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02002001 svm_copy_vmloadsave_state(vmcb12, svm->vmcb);
Vitaly Kuznetsov9a9e7482021-07-16 16:41:04 +02002002 }
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002003
Paolo Bonzini63129752021-03-02 14:40:39 -05002004 kvm_vcpu_unmap(vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002005
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002006 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002007}
2008
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002009static int vmload_interception(struct kvm_vcpu *vcpu)
Alexander Graf55426752008-11-25 20:17:06 +01002010{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002011 return vmload_vmsave_interception(vcpu, true);
Alexander Graf55426752008-11-25 20:17:06 +01002012}
2013
Paolo Bonzini63129752021-03-02 14:40:39 -05002014static int vmsave_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002015{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002016 return vmload_vmsave_interception(vcpu, false);
Alexander Grafc0725422008-11-25 20:17:03 +01002017}
2018
Paolo Bonzini63129752021-03-02 14:40:39 -05002019static int vmrun_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002020{
Paolo Bonzini63129752021-03-02 14:40:39 -05002021 if (nested_svm_check_permissions(vcpu))
Alexander Graf3d6368e2008-11-25 20:17:07 +01002022 return 1;
2023
Paolo Bonzini63129752021-03-02 14:40:39 -05002024 return nested_svm_vmrun(vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002025}
2026
Bandan Das82a11e9c2021-01-26 03:18:29 -05002027enum {
2028 NONE_SVM_INSTR,
2029 SVM_INSTR_VMRUN,
2030 SVM_INSTR_VMLOAD,
2031 SVM_INSTR_VMSAVE,
2032};
2033
2034/* Return NONE_SVM_INSTR if not SVM instrs, otherwise return decode result */
2035static int svm_instr_opcode(struct kvm_vcpu *vcpu)
2036{
2037 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
2038
2039 if (ctxt->b != 0x1 || ctxt->opcode_len != 2)
2040 return NONE_SVM_INSTR;
2041
2042 switch (ctxt->modrm) {
2043 case 0xd8: /* VMRUN */
2044 return SVM_INSTR_VMRUN;
2045 case 0xda: /* VMLOAD */
2046 return SVM_INSTR_VMLOAD;
2047 case 0xdb: /* VMSAVE */
2048 return SVM_INSTR_VMSAVE;
2049 default:
2050 break;
2051 }
2052
2053 return NONE_SVM_INSTR;
2054}
2055
2056static int emulate_svm_instr(struct kvm_vcpu *vcpu, int opcode)
2057{
Wei Huang14c2bf82021-01-26 03:18:31 -05002058 const int guest_mode_exit_codes[] = {
2059 [SVM_INSTR_VMRUN] = SVM_EXIT_VMRUN,
2060 [SVM_INSTR_VMLOAD] = SVM_EXIT_VMLOAD,
2061 [SVM_INSTR_VMSAVE] = SVM_EXIT_VMSAVE,
2062 };
Paolo Bonzini63129752021-03-02 14:40:39 -05002063 int (*const svm_instr_handlers[])(struct kvm_vcpu *vcpu) = {
Bandan Das82a11e9c2021-01-26 03:18:29 -05002064 [SVM_INSTR_VMRUN] = vmrun_interception,
2065 [SVM_INSTR_VMLOAD] = vmload_interception,
2066 [SVM_INSTR_VMSAVE] = vmsave_interception,
2067 };
2068 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002069 int ret;
Bandan Das82a11e9c2021-01-26 03:18:29 -05002070
Wei Huang14c2bf82021-01-26 03:18:31 -05002071 if (is_guest_mode(vcpu)) {
Sean Christopherson2df8d382021-02-23 16:56:26 -08002072 /* Returns '1' or -errno on failure, '0' on success. */
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08002073 ret = nested_svm_simple_vmexit(svm, guest_mode_exit_codes[opcode]);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002074 if (ret)
2075 return ret;
2076 return 1;
2077 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002078 return svm_instr_handlers[opcode](vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002079}
2080
2081/*
2082 * #GP handling code. Note that #GP can be triggered under the following two
2083 * cases:
2084 * 1) SVM VM-related instructions (VMRUN/VMSAVE/VMLOAD) that trigger #GP on
2085 * some AMD CPUs when EAX of these instructions are in the reserved memory
2086 * regions (e.g. SMM memory on host).
2087 * 2) VMware backdoor
2088 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002089static int gp_interception(struct kvm_vcpu *vcpu)
Bandan Das82a11e9c2021-01-26 03:18:29 -05002090{
Paolo Bonzini63129752021-03-02 14:40:39 -05002091 struct vcpu_svm *svm = to_svm(vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002092 u32 error_code = svm->vmcb->control.exit_info_1;
2093 int opcode;
2094
2095 /* Both #GP cases have zero error_code */
2096 if (error_code)
2097 goto reinject;
2098
2099 /* Decode the instruction for usage later */
2100 if (x86_decode_emulated_instruction(vcpu, 0, NULL, 0) != EMULATION_OK)
2101 goto reinject;
2102
2103 opcode = svm_instr_opcode(vcpu);
2104
2105 if (opcode == NONE_SVM_INSTR) {
2106 if (!enable_vmware_backdoor)
2107 goto reinject;
2108
2109 /*
2110 * VMware backdoor emulation on #GP interception only handles
2111 * IN{S}, OUT{S}, and RDPMC.
2112 */
Wei Huang14c2bf82021-01-26 03:18:31 -05002113 if (!is_guest_mode(vcpu))
2114 return kvm_emulate_instruction(vcpu,
Bandan Das82a11e9c2021-01-26 03:18:29 -05002115 EMULTYPE_VMWARE_GP | EMULTYPE_NO_DECODE);
Denis Valeev47c28d42022-01-22 23:13:57 +03002116 } else {
2117 /* All SVM instructions expect page aligned RAX */
2118 if (svm->vmcb->save.rax & ~PAGE_MASK)
2119 goto reinject;
2120
Bandan Das82a11e9c2021-01-26 03:18:29 -05002121 return emulate_svm_instr(vcpu, opcode);
Denis Valeev47c28d42022-01-22 23:13:57 +03002122 }
Bandan Das82a11e9c2021-01-26 03:18:29 -05002123
2124reinject:
2125 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2126 return 1;
2127}
2128
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002129void svm_set_gif(struct vcpu_svm *svm, bool value)
2130{
2131 if (value) {
2132 /*
2133 * If VGIF is enabled, the STGI intercept is only added to
2134 * detect the opening of the SMI/NMI window; remove it now.
2135 * Likewise, clear the VINTR intercept, we will set it
2136 * again while processing KVM_REQ_EVENT if needed.
2137 */
2138 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02002139 svm_clr_intercept(svm, INTERCEPT_STGI);
2140 if (svm_is_intercept(svm, INTERCEPT_VINTR))
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002141 svm_clear_vintr(svm);
2142
2143 enable_gif(svm);
2144 if (svm->vcpu.arch.smi_pending ||
2145 svm->vcpu.arch.nmi_pending ||
2146 kvm_cpu_has_injectable_intr(&svm->vcpu))
2147 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
2148 } else {
2149 disable_gif(svm);
2150
2151 /*
2152 * After a CLGI no interrupts should come. But if vGIF is
2153 * in use, we still rely on the VINTR intercept (rather than
2154 * STGI) to detect an open interrupt window.
2155 */
2156 if (!vgif_enabled(svm))
2157 svm_clear_vintr(svm);
2158 }
2159}
2160
Paolo Bonzini63129752021-03-02 14:40:39 -05002161static int stgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002162{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002163 int ret;
2164
Paolo Bonzini63129752021-03-02 14:40:39 -05002165 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002166 return 1;
2167
Paolo Bonzini63129752021-03-02 14:40:39 -05002168 ret = kvm_skip_emulated_instruction(vcpu);
2169 svm_set_gif(to_svm(vcpu), true);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002170 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002171}
2172
Paolo Bonzini63129752021-03-02 14:40:39 -05002173static int clgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002174{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002175 int ret;
2176
Paolo Bonzini63129752021-03-02 14:40:39 -05002177 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002178 return 1;
2179
Paolo Bonzini63129752021-03-02 14:40:39 -05002180 ret = kvm_skip_emulated_instruction(vcpu);
2181 svm_set_gif(to_svm(vcpu), false);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002182 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002183}
2184
Paolo Bonzini63129752021-03-02 14:40:39 -05002185static int invlpga_interception(struct kvm_vcpu *vcpu)
Alexander Grafff092382009-06-15 15:21:24 +02002186{
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002187 gva_t gva = kvm_rax_read(vcpu);
2188 u32 asid = kvm_rcx_read(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002189
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002190 /* FIXME: Handle an address size prefix. */
2191 if (!is_long_mode(vcpu))
2192 gva = (u32)gva;
2193
2194 trace_kvm_invlpga(to_svm(vcpu)->vmcb->save.rip, asid, gva);
Joerg Roedelec1ff792009-10-09 16:08:31 +02002195
Alexander Grafff092382009-06-15 15:21:24 +02002196 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002197 kvm_mmu_invlpg(vcpu, gva);
Alexander Grafff092382009-06-15 15:21:24 +02002198
Paolo Bonzini63129752021-03-02 14:40:39 -05002199 return kvm_skip_emulated_instruction(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002200}
2201
Paolo Bonzini63129752021-03-02 14:40:39 -05002202static int skinit_interception(struct kvm_vcpu *vcpu)
Joerg Roedel532a46b2009-10-09 16:08:32 +02002203{
Paolo Bonzini63129752021-03-02 14:40:39 -05002204 trace_kvm_skinit(to_svm(vcpu)->vmcb->save.rip, kvm_rax_read(vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02002205
Paolo Bonzini63129752021-03-02 14:40:39 -05002206 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedel532a46b2009-10-09 16:08:32 +02002207 return 1;
2208}
2209
Paolo Bonzini63129752021-03-02 14:40:39 -05002210static int task_switch_interception(struct kvm_vcpu *vcpu)
David Kaplandab429a2015-03-02 13:43:37 -06002211{
Paolo Bonzini63129752021-03-02 14:40:39 -05002212 struct vcpu_svm *svm = to_svm(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02002213 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002214 int reason;
2215 int int_type = svm->vmcb->control.exit_int_info &
2216 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03002217 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002218 uint32_t type =
2219 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2220 uint32_t idt_v =
2221 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02002222 bool has_error_code = false;
2223 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02002224
2225 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002226
Izik Eidus37817f22008-03-24 23:14:53 +02002227 if (svm->vmcb->control.exit_info_2 &
2228 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002229 reason = TASK_SWITCH_IRET;
2230 else if (svm->vmcb->control.exit_info_2 &
2231 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2232 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002233 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002234 reason = TASK_SWITCH_GATE;
2235 else
2236 reason = TASK_SWITCH_CALL;
2237
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002238 if (reason == TASK_SWITCH_GATE) {
2239 switch (type) {
2240 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05002241 vcpu->arch.nmi_injected = false;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002242 break;
2243 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02002244 if (svm->vmcb->control.exit_info_2 &
2245 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2246 has_error_code = true;
2247 error_code =
2248 (u32)svm->vmcb->control.exit_info_2;
2249 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002250 kvm_clear_exception_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002251 break;
2252 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05002253 kvm_clear_interrupt_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002254 break;
2255 default:
2256 break;
2257 }
2258 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002259
Gleb Natapov8317c292009-04-12 13:37:02 +03002260 if (reason != TASK_SWITCH_GATE ||
2261 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2262 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002263 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Paolo Bonzini63129752021-03-02 14:40:39 -05002264 if (!skip_emulated_instruction(vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07002265 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002266 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002267
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01002268 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2269 int_vec = -1;
2270
Paolo Bonzini63129752021-03-02 14:40:39 -05002271 return kvm_task_switch(vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002272 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002273}
2274
Paolo Bonzini63129752021-03-02 14:40:39 -05002275static int iret_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276{
Paolo Bonzini63129752021-03-02 14:40:39 -05002277 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002278
Paolo Bonzini63129752021-03-02 14:40:39 -05002279 ++vcpu->stat.nmi_window_exits;
2280 vcpu->arch.hflags |= HF_IRET_MASK;
2281 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002282 svm_clr_intercept(svm, INTERCEPT_IRET);
Paolo Bonzini63129752021-03-02 14:40:39 -05002283 svm->nmi_iret_rip = kvm_rip_read(vcpu);
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002284 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002285 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002286 return 1;
2287}
2288
Paolo Bonzini63129752021-03-02 14:40:39 -05002289static int invlpg_interception(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03002290{
Andre Przywaradf4f31082010-12-21 11:12:06 +01002291 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002292 return kvm_emulate_instruction(vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01002293
Paolo Bonzini63129752021-03-02 14:40:39 -05002294 kvm_mmu_invlpg(vcpu, to_svm(vcpu)->vmcb->control.exit_info_1);
2295 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002296}
2297
Paolo Bonzini63129752021-03-02 14:40:39 -05002298static int emulate_on_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002299{
Paolo Bonzini63129752021-03-02 14:40:39 -05002300 return kvm_emulate_instruction(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301}
2302
Paolo Bonzini63129752021-03-02 14:40:39 -05002303static int rsm_interception(struct kvm_vcpu *vcpu)
Brijesh Singh7607b712018-02-19 10:14:44 -06002304{
Paolo Bonzini63129752021-03-02 14:40:39 -05002305 return kvm_emulate_instruction_from_buffer(vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06002306}
2307
Paolo Bonzini63129752021-03-02 14:40:39 -05002308static bool check_selective_cr0_intercepted(struct kvm_vcpu *vcpu,
Xiubo Li52eb5a62015-03-13 17:39:45 +08002309 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02002310{
Paolo Bonzini63129752021-03-02 14:40:39 -05002311 struct vcpu_svm *svm = to_svm(vcpu);
2312 unsigned long cr0 = vcpu->arch.cr0;
Joerg Roedel628afd22011-04-04 12:39:36 +02002313 bool ret = false;
Joerg Roedel628afd22011-04-04 12:39:36 +02002314
Paolo Bonzini63129752021-03-02 14:40:39 -05002315 if (!is_guest_mode(vcpu) ||
Emanuele Giuseppe Esposito8fc78902021-11-03 10:05:26 -04002316 (!(vmcb12_is_intercept(&svm->nested.ctl, INTERCEPT_SELECTIVE_CR0))))
Joerg Roedel628afd22011-04-04 12:39:36 +02002317 return false;
2318
2319 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2320 val &= ~SVM_CR0_SELECTIVE_MASK;
2321
2322 if (cr0 ^ val) {
2323 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2324 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2325 }
2326
2327 return ret;
2328}
2329
Andre Przywara7ff76d52010-12-21 11:12:04 +01002330#define CR_VALID (1ULL << 63)
2331
Paolo Bonzini63129752021-03-02 14:40:39 -05002332static int cr_interception(struct kvm_vcpu *vcpu)
Andre Przywara7ff76d52010-12-21 11:12:04 +01002333{
Paolo Bonzini63129752021-03-02 14:40:39 -05002334 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002335 int reg, cr;
2336 unsigned long val;
2337 int err;
2338
2339 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002340 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002341
2342 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
Paolo Bonzini63129752021-03-02 14:40:39 -05002343 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002344
2345 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06002346 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
2347 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
2348 else
2349 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002350
2351 err = 0;
2352 if (cr >= 16) { /* mov to cr */
2353 cr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002354 val = kvm_register_read(vcpu, reg);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002355 trace_kvm_cr_write(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002356 switch (cr) {
2357 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002358 if (!check_selective_cr0_intercepted(vcpu, val))
2359 err = kvm_set_cr0(vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02002360 else
2361 return 1;
2362
Andre Przywara7ff76d52010-12-21 11:12:04 +01002363 break;
2364 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002365 err = kvm_set_cr3(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002366 break;
2367 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002368 err = kvm_set_cr4(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002369 break;
2370 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002371 err = kvm_set_cr8(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002372 break;
2373 default:
2374 WARN(1, "unhandled write to CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002375 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002376 return 1;
2377 }
2378 } else { /* mov from cr */
2379 switch (cr) {
2380 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002381 val = kvm_read_cr0(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002382 break;
2383 case 2:
Paolo Bonzini63129752021-03-02 14:40:39 -05002384 val = vcpu->arch.cr2;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002385 break;
2386 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002387 val = kvm_read_cr3(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002388 break;
2389 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002390 val = kvm_read_cr4(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002391 break;
2392 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002393 val = kvm_get_cr8(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002394 break;
2395 default:
2396 WARN(1, "unhandled read from CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002397 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002398 return 1;
2399 }
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002400 kvm_register_write(vcpu, reg, val);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002401 trace_kvm_cr_read(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002402 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002403 return kvm_complete_insn_gp(vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002404}
2405
Paolo Bonzini63129752021-03-02 14:40:39 -05002406static int cr_trap(struct kvm_vcpu *vcpu)
Tom Lendackyf27ad382020-12-10 11:09:56 -06002407{
Paolo Bonzini63129752021-03-02 14:40:39 -05002408 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002409 unsigned long old_value, new_value;
2410 unsigned int cr;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002411 int ret = 0;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002412
2413 new_value = (unsigned long)svm->vmcb->control.exit_info_1;
2414
2415 cr = svm->vmcb->control.exit_code - SVM_EXIT_CR0_WRITE_TRAP;
2416 switch (cr) {
2417 case 0:
2418 old_value = kvm_read_cr0(vcpu);
2419 svm_set_cr0(vcpu, new_value);
2420
2421 kvm_post_set_cr0(vcpu, old_value, new_value);
2422 break;
Tom Lendacky5b51cb12020-12-10 11:09:57 -06002423 case 4:
2424 old_value = kvm_read_cr4(vcpu);
2425 svm_set_cr4(vcpu, new_value);
2426
2427 kvm_post_set_cr4(vcpu, old_value, new_value);
2428 break;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002429 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002430 ret = kvm_set_cr8(vcpu, new_value);
Tom Lendackyd1949b92020-12-10 11:09:58 -06002431 break;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002432 default:
2433 WARN(1, "unhandled CR%d write trap", cr);
2434 kvm_queue_exception(vcpu, UD_VECTOR);
2435 return 1;
2436 }
2437
Tom Lendackyd1949b92020-12-10 11:09:58 -06002438 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002439}
2440
Paolo Bonzini63129752021-03-02 14:40:39 -05002441static int dr_interception(struct kvm_vcpu *vcpu)
Andre Przywaracae37972010-12-21 11:12:05 +01002442{
Paolo Bonzini63129752021-03-02 14:40:39 -05002443 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002444 int reg, dr;
2445 unsigned long val;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002446 int err = 0;
Andre Przywaracae37972010-12-21 11:12:05 +01002447
Paolo Bonzini63129752021-03-02 14:40:39 -05002448 if (vcpu->guest_debug == 0) {
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002449 /*
2450 * No more DR vmexits; force a reload of the debug registers
2451 * and reenter on this instruction. The next vmexit will
2452 * retrieve the full state of the debug registers.
2453 */
2454 clr_dr_intercepts(svm);
Paolo Bonzini63129752021-03-02 14:40:39 -05002455 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002456 return 1;
2457 }
2458
Andre Przywaracae37972010-12-21 11:12:05 +01002459 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002460 return emulate_on_interception(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002461
2462 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2463 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002464 if (dr >= 16) { /* mov to DRn */
2465 dr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002466 val = kvm_register_read(vcpu, reg);
Paolo Bonzini63129752021-03-02 14:40:39 -05002467 err = kvm_set_dr(vcpu, dr, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002468 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05002469 kvm_get_dr(vcpu, dr, &val);
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002470 kvm_register_write(vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002471 }
2472
Paolo Bonzini63129752021-03-02 14:40:39 -05002473 return kvm_complete_insn_gp(vcpu, err);
Andre Przywaracae37972010-12-21 11:12:05 +01002474}
2475
Paolo Bonzini63129752021-03-02 14:40:39 -05002476static int cr8_write_interception(struct kvm_vcpu *vcpu)
Joerg Roedel1d075432007-12-06 21:02:25 +01002477{
Andre Przywaraeea1cff2010-12-21 11:12:00 +01002478 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03002479
Paolo Bonzini63129752021-03-02 14:40:39 -05002480 u8 cr8_prev = kvm_get_cr8(vcpu);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002481 /* instruction emulation calls kvm_set_cr8() */
Paolo Bonzini63129752021-03-02 14:40:39 -05002482 r = cr_interception(vcpu);
2483 if (lapic_in_kernel(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002484 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002485 if (cr8_prev <= kvm_get_cr8(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002486 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002487 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Joerg Roedel1d075432007-12-06 21:02:25 +01002488 return 0;
2489}
2490
Paolo Bonzini63129752021-03-02 14:40:39 -05002491static int efer_trap(struct kvm_vcpu *vcpu)
Tom Lendacky2985afb2020-12-10 11:09:55 -06002492{
2493 struct msr_data msr_info;
2494 int ret;
2495
2496 /*
2497 * Clear the EFER_SVME bit from EFER. The SVM code always sets this
2498 * bit in svm_set_efer(), but __kvm_valid_efer() checks it against
2499 * whether the guest has X86_FEATURE_SVM - this avoids a failure if
2500 * the guest doesn't have X86_FEATURE_SVM.
2501 */
2502 msr_info.host_initiated = false;
2503 msr_info.index = MSR_EFER;
Paolo Bonzini63129752021-03-02 14:40:39 -05002504 msr_info.data = to_svm(vcpu)->vmcb->control.exit_info_1 & ~EFER_SVME;
2505 ret = kvm_set_msr_common(vcpu, &msr_info);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002506
Paolo Bonzini63129752021-03-02 14:40:39 -05002507 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002508}
2509
Tom Lendacky801e4592018-02-21 13:39:51 -06002510static int svm_get_msr_feature(struct kvm_msr_entry *msr)
2511{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002512 msr->data = 0;
2513
2514 switch (msr->index) {
2515 case MSR_F10H_DECFG:
2516 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
2517 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
2518 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002519 case MSR_IA32_PERF_CAPABILITIES:
2520 return 0;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002521 default:
Peter Xu12bc2132020-06-22 18:04:42 -04002522 return KVM_MSR_RET_INVALID;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002523 }
2524
2525 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06002526}
2527
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002528static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002530 struct vcpu_svm *svm = to_svm(vcpu);
2531
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002532 switch (msr_info->index) {
Maxim Levitsky5228eb92021-09-14 18:48:24 +03002533 case MSR_AMD64_TSC_RATIO:
2534 if (!msr_info->host_initiated && !svm->tsc_scaling_enabled)
2535 return 1;
2536 msr_info->data = svm->tsc_ratio_msr;
2537 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002538 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002539 msr_info->data = svm->vmcb01.ptr->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002540 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08002541#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002543 msr_info->data = svm->vmcb01.ptr->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002544 break;
2545 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002546 msr_info->data = svm->vmcb01.ptr->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547 break;
2548 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002549 msr_info->data = svm->vmcb01.ptr->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002550 break;
2551 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002552 msr_info->data = svm->vmcb01.ptr->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002553 break;
2554#endif
2555 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002556 msr_info->data = svm->vmcb01.ptr->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 break;
2558 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002559 msr_info->data = (u32)svm->vmcb01.ptr->save.sysenter_eip;
2560 if (guest_cpuid_is_intel(vcpu))
2561 msr_info->data |= (u64)svm->sysenter_eip_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002562 break;
2563 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002564 msr_info->data = svm->vmcb01.ptr->save.sysenter_esp;
2565 if (guest_cpuid_is_intel(vcpu))
2566 msr_info->data |= (u64)svm->sysenter_esp_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002567 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002568 case MSR_TSC_AUX:
Paolo Bonzini46896c72015-11-12 14:49:16 +01002569 msr_info->data = svm->tsc_aux;
2570 break;
Joerg Roedele0231712010-02-24 18:59:10 +01002571 /*
2572 * Nobody will change the following 5 values in the VMCB so we can
2573 * safely return them on rdmsr. They will always be 0 until LBRV is
2574 * implemented.
2575 */
Joerg Roedela2938c82008-02-13 16:30:28 +01002576 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002577 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01002578 break;
2579 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002580 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002581 break;
2582 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002583 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002584 break;
2585 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002586 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002587 break;
2588 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002589 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002590 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002591 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002592 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002593 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002594 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002595 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002596 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002597 case MSR_IA32_SPEC_CTRL:
2598 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002599 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002600 return 1;
2601
Babu Mogerd00b99c2021-02-17 10:56:04 -05002602 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2603 msr_info->data = svm->vmcb->save.spec_ctrl;
2604 else
2605 msr_info->data = svm->spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002606 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002607 case MSR_AMD64_VIRT_SPEC_CTRL:
2608 if (!msr_info->host_initiated &&
2609 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2610 return 1;
2611
2612 msr_info->data = svm->virt_spec_ctrl;
2613 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01002614 case MSR_F15H_IC_CFG: {
2615
2616 int family, model;
2617
2618 family = guest_cpuid_family(vcpu);
2619 model = guest_cpuid_model(vcpu);
2620
2621 if (family < 0 || model < 0)
2622 return kvm_get_msr_common(vcpu, msr_info);
2623
2624 msr_info->data = 0;
2625
2626 if (family == 0x15 &&
2627 (model >= 0x2 && model < 0x20))
2628 msr_info->data = 0x1E;
2629 }
2630 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002631 case MSR_F10H_DECFG:
2632 msr_info->data = svm->msr_decfg;
2633 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002635 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 }
2637 return 0;
2638}
2639
Tom Lendackyf1c63662020-12-14 10:29:50 -05002640static int svm_complete_emulated_msr(struct kvm_vcpu *vcpu, int err)
2641{
2642 struct vcpu_svm *svm = to_svm(vcpu);
Peter Gondab67a4cc2021-10-21 10:42:59 -07002643 if (!err || !sev_es_guest(vcpu->kvm) || WARN_ON_ONCE(!svm->sev_es.ghcb))
Paolo Bonzini63129752021-03-02 14:40:39 -05002644 return kvm_complete_insn_gp(vcpu, err);
Tom Lendackyf1c63662020-12-14 10:29:50 -05002645
Peter Gondab67a4cc2021-10-21 10:42:59 -07002646 ghcb_set_sw_exit_info_1(svm->sev_es.ghcb, 1);
2647 ghcb_set_sw_exit_info_2(svm->sev_es.ghcb,
Tom Lendackyf1c63662020-12-14 10:29:50 -05002648 X86_TRAP_GP |
2649 SVM_EVTINJ_TYPE_EXEPT |
2650 SVM_EVTINJ_VALID);
2651 return 1;
2652}
2653
Joerg Roedel4a810182010-02-24 18:59:15 +01002654static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2655{
2656 struct vcpu_svm *svm = to_svm(vcpu);
2657 int svm_dis, chg_mask;
2658
2659 if (data & ~SVM_VM_CR_VALID_MASK)
2660 return 1;
2661
2662 chg_mask = SVM_VM_CR_VALID_MASK;
2663
2664 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2665 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2666
2667 svm->nested.vm_cr_msr &= ~chg_mask;
2668 svm->nested.vm_cr_msr |= (data & chg_mask);
2669
2670 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2671
2672 /* check for svm_disable while efer.svme is set */
2673 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2674 return 1;
2675
2676 return 0;
2677}
2678
Will Auld8fe8ab42012-11-29 12:42:12 -08002679static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002681 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson844d69c2021-04-23 15:34:04 -07002682 int r;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002683
Will Auld8fe8ab42012-11-29 12:42:12 -08002684 u32 ecx = msr->index;
2685 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686 switch (ecx) {
Maxim Levitsky5228eb92021-09-14 18:48:24 +03002687 case MSR_AMD64_TSC_RATIO:
2688 if (!msr->host_initiated && !svm->tsc_scaling_enabled)
2689 return 1;
2690
2691 if (data & TSC_RATIO_RSVD)
2692 return 1;
2693
2694 svm->tsc_ratio_msr = data;
2695
2696 if (svm->tsc_scaling_enabled && is_guest_mode(vcpu))
2697 nested_svm_update_tsc_ratio_msr(vcpu);
2698
2699 break;
Paolo Bonzini15038e12017-10-26 09:13:27 +02002700 case MSR_IA32_CR_PAT:
2701 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2702 return 1;
2703 vcpu->arch.pat = data;
Cathy Avery4995a362021-01-13 07:07:52 -05002704 svm->vmcb01.ptr->save.g_pat = data;
2705 if (is_guest_mode(vcpu))
2706 nested_vmcb02_compute_g_pat(svm);
Joerg Roedel06e78522020-06-25 10:03:23 +02002707 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Paolo Bonzini15038e12017-10-26 09:13:27 +02002708 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002709 case MSR_IA32_SPEC_CTRL:
2710 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002711 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002712 return 1;
2713
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002714 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002715 return 1;
2716
Babu Mogerd00b99c2021-02-17 10:56:04 -05002717 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2718 svm->vmcb->save.spec_ctrl = data;
2719 else
2720 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002721 if (!data)
2722 break;
2723
2724 /*
2725 * For non-nested:
2726 * When it's written (to non-zero) for the first time, pass
2727 * it through.
2728 *
2729 * For nested:
2730 * The handling of the MSR bitmap for L2 guests is done in
2731 * nested_svm_vmrun_msrpm.
2732 * We update the L1 MSR bit as well since it will end up
2733 * touching the MSR anyway now.
2734 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002735 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002736 break;
Ashok Raj15d45072018-02-01 22:59:43 +01002737 case MSR_IA32_PRED_CMD:
2738 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002739 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002740 return 1;
2741
2742 if (data & ~PRED_CMD_IBPB)
2743 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002744 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002745 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002746 if (!data)
2747 break;
2748
2749 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002750 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
Ashok Raj15d45072018-02-01 22:59:43 +01002751 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002752 case MSR_AMD64_VIRT_SPEC_CTRL:
2753 if (!msr->host_initiated &&
2754 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2755 return 1;
2756
2757 if (data & ~SPEC_CTRL_SSBD)
2758 return 1;
2759
2760 svm->virt_spec_ctrl = data;
2761 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002762 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002763 svm->vmcb01.ptr->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002764 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08002765#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002767 svm->vmcb01.ptr->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768 break;
2769 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002770 svm->vmcb01.ptr->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 break;
2772 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002773 svm->vmcb01.ptr->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 break;
2775 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002776 svm->vmcb01.ptr->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002777 break;
2778#endif
2779 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002780 svm->vmcb01.ptr->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781 break;
2782 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002783 svm->vmcb01.ptr->save.sysenter_eip = (u32)data;
2784 /*
2785 * We only intercept the MSR_IA32_SYSENTER_{EIP|ESP} msrs
2786 * when we spoof an Intel vendor ID (for cross vendor migration).
2787 * In this case we use this intercept to track the high
2788 * 32 bit part of these msrs to support Intel's
2789 * implementation of SYSENTER/SYSEXIT.
2790 */
2791 svm->sysenter_eip_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002792 break;
2793 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002794 svm->vmcb01.ptr->save.sysenter_esp = (u32)data;
2795 svm->sysenter_esp_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002797 case MSR_TSC_AUX:
Sean Christophersondbd61272021-04-23 15:34:02 -07002798 /*
Sean Christopherson844d69c2021-04-23 15:34:04 -07002799 * TSC_AUX is usually changed only during boot and never read
2800 * directly. Intercept TSC_AUX instead of exposing it to the
2801 * guest via direct_access_msrs, and switch it via user return.
Paolo Bonzini46896c72015-11-12 14:49:16 +01002802 */
Sean Christopherson844d69c2021-04-23 15:34:04 -07002803 preempt_disable();
Sean Christopherson0caa0a72021-05-04 10:17:25 -07002804 r = kvm_set_user_return_msr(tsc_aux_uret_slot, data, -1ull);
Sean Christopherson844d69c2021-04-23 15:34:04 -07002805 preempt_enable();
2806 if (r)
2807 return 1;
2808
Paolo Bonzini46896c72015-11-12 14:49:16 +01002809 svm->tsc_aux = data;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002810 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01002811 case MSR_IA32_DEBUGCTLMSR:
Maxim Levitsky4c849262021-09-14 18:48:19 +03002812 if (!lbrv) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002813 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
2814 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002815 break;
2816 }
2817 if (data & DEBUGCTL_RESERVED_BITS)
2818 return 1;
2819
2820 svm->vmcb->save.dbgctl = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002821 vmcb_mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002822 if (data & (1ULL<<0))
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002823 svm_enable_lbrv(vcpu);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002824 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002825 svm_disable_lbrv(vcpu);
Joerg Roedela2938c82008-02-13 16:30:28 +01002826 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002827 case MSR_VM_HSAVE_PA:
Vitaly Kuznetsovfce7e152021-06-28 12:44:20 +02002828 /*
2829 * Old kernels did not validate the value written to
2830 * MSR_VM_HSAVE_PA. Allow KVM_SET_MSR to set an invalid
2831 * value to allow live migrating buggy or malicious guests
2832 * originating from those kernels.
2833 */
2834 if (!msr->host_initiated && !page_address_valid(vcpu, data))
2835 return 1;
2836
2837 svm->nested.hsave_msr = data & PAGE_MASK;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002838 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002839 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01002840 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002841 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03002842 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002843 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002844 case MSR_F10H_DECFG: {
2845 struct kvm_msr_entry msr_entry;
2846
2847 msr_entry.index = msr->index;
2848 if (svm_get_msr_feature(&msr_entry))
2849 return 1;
2850
2851 /* Check the supported bits */
2852 if (data & ~msr_entry.data)
2853 return 1;
2854
2855 /* Don't allow the guest to change a bit, #GP */
2856 if (!msr->host_initiated && (data ^ msr_entry.data))
2857 return 1;
2858
2859 svm->msr_decfg = data;
2860 break;
2861 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08002863 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864 }
2865 return 0;
2866}
2867
Paolo Bonzini63129752021-03-02 14:40:39 -05002868static int msr_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869{
Paolo Bonzini63129752021-03-02 14:40:39 -05002870 if (to_svm(vcpu)->vmcb->control.exit_info_1)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002871 return kvm_emulate_wrmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872 else
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002873 return kvm_emulate_rdmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874}
2875
Paolo Bonzini63129752021-03-02 14:40:39 -05002876static int interrupt_window_interception(struct kvm_vcpu *vcpu)
Dor Laorc1150d82007-01-05 16:36:24 -08002877{
Paolo Bonzini63129752021-03-02 14:40:39 -05002878 kvm_make_request(KVM_REQ_EVENT, vcpu);
2879 svm_clear_vintr(to_svm(vcpu));
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002880
2881 /*
2882 * For AVIC, the only reason to end up here is ExtINTs.
2883 * In this case AVIC was temporarily disabled for
2884 * requesting the IRQ window and we have to re-enable it.
2885 */
Maxim Levitsky30eed562021-08-10 23:52:47 +03002886 kvm_request_apicv_update(vcpu->kvm, true, APICV_INHIBIT_REASON_IRQWIN);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002887
Paolo Bonzini63129752021-03-02 14:40:39 -05002888 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002889 return 1;
2890}
2891
Paolo Bonzini63129752021-03-02 14:40:39 -05002892static int pause_interception(struct kvm_vcpu *vcpu)
Mark Langsdorf565d0992009-10-06 14:25:02 -05002893{
Tom Lendackyf1c63662020-12-14 10:29:50 -05002894 bool in_kernel;
2895
2896 /*
2897 * CPL is not made available for an SEV-ES guest, therefore
2898 * vcpu->arch.preempted_in_kernel can never be true. Just
2899 * set in_kernel to false as well.
2900 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002901 in_kernel = !sev_es_guest(vcpu->kvm) && svm_get_cpl(vcpu) == 0;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002902
Wanpeng Li830f01b2020-07-31 11:12:21 +08002903 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04002904 grow_ple_window(vcpu);
2905
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002906 kvm_vcpu_on_spin(vcpu, in_kernel);
Sean Christophersonc8781fe2021-02-04 16:57:50 -08002907 return kvm_skip_emulated_instruction(vcpu);
Mark Langsdorf565d0992009-10-06 14:25:02 -05002908}
2909
Paolo Bonzini63129752021-03-02 14:40:39 -05002910static int invpcid_interception(struct kvm_vcpu *vcpu)
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04002911{
Paolo Bonzini63129752021-03-02 14:40:39 -05002912 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger4407a792020-09-11 14:29:19 -05002913 unsigned long type;
2914 gva_t gva;
2915
2916 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
2917 kvm_queue_exception(vcpu, UD_VECTOR);
2918 return 1;
2919 }
2920
2921 /*
2922 * For an INVPCID intercept:
2923 * EXITINFO1 provides the linear address of the memory operand.
2924 * EXITINFO2 provides the contents of the register operand.
2925 */
2926 type = svm->vmcb->control.exit_info_2;
2927 gva = svm->vmcb->control.exit_info_1;
2928
Babu Moger4407a792020-09-11 14:29:19 -05002929 return kvm_handle_invpcid(vcpu, type, gva);
2930}
2931
Paolo Bonzini63129752021-03-02 14:40:39 -05002932static int (*const svm_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01002933 [SVM_EXIT_READ_CR0] = cr_interception,
2934 [SVM_EXIT_READ_CR3] = cr_interception,
2935 [SVM_EXIT_READ_CR4] = cr_interception,
2936 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06002937 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02002938 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01002939 [SVM_EXIT_WRITE_CR3] = cr_interception,
2940 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002941 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01002942 [SVM_EXIT_READ_DR0] = dr_interception,
2943 [SVM_EXIT_READ_DR1] = dr_interception,
2944 [SVM_EXIT_READ_DR2] = dr_interception,
2945 [SVM_EXIT_READ_DR3] = dr_interception,
2946 [SVM_EXIT_READ_DR4] = dr_interception,
2947 [SVM_EXIT_READ_DR5] = dr_interception,
2948 [SVM_EXIT_READ_DR6] = dr_interception,
2949 [SVM_EXIT_READ_DR7] = dr_interception,
2950 [SVM_EXIT_WRITE_DR0] = dr_interception,
2951 [SVM_EXIT_WRITE_DR1] = dr_interception,
2952 [SVM_EXIT_WRITE_DR2] = dr_interception,
2953 [SVM_EXIT_WRITE_DR3] = dr_interception,
2954 [SVM_EXIT_WRITE_DR4] = dr_interception,
2955 [SVM_EXIT_WRITE_DR5] = dr_interception,
2956 [SVM_EXIT_WRITE_DR6] = dr_interception,
2957 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002958 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
2959 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002960 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002961 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002962 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01002963 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02002964 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002965 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02002966 [SVM_EXIT_NMI] = nmi_interception,
Maxim Levitsky991afbb2021-07-07 15:50:58 +03002967 [SVM_EXIT_SMI] = smi_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08002968 [SVM_EXIT_VINTR] = interrupt_window_interception,
Sean Christopherson32c23c72021-02-04 16:57:49 -08002969 [SVM_EXIT_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002970 [SVM_EXIT_CPUID] = kvm_emulate_cpuid,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002971 [SVM_EXIT_IRET] = iret_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002972 [SVM_EXIT_INVD] = kvm_emulate_invd,
Mark Langsdorf565d0992009-10-06 14:25:02 -05002973 [SVM_EXIT_PAUSE] = pause_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002974 [SVM_EXIT_HLT] = kvm_emulate_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03002975 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02002976 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002977 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978 [SVM_EXIT_MSR] = msr_interception,
2979 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002980 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01002981 [SVM_EXIT_VMRUN] = vmrun_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002982 [SVM_EXIT_VMMCALL] = kvm_emulate_hypercall,
Alexander Graf55426752008-11-25 20:17:06 +01002983 [SVM_EXIT_VMLOAD] = vmload_interception,
2984 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01002985 [SVM_EXIT_STGI] = stgi_interception,
2986 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02002987 [SVM_EXIT_SKINIT] = skinit_interception,
Sean Christopherson3b195ac2021-05-04 10:17:22 -07002988 [SVM_EXIT_RDTSCP] = kvm_handle_invalid_op,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002989 [SVM_EXIT_WBINVD] = kvm_emulate_wbinvd,
2990 [SVM_EXIT_MONITOR] = kvm_emulate_monitor,
2991 [SVM_EXIT_MWAIT] = kvm_emulate_mwait,
Sean Christopherson92f98952021-02-04 16:57:46 -08002992 [SVM_EXIT_XSETBV] = kvm_emulate_xsetbv,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002993 [SVM_EXIT_RDPRU] = kvm_handle_invalid_op,
Tom Lendacky2985afb2020-12-10 11:09:55 -06002994 [SVM_EXIT_EFER_WRITE_TRAP] = efer_trap,
Tom Lendackyf27ad382020-12-10 11:09:56 -06002995 [SVM_EXIT_CR0_WRITE_TRAP] = cr_trap,
Tom Lendacky5b51cb12020-12-10 11:09:57 -06002996 [SVM_EXIT_CR4_WRITE_TRAP] = cr_trap,
Tom Lendackyd1949b92020-12-10 11:09:58 -06002997 [SVM_EXIT_CR8_WRITE_TRAP] = cr_trap,
Babu Moger4407a792020-09-11 14:29:19 -05002998 [SVM_EXIT_INVPCID] = invpcid_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002999 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06003000 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003001 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
3002 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Tom Lendacky291bd202020-12-10 11:09:47 -06003003 [SVM_EXIT_VMGEXIT] = sev_handle_vmgexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003004};
3005
Joe Perchesae8cc052011-04-24 22:00:50 -07003006static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02003007{
3008 struct vcpu_svm *svm = to_svm(vcpu);
3009 struct vmcb_control_area *control = &svm->vmcb->control;
3010 struct vmcb_save_area *save = &svm->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003011 struct vmcb_save_area *save01 = &svm->vmcb01.ptr->save;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003012
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02003013 if (!dump_invalid_vmcb) {
3014 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
3015 return;
3016 }
3017
Jim Mattson18f63b12021-06-21 15:16:48 -07003018 pr_err("VMCB %p, last attempted VMRUN on CPU %d\n",
3019 svm->current_vmcb->ptr, vcpu->arch.last_vmentry_cpu);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003020 pr_err("VMCB Control Area:\n");
Babu Moger03bfeeb2020-09-11 14:28:05 -05003021 pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
3022 pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
Babu Moger30abaa882020-09-11 14:28:12 -05003023 pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
3024 pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
Babu Moger9780d512020-09-11 14:28:20 -05003025 pr_err("%-20s%08x\n", "exceptions:", control->intercepts[INTERCEPT_EXCEPTION]);
Babu Mogerc62e2e92020-09-11 14:28:28 -05003026 pr_err("%-20s%08x %08x\n", "intercepts:",
3027 control->intercepts[INTERCEPT_WORD3],
3028 control->intercepts[INTERCEPT_WORD4]);
Joe Perchesae8cc052011-04-24 22:00:50 -07003029 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04003030 pr_err("%-20s%d\n", "pause filter threshold:",
3031 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07003032 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
3033 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
3034 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
3035 pr_err("%-20s%d\n", "asid:", control->asid);
3036 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
3037 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
3038 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
3039 pr_err("%-20s%08x\n", "int_state:", control->int_state);
3040 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
3041 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
3042 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3043 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3044 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3045 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3046 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003047 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Tom Lendacky291bd202020-12-10 11:09:47 -06003048 pr_err("%-20s%016llx\n", "ghcb:", control->ghcb_gpa);
Joe Perchesae8cc052011-04-24 22:00:50 -07003049 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3050 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003051 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07003052 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003053 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
3054 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
3055 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Tom Lendacky376c6d22020-12-10 11:10:06 -06003056 pr_err("%-20s%016llx\n", "vmsa_pa:", control->vmsa_pa);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003057 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07003058 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3059 "es:",
3060 save->es.selector, save->es.attrib,
3061 save->es.limit, save->es.base);
3062 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3063 "cs:",
3064 save->cs.selector, save->cs.attrib,
3065 save->cs.limit, save->cs.base);
3066 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3067 "ss:",
3068 save->ss.selector, save->ss.attrib,
3069 save->ss.limit, save->ss.base);
3070 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3071 "ds:",
3072 save->ds.selector, save->ds.attrib,
3073 save->ds.limit, save->ds.base);
3074 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3075 "fs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003076 save01->fs.selector, save01->fs.attrib,
3077 save01->fs.limit, save01->fs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003078 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3079 "gs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003080 save01->gs.selector, save01->gs.attrib,
3081 save01->gs.limit, save01->gs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003082 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3083 "gdtr:",
3084 save->gdtr.selector, save->gdtr.attrib,
3085 save->gdtr.limit, save->gdtr.base);
3086 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3087 "ldtr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003088 save01->ldtr.selector, save01->ldtr.attrib,
3089 save01->ldtr.limit, save01->ldtr.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003090 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3091 "idtr:",
3092 save->idtr.selector, save->idtr.attrib,
3093 save->idtr.limit, save->idtr.base);
3094 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3095 "tr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003096 save01->tr.selector, save01->tr.attrib,
3097 save01->tr.limit, save01->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003098 pr_err("cpl: %d efer: %016llx\n",
3099 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07003100 pr_err("%-15s %016llx %-13s %016llx\n",
3101 "cr0:", save->cr0, "cr2:", save->cr2);
3102 pr_err("%-15s %016llx %-13s %016llx\n",
3103 "cr3:", save->cr3, "cr4:", save->cr4);
3104 pr_err("%-15s %016llx %-13s %016llx\n",
3105 "dr6:", save->dr6, "dr7:", save->dr7);
3106 pr_err("%-15s %016llx %-13s %016llx\n",
3107 "rip:", save->rip, "rflags:", save->rflags);
3108 pr_err("%-15s %016llx %-13s %016llx\n",
3109 "rsp:", save->rsp, "rax:", save->rax);
3110 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003111 "star:", save01->star, "lstar:", save01->lstar);
Joe Perchesae8cc052011-04-24 22:00:50 -07003112 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003113 "cstar:", save01->cstar, "sfmask:", save01->sfmask);
Joe Perchesae8cc052011-04-24 22:00:50 -07003114 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003115 "kernel_gs_base:", save01->kernel_gs_base,
3116 "sysenter_cs:", save01->sysenter_cs);
Joe Perchesae8cc052011-04-24 22:00:50 -07003117 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003118 "sysenter_esp:", save01->sysenter_esp,
3119 "sysenter_eip:", save01->sysenter_eip);
Joe Perchesae8cc052011-04-24 22:00:50 -07003120 pr_err("%-15s %016llx %-13s %016llx\n",
3121 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3122 pr_err("%-15s %016llx %-13s %016llx\n",
3123 "br_from:", save->br_from, "br_to:", save->br_to);
3124 pr_err("%-15s %016llx %-13s %016llx\n",
3125 "excp_from:", save->last_excp_from,
3126 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003127}
3128
Maxim Levitsky7a4bca82021-08-11 15:29:22 +03003129static bool svm_check_exit_valid(struct kvm_vcpu *vcpu, u64 exit_code)
3130{
3131 return (exit_code < ARRAY_SIZE(svm_exit_handlers) &&
3132 svm_exit_handlers[exit_code]);
3133}
3134
Tom Lendackye9093fd42020-12-10 11:09:46 -06003135static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code)
3136{
Tom Lendackye9093fd42020-12-10 11:09:46 -06003137 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%llx\n", exit_code);
3138 dump_vmcb(vcpu);
3139 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3140 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
3141 vcpu->run->internal.ndata = 2;
3142 vcpu->run->internal.data[0] = exit_code;
3143 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Maxim Levitsky7a4bca82021-08-11 15:29:22 +03003144 return 0;
Tom Lendackye9093fd42020-12-10 11:09:46 -06003145}
3146
Paolo Bonzini63129752021-03-02 14:40:39 -05003147int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code)
Tom Lendackye9093fd42020-12-10 11:09:46 -06003148{
Maxim Levitsky7a4bca82021-08-11 15:29:22 +03003149 if (!svm_check_exit_valid(vcpu, exit_code))
3150 return svm_handle_invalid_exit(vcpu, exit_code);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003151
3152#ifdef CONFIG_RETPOLINE
3153 if (exit_code == SVM_EXIT_MSR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003154 return msr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003155 else if (exit_code == SVM_EXIT_VINTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003156 return interrupt_window_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003157 else if (exit_code == SVM_EXIT_INTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003158 return intr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003159 else if (exit_code == SVM_EXIT_HLT)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003160 return kvm_emulate_halt(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003161 else if (exit_code == SVM_EXIT_NPF)
Paolo Bonzini63129752021-03-02 14:40:39 -05003162 return npf_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003163#endif
Paolo Bonzini63129752021-03-02 14:40:39 -05003164 return svm_exit_handlers[exit_code](vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003165}
3166
David Edmondson0a62a032021-09-20 11:37:35 +01003167static void svm_get_exit_info(struct kvm_vcpu *vcpu, u32 *reason,
3168 u64 *info1, u64 *info2,
Sean Christopherson235ba742020-09-23 13:13:46 -07003169 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02003170{
3171 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3172
David Edmondson0a62a032021-09-20 11:37:35 +01003173 *reason = control->exit_code;
Avi Kivity586f9602010-11-18 13:09:54 +02003174 *info1 = control->exit_info_1;
3175 *info2 = control->exit_info_2;
Sean Christopherson235ba742020-09-23 13:13:46 -07003176 *intr_info = control->exit_int_info;
3177 if ((*intr_info & SVM_EXITINTINFO_VALID) &&
3178 (*intr_info & SVM_EXITINTINFO_VALID_ERR))
3179 *error_code = control->exit_int_info_err;
3180 else
3181 *error_code = 0;
Avi Kivity586f9602010-11-18 13:09:54 +02003182}
3183
Wanpeng Li404d5d72020-04-28 14:23:25 +08003184static int handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003185{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003186 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003187 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003188 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003189
David Edmondson0a62a032021-09-20 11:37:35 +01003190 trace_kvm_exit(vcpu, KVM_ISA_SVM);
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01003191
Tom Lendackyf1c63662020-12-14 10:29:50 -05003192 /* SEV-ES guests must use the CR write traps to track CR registers. */
3193 if (!sev_es_guest(vcpu->kvm)) {
3194 if (!svm_is_intercept(svm, INTERCEPT_CR0_WRITE))
3195 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3196 if (npt_enabled)
3197 vcpu->arch.cr3 = svm->vmcb->save.cr3;
3198 }
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003199
Joerg Roedel20307532010-11-29 17:51:48 +01003200 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02003201 int vmexit;
3202
David Edmondson0a62a032021-09-20 11:37:35 +01003203 trace_kvm_nested_vmexit(vcpu, KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02003204
Joerg Roedel410e4d52009-08-07 11:49:44 +02003205 vmexit = nested_svm_exit_special(svm);
3206
3207 if (vmexit == NESTED_EXIT_CONTINUE)
3208 vmexit = nested_svm_exit_handled(svm);
3209
3210 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01003211 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01003212 }
3213
Avi Kivity04d2cc72007-09-10 18:10:54 +03003214 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3215 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3216 kvm_run->fail_entry.hardware_entry_failure_reason
3217 = svm->vmcb->control.exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003218 kvm_run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003219 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003220 return 0;
3221 }
3222
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003223 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01003224 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02003225 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3226 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02003227 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003228 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003229 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003230 exit_code);
3231
Wanpeng Li404d5d72020-04-28 14:23:25 +08003232 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08003233 return 1;
Wanpeng Li404d5d72020-04-28 14:23:25 +08003234
Paolo Bonzini63129752021-03-02 14:40:39 -05003235 return svm_invoke_exit_handler(vcpu, exit_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003236}
3237
3238static void reload_tss(struct kvm_vcpu *vcpu)
3239{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003240 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241
Tejun Heo0fe1e002009-10-29 22:34:14 +09003242 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243 load_TR_desc();
3244}
3245
Paolo Bonzini63129752021-03-02 14:40:39 -05003246static void pre_svm_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247{
Paolo Bonzini63129752021-03-02 14:40:39 -05003248 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3249 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250
Cathy Averyaf18fa72021-01-12 11:43:12 -05003251 /*
Sean Christopherson44f1b552021-04-06 10:18:11 -07003252 * If the previous vmrun of the vmcb occurred on a different physical
3253 * cpu, then mark the vmcb dirty and assign a new asid. Hardware's
3254 * vmcb clean bits are per logical CPU, as are KVM's asid assignments.
3255 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003256 if (unlikely(svm->current_vmcb->cpu != vcpu->cpu)) {
Cathy Avery193015a2021-01-12 11:43:13 -05003257 svm->current_vmcb->asid_generation = 0;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003258 vmcb_mark_all_dirty(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05003259 svm->current_vmcb->cpu = vcpu->cpu;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003260 }
3261
Paolo Bonzini63129752021-03-02 14:40:39 -05003262 if (sev_guest(vcpu->kvm))
3263 return pre_sev_run(svm, vcpu->cpu);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003264
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03003265 /* FIXME: handle wraparound of asid_generation */
Cathy Avery193015a2021-01-12 11:43:13 -05003266 if (svm->current_vmcb->asid_generation != sd->asid_generation)
Tejun Heo0fe1e002009-10-29 22:34:14 +09003267 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003268}
3269
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003270static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3271{
3272 struct vcpu_svm *svm = to_svm(vcpu);
3273
3274 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3275 vcpu->arch.hflags |= HF_NMI_MASK;
Paolo Bonzini63129752021-03-02 14:40:39 -05003276 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003277 svm_set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003278 ++vcpu->stat.nmi_injections;
3279}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003280
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003281static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03003282{
3283 struct vcpu_svm *svm = to_svm(vcpu);
3284
Joerg Roedel2af91942009-08-07 11:49:28 +02003285 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01003286
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03003287 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3288 ++vcpu->stat.irq_injections;
3289
Alexander Graf219b65d2009-06-15 15:21:25 +02003290 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3291 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03003292}
3293
Jason Baronb6a7cc32021-01-14 22:27:54 -05003294static void svm_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003295{
3296 struct vcpu_svm *svm = to_svm(vcpu);
3297
Tom Lendackyf1c63662020-12-14 10:29:50 -05003298 /*
3299 * SEV-ES guests must always keep the CR intercepts cleared. CR
3300 * tracking is done using the CR write traps.
3301 */
3302 if (sev_es_guest(vcpu->kvm))
3303 return;
3304
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003305 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003306 return;
3307
Babu Moger830bd712020-09-11 14:28:50 -05003308 svm_clr_intercept(svm, INTERCEPT_CR8_WRITE);
Radim Krčmář596f3142014-03-11 19:11:18 +01003309
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003310 if (irr == -1)
3311 return;
3312
3313 if (tpr >= irr)
Babu Moger830bd712020-09-11 14:28:50 -05003314 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003315}
3316
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003317bool svm_nmi_blocked(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003318{
3319 struct vcpu_svm *svm = to_svm(vcpu);
3320 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson88c604b2020-04-22 19:25:41 -07003321 bool ret;
Cathy Avery9c3d3702020-04-14 16:11:06 -04003322
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003323 if (!gif_set(svm))
Paolo Bonzinibbdad0b2020-04-23 08:06:43 -04003324 return true;
3325
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003326 if (is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
3327 return false;
3328
3329 ret = (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
Paolo Bonzini63129752021-03-02 14:40:39 -05003330 (vcpu->arch.hflags & HF_NMI_MASK);
Joerg Roedel924584c2010-04-22 12:33:07 +02003331
3332 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003333}
3334
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003335static int svm_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003336{
3337 struct vcpu_svm *svm = to_svm(vcpu);
3338 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003339 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003340
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003341 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
3342 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003343 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003344
3345 return !svm_nmi_blocked(vcpu);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003346}
3347
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003348static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3349{
Paolo Bonzini63129752021-03-02 14:40:39 -05003350 return !!(vcpu->arch.hflags & HF_NMI_MASK);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003351}
3352
3353static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3354{
3355 struct vcpu_svm *svm = to_svm(vcpu);
3356
3357 if (masked) {
Paolo Bonzini63129752021-03-02 14:40:39 -05003358 vcpu->arch.hflags |= HF_NMI_MASK;
3359 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003360 svm_set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003361 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05003362 vcpu->arch.hflags &= ~HF_NMI_MASK;
3363 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003364 svm_clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003365 }
3366}
3367
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003368bool svm_interrupt_blocked(struct kvm_vcpu *vcpu)
Gleb Natapov78646122009-03-23 12:12:11 +02003369{
3370 struct vcpu_svm *svm = to_svm(vcpu);
3371 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003372
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003373 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003374 return true;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003375
Marc Orrc5063552021-12-09 07:52:57 -08003376 if (is_guest_mode(vcpu)) {
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003377 /* As long as interrupts are being delivered... */
Paolo Bonzinie9fd7612020-05-13 13:28:23 -04003378 if ((svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK)
Cathy Avery4995a362021-01-13 07:07:52 -05003379 ? !(svm->vmcb01.ptr->save.rflags & X86_EFLAGS_IF)
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003380 : !(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3381 return true;
3382
3383 /* ... vmexits aren't blocked by the interrupt shadow */
3384 if (nested_exit_on_intr(svm))
3385 return false;
3386 } else {
Marc Orrc5063552021-12-09 07:52:57 -08003387 if (!svm_get_if_flag(vcpu))
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003388 return true;
3389 }
3390
3391 return (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003392}
3393
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003394static int svm_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003395{
3396 struct vcpu_svm *svm = to_svm(vcpu);
3397 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003398 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003399
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003400 /*
3401 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
3402 * e.g. if the IRQ arrived asynchronously after checking nested events.
3403 */
3404 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003405 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003406
3407 return !svm_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02003408}
3409
Jason Baronb6a7cc32021-01-14 22:27:54 -05003410static void svm_enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003411{
Alexander Graf219b65d2009-06-15 15:21:25 +02003412 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02003413
Joerg Roedele0231712010-02-24 18:59:10 +01003414 /*
3415 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3416 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3417 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003418 * we'll get the vintr intercept. However, if the vGIF feature is
3419 * enabled, the STGI interception will not occur. Enable the irq
3420 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01003421 */
Paolo Bonzinib518ba92020-03-04 16:46:47 -05003422 if (vgif_enabled(svm) || gif_set(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003423 /*
3424 * IRQ window is not needed when AVIC is enabled,
3425 * unless we have pending ExtINT since it cannot be injected
3426 * via AVIC. In such case, we need to temporarily disable AVIC,
3427 * and fallback to injecting IRQ via V_IRQ.
3428 */
Maxim Levitsky30eed562021-08-10 23:52:47 +03003429 kvm_request_apicv_update(vcpu->kvm, false, APICV_INHIBIT_REASON_IRQWIN);
Alexander Graf219b65d2009-06-15 15:21:25 +02003430 svm_set_vintr(svm);
Alexander Graf219b65d2009-06-15 15:21:25 +02003431 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003432}
3433
Jason Baronb6a7cc32021-01-14 22:27:54 -05003434static void svm_enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003435{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003436 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003437
Paolo Bonzini63129752021-03-02 14:40:39 -05003438 if ((vcpu->arch.hflags & (HF_NMI_MASK | HF_IRET_MASK)) == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01003439 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03003440
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003441 if (!gif_set(svm)) {
3442 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02003443 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003444 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003445 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003446
Joerg Roedele0231712010-02-24 18:59:10 +01003447 /*
3448 * Something prevents NMI from been injected. Single step over possible
3449 * problem (IRET or exception injection or interrupt shadow)
3450 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003451 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02003452 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03003453 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03003454}
3455
Izik Eiduscbc94022007-10-25 00:29:55 +02003456static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3457{
3458 return 0;
3459}
3460
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07003461static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
3462{
3463 return 0;
3464}
3465
Sean Christophersonf55ac302020-03-20 14:28:12 -07003466void svm_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivityd9e368d2007-06-07 19:18:30 +03003467{
Joerg Roedel38e5e922010-12-03 15:25:16 +01003468 struct vcpu_svm *svm = to_svm(vcpu);
3469
Sean Christopherson4a41e432020-03-20 14:28:17 -07003470 /*
3471 * Flush only the current ASID even if the TLB flush was invoked via
3472 * kvm_flush_remote_tlbs(). Although flushing remote TLBs requires all
3473 * ASIDs to be flushed, KVM uses a single ASID for L1 and L2, and
3474 * unconditionally does a TLB flush on both nested VM-Enter and nested
3475 * VM-Exit (via kvm_mmu_reset_context()).
3476 */
Joerg Roedel38e5e922010-12-03 15:25:16 +01003477 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3478 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3479 else
Cathy Avery193015a2021-01-12 11:43:13 -05003480 svm->current_vmcb->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03003481}
3482
Junaid Shahidfaff8752018-06-29 13:10:05 -07003483static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
3484{
3485 struct vcpu_svm *svm = to_svm(vcpu);
3486
3487 invlpga(gva, svm->vmcb->control.asid);
3488}
3489
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003490static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3491{
3492 struct vcpu_svm *svm = to_svm(vcpu);
3493
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003494 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003495 return;
3496
Babu Moger830bd712020-09-11 14:28:50 -05003497 if (!svm_is_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003498 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03003499 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003500 }
3501}
3502
Joerg Roedel649d6862008-04-16 16:51:15 +02003503static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3504{
3505 struct vcpu_svm *svm = to_svm(vcpu);
3506 u64 cr8;
3507
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003508 if (nested_svm_virtualize_tpr(vcpu) ||
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05003509 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003510 return;
3511
Joerg Roedel649d6862008-04-16 16:51:15 +02003512 cr8 = kvm_get_cr8(vcpu);
3513 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3514 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3515}
3516
Paolo Bonzini63129752021-03-02 14:40:39 -05003517static void svm_complete_interrupts(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003518{
Paolo Bonzini63129752021-03-02 14:40:39 -05003519 struct vcpu_svm *svm = to_svm(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003520 u8 vector;
3521 int type;
3522 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01003523 unsigned int3_injected = svm->int3_injected;
3524
3525 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03003526
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003527 /*
3528 * If we've made progress since setting HF_IRET_MASK, we've
3529 * executed an IRET and can allow NMI injection.
3530 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003531 if ((vcpu->arch.hflags & HF_IRET_MASK) &&
3532 (sev_es_guest(vcpu->kvm) ||
3533 kvm_rip_read(vcpu) != svm->nmi_iret_rip)) {
3534 vcpu->arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3535 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003536 }
Gleb Natapov44c11432009-05-11 13:35:52 +03003537
Paolo Bonzini63129752021-03-02 14:40:39 -05003538 vcpu->arch.nmi_injected = false;
3539 kvm_clear_exception_queue(vcpu);
3540 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003541
3542 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3543 return;
3544
Paolo Bonzini63129752021-03-02 14:40:39 -05003545 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003546
Gleb Natapov9222be12009-04-23 17:14:37 +03003547 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3548 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3549
3550 switch (type) {
3551 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05003552 vcpu->arch.nmi_injected = true;
Gleb Natapov9222be12009-04-23 17:14:37 +03003553 break;
3554 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01003555 /*
Tom Lendackyf1c63662020-12-14 10:29:50 -05003556 * Never re-inject a #VC exception.
3557 */
3558 if (vector == X86_TRAP_VC)
3559 break;
3560
3561 /*
Jan Kiszka66b71382010-02-23 17:47:56 +01003562 * In case of software exceptions, do not reinject the vector,
3563 * but re-execute the instruction instead. Rewind RIP first
3564 * if we emulated INT3 before.
3565 */
3566 if (kvm_exception_is_soft(vector)) {
3567 if (vector == BP_VECTOR && int3_injected &&
Paolo Bonzini63129752021-03-02 14:40:39 -05003568 kvm_is_linear_rip(vcpu, svm->int3_rip))
3569 kvm_rip_write(vcpu,
3570 kvm_rip_read(vcpu) - int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02003571 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01003572 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003573 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3574 u32 err = svm->vmcb->control.exit_int_info_err;
Paolo Bonzini63129752021-03-02 14:40:39 -05003575 kvm_requeue_exception_e(vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03003576
3577 } else
Paolo Bonzini63129752021-03-02 14:40:39 -05003578 kvm_requeue_exception(vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03003579 break;
3580 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05003581 kvm_queue_interrupt(vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03003582 break;
3583 default:
3584 break;
3585 }
3586}
3587
Avi Kivityb463a6f2010-07-20 15:06:17 +03003588static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3589{
3590 struct vcpu_svm *svm = to_svm(vcpu);
3591 struct vmcb_control_area *control = &svm->vmcb->control;
3592
3593 control->exit_int_info = control->event_inj;
3594 control->exit_int_info_err = control->event_inj_err;
3595 control->event_inj = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003596 svm_complete_interrupts(vcpu);
Avi Kivityb463a6f2010-07-20 15:06:17 +03003597}
3598
Sean Christophersonfc4fad72021-12-28 23:24:36 +00003599static int svm_vcpu_pre_run(struct kvm_vcpu *vcpu)
3600{
3601 return 1;
3602}
3603
Wanpeng Li404d5d72020-04-28 14:23:25 +08003604static fastpath_t svm_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003605{
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003606 if (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR &&
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003607 to_svm(vcpu)->vmcb->control.exit_info_1)
3608 return handle_fastpath_set_msr_irqoff(vcpu);
3609
3610 return EXIT_FASTPATH_NONE;
3611}
3612
Paolo Bonzini63129752021-03-02 14:40:39 -05003613static noinstr void svm_vcpu_enter_exit(struct kvm_vcpu *vcpu)
Thomas Gleixner135961e2020-07-08 21:51:58 +02003614{
Paolo Bonzini63129752021-03-02 14:40:39 -05003615 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christophersond1788192021-04-06 10:18:09 -07003616 unsigned long vmcb_pa = svm->current_vmcb->pa;
Paolo Bonzini63129752021-03-02 14:40:39 -05003617
Sean Christophersonbc908e02021-05-04 17:27:35 -07003618 kvm_guest_enter_irqoff();
Thomas Gleixner135961e2020-07-08 21:51:58 +02003619
Paolo Bonzini63129752021-03-02 14:40:39 -05003620 if (sev_es_guest(vcpu->kvm)) {
Sean Christophersond1788192021-04-06 10:18:09 -07003621 __svm_sev_es_vcpu_run(vmcb_pa);
Tom Lendacky16809ec2020-12-10 11:10:08 -06003622 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06003623 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3624
Sean Christophersond1788192021-04-06 10:18:09 -07003625 /*
3626 * Use a single vmcb (vmcb01 because it's always valid) for
3627 * context switching guest state via VMLOAD/VMSAVE, that way
3628 * the state doesn't need to be copied between vmcb01 and
3629 * vmcb02 when switching vmcbs for nested virtualization.
3630 */
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003631 vmload(svm->vmcb01.pa);
Sean Christophersond1788192021-04-06 10:18:09 -07003632 __svm_vcpu_run(vmcb_pa, (unsigned long *)&vcpu->arch.regs);
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003633 vmsave(svm->vmcb01.pa);
Thomas Gleixner135961e2020-07-08 21:51:58 +02003634
Michael Rothe79b91b2021-02-02 13:01:24 -06003635 vmload(__sme_page_pa(sd->save_area));
Tom Lendacky16809ec2020-12-10 11:10:08 -06003636 }
Thomas Gleixner135961e2020-07-08 21:51:58 +02003637
Sean Christophersonbc908e02021-05-04 17:27:35 -07003638 kvm_guest_exit_irqoff();
Thomas Gleixner135961e2020-07-08 21:51:58 +02003639}
3640
Qian Caib95273f2020-04-15 11:37:09 -04003641static __no_kcsan fastpath_t svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003643 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03003644
Lorenzo Bresciad95df952020-12-23 14:45:07 +00003645 trace_kvm_entry(vcpu);
3646
Joerg Roedel2041a062010-04-22 12:33:08 +02003647 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3648 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3649 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3650
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003651 /*
Ladi Proseka12713c2017-06-21 09:07:00 +02003652 * Disable singlestep if we're injecting an interrupt/exception.
3653 * We don't want our modified rflags to be pushed on the stack where
3654 * we might not be able to easily reset them if we disabled NMI
3655 * singlestep later.
3656 */
3657 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
3658 /*
3659 * Event injection happens before external interrupts cause a
3660 * vmexit and interrupts are disabled here, so smp_send_reschedule
3661 * is enough to force an immediate vmexit.
3662 */
3663 disable_nmi_singlestep(svm);
3664 smp_send_reschedule(vcpu->cpu);
3665 }
3666
Paolo Bonzini63129752021-03-02 14:40:39 -05003667 pre_svm_run(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003668
Joerg Roedel649d6862008-04-16 16:51:15 +02003669 sync_lapic_to_cr8(vcpu);
3670
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04003671 if (unlikely(svm->asid != svm->vmcb->control.asid)) {
3672 svm->vmcb->control.asid = svm->asid;
3673 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
3674 }
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02003675 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003676
Vineeth Pillai11836462021-06-03 15:14:40 +00003677 svm_hv_update_vp_id(svm->vmcb, vcpu);
3678
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003679 /*
3680 * Run with all-zero DR6 unless needed, so that we can get the exact cause
3681 * of a #DB.
3682 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003683 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003684 svm_set_dr6(svm, vcpu->arch.dr6);
3685 else
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08003686 svm_set_dr6(svm, DR6_ACTIVE_LOW);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003687
Avi Kivity04d2cc72007-09-10 18:10:54 +03003688 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07003689 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003690
Wanpeng Li010fd372020-09-10 17:50:41 +08003691 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08003692
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003693 /*
3694 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
3695 * it's non-zero. Since vmentry is serialising on affected CPUs, there
3696 * is no need to worry about the conditional branch over the wrmsr
3697 * being speculatively taken.
3698 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003699 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3700 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003701
Paolo Bonzini63129752021-03-02 14:40:39 -05003702 svm_vcpu_enter_exit(vcpu);
Thomas Gleixner15e6c222018-05-11 15:21:01 +02003703
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003704 /*
3705 * We do not use IBRS in the kernel. If this vCPU has used the
3706 * SPEC_CTRL MSR it may have left it on; save the value and
3707 * turn it off. This is much more efficient than blindly adding
3708 * it to the atomic save/restore list. Especially as the former
3709 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
3710 *
3711 * For non-nested case:
3712 * If the L01 MSR bitmap does not intercept the MSR, then we need to
3713 * save it.
3714 *
3715 * For nested case:
3716 * If the L02 MSR bitmap does not intercept the MSR, then we need to
3717 * save it.
3718 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003719 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL) &&
3720 unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01003721 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003722
Paolo Bonzini63129752021-03-02 14:40:39 -05003723 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky16809ec2020-12-10 11:10:08 -06003724 reload_tss(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003725
Babu Mogerd00b99c2021-02-17 10:56:04 -05003726 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3727 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
Thomas Gleixner024d83c2018-08-12 20:41:45 +02003728
Paolo Bonzini63129752021-03-02 14:40:39 -05003729 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky16809ec2020-12-10 11:10:08 -06003730 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3731 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3732 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3733 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3734 }
Paolo Bonzini41e68b62021-11-26 07:00:15 -05003735 vcpu->arch.regs_dirty = 0;
Avi Kivity13c34e02010-10-21 12:20:31 +02003736
Joerg Roedel3781c012011-01-14 16:45:02 +01003737 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003738 kvm_before_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003739
Aaron Lewis139a12c2019-10-21 16:30:25 -07003740 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003741 stgi();
3742
3743 /* Any pending NMI will happen here */
3744
3745 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003746 kvm_after_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003747
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003748 sync_cr8_to_lapic(vcpu);
3749
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003750 svm->next_rip = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003751 if (is_guest_mode(vcpu)) {
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05003752 nested_sync_control_from_vmcb02(svm);
Krish Sadhukhanb93af022021-06-09 14:03:38 -04003753
3754 /* Track VMRUNs that have made past consistency checking */
3755 if (svm->nested.nested_run_pending &&
3756 svm->vmcb->control.exit_code != SVM_EXIT_ERR)
3757 ++vcpu->stat.nested_run;
3758
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -04003759 svm->nested.nested_run_pending = 0;
3760 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003761
Joerg Roedel38e5e922010-12-03 15:25:16 +01003762 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Wanpeng Lie42c6822020-09-12 02:16:39 -04003763 vmcb_mark_all_clean(svm->vmcb);
Joerg Roedel38e5e922010-12-03 15:25:16 +01003764
Gleb Natapov631bc482010-10-14 11:22:52 +02003765 /* if exit due to PF check for async PF */
3766 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003767 vcpu->arch.apf.host_apf_flags =
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003768 kvm_read_and_reset_apf_flags();
Gleb Natapov631bc482010-10-14 11:22:52 +02003769
Paolo Bonzini41e68b62021-11-26 07:00:15 -05003770 vcpu->arch.regs_avail &= ~SVM_REGS_LAZY_LOAD_SET;
Joerg Roedelfe5913e2010-05-17 14:43:34 +02003771
3772 /*
3773 * We need to handle MC intercepts here before the vcpu has a chance to
3774 * change the physical cpu
3775 */
3776 if (unlikely(svm->vmcb->control.exit_code ==
3777 SVM_EXIT_EXCP_BASE + MC_VECTOR))
Paolo Bonzini63129752021-03-02 14:40:39 -05003778 svm_handle_mce(vcpu);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003779
Paolo Bonzini63129752021-03-02 14:40:39 -05003780 svm_complete_interrupts(vcpu);
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003781
3782 if (is_guest_mode(vcpu))
3783 return EXIT_FASTPATH_NONE;
3784
3785 return svm_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003786}
3787
Sean Christophersone83bc092021-03-05 10:31:13 -08003788static void svm_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
Sean Christopherson2a40b902020-07-15 20:41:18 -07003789 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003791 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003792 unsigned long cr3;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003793
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003794 if (npt_enabled) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003795 svm->vmcb->control.nested_cr3 = __sme_set(root_hpa);
Joerg Roedel06e78522020-06-25 10:03:23 +02003796 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003797
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00003798 hv_track_root_tdp(vcpu, root_hpa);
3799
Paolo Bonzini978ce582020-05-20 08:37:37 -04003800 cr3 = vcpu->arch.cr3;
Sean Christophersone83bc092021-03-05 10:31:13 -08003801 } else if (vcpu->arch.mmu->shadow_root_level >= PT64_ROOT_4LEVEL) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003802 cr3 = __sme_set(root_hpa) | kvm_get_active_pcid(vcpu);
Sean Christophersone83bc092021-03-05 10:31:13 -08003803 } else {
3804 /* PCID in the guest should be impossible with a 32-bit MMU. */
3805 WARN_ON_ONCE(kvm_get_active_pcid(vcpu));
3806 cr3 = root_hpa;
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003807 }
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003808
Paolo Bonzini978ce582020-05-20 08:37:37 -04003809 svm->vmcb->save.cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003810 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003811}
3812
Avi Kivity6aa8b732006-12-10 02:21:36 -08003813static int is_disabled(void)
3814{
Joerg Roedel6031a612007-06-22 12:29:50 +03003815 u64 vm_cr;
3816
3817 rdmsrl(MSR_VM_CR, vm_cr);
3818 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3819 return 1;
3820
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821 return 0;
3822}
3823
Ingo Molnar102d8322007-02-19 14:37:47 +02003824static void
3825svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3826{
3827 /*
3828 * Patch in the VMMCALL instruction:
3829 */
3830 hypercall[0] = 0x0f;
3831 hypercall[1] = 0x01;
3832 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02003833}
3834
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003835static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003836{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003837 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003838}
3839
Avi Kivity774ead32007-12-26 13:57:04 +02003840static bool svm_cpu_has_accelerated_tpr(void)
3841{
3842 return false;
3843}
3844
Tom Lendacky57194552020-12-10 11:10:00 -06003845/*
3846 * The kvm parameter can be NULL (module initialization, or invocation before
3847 * VM creation). Be sure to check the kvm parameter before using it.
3848 */
3849static bool svm_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003850{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003851 switch (index) {
3852 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02003853 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003854 return false;
Tom Lendacky57194552020-12-10 11:10:00 -06003855 case MSR_IA32_SMBASE:
3856 /* SEV-ES guests do not support SMM, so report false */
3857 if (kvm && sev_es_guest(kvm))
3858 return false;
3859 break;
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003860 default:
3861 break;
3862 }
3863
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003864 return true;
3865}
3866
Paolo Bonzinifc07e762015-10-01 13:20:22 +02003867static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
3868{
3869 return 0;
3870}
3871
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08003872static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08003873{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003874 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger96308b02020-11-12 16:18:03 -06003875 struct kvm_cpuid_entry2 *best;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003876
Aaron Lewis72041602019-10-21 16:30:20 -07003877 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08003878 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07003879 boot_cpu_has(X86_FEATURE_XSAVES);
3880
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003881 /* Update nrips enabled cache */
Sean Christopherson4eb87462020-03-02 15:57:08 -08003882 svm->nrips_enabled = kvm_cpu_cap_has(X86_FEATURE_NRIPS) &&
Paolo Bonzini63129752021-03-02 14:40:39 -05003883 guest_cpuid_has(vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05003884
Maxim Levitsky5228eb92021-09-14 18:48:24 +03003885 svm->tsc_scaling_enabled = tsc_scaling && guest_cpuid_has(vcpu, X86_FEATURE_TSCRATEMSR);
3886
Sean Christopherson3b195ac2021-05-04 10:17:22 -07003887 svm_recalc_instruction_intercepts(vcpu, svm);
Babu Moger4407a792020-09-11 14:29:19 -05003888
Babu Moger96308b02020-11-12 16:18:03 -06003889 /* For sev guests, the memory encryption bit is not reserved in CR3. */
3890 if (sev_guest(vcpu->kvm)) {
3891 best = kvm_find_cpuid_entry(vcpu, 0x8000001F, 0);
3892 if (best)
Sean Christophersonca29e142021-02-03 16:01:12 -08003893 vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f));
Babu Moger96308b02020-11-12 16:18:03 -06003894 }
3895
Maxim Levitskyadc2a232021-04-01 14:19:28 +03003896 if (kvm_vcpu_apicv_active(vcpu)) {
3897 /*
3898 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
3899 * is exposed to the guest, disable AVIC.
3900 */
3901 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
3902 kvm_request_apicv_update(vcpu->kvm, false,
3903 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05003904
Maxim Levitskyadc2a232021-04-01 14:19:28 +03003905 /*
3906 * Currently, AVIC does not work with nested virtualization.
3907 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
3908 */
3909 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
3910 kvm_request_apicv_update(vcpu->kvm, false,
3911 APICV_INHIBIT_REASON_NESTED);
3912 }
Paolo Bonzini36e81942021-09-23 12:46:07 -04003913 init_vmcb_after_set_cpuid(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08003914}
3915
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003916static bool svm_has_wbinvd_exit(void)
3917{
3918 return true;
3919}
3920
Joerg Roedel80612522011-04-04 12:39:33 +02003921#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003922 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003923#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003924 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003925#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003926 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003927
Mathias Krause09941fb2012-08-30 01:30:20 +02003928static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003929 u32 exit_code;
3930 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003931} x86_intercept_map[] = {
3932 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
3933 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
3934 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
3935 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
3936 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02003937 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
3938 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02003939 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
3940 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
3941 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
3942 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
3943 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
3944 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
3945 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
3946 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02003947 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
3948 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
3949 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
3950 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
3951 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
3952 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
3953 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
3954 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003955 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
3956 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
3957 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02003958 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
3959 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
3960 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
3961 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
3962 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
3963 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
3964 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
3965 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
3966 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02003967 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
3968 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
3969 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
3970 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
3971 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
3972 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
3973 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02003974 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
3975 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
3976 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
3977 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02003978 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003979};
3980
Joerg Roedel80612522011-04-04 12:39:33 +02003981#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003982#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003983#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003984
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02003985static int svm_check_intercept(struct kvm_vcpu *vcpu,
3986 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08003987 enum x86_intercept_stage stage,
3988 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02003989{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003990 struct vcpu_svm *svm = to_svm(vcpu);
3991 int vmexit, ret = X86EMUL_CONTINUE;
3992 struct __x86_intercept icpt_info;
3993 struct vmcb *vmcb = svm->vmcb;
3994
3995 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
3996 goto out;
3997
3998 icpt_info = x86_intercept_map[info->intercept];
3999
Avi Kivity40e19b52011-04-21 12:35:41 +03004000 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004001 goto out;
4002
4003 switch (icpt_info.exit_code) {
4004 case SVM_EXIT_READ_CR0:
4005 if (info->intercept == x86_intercept_cr_read)
4006 icpt_info.exit_code += info->modrm_reg;
4007 break;
4008 case SVM_EXIT_WRITE_CR0: {
4009 unsigned long cr0, val;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004010
4011 if (info->intercept == x86_intercept_cr_write)
4012 icpt_info.exit_code += info->modrm_reg;
4013
Jan Kiszka62baf442014-06-29 21:55:53 +02004014 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
4015 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004016 break;
4017
Emanuele Giuseppe Esposito8fc78902021-11-03 10:05:26 -04004018 if (!(vmcb12_is_intercept(&svm->nested.ctl,
Babu Mogerc62e2e92020-09-11 14:28:28 -05004019 INTERCEPT_SELECTIVE_CR0)))
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004020 break;
4021
4022 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
4023 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
4024
4025 if (info->intercept == x86_intercept_lmsw) {
4026 cr0 &= 0xfUL;
4027 val &= 0xfUL;
4028 /* lmsw can't clear PE - catch this here */
4029 if (cr0 & X86_CR0_PE)
4030 val |= X86_CR0_PE;
4031 }
4032
4033 if (cr0 ^ val)
4034 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4035
4036 break;
4037 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02004038 case SVM_EXIT_READ_DR0:
4039 case SVM_EXIT_WRITE_DR0:
4040 icpt_info.exit_code += info->modrm_reg;
4041 break;
Joerg Roedel80612522011-04-04 12:39:33 +02004042 case SVM_EXIT_MSR:
4043 if (info->intercept == x86_intercept_wrmsr)
4044 vmcb->control.exit_info_1 = 1;
4045 else
4046 vmcb->control.exit_info_1 = 0;
4047 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02004048 case SVM_EXIT_PAUSE:
4049 /*
4050 * We get this for NOP only, but pause
4051 * is rep not, check this here
4052 */
4053 if (info->rep_prefix != REPE_PREFIX)
4054 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02004055 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02004056 case SVM_EXIT_IOIO: {
4057 u64 exit_info;
4058 u32 bytes;
4059
Joerg Roedelf6511932011-04-04 12:39:35 +02004060 if (info->intercept == x86_intercept_in ||
4061 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004062 exit_info = ((info->src_val & 0xffff) << 16) |
4063 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02004064 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02004065 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004066 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02004067 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02004068 }
4069
4070 if (info->intercept == x86_intercept_outs ||
4071 info->intercept == x86_intercept_ins)
4072 exit_info |= SVM_IOIO_STR_MASK;
4073
4074 if (info->rep_prefix)
4075 exit_info |= SVM_IOIO_REP_MASK;
4076
4077 bytes = min(bytes, 4u);
4078
4079 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4080
4081 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4082
4083 vmcb->control.exit_info_1 = exit_info;
4084 vmcb->control.exit_info_2 = info->next_rip;
4085
4086 break;
4087 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004088 default:
4089 break;
4090 }
4091
Bandan Dasf1047652015-06-11 02:05:33 -04004092 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
4093 if (static_cpu_has(X86_FEATURE_NRIPS))
4094 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004095 vmcb->control.exit_code = icpt_info.exit_code;
4096 vmexit = nested_svm_exit_handled(svm);
4097
4098 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4099 : X86EMUL_CONTINUE;
4100
4101out:
4102 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004103}
4104
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07004105static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08004106{
Yang Zhanga547c6d2013-04-11 19:25:10 +08004107}
4108
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004109static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4110{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004111 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04004112 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004113}
4114
Borislav Petkov74f16902017-03-26 23:51:24 +02004115static void svm_setup_mce(struct kvm_vcpu *vcpu)
4116{
4117 /* [63:9] are reserved. */
4118 vcpu->arch.mcg_cap &= 0x1ff;
4119}
4120
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004121bool svm_smi_blocked(struct kvm_vcpu *vcpu)
Ladi Prosek72d7b372017-10-11 16:54:41 +02004122{
Ladi Prosek05cade72017-10-11 16:54:45 +02004123 struct vcpu_svm *svm = to_svm(vcpu);
4124
4125 /* Per APM Vol.2 15.22.2 "Response to SMI" */
4126 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004127 return true;
4128
4129 return is_smm(vcpu);
4130}
4131
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004132static int svm_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004133{
4134 struct vcpu_svm *svm = to_svm(vcpu);
4135 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004136 return -EBUSY;
Ladi Prosek05cade72017-10-11 16:54:45 +02004137
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004138 /* An SMI must not be injected into L2 if it's supposed to VM-Exit. */
4139 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_smi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004140 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004141
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004142 return !svm_smi_blocked(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02004143}
4144
Sean Christophersonecc513e2021-06-09 11:56:19 -07004145static int svm_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004146{
Ladi Prosek05cade72017-10-11 16:54:45 +02004147 struct vcpu_svm *svm = to_svm(vcpu);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004148 struct kvm_host_map map_save;
Ladi Prosek05cade72017-10-11 16:54:45 +02004149 int ret;
4150
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004151 if (!is_guest_mode(vcpu))
4152 return 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004153
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004154 /* FED8h - SVM Guest */
4155 put_smstate(u64, smstate, 0x7ed8, 1);
4156 /* FEE0h - SVM Guest VMCB Physical Address */
4157 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb12_gpa);
Ladi Prosek05cade72017-10-11 16:54:45 +02004158
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004159 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4160 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4161 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004162
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004163 ret = nested_svm_vmexit(svm);
4164 if (ret)
4165 return ret;
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004166
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004167 /*
4168 * KVM uses VMCB01 to store L1 host state while L2 runs but
4169 * VMCB01 is going to be used during SMM and thus the state will
4170 * be lost. Temporary save non-VMLOAD/VMSAVE state to the host save
4171 * area pointed to by MSR_VM_HSAVE_PA. APM guarantees that the
4172 * format of the area is identical to guest save area offsetted
4173 * by 0x400 (matches the offset of 'struct vmcb_save_area'
4174 * within 'struct vmcb'). Note: HSAVE area may also be used by
4175 * L1 hypervisor to save additional host context (e.g. KVM does
4176 * that, see svm_prepare_guest_switch()) which must be
4177 * preserved.
4178 */
4179 if (kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.hsave_msr),
4180 &map_save) == -EINVAL)
4181 return 1;
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004182
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004183 BUILD_BUG_ON(offsetof(struct vmcb, save) != 0x400);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004184
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004185 svm_copy_vmrun_state(map_save.hva + 0x400,
4186 &svm->vmcb01.ptr->save);
4187
4188 kvm_vcpu_unmap(vcpu, &map_save, true);
Ladi Prosek0234bf82017-10-11 16:54:40 +02004189 return 0;
4190}
4191
Sean Christophersonecc513e2021-06-09 11:56:19 -07004192static int svm_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004193{
Ladi Prosek05cade72017-10-11 16:54:45 +02004194 struct vcpu_svm *svm = to_svm(vcpu);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004195 struct kvm_host_map map, map_save;
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004196 u64 saved_efer, vmcb12_gpa;
4197 struct vmcb *vmcb12;
4198 int ret;
Ladi Prosek05cade72017-10-11 16:54:45 +02004199
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004200 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
4201 return 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004202
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004203 /* Non-zero if SMI arrived while vCPU was in guest mode. */
4204 if (!GET_SMSTATE(u64, smstate, 0x7ed8))
4205 return 0;
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004206
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004207 if (!guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4208 return 1;
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004209
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004210 saved_efer = GET_SMSTATE(u64, smstate, 0x7ed0);
4211 if (!(saved_efer & EFER_SVME))
4212 return 1;
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004213
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004214 vmcb12_gpa = GET_SMSTATE(u64, smstate, 0x7ee0);
4215 if (kvm_vcpu_map(vcpu, gpa_to_gfn(vmcb12_gpa), &map) == -EINVAL)
4216 return 1;
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03004217
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004218 ret = 1;
4219 if (kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.hsave_msr), &map_save) == -EINVAL)
4220 goto unmap_map;
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004221
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004222 if (svm_allocate_nested(svm))
4223 goto unmap_save;
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004224
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004225 /*
4226 * Restore L1 host state from L1 HSAVE area as VMCB01 was
4227 * used during SMM (see svm_enter_smm())
4228 */
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004229
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004230 svm_copy_vmrun_state(&svm->vmcb01.ptr->save, map_save.hva + 0x400);
Maxim Levitskye2e6e442021-09-13 17:09:49 +03004231
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004232 /*
4233 * Enter the nested guest now
4234 */
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004235
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004236 vmcb12 = map.hva;
Emanuele Giuseppe Esposito79071602021-11-03 10:05:23 -04004237 nested_copy_vmcb_control_to_cache(svm, &vmcb12->control);
Emanuele Giuseppe Espositof2740a82021-11-03 10:05:22 -04004238 nested_copy_vmcb_save_to_cache(svm, &vmcb12->save);
Maxim Levitsky136a55c2021-09-22 10:28:43 -04004239 ret = enter_svm_guest_mode(vcpu, vmcb12_gpa, vmcb12, false);
4240
4241unmap_save:
4242 kvm_vcpu_unmap(vcpu, &map_save, true);
4243unmap_map:
4244 kvm_vcpu_unmap(vcpu, &map, true);
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004245 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02004246}
4247
Jason Baronb6a7cc32021-01-14 22:27:54 -05004248static void svm_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004249{
4250 struct vcpu_svm *svm = to_svm(vcpu);
4251
4252 if (!gif_set(svm)) {
4253 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02004254 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004255 /* STGI will cause a vm exit */
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004256 } else {
4257 /* We must be in SMM; RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004258 }
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004259}
4260
Sean Christopherson4d31d9e2022-01-20 01:07:15 +00004261static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, int emul_type,
4262 void *insn, int insn_len)
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004263{
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004264 bool smep, smap, is_user;
4265 unsigned long cr4;
Sean Christopherson3280cc22022-01-20 01:07:18 +00004266 u64 error_code;
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004267
Sean Christopherson55467fc2022-01-20 01:07:11 +00004268 /* Emulation is always possible when KVM has access to all guest state. */
4269 if (!sev_guest(vcpu->kvm))
4270 return true;
4271
Sean Christopherson132627c2022-01-20 01:07:16 +00004272 /* #UD and #GP should never be intercepted for SEV guests. */
4273 WARN_ON_ONCE(emul_type & (EMULTYPE_TRAP_UD |
4274 EMULTYPE_TRAP_UD_FORCED |
4275 EMULTYPE_VMWARE_GP));
4276
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004277 /*
Sean Christopherson55467fc2022-01-20 01:07:11 +00004278 * Emulation is impossible for SEV-ES guests as KVM doesn't have access
4279 * to guest register state.
Tom Lendackybc624d92020-12-10 11:09:44 -06004280 */
4281 if (sev_es_guest(vcpu->kvm))
4282 return false;
4283
4284 /*
Sean Christopherson04c40f32022-01-20 01:07:17 +00004285 * Emulation is possible if the instruction is already decoded, e.g.
4286 * when completing I/O after returning from userspace.
4287 */
4288 if (emul_type & EMULTYPE_NO_DECODE)
4289 return true;
4290
4291 /*
4292 * Emulation is possible for SEV guests if and only if a prefilled
4293 * buffer containing the bytes of the intercepted instruction is
4294 * available. SEV guest memory is encrypted with a guest specific key
4295 * and cannot be decrypted by KVM, i.e. KVM would read cyphertext and
4296 * decode garbage.
4297 *
4298 * Inject #UD if KVM reached this point without an instruction buffer.
4299 * In practice, this path should never be hit by a well-behaved guest,
4300 * e.g. KVM doesn't intercept #UD or #GP for SEV guests, but this path
4301 * is still theoretically reachable, e.g. via unaccelerated fault-like
4302 * AVIC access, and needs to be handled by KVM to avoid putting the
4303 * guest into an infinite loop. Injecting #UD is somewhat arbitrary,
4304 * but its the least awful option given lack of insight into the guest.
4305 */
4306 if (unlikely(!insn)) {
4307 kvm_queue_exception(vcpu, UD_VECTOR);
4308 return false;
4309 }
4310
4311 /*
4312 * Emulate for SEV guests if the insn buffer is not empty. The buffer
4313 * will be empty if the DecodeAssist microcode cannot fetch bytes for
4314 * the faulting instruction because the code fetch itself faulted, e.g.
4315 * the guest attempted to fetch from emulated MMIO or a guest page
4316 * table used to translate CS:RIP resides in emulated MMIO.
4317 */
4318 if (likely(insn_len))
4319 return true;
4320
4321 /*
Liran Alon118154b2019-07-17 02:56:58 +03004322 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
4323 *
4324 * Errata:
Sean Christopherson04c40f32022-01-20 01:07:17 +00004325 * When CPU raises #NPF on guest data access and vCPU CR4.SMAP=1, it is
4326 * possible that CPU microcode implementing DecodeAssist will fail to
4327 * read guest memory at CS:RIP and vmcb.GuestIntrBytes will incorrectly
4328 * be '0'. This happens because microcode reads CS:RIP using a _data_
4329 * loap uop with CPL=0 privileges. If the load hits a SMAP #PF, ucode
4330 * gives up and does not fill the instruction bytes buffer.
Liran Alon118154b2019-07-17 02:56:58 +03004331 *
Sean Christopherson3280cc22022-01-20 01:07:18 +00004332 * As above, KVM reaches this point iff the VM is an SEV guest, the CPU
4333 * supports DecodeAssist, a #NPF was raised, KVM's page fault handler
4334 * triggered emulation (e.g. for MMIO), and the CPU returned 0 in the
4335 * GuestIntrBytes field of the VMCB.
Liran Alon118154b2019-07-17 02:56:58 +03004336 *
Sean Christopherson04c40f32022-01-20 01:07:17 +00004337 * This does _not_ mean that the erratum has been encountered, as the
4338 * DecodeAssist will also fail if the load for CS:RIP hits a legitimate
4339 * #PF, e.g. if the guest attempt to execute from emulated MMIO and
4340 * encountered a reserved/not-present #PF.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004341 *
Sean Christopherson3280cc22022-01-20 01:07:18 +00004342 * To hit the erratum, the following conditions must be true:
4343 * 1. CR4.SMAP=1 (obviously).
4344 * 2. CR4.SMEP=0 || CPL=3. If SMEP=1 and CPL<3, the erratum cannot
4345 * have been hit as the guest would have encountered a SMEP
4346 * violation #PF, not a #NPF.
4347 * 3. The #NPF is not due to a code fetch, in which case failure to
4348 * retrieve the instruction bytes is legitimate (see abvoe).
4349 *
4350 * In addition, don't apply the erratum workaround if the #NPF occurred
4351 * while translating guest page tables (see below).
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004352 */
Sean Christopherson3280cc22022-01-20 01:07:18 +00004353 error_code = to_svm(vcpu)->vmcb->control.exit_info_1;
4354 if (error_code & (PFERR_GUEST_PAGE_MASK | PFERR_FETCH_MASK))
4355 goto resume_guest;
4356
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004357 cr4 = kvm_read_cr4(vcpu);
4358 smep = cr4 & X86_CR4_SMEP;
4359 smap = cr4 & X86_CR4_SMAP;
4360 is_user = svm_get_cpl(vcpu) == 3;
Liran Alon118154b2019-07-17 02:56:58 +03004361 if (smap && (!smep || is_user)) {
Liran Alon118154b2019-07-17 02:56:58 +03004362 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004363 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4364 }
4365
Sean Christopherson3280cc22022-01-20 01:07:18 +00004366resume_guest:
4367 /*
4368 * If the erratum was not hit, simply resume the guest and let it fault
4369 * again. While awful, e.g. the vCPU may get stuck in an infinite loop
4370 * if the fault is at CPL=0, it's the lesser of all evils. Exiting to
4371 * userspace will kill the guest, and letting the emulator read garbage
4372 * will yield random behavior and potentially corrupt the guest.
4373 *
4374 * Simply resuming the guest is technically not a violation of the SEV
4375 * architecture. AMD's APM states that all code fetches and page table
4376 * accesses for SEV guest are encrypted, regardless of the C-Bit. The
4377 * APM also states that encrypted accesses to MMIO are "ignored", but
4378 * doesn't explicitly define "ignored", i.e. doing nothing and letting
4379 * the guest spin is technically "ignoring" the access.
4380 */
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004381 return false;
4382}
4383
Liran Alon4b9852f2019-08-26 13:24:49 +03004384static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
4385{
4386 struct vcpu_svm *svm = to_svm(vcpu);
4387
4388 /*
4389 * TODO: Last condition latch INIT signals on vCPU when
4390 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
Paolo Bonzini33b22172020-04-17 10:24:18 -04004391 * To properly emulate the INIT intercept,
4392 * svm_check_nested_events() should call nested_svm_vmexit()
4393 * if an INIT signal is pending.
Liran Alon4b9852f2019-08-26 13:24:49 +03004394 */
4395 return !gif_set(svm) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05004396 (vmcb_is_intercept(&svm->vmcb->control, INTERCEPT_INIT));
Liran Alon4b9852f2019-08-26 13:24:49 +03004397}
4398
Tom Lendacky647daca2021-01-04 14:20:01 -06004399static void svm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
4400{
4401 if (!sev_es_guest(vcpu->kvm))
4402 return kvm_vcpu_deliver_sipi_vector(vcpu, vector);
4403
4404 sev_vcpu_deliver_sipi_vector(vcpu, vector);
4405}
4406
Joerg Roedeleaf78262020-03-24 10:41:54 +01004407static void svm_vm_destroy(struct kvm *kvm)
4408{
4409 avic_vm_destroy(kvm);
4410 sev_vm_destroy(kvm);
4411}
4412
4413static int svm_vm_init(struct kvm *kvm)
4414{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004415 if (!pause_filter_count || !pause_filter_thresh)
4416 kvm->arch.pause_in_guest = true;
4417
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +02004418 if (enable_apicv) {
Joerg Roedeleaf78262020-03-24 10:41:54 +01004419 int ret = avic_vm_init(kvm);
4420 if (ret)
4421 return ret;
4422 }
4423
Joerg Roedeleaf78262020-03-24 10:41:54 +01004424 return 0;
4425}
4426
Sean Christopherson9c14ee22020-03-21 13:26:03 -07004427static struct kvm_x86_ops svm_x86_ops __initdata = {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07004428 .name = "kvm_amd",
4429
Li RongQingdd58f3c2020-02-23 16:13:12 +08004430 .hardware_unsetup = svm_hardware_teardown,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004431 .hardware_enable = svm_hardware_enable,
4432 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02004433 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02004434 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004435
4436 .vcpu_create = svm_create_vcpu,
4437 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004438 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004439
Sean Christopherson562b6b02020-01-26 16:41:13 -08004440 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06004441 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004442 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004443
Avi Kivity04d2cc72007-09-10 18:10:54 +03004444 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004445 .vcpu_load = svm_vcpu_load,
4446 .vcpu_put = svm_vcpu_put,
Sean Christophersona3c19d52021-12-08 01:52:33 +00004447 .vcpu_blocking = avic_vcpu_blocking,
4448 .vcpu_unblocking = avic_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004449
Jason Baronb6a7cc32021-01-14 22:27:54 -05004450 .update_exception_bitmap = svm_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06004451 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452 .get_msr = svm_get_msr,
4453 .set_msr = svm_set_msr,
4454 .get_segment_base = svm_get_segment_base,
4455 .get_segment = svm_get_segment,
4456 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004457 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10004458 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459 .set_cr0 = svm_set_cr0,
Michael Roth405329f2021-12-16 11:13:54 -06004460 .post_set_cr3 = svm_post_set_cr3,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07004461 .is_valid_cr4 = svm_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462 .set_cr4 = svm_set_cr4,
4463 .set_efer = svm_set_efer,
4464 .get_idt = svm_get_idt,
4465 .set_idt = svm_set_idt,
4466 .get_gdt = svm_get_gdt,
4467 .set_gdt = svm_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03004468 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004469 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004470 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004471 .get_rflags = svm_get_rflags,
4472 .set_rflags = svm_set_rflags,
Marc Orrc5063552021-12-09 07:52:57 -08004473 .get_if_flag = svm_get_if_flag,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004474
Sean Christopherson77809382020-03-20 14:28:18 -07004475 .tlb_flush_all = svm_flush_tlb,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004476 .tlb_flush_current = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07004477 .tlb_flush_gva = svm_flush_tlb_gva,
Sean Christopherson72b38322020-03-20 14:28:13 -07004478 .tlb_flush_guest = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004479
Sean Christophersonfc4fad72021-12-28 23:24:36 +00004480 .vcpu_pre_run = svm_vcpu_pre_run,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004481 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004482 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004483 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08004484 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004485 .set_interrupt_shadow = svm_set_interrupt_shadow,
4486 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004487 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004488 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004489 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004490 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03004491 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02004492 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004493 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004494 .get_nmi_mask = svm_get_nmi_mask,
4495 .set_nmi_mask = svm_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004496 .enable_nmi_window = svm_enable_nmi_window,
4497 .enable_irq_window = svm_enable_irq_window,
4498 .update_cr8_intercept = svm_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04004499 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03004500 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06004501 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08004502 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004503 .hwapic_irr_update = svm_hwapic_irr_update,
4504 .hwapic_isr_update = svm_hwapic_isr_update,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05004505 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02004506
4507 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004508 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004509 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004510
Avi Kivity586f9602010-11-18 13:09:54 +02004511 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02004512
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004513 .vcpu_after_set_cpuid = svm_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004514
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004515 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10004516
Ilias Stamatis307a94c2021-05-26 19:44:13 +01004517 .get_l2_tsc_offset = svm_get_l2_tsc_offset,
4518 .get_l2_tsc_multiplier = svm_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01004519 .write_tsc_offset = svm_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01004520 .write_tsc_multiplier = svm_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004521
Paolo Bonzini727a7e22020-03-05 03:52:50 -05004522 .load_mmu_pgd = svm_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004523
4524 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07004525 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004526
Sean Christophersond264ee02018-08-27 15:21:12 -07004527 .request_immediate_exit = __kvm_request_immediate_exit,
4528
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004529 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02004530
4531 .pmu_ops = &amd_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04004532 .nested_ops = &svm_nested_ops,
4533
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004534 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08004535 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004536 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02004537 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004538
Ladi Prosek72d7b372017-10-11 16:54:41 +02004539 .smi_allowed = svm_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07004540 .enter_smm = svm_enter_smm,
4541 .leave_smm = svm_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004542 .enable_smi_window = svm_enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004543
4544 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06004545 .mem_enc_reg_region = svm_register_enc_region,
4546 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004547
Nathan Tempelman54526d12021-04-08 22:32:14 +00004548 .vm_copy_enc_context_from = svm_vm_copy_asid_from,
Peter Gondab5663932021-10-21 10:43:00 -07004549 .vm_move_enc_context_from = svm_vm_migrate_from,
Nathan Tempelman54526d12021-04-08 22:32:14 +00004550
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004551 .can_emulate_instruction = svm_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03004552
4553 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Alexander Graffd6fa732020-09-25 16:34:19 +02004554
4555 .msr_filter_changed = svm_msr_filter_changed,
Tom Lendackyf1c63662020-12-14 10:29:50 -05004556 .complete_emulated_msr = svm_complete_emulated_msr,
Tom Lendacky647daca2021-01-04 14:20:01 -06004557
4558 .vcpu_deliver_sipi_vector = svm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004559};
4560
Sean Christopherson54744e12021-12-08 01:52:32 +00004561/*
4562 * The default MMIO mask is a single bit (excluding the present bit),
4563 * which could conflict with the memory encryption bit. Check for
4564 * memory encryption support and override the default MMIO mask if
4565 * memory encryption is enabled.
4566 */
4567static __init void svm_adjust_mmio_mask(void)
4568{
4569 unsigned int enc_bit, mask_bit;
4570 u64 msr, mask;
4571
4572 /* If there is no memory encryption support, use existing mask */
4573 if (cpuid_eax(0x80000000) < 0x8000001f)
4574 return;
4575
4576 /* If memory encryption is not enabled, use existing mask */
4577 rdmsrl(MSR_AMD64_SYSCFG, msr);
4578 if (!(msr & MSR_AMD64_SYSCFG_MEM_ENCRYPT))
4579 return;
4580
4581 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
4582 mask_bit = boot_cpu_data.x86_phys_bits;
4583
4584 /* Increment the mask bit if it is the same as the encryption bit */
4585 if (enc_bit == mask_bit)
4586 mask_bit++;
4587
4588 /*
4589 * If the mask bit location is below 52, then some bits above the
4590 * physical addressing limit will always be reserved, so use the
4591 * rsvd_bits() function to generate the mask. This mask, along with
4592 * the present bit, will be used to generate a page fault with
4593 * PFER.RSV = 1.
4594 *
4595 * If the mask bit location is 52 (or above), then clear the mask.
4596 */
4597 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
4598
4599 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
4600}
4601
4602static __init void svm_set_cpu_caps(void)
4603{
4604 kvm_set_cpu_caps();
4605
4606 supported_xss = 0;
4607
4608 /* CPUID 0x80000001 and 0x8000000A (SVM features) */
4609 if (nested) {
4610 kvm_cpu_cap_set(X86_FEATURE_SVM);
4611
4612 if (nrips)
4613 kvm_cpu_cap_set(X86_FEATURE_NRIPS);
4614
4615 if (npt_enabled)
4616 kvm_cpu_cap_set(X86_FEATURE_NPT);
4617
4618 if (tsc_scaling)
4619 kvm_cpu_cap_set(X86_FEATURE_TSCRATEMSR);
4620
4621 /* Nested VM can receive #VMEXIT instead of triggering #GP */
4622 kvm_cpu_cap_set(X86_FEATURE_SVME_ADDR_CHK);
4623 }
4624
4625 /* CPUID 0x80000008 */
4626 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
4627 boot_cpu_has(X86_FEATURE_AMD_SSBD))
4628 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
4629
4630 /* AMD PMU PERFCTR_CORE CPUID */
4631 if (enable_pmu && boot_cpu_has(X86_FEATURE_PERFCTR_CORE))
4632 kvm_cpu_cap_set(X86_FEATURE_PERFCTR_CORE);
4633
4634 /* CPUID 0x8000001F (SME/SEV features) */
4635 sev_set_cpu_caps();
4636}
4637
4638static __init int svm_hardware_setup(void)
4639{
4640 int cpu;
4641 struct page *iopm_pages;
4642 void *iopm_va;
4643 int r;
4644 unsigned int order = get_order(IOPM_SIZE);
4645
4646 /*
4647 * NX is required for shadow paging and for NPT if the NX huge pages
4648 * mitigation is enabled.
4649 */
4650 if (!boot_cpu_has(X86_FEATURE_NX)) {
4651 pr_err_ratelimited("NX (Execute Disable) not supported\n");
4652 return -EOPNOTSUPP;
4653 }
4654 kvm_enable_efer_bits(EFER_NX);
4655
4656 iopm_pages = alloc_pages(GFP_KERNEL, order);
4657
4658 if (!iopm_pages)
4659 return -ENOMEM;
4660
4661 iopm_va = page_address(iopm_pages);
4662 memset(iopm_va, 0xff, PAGE_SIZE * (1 << order));
4663 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
4664
4665 init_msrpm_offsets();
4666
4667 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
4668
4669 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
4670 kvm_enable_efer_bits(EFER_FFXSR);
4671
4672 if (tsc_scaling) {
4673 if (!boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
4674 tsc_scaling = false;
4675 } else {
4676 pr_info("TSC scaling supported\n");
4677 kvm_has_tsc_control = true;
4678 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
4679 kvm_tsc_scaling_ratio_frac_bits = 32;
4680 }
4681 }
4682
4683 tsc_aux_uret_slot = kvm_add_user_return_msr(MSR_TSC_AUX);
4684
4685 /* Check for pause filtering support */
4686 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
4687 pause_filter_count = 0;
4688 pause_filter_thresh = 0;
4689 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
4690 pause_filter_thresh = 0;
4691 }
4692
4693 if (nested) {
4694 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
4695 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
4696 }
4697
4698 /*
4699 * KVM's MMU doesn't support using 2-level paging for itself, and thus
4700 * NPT isn't supported if the host is using 2-level paging since host
4701 * CR4 is unchanged on VMRUN.
4702 */
4703 if (!IS_ENABLED(CONFIG_X86_64) && !IS_ENABLED(CONFIG_X86_PAE))
4704 npt_enabled = false;
4705
4706 if (!boot_cpu_has(X86_FEATURE_NPT))
4707 npt_enabled = false;
4708
4709 /* Force VM NPT level equal to the host's paging level */
4710 kvm_configure_mmu(npt_enabled, get_npt_level(),
4711 get_npt_level(), PG_LEVEL_1G);
4712 pr_info("kvm: Nested Paging %sabled\n", npt_enabled ? "en" : "dis");
4713
4714 /* Note, SEV setup consumes npt_enabled. */
4715 sev_hardware_setup();
4716
4717 svm_hv_hardware_setup();
4718
4719 svm_adjust_mmio_mask();
4720
4721 for_each_possible_cpu(cpu) {
4722 r = svm_cpu_init(cpu);
4723 if (r)
4724 goto err;
4725 }
4726
4727 if (nrips) {
4728 if (!boot_cpu_has(X86_FEATURE_NRIPS))
4729 nrips = false;
4730 }
4731
4732 enable_apicv = avic = avic && npt_enabled && boot_cpu_has(X86_FEATURE_AVIC);
4733
4734 if (enable_apicv) {
4735 pr_info("AVIC enabled\n");
4736
4737 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
Sean Christophersona3c19d52021-12-08 01:52:33 +00004738 } else {
4739 svm_x86_ops.vcpu_blocking = NULL;
4740 svm_x86_ops.vcpu_unblocking = NULL;
Sean Christopherson54744e12021-12-08 01:52:32 +00004741 }
4742
4743 if (vls) {
4744 if (!npt_enabled ||
4745 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
4746 !IS_ENABLED(CONFIG_X86_64)) {
4747 vls = false;
4748 } else {
4749 pr_info("Virtual VMLOAD VMSAVE supported\n");
4750 }
4751 }
4752
4753 if (boot_cpu_has(X86_FEATURE_SVME_ADDR_CHK))
4754 svm_gp_erratum_intercept = false;
4755
4756 if (vgif) {
4757 if (!boot_cpu_has(X86_FEATURE_VGIF))
4758 vgif = false;
4759 else
4760 pr_info("Virtual GIF supported\n");
4761 }
4762
4763 if (lbrv) {
4764 if (!boot_cpu_has(X86_FEATURE_LBRV))
4765 lbrv = false;
4766 else
4767 pr_info("LBR virtualization supported\n");
4768 }
4769
4770 if (!enable_pmu)
4771 pr_info("PMU virtualization is disabled\n");
4772
4773 svm_set_cpu_caps();
4774
4775 /*
4776 * It seems that on AMD processors PTE's accessed bit is
4777 * being set by the CPU hardware before the NPF vmexit.
4778 * This is not expected behaviour and our tests fail because
4779 * of it.
4780 * A workaround here is to disable support for
4781 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR if NPT is enabled.
4782 * In this case userspace can know if there is support using
4783 * KVM_CAP_SMALLER_MAXPHYADDR extension and decide how to handle
4784 * it
4785 * If future AMD CPU models change the behaviour described above,
4786 * this variable can be changed accordingly
4787 */
4788 allow_smaller_maxphyaddr = !npt_enabled;
4789
4790 return 0;
4791
4792err:
4793 svm_hardware_teardown();
4794 return r;
4795}
4796
4797
Sean Christophersond008dfd2020-03-21 13:25:56 -07004798static struct kvm_x86_init_ops svm_init_ops __initdata = {
4799 .cpu_has_kvm_support = has_svm,
4800 .disabled_by_bios = is_disabled,
4801 .hardware_setup = svm_hardware_setup,
4802 .check_processor_compatibility = svm_check_processor_compat,
4803
4804 .runtime_ops = &svm_x86_ops,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004805};
4806
4807static int __init svm_init(void)
4808{
Tom Lendackyd07f46f2020-09-07 15:15:03 +02004809 __unused_size_checks();
4810
Sean Christophersond008dfd2020-03-21 13:25:56 -07004811 return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03004812 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813}
4814
4815static void __exit svm_exit(void)
4816{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004817 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004818}
4819
4820module_init(svm_init)
4821module_exit(svm_exit)