blob: e28f6b30b483d97347720b7d405a93a2a3703fc6 [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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080028
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050029#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010030#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020031#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040032#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010033#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020034#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050035#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020036#include <asm/spec-ctrl.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010037#include <asm/cpu_device_id.h>
Tom Lendackyf1c63662020-12-14 10:29:50 -050038#include <asm/traps.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080039
Eduardo Habkost63d11422008-11-17 19:03:20 -020040#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030041#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020042
Joerg Roedel883b0a92020-03-24 10:41:52 +010043#include "svm.h"
Sean Christopherson35a78312020-12-30 16:27:00 -080044#include "svm_ops.h"
Joerg Roedel883b0a92020-03-24 10:41:52 +010045
Avi Kivity4ecac3f2008-05-13 13:23:38 +030046#define __ex(x) __kvm_handle_fault_on_reboot(x)
47
Avi Kivity6aa8b732006-12-10 02:21:36 -080048MODULE_AUTHOR("Qumranet");
49MODULE_LICENSE("GPL");
50
Valdis Klētnieks575b2552020-02-27 21:49:52 -050051#ifdef MODULE
Josh Triplettae759542012-03-28 11:32:28 -070052static const struct x86_cpu_id svm_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010053 X86_MATCH_FEATURE(X86_FEATURE_SVM, NULL),
Josh Triplettae759542012-03-28 11:32:28 -070054 {}
55};
56MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050057#endif
Josh Triplettae759542012-03-28 11:32:28 -070058
Avi Kivity6aa8b732006-12-10 02:21:36 -080059#define SEG_TYPE_LDT 2
60#define SEG_TYPE_BUSY_TSS16 3
61
Andre Przywara6bc31bd2010-04-11 23:07:28 +020062#define SVM_FEATURE_LBRV (1 << 1)
63#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010064#define SVM_FEATURE_TSC_RATE (1 << 4)
65#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
66#define SVM_FEATURE_FLUSH_ASID (1 << 6)
67#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020068#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030069
Joerg Roedel24e09cb2008-02-13 18:58:47 +010070#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
71
Joerg Roedelfbc0db72011-03-25 09:44:46 +010072#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010073#define TSC_RATIO_MIN 0x0000000000000001ULL
74#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010075
Joerg Roedel67ec6602010-05-17 14:43:35 +020076static bool erratum_383_found __read_mostly;
77
Joerg Roedel883b0a92020-03-24 10:41:52 +010078u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
Joerg Roedel323c3d82010-03-01 15:34:37 +010079
Boris Ostrovsky2b036c62012-01-09 14:00:35 -050080/*
81 * Set osvw_len to higher value when updated Revision Guides
82 * are published and we know what the new status bits are
83 */
84static uint64_t osvw_len = 4, osvw_status;
85
Joerg Roedelfbc0db72011-03-25 09:44:46 +010086static DEFINE_PER_CPU(u64, current_tsc_ratio);
87#define TSC_RATIO_DEFAULT 0x0100000000ULL
88
Mathias Krause09941fb2012-08-30 01:30:20 +020089static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +010090 u32 index; /* Index of the MSR */
Tom Lendacky376c6d22020-12-10 11:10:06 -060091 bool always; /* True if intercept is initially cleared */
Alexander Graffd6fa732020-09-25 16:34:19 +020092} direct_access_msrs[MAX_DIRECT_ACCESS_MSRS] = {
Brian Gerst8c065852010-07-17 09:03:26 -040093 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010094 { .index = MSR_IA32_SYSENTER_CS, .always = true },
Maxim Levitskyadc2a232021-04-01 14:19:28 +030095 { .index = MSR_IA32_SYSENTER_EIP, .always = false },
96 { .index = MSR_IA32_SYSENTER_ESP, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010097#ifdef CONFIG_X86_64
98 { .index = MSR_GS_BASE, .always = true },
99 { .index = MSR_FS_BASE, .always = true },
100 { .index = MSR_KERNEL_GS_BASE, .always = true },
101 { .index = MSR_LSTAR, .always = true },
102 { .index = MSR_CSTAR, .always = true },
103 { .index = MSR_SYSCALL_MASK, .always = true },
104#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100105 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100106 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100107 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
108 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
109 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
110 { .index = MSR_IA32_LASTINTTOIP, .always = false },
Tom Lendacky376c6d22020-12-10 11:10:06 -0600111 { .index = MSR_EFER, .always = false },
112 { .index = MSR_IA32_CR_PAT, .always = false },
113 { .index = MSR_AMD64_SEV_ES_GHCB, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100114 { .index = MSR_INVALID, .always = false },
Avi Kivity6c8166a2009-05-31 18:15:37 +0300115};
116
Babu Moger8566ac82018-03-16 16:37:26 -0400117/*
118 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
119 * pause_filter_count: On processors that support Pause filtering(indicated
120 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
121 * count value. On VMRUN this value is loaded into an internal counter.
122 * Each time a pause instruction is executed, this counter is decremented
123 * until it reaches zero at which time a #VMEXIT is generated if pause
124 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
125 * Intercept Filtering for more details.
126 * This also indicate if ple logic enabled.
127 *
128 * pause_filter_thresh: In addition, some processor families support advanced
129 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
130 * the amount of time a guest is allowed to execute in a pause loop.
131 * In this mode, a 16-bit pause filter threshold field is added in the
132 * VMCB. The threshold value is a cycle count that is used to reset the
133 * pause counter. As with simple pause filtering, VMRUN loads the pause
134 * count value from VMCB into an internal counter. Then, on each pause
135 * instruction the hardware checks the elapsed number of cycles since
136 * the most recent pause instruction against the pause filter threshold.
137 * If the elapsed cycle count is greater than the pause filter threshold,
138 * then the internal pause count is reloaded from the VMCB and execution
139 * continues. If the elapsed cycle count is less than the pause filter
140 * threshold, then the internal pause count is decremented. If the count
141 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
142 * triggered. If advanced pause filtering is supported and pause filter
143 * threshold field is set to zero, the filter will operate in the simpler,
144 * count only mode.
145 */
146
147static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
148module_param(pause_filter_thresh, ushort, 0444);
149
150static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
151module_param(pause_filter_count, ushort, 0444);
152
153/* Default doubles per-vcpu window every exit. */
154static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
155module_param(pause_filter_count_grow, ushort, 0444);
156
157/* Default resets per-vcpu window every exit to pause_filter_count. */
158static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
159module_param(pause_filter_count_shrink, ushort, 0444);
160
161/* Default is to compute the maximum so we can never overflow. */
162static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
163module_param(pause_filter_count_max, ushort, 0444);
164
Sean Christopherson99840a72021-03-04 18:16:37 -0800165/*
166 * Use nested page tables by default. Note, NPT may get forced off by
167 * svm_hardware_setup() if it's unsupported by hardware or the host kernel.
168 */
169bool npt_enabled = true;
170module_param_named(npt, npt_enabled, bool, 0444);
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100171
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100172/* allow nested virtualization in KVM/SVM */
173static int nested = true;
Alexander Graf236de052008-11-25 20:17:10 +0100174module_param(nested, int, S_IRUGO);
175
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200176/* enable/disable Next RIP Save */
177static int nrips = true;
178module_param(nrips, int, 0444);
179
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500180/* enable/disable Virtual VMLOAD VMSAVE */
181static int vls = true;
182module_param(vls, int, 0444);
183
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500184/* enable/disable Virtual GIF */
185static int vgif = true;
186module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500187
Tom Lendacky291bd202020-12-10 11:09:47 -0600188bool __read_mostly dump_invalid_vmcb;
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200189module_param(dump_invalid_vmcb, bool, 0644);
190
Wei Yongjun2e215212021-02-10 07:59:58 +0000191static bool svm_gp_erratum_intercept = true;
Bandan Das82a11e9c2021-01-26 03:18:29 -0500192
Brijesh Singh7607b712018-02-19 10:14:44 -0600193static u8 rsm_ins_bytes[] = "\x0f\xaa";
194
Harvey Harrison4866d5e2008-02-19 10:32:02 -0800195static unsigned long iopm_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800196
197struct kvm_ldttss_desc {
198 u16 limit0;
199 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100200 unsigned base1:8, type:5, dpl:2, p:1;
201 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800202 u32 base3;
203 u32 zero1;
204} __attribute__((packed));
205
Joerg Roedeleaf78262020-03-24 10:41:54 +0100206DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800207
Sean Christopherson844d69c2021-04-23 15:34:04 -0700208/*
209 * Only MSR_TSC_AUX is switched via the user return hook. EFER is switched via
210 * the VMCB, and the SYSCALL/SYSENTER MSRs are handled by VMLOAD/VMSAVE.
211 *
212 * RDTSCP and RDPID are not used in the kernel, specifically to allow KVM to
213 * defer the restoration of TSC_AUX until the CPU returns to userspace.
214 */
215#define TSC_AUX_URET_SLOT 0
216
Mathias Krause09941fb2012-08-30 01:30:20 +0200217static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800218
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200219#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800220#define MSRS_RANGE_SIZE 2048
221#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
222
Joerg Roedel883b0a92020-03-24 10:41:52 +0100223u32 svm_msrpm_offset(u32 msr)
Joerg Roedel455716f2010-03-01 15:34:35 +0100224{
225 u32 offset;
226 int i;
227
228 for (i = 0; i < NUM_MSR_MAPS; i++) {
229 if (msr < msrpm_ranges[i] ||
230 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
231 continue;
232
233 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
234 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
235
236 /* Now we have the u8 offset - but need the u32 offset */
237 return offset / 4;
238 }
239
240 /* MSR not in any range */
241 return MSR_INVALID;
242}
243
Avi Kivity6aa8b732006-12-10 02:21:36 -0800244#define MAX_INST_SIZE 15
245
Sean Christophersond468d942020-07-15 20:41:20 -0700246static int get_max_npt_level(void)
Joerg Roedel4b161842010-09-10 17:31:03 +0200247{
248#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800249 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200250#else
251 return PT32E_ROOT_LEVEL;
252#endif
253}
254
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300255int svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800256{
Paolo Bonzinic513f482020-05-18 13:08:37 -0400257 struct vcpu_svm *svm = to_svm(vcpu);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300258 u64 old_efer = vcpu->arch.efer;
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000259 vcpu->arch.efer = efer;
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100260
261 if (!npt_enabled) {
262 /* Shadow paging assumes NX to be available. */
263 efer |= EFER_NX;
264
265 if (!(efer & EFER_LMA))
266 efer &= ~EFER_LME;
267 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800268
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300269 if ((old_efer & EFER_SVME) != (efer & EFER_SVME)) {
270 if (!(efer & EFER_SVME)) {
271 svm_leave_nested(svm);
272 svm_set_gif(svm, true);
Bandan Das82a11e9c2021-01-26 03:18:29 -0500273 /* #GP intercept is still needed for vmware backdoor */
274 if (!enable_vmware_backdoor)
275 clr_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300276
277 /*
278 * Free the nested guest state, unless we are in SMM.
279 * In this case we will return to the nested guest
280 * as soon as we leave SMM.
281 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500282 if (!is_smm(vcpu))
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300283 svm_free_nested(svm);
284
285 } else {
286 int ret = svm_allocate_nested(svm);
287
288 if (ret) {
289 vcpu->arch.efer = old_efer;
290 return ret;
291 }
Bandan Das82a11e9c2021-01-26 03:18:29 -0500292
293 if (svm_gp_erratum_intercept)
294 set_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300295 }
Paolo Bonzinic513f482020-05-18 13:08:37 -0400296 }
297
298 svm->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedel06e78522020-06-25 10:03:23 +0200299 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300300 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301}
302
Avi Kivity6aa8b732006-12-10 02:21:36 -0800303static int is_external_interrupt(u32 info)
304{
305 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
306 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
307}
308
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200309static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400310{
311 struct vcpu_svm *svm = to_svm(vcpu);
312 u32 ret = 0;
313
314 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200315 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
316 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400317}
318
319static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
320{
321 struct vcpu_svm *svm = to_svm(vcpu);
322
323 if (mask == 0)
324 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
325 else
326 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
327
328}
329
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200330static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800331{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400332 struct vcpu_svm *svm = to_svm(vcpu);
333
Tom Lendackyf1c63662020-12-14 10:29:50 -0500334 /*
335 * SEV-ES does not expose the next RIP. The RIP update is controlled by
336 * the type of exit and the #VC handler in the guest.
337 */
338 if (sev_es_guest(vcpu->kvm))
339 goto done;
340
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200341 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200342 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200343 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400344 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200345
Sean Christopherson1957aa62019-08-27 14:40:39 -0700346 if (!svm->next_rip) {
347 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
348 return 0;
349 } else {
Sean Christopherson1957aa62019-08-27 14:40:39 -0700350 kvm_rip_write(vcpu, svm->next_rip);
351 }
Tom Lendackyf1c63662020-12-14 10:29:50 -0500352
353done:
Glauber Costa2809f5d2009-05-12 16:21:05 -0400354 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200355
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700356 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357}
358
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700359static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100360{
361 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700362 unsigned nr = vcpu->arch.exception.nr;
363 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700364 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100365
Paolo Bonzini63129752021-03-02 14:40:39 -0500366 kvm_deliver_exception_payload(vcpu);
Jim Mattsonda998b42018-10-16 14:29:22 -0700367
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200368 if (nr == BP_VECTOR && !nrips) {
Paolo Bonzini63129752021-03-02 14:40:39 -0500369 unsigned long rip, old_rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100370
371 /*
372 * For guest debugging where we have to reinject #BP if some
373 * INT3 is guest-owned:
374 * Emulate nRIP by moving RIP forward. Will fail if injection
375 * raises a fault that is not intercepted. Still better than
376 * failing in all cases.
377 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500378 (void)skip_emulated_instruction(vcpu);
379 rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100380 svm->int3_rip = rip + svm->vmcb->save.cs.base;
381 svm->int3_injected = rip - old_rip;
382 }
383
Jan Kiszka116a4752010-02-23 17:47:54 +0100384 svm->vmcb->control.event_inj = nr
385 | SVM_EVTINJ_VALID
386 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
387 | SVM_EVTINJ_TYPE_EXEPT;
388 svm->vmcb->control.event_inj_err = error_code;
389}
390
Joerg Roedel67ec6602010-05-17 14:43:35 +0200391static void svm_init_erratum_383(void)
392{
393 u32 low, high;
394 int err;
395 u64 val;
396
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100397 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200398 return;
399
400 /* Use _safe variants to not break nested virtualization */
401 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
402 if (err)
403 return;
404
405 val |= (1ULL << 47);
406
407 low = lower_32_bits(val);
408 high = upper_32_bits(val);
409
410 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
411
412 erratum_383_found = true;
413}
414
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500415static void svm_init_osvw(struct kvm_vcpu *vcpu)
416{
417 /*
418 * Guests should see errata 400 and 415 as fixed (assuming that
419 * HLT and IO instructions are intercepted).
420 */
421 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
422 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
423
424 /*
425 * By increasing VCPU's osvw.length to 3 we are telling the guest that
426 * all osvw.status bits inside that length, including bit 0 (which is
427 * reserved for erratum 298), are valid. However, if host processor's
428 * osvw_len is 0 then osvw_status[0] carries no information. We need to
429 * be conservative here and therefore we tell the guest that erratum 298
430 * is present (because we really don't know).
431 */
432 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
433 vcpu->arch.osvw.status |= 1;
434}
435
Avi Kivity6aa8b732006-12-10 02:21:36 -0800436static int has_svm(void)
437{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200438 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800439
Eduardo Habkost63d11422008-11-17 19:03:20 -0200440 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800441 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800442 return 0;
443 }
444
Sean Christophersonccd85d92021-02-02 13:20:17 -0800445 if (sev_active()) {
446 pr_info("KVM is unsupported when running as an SEV guest\n");
447 return 0;
448 }
449
Avi Kivity6aa8b732006-12-10 02:21:36 -0800450 return 1;
451}
452
Radim Krčmář13a34e02014-08-28 15:13:03 +0200453static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100455 /* Make sure we clean up behind us */
456 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
457 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
458
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200459 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100460
461 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800462}
463
Radim Krčmář13a34e02014-08-28 15:13:03 +0200464static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800465{
466
Tejun Heo0fe1e002009-10-29 22:34:14 +0900467 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800468 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469 struct desc_struct *gdt;
470 int me = raw_smp_processor_id();
471
Alexander Graf10474ae2009-09-15 11:37:46 +0200472 rdmsrl(MSR_EFER, efer);
473 if (efer & EFER_SVME)
474 return -EBUSY;
475
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200477 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200478 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800479 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900480 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900481 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200482 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200483 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484 }
485
Tejun Heo0fe1e002009-10-29 22:34:14 +0900486 sd->asid_generation = 1;
487 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
488 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600489 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800490
Thomas Garnier45fc8752017-03-14 10:05:08 -0700491 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900492 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800493
Alexander Graf9962d032008-11-25 20:17:02 +0100494 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800495
Tom Lendacky85ca8be2020-12-10 11:10:04 -0600496 wrmsrl(MSR_VM_HSAVE_PA, __sme_page_pa(sd->save_area));
Alexander Graf10474ae2009-09-15 11:37:46 +0200497
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100498 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
499 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500500 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100501 }
502
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500503
504 /*
505 * Get OSVW bits.
506 *
507 * Note that it is possible to have a system with mixed processor
508 * revisions and therefore different OSVW bits. If bits are not the same
509 * on different processors then choose the worst case (i.e. if erratum
510 * is present on one processor and not on another then assume that the
511 * erratum is present everywhere).
512 */
513 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
514 uint64_t len, status = 0;
515 int err;
516
517 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
518 if (!err)
519 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
520 &err);
521
522 if (err)
523 osvw_status = osvw_len = 0;
524 else {
525 if (len < osvw_len)
526 osvw_len = len;
527 osvw_status |= status;
528 osvw_status &= (1ULL << osvw_len) - 1;
529 }
530 } else
531 osvw_status = osvw_len = 0;
532
Joerg Roedel67ec6602010-05-17 14:43:35 +0200533 svm_init_erratum_383();
534
Joerg Roedel1018faa2012-02-29 14:57:32 +0100535 amd_pmu_enable_virt();
536
Alexander Graf10474ae2009-09-15 11:37:46 +0200537 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800538}
539
Joerg Roedel0da1db752008-07-02 16:02:11 +0200540static void svm_cpu_uninit(int cpu)
541{
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800542 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200543
Tejun Heo0fe1e002009-10-29 22:34:14 +0900544 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200545 return;
546
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800547 per_cpu(svm_data, cpu) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600548 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900549 __free_page(sd->save_area);
550 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200551}
552
Avi Kivity6aa8b732006-12-10 02:21:36 -0800553static int svm_cpu_init(int cpu)
554{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900555 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800556
Tejun Heo0fe1e002009-10-29 22:34:14 +0900557 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
558 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800559 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900560 sd->cpu = cpu;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600561 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900562 if (!sd->save_area)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800563 goto free_cpu_data;
Tom Lendacky85ca8be2020-12-10 11:10:04 -0600564 clear_page(page_address(sd->save_area));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800565
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600566 if (svm_sev_enabled()) {
Sean Christopherson3b1902b82021-04-21 19:11:11 -0700567 sd->sev_vmcbs = kcalloc(max_sev_asid + 1, sizeof(void *),
568 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600569 if (!sd->sev_vmcbs)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800570 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600571 }
572
Tejun Heo0fe1e002009-10-29 22:34:14 +0900573 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800574
575 return 0;
576
Miaohe Lind80b64f2020-01-04 16:56:49 +0800577free_save_area:
578 __free_page(sd->save_area);
579free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900580 kfree(sd);
Miaohe Lind80b64f2020-01-04 16:56:49 +0800581 return -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800582
583}
584
Alexander Graffd6fa732020-09-25 16:34:19 +0200585static int direct_access_msr_slot(u32 msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800586{
Alexander Graffd6fa732020-09-25 16:34:19 +0200587 u32 i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800588
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100589 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
Alexander Graffd6fa732020-09-25 16:34:19 +0200590 if (direct_access_msrs[i].index == msr)
591 return i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800592
Alexander Graffd6fa732020-09-25 16:34:19 +0200593 return -ENOENT;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100594}
595
Alexander Graffd6fa732020-09-25 16:34:19 +0200596static void set_shadow_msr_intercept(struct kvm_vcpu *vcpu, u32 msr, int read,
597 int write)
598{
599 struct vcpu_svm *svm = to_svm(vcpu);
600 int slot = direct_access_msr_slot(msr);
601
602 if (slot == -ENOENT)
603 return;
604
605 /* Set the shadow bitmaps to the desired intercept states */
606 if (read)
607 set_bit(slot, svm->shadow_msr_intercept.read);
608 else
609 clear_bit(slot, svm->shadow_msr_intercept.read);
610
611 if (write)
612 set_bit(slot, svm->shadow_msr_intercept.write);
613 else
614 clear_bit(slot, svm->shadow_msr_intercept.write);
615}
616
617static bool valid_msr_intercept(u32 index)
618{
619 return direct_access_msr_slot(index) != -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800620}
621
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200622static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100623{
624 u8 bit_write;
625 unsigned long tmp;
626 u32 offset;
627 u32 *msrpm;
628
629 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
630 to_svm(vcpu)->msrpm;
631
632 offset = svm_msrpm_offset(msr);
633 bit_write = 2 * (msr & 0x0f) + 1;
634 tmp = msrpm[offset];
635
636 BUG_ON(offset == MSR_INVALID);
637
638 return !!test_bit(bit_write, &tmp);
639}
640
Alexander Graffd6fa732020-09-25 16:34:19 +0200641static void set_msr_interception_bitmap(struct kvm_vcpu *vcpu, u32 *msrpm,
642 u32 msr, int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800643{
Joerg Roedel455716f2010-03-01 15:34:35 +0100644 u8 bit_read, bit_write;
645 unsigned long tmp;
646 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100648 /*
649 * If this warning triggers extend the direct_access_msrs list at the
650 * beginning of the file
651 */
652 WARN_ON(!valid_msr_intercept(msr));
653
Alexander Graffd6fa732020-09-25 16:34:19 +0200654 /* Enforce non allowed MSRs to trap */
655 if (read && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ))
656 read = 0;
657
658 if (write && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE))
659 write = 0;
660
Joerg Roedel455716f2010-03-01 15:34:35 +0100661 offset = svm_msrpm_offset(msr);
662 bit_read = 2 * (msr & 0x0f);
663 bit_write = 2 * (msr & 0x0f) + 1;
664 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800665
Joerg Roedel455716f2010-03-01 15:34:35 +0100666 BUG_ON(offset == MSR_INVALID);
667
668 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
669 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
670
671 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800672}
673
Tom Lendacky376c6d22020-12-10 11:10:06 -0600674void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
675 int read, int write)
Alexander Graffd6fa732020-09-25 16:34:19 +0200676{
677 set_shadow_msr_intercept(vcpu, msr, read, write);
678 set_msr_interception_bitmap(vcpu, msrpm, msr, read, write);
679}
680
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300681u32 *svm_vcpu_alloc_msrpm(void)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100682{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400683 unsigned int order = get_order(MSRPM_SIZE);
684 struct page *pages = alloc_pages(GFP_KERNEL_ACCOUNT, order);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200685 u32 *msrpm;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100686
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300687 if (!pages)
688 return NULL;
689
690 msrpm = page_address(pages);
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400691 memset(msrpm, 0xff, PAGE_SIZE * (1 << order));
Joerg Roedelf65c2292008-02-13 18:58:46 +0100692
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200693 return msrpm;
694}
695
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300696void svm_vcpu_init_msrpm(struct kvm_vcpu *vcpu, u32 *msrpm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800697{
Joerg Roedelf65c2292008-02-13 18:58:46 +0100698 int i;
699
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100700 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
701 if (!direct_access_msrs[i].always)
702 continue;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200703 set_msr_interception(vcpu, msrpm, direct_access_msrs[i].index, 1, 1);
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100704 }
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300705}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300707
708void svm_vcpu_free_msrpm(u32 *msrpm)
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300709{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400710 __free_pages(virt_to_page(msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711}
712
Alexander Graffd6fa732020-09-25 16:34:19 +0200713static void svm_msr_filter_changed(struct kvm_vcpu *vcpu)
714{
715 struct vcpu_svm *svm = to_svm(vcpu);
716 u32 i;
717
718 /*
719 * Set intercept permissions for all direct access MSRs again. They
720 * will automatically get filtered through the MSR filter, so we are
721 * back in sync after this.
722 */
723 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
724 u32 msr = direct_access_msrs[i].index;
725 u32 read = test_bit(i, svm->shadow_msr_intercept.read);
726 u32 write = test_bit(i, svm->shadow_msr_intercept.write);
727
728 set_msr_interception_bitmap(vcpu, svm->msrpm, msr, read, write);
Anthony Liguoric8681332007-04-30 09:48:11 +0300729 }
730}
731
Joerg Roedel323c3d82010-03-01 15:34:37 +0100732static void add_msr_offset(u32 offset)
733{
734 int i;
735
736 for (i = 0; i < MSRPM_OFFSETS; ++i) {
737
738 /* Offset already in list? */
739 if (msrpm_offsets[i] == offset)
740 return;
741
742 /* Slot used by another offset? */
743 if (msrpm_offsets[i] != MSR_INVALID)
744 continue;
745
746 /* Add offset to list */
747 msrpm_offsets[i] = offset;
748
749 return;
750 }
751
752 /*
753 * If this BUG triggers the msrpm_offsets table has an overflow. Just
754 * increase MSRPM_OFFSETS in this case.
755 */
756 BUG();
757}
758
759static void init_msrpm_offsets(void)
760{
761 int i;
762
763 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
764
765 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
766 u32 offset;
767
768 offset = svm_msrpm_offset(direct_access_msrs[i].index);
769 BUG_ON(offset == MSR_INVALID);
770
771 add_msr_offset(offset);
772 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773}
774
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200775static void svm_enable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200777 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500779 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200780 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
781 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
782 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
783 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784}
785
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200786static void svm_disable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200788 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500790 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200791 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
792 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
793 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
794 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795}
796
Joerg Roedel883b0a92020-03-24 10:41:52 +0100797void disable_nmi_singlestep(struct vcpu_svm *svm)
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200798{
799 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500800
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200801 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
802 /* Clear our flags if they were not set by the guest */
803 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
804 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
805 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
806 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
807 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200808}
809
Babu Moger8566ac82018-03-16 16:37:26 -0400810static void grow_ple_window(struct kvm_vcpu *vcpu)
811{
812 struct vcpu_svm *svm = to_svm(vcpu);
813 struct vmcb_control_area *control = &svm->vmcb->control;
814 int old = control->pause_filter_count;
815
816 control->pause_filter_count = __grow_ple_window(old,
817 pause_filter_count,
818 pause_filter_count_grow,
819 pause_filter_count_max);
820
Peter Xu4f75bcc2019-09-06 10:17:22 +0800821 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200822 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800823 trace_kvm_ple_window_update(vcpu->vcpu_id,
824 control->pause_filter_count, old);
825 }
Babu Moger8566ac82018-03-16 16:37:26 -0400826}
827
828static void shrink_ple_window(struct kvm_vcpu *vcpu)
829{
830 struct vcpu_svm *svm = to_svm(vcpu);
831 struct vmcb_control_area *control = &svm->vmcb->control;
832 int old = control->pause_filter_count;
833
834 control->pause_filter_count =
835 __shrink_ple_window(old,
836 pause_filter_count,
837 pause_filter_count_shrink,
838 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800839 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200840 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800841 trace_kvm_ple_window_update(vcpu->vcpu_id,
842 control->pause_filter_count, old);
843 }
Babu Moger8566ac82018-03-16 16:37:26 -0400844}
845
Tom Lendacky52918ed2020-01-09 17:42:16 -0600846/*
847 * The default MMIO mask is a single bit (excluding the present bit),
848 * which could conflict with the memory encryption bit. Check for
849 * memory encryption support and override the default MMIO mask if
850 * memory encryption is enabled.
851 */
852static __init void svm_adjust_mmio_mask(void)
853{
854 unsigned int enc_bit, mask_bit;
855 u64 msr, mask;
856
857 /* If there is no memory encryption support, use existing mask */
858 if (cpuid_eax(0x80000000) < 0x8000001f)
859 return;
860
861 /* If memory encryption is not enabled, use existing mask */
862 rdmsrl(MSR_K8_SYSCFG, msr);
863 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
864 return;
865
866 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
867 mask_bit = boot_cpu_data.x86_phys_bits;
868
869 /* Increment the mask bit if it is the same as the encryption bit */
870 if (enc_bit == mask_bit)
871 mask_bit++;
872
873 /*
874 * If the mask bit location is below 52, then some bits above the
875 * physical addressing limit will always be reserved, so use the
876 * rsvd_bits() function to generate the mask. This mask, along with
877 * the present bit, will be used to generate a page fault with
878 * PFER.RSV = 1.
879 *
880 * If the mask bit location is 52 (or above), then clear the mask.
881 */
882 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
883
Sean Christopherson81203372021-02-25 12:47:35 -0800884 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
Tom Lendacky52918ed2020-01-09 17:42:16 -0600885}
886
Li RongQingdd58f3c2020-02-23 16:13:12 +0800887static void svm_hardware_teardown(void)
888{
889 int cpu;
890
Sean Christopherson4cafd0c2021-04-21 19:11:20 -0700891 sev_hardware_teardown();
Li RongQingdd58f3c2020-02-23 16:13:12 +0800892
893 for_each_possible_cpu(cpu)
894 svm_cpu_uninit(cpu);
895
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400896 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT),
897 get_order(IOPM_SIZE));
Li RongQingdd58f3c2020-02-23 16:13:12 +0800898 iopm_base = 0;
899}
900
Sean Christopherson9b58b982020-03-02 15:56:42 -0800901static __init void svm_set_cpu_caps(void)
902{
903 kvm_set_cpu_caps();
904
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100905 supported_xss = 0;
906
Sean Christophersona50718c2020-03-02 15:57:07 -0800907 /* CPUID 0x80000001 and 0x8000000A (SVM features) */
908 if (nested) {
Sean Christopherson9b58b982020-03-02 15:56:42 -0800909 kvm_cpu_cap_set(X86_FEATURE_SVM);
910
Sean Christopherson4eb87462020-03-02 15:57:08 -0800911 if (nrips)
Sean Christophersona50718c2020-03-02 15:57:07 -0800912 kvm_cpu_cap_set(X86_FEATURE_NRIPS);
913
914 if (npt_enabled)
915 kvm_cpu_cap_set(X86_FEATURE_NPT);
Wei Huang14c2bf82021-01-26 03:18:31 -0500916
917 /* Nested VM can receive #VMEXIT instead of triggering #GP */
918 kvm_cpu_cap_set(X86_FEATURE_SVME_ADDR_CHK);
Sean Christophersona50718c2020-03-02 15:57:07 -0800919 }
920
Sean Christopherson93c380e2020-03-02 15:56:54 -0800921 /* CPUID 0x80000008 */
922 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
923 boot_cpu_has(X86_FEATURE_AMD_SSBD))
924 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
Paolo Bonzinid9db0fd2021-04-21 19:11:15 -0700925
926 /* CPUID 0x8000001F (SME/SEV features) */
927 sev_set_cpu_caps();
Sean Christopherson9b58b982020-03-02 15:56:42 -0800928}
929
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930static __init int svm_hardware_setup(void)
931{
932 int cpu;
933 struct page *iopm_pages;
934 void *iopm_va;
935 int r;
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400936 unsigned int order = get_order(IOPM_SIZE);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400938 iopm_pages = alloc_pages(GFP_KERNEL, order);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939
940 if (!iopm_pages)
941 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +0300942
943 iopm_va = page_address(iopm_pages);
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400944 memset(iopm_va, 0xff, PAGE_SIZE * (1 << order));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
946
Joerg Roedel323c3d82010-03-01 15:34:37 +0100947 init_msrpm_offsets();
948
Sean Christophersoncfc48182020-03-02 15:56:23 -0800949 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
950
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100951 if (boot_cpu_has(X86_FEATURE_NX))
952 kvm_enable_efer_bits(EFER_NX);
953
Alexander Graf1b2fd702009-02-02 16:23:51 +0100954 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
955 kvm_enable_efer_bits(EFER_FFXSR);
956
Joerg Roedel92a1f122011-03-25 09:44:51 +0100957 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +0100958 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800959 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
960 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100961 }
962
Sean Christopherson844d69c2021-04-23 15:34:04 -0700963 if (boot_cpu_has(X86_FEATURE_RDTSCP))
964 kvm_define_user_return_msr(TSC_AUX_URET_SLOT, MSR_TSC_AUX);
965
Babu Moger8566ac82018-03-16 16:37:26 -0400966 /* Check for pause filtering support */
967 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
968 pause_filter_count = 0;
969 pause_filter_thresh = 0;
970 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
971 pause_filter_thresh = 0;
972 }
973
Alexander Graf236de052008-11-25 20:17:10 +0100974 if (nested) {
975 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +0200976 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +0100977 }
978
Sean Christopherson99840a72021-03-04 18:16:37 -0800979 /*
980 * KVM's MMU doesn't support using 2-level paging for itself, and thus
981 * NPT isn't supported if the host is using 2-level paging since host
982 * CR4 is unchanged on VMRUN.
983 */
984 if (!IS_ENABLED(CONFIG_X86_64) && !IS_ENABLED(CONFIG_X86_PAE))
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100985 npt_enabled = false;
986
Sean Christopherson99840a72021-03-04 18:16:37 -0800987 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100988 npt_enabled = false;
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100989
Sean Christopherson83013052020-07-15 20:41:22 -0700990 kvm_configure_mmu(npt_enabled, get_max_npt_level(), PG_LEVEL_1G);
Sean Christopherson213e0e12020-03-02 15:57:01 -0800991 pr_info("kvm: Nested Paging %sabled\n", npt_enabled ? "en" : "dis");
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100992
Sean Christophersone8126bd2021-04-21 19:11:14 -0700993 /* Note, SEV setup consumes npt_enabled. */
994 sev_hardware_setup();
Sean Christophersonfa136802021-04-21 19:11:13 -0700995
996 svm_adjust_mmio_mask();
997
998 for_each_possible_cpu(cpu) {
999 r = svm_cpu_init(cpu);
1000 if (r)
1001 goto err;
1002 }
1003
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001004 if (nrips) {
1005 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1006 nrips = false;
1007 }
1008
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001009 if (avic) {
1010 if (!npt_enabled ||
1011 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001012 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001013 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001014 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001015 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001016
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001017 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1018 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001019 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001020
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001021 if (vls) {
1022 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001023 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001024 !IS_ENABLED(CONFIG_X86_64)) {
1025 vls = false;
1026 } else {
1027 pr_info("Virtual VMLOAD VMSAVE supported\n");
1028 }
1029 }
1030
Wei Huang3b9c7232021-01-26 03:18:30 -05001031 if (boot_cpu_has(X86_FEATURE_SVME_ADDR_CHK))
1032 svm_gp_erratum_intercept = false;
1033
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001034 if (vgif) {
1035 if (!boot_cpu_has(X86_FEATURE_VGIF))
1036 vgif = false;
1037 else
1038 pr_info("Virtual GIF supported\n");
1039 }
1040
Sean Christopherson9b58b982020-03-02 15:56:42 -08001041 svm_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08001042
Mohammed Gamal3edd6832020-07-10 17:48:11 +02001043 /*
1044 * It seems that on AMD processors PTE's accessed bit is
1045 * being set by the CPU hardware before the NPF vmexit.
1046 * This is not expected behaviour and our tests fail because
1047 * of it.
1048 * A workaround here is to disable support for
1049 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR if NPT is enabled.
1050 * In this case userspace can know if there is support using
1051 * KVM_CAP_SMALLER_MAXPHYADDR extension and decide how to handle
1052 * it
1053 * If future AMD CPU models change the behaviour described above,
1054 * this variable can be changed accordingly
1055 */
1056 allow_smaller_maxphyaddr = !npt_enabled;
1057
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 return 0;
1059
Joerg Roedelf65c2292008-02-13 18:58:46 +01001060err:
Li RongQingdd58f3c2020-02-23 16:13:12 +08001061 svm_hardware_teardown();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 return r;
1063}
1064
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065static void init_seg(struct vmcb_seg *seg)
1066{
1067 seg->selector = 0;
1068 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001069 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001070 seg->limit = 0xffff;
1071 seg->base = 0;
1072}
1073
1074static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1075{
1076 seg->selector = 0;
1077 seg->attrib = SVM_SELECTOR_P_MASK | type;
1078 seg->limit = 0xffff;
1079 seg->base = 0;
1080}
1081
Leonid Shatz326e7422018-11-06 12:14:25 +02001082static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001083{
1084 struct vcpu_svm *svm = to_svm(vcpu);
1085 u64 g_tsc_offset = 0;
1086
Joerg Roedel20307532010-11-29 17:51:48 +01001087 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001088 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001089 g_tsc_offset = svm->vmcb->control.tsc_offset -
Cathy Avery4995a362021-01-13 07:07:52 -05001090 svm->vmcb01.ptr->control.tsc_offset;
1091 svm->vmcb01.ptr->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001092 }
1093
1094 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1095 svm->vmcb->control.tsc_offset - g_tsc_offset,
1096 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001097
1098 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001099
Joerg Roedel06e78522020-06-25 10:03:23 +02001100 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001101 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001102}
1103
Babu Moger4407a792020-09-11 14:29:19 -05001104static void svm_check_invpcid(struct vcpu_svm *svm)
1105{
1106 /*
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001107 * Intercept INVPCID if shadow paging is enabled to sync/free shadow
1108 * roots, or if INVPCID is disabled in the guest to inject #UD.
Babu Moger4407a792020-09-11 14:29:19 -05001109 */
1110 if (kvm_cpu_cap_has(X86_FEATURE_INVPCID)) {
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001111 if (!npt_enabled ||
1112 !guest_cpuid_has(&svm->vcpu, X86_FEATURE_INVPCID))
Babu Moger4407a792020-09-11 14:29:19 -05001113 svm_set_intercept(svm, INTERCEPT_INVPCID);
1114 else
1115 svm_clr_intercept(svm, INTERCEPT_INVPCID);
1116 }
1117}
1118
Paolo Bonzini63129752021-03-02 14:40:39 -05001119static void init_vmcb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001120{
Paolo Bonzini63129752021-03-02 14:40:39 -05001121 struct vcpu_svm *svm = to_svm(vcpu);
Joerg Roedele6101a92008-02-13 18:58:45 +01001122 struct vmcb_control_area *control = &svm->vmcb->control;
1123 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124
Paolo Bonzini63129752021-03-02 14:40:39 -05001125 vcpu->arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001126
Babu Moger830bd712020-09-11 14:28:50 -05001127 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1128 svm_set_intercept(svm, INTERCEPT_CR3_READ);
1129 svm_set_intercept(svm, INTERCEPT_CR4_READ);
1130 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1131 svm_set_intercept(svm, INTERCEPT_CR3_WRITE);
1132 svm_set_intercept(svm, INTERCEPT_CR4_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001133 if (!kvm_vcpu_apicv_active(vcpu))
Babu Moger830bd712020-09-11 14:28:50 -05001134 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135
Paolo Bonzini5315c712014-03-03 13:08:29 +01001136 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137
Joerg Roedel18c918c2010-11-30 18:03:59 +01001138 set_exception_intercept(svm, PF_VECTOR);
1139 set_exception_intercept(svm, UD_VECTOR);
1140 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001141 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001142 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001143 /*
1144 * Guest access to VMware backdoor ports could legitimately
1145 * trigger #GP because of TSS I/O permission bitmap.
1146 * We intercept those #GP and allow access to them anyway
1147 * as VMware does.
1148 */
1149 if (enable_vmware_backdoor)
1150 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001151
Joerg Roedela284ba52020-06-25 10:03:24 +02001152 svm_set_intercept(svm, INTERCEPT_INTR);
1153 svm_set_intercept(svm, INTERCEPT_NMI);
1154 svm_set_intercept(svm, INTERCEPT_SMI);
1155 svm_set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
1156 svm_set_intercept(svm, INTERCEPT_RDPMC);
1157 svm_set_intercept(svm, INTERCEPT_CPUID);
1158 svm_set_intercept(svm, INTERCEPT_INVD);
1159 svm_set_intercept(svm, INTERCEPT_INVLPG);
1160 svm_set_intercept(svm, INTERCEPT_INVLPGA);
1161 svm_set_intercept(svm, INTERCEPT_IOIO_PROT);
1162 svm_set_intercept(svm, INTERCEPT_MSR_PROT);
1163 svm_set_intercept(svm, INTERCEPT_TASK_SWITCH);
1164 svm_set_intercept(svm, INTERCEPT_SHUTDOWN);
1165 svm_set_intercept(svm, INTERCEPT_VMRUN);
1166 svm_set_intercept(svm, INTERCEPT_VMMCALL);
1167 svm_set_intercept(svm, INTERCEPT_VMLOAD);
1168 svm_set_intercept(svm, INTERCEPT_VMSAVE);
1169 svm_set_intercept(svm, INTERCEPT_STGI);
1170 svm_set_intercept(svm, INTERCEPT_CLGI);
1171 svm_set_intercept(svm, INTERCEPT_SKINIT);
1172 svm_set_intercept(svm, INTERCEPT_WBINVD);
1173 svm_set_intercept(svm, INTERCEPT_XSETBV);
1174 svm_set_intercept(svm, INTERCEPT_RDPRU);
1175 svm_set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001176
Paolo Bonzini63129752021-03-02 14:40:39 -05001177 if (!kvm_mwait_in_guest(vcpu->kvm)) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001178 svm_set_intercept(svm, INTERCEPT_MONITOR);
1179 svm_set_intercept(svm, INTERCEPT_MWAIT);
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001180 }
1181
Paolo Bonzini63129752021-03-02 14:40:39 -05001182 if (!kvm_hlt_in_guest(vcpu->kvm))
Joerg Roedela284ba52020-06-25 10:03:24 +02001183 svm_set_intercept(svm, INTERCEPT_HLT);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001184
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001185 control->iopm_base_pa = __sme_set(iopm_base);
1186 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001187 control->int_ctl = V_INTR_MASKING_MASK;
1188
1189 init_seg(&save->es);
1190 init_seg(&save->ss);
1191 init_seg(&save->ds);
1192 init_seg(&save->fs);
1193 init_seg(&save->gs);
1194
1195 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001196 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001197 /* Executable/Readable Code Segment */
1198 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1199 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1200 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001201
1202 save->gdtr.limit = 0xffff;
1203 save->idtr.limit = 0xffff;
1204
1205 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1206 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1207
Paolo Bonzini63129752021-03-02 14:40:39 -05001208 svm_set_cr4(vcpu, 0);
1209 svm_set_efer(vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001210 save->dr6 = 0xffff0ff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001211 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001212 save->rip = 0x0000fff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001213 vcpu->arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001214
Joerg Roedele0231712010-02-24 18:59:10 +01001215 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001216 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001217 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001219 svm_set_cr0(vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
1220 kvm_mmu_reset_context(vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001221
Rusty Russell66aee912007-07-17 23:34:16 +10001222 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001224
1225 if (npt_enabled) {
1226 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001227 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedela284ba52020-06-25 10:03:24 +02001228 svm_clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001229 clr_exception_intercept(svm, PF_VECTOR);
Babu Moger830bd712020-09-11 14:28:50 -05001230 svm_clr_intercept(svm, INTERCEPT_CR3_READ);
1231 svm_clr_intercept(svm, INTERCEPT_CR3_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001232 save->g_pat = vcpu->arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001233 save->cr3 = 0;
1234 save->cr4 = 0;
1235 }
Cathy Avery193015a2021-01-12 11:43:13 -05001236 svm->current_vmcb->asid_generation = 0;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001237 svm->asid = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001238
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03001239 svm->nested.vmcb12_gpa = 0;
Cathy Avery81733962021-03-01 15:08:44 -05001240 svm->nested.last_vmcb12_gpa = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001241 vcpu->arch.hflags = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001242
Paolo Bonzini63129752021-03-02 14:40:39 -05001243 if (!kvm_pause_in_guest(vcpu->kvm)) {
Babu Moger8566ac82018-03-16 16:37:26 -04001244 control->pause_filter_count = pause_filter_count;
1245 if (pause_filter_thresh)
1246 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedela284ba52020-06-25 10:03:24 +02001247 svm_set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001248 } else {
Joerg Roedela284ba52020-06-25 10:03:24 +02001249 svm_clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001250 }
1251
Babu Moger4407a792020-09-11 14:29:19 -05001252 svm_check_invpcid(svm);
1253
Babu Mogerd00b99c2021-02-17 10:56:04 -05001254 /*
1255 * If the host supports V_SPEC_CTRL then disable the interception
1256 * of MSR_IA32_SPEC_CTRL.
1257 */
1258 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
1259 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
1260
Paolo Bonzini63129752021-03-02 14:40:39 -05001261 if (kvm_vcpu_apicv_active(vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001262 avic_init_vmcb(svm);
1263
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001264 if (vgif) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001265 svm_clr_intercept(svm, INTERCEPT_STGI);
1266 svm_clr_intercept(svm, INTERCEPT_CLGI);
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001267 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1268 }
1269
Paolo Bonzini63129752021-03-02 14:40:39 -05001270 if (sev_guest(vcpu->kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001271 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001272 clr_exception_intercept(svm, UD_VECTOR);
Tom Lendacky376c6d22020-12-10 11:10:06 -06001273
Paolo Bonzini63129752021-03-02 14:40:39 -05001274 if (sev_es_guest(vcpu->kvm)) {
Tom Lendacky376c6d22020-12-10 11:10:06 -06001275 /* Perform SEV-ES specific VMCB updates */
1276 sev_es_init_vmcb(svm);
1277 }
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001278 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001279
Joerg Roedel06e78522020-06-25 10:03:23 +02001280 vmcb_mark_all_dirty(svm->vmcb);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001281
Joerg Roedel2af91942009-08-07 11:49:28 +02001282 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001283
1284}
1285
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001286static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001287{
1288 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001289 u32 dummy;
1290 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001291
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001292 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02001293 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001294
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001295 if (!init_event) {
Paolo Bonzini63129752021-03-02 14:40:39 -05001296 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1297 MSR_IA32_APICBASE_ENABLE;
1298 if (kvm_vcpu_is_reset_bsp(vcpu))
1299 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001300 }
Paolo Bonzini63129752021-03-02 14:40:39 -05001301 init_vmcb(vcpu);
Avi Kivity70433382007-11-07 12:57:23 +02001302
Sean Christophersonf91af512020-03-04 17:34:37 -08001303 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001304 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001305
1306 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1307 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001308}
1309
Cathy Avery4995a362021-01-13 07:07:52 -05001310void svm_switch_vmcb(struct vcpu_svm *svm, struct kvm_vmcb_info *target_vmcb)
1311{
1312 svm->current_vmcb = target_vmcb;
1313 svm->vmcb = target_vmcb->ptr;
Cathy Avery4995a362021-01-13 07:07:52 -05001314}
1315
Sean Christopherson987b2592019-12-18 13:54:55 -08001316static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001317{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001318 struct vcpu_svm *svm;
Cathy Avery4995a362021-01-13 07:07:52 -05001319 struct page *vmcb01_page;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001320 struct page *vmsa_page = NULL;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001321 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001323 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
1324 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001325
Joerg Roedelf65c2292008-02-13 18:58:46 +01001326 err = -ENOMEM;
Cathy Avery4995a362021-01-13 07:07:52 -05001327 vmcb01_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1328 if (!vmcb01_page)
Sean Christopherson987b2592019-12-18 13:54:55 -08001329 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001330
Paolo Bonzini63129752021-03-02 14:40:39 -05001331 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001332 /*
1333 * SEV-ES guests require a separate VMSA page used to contain
1334 * the encrypted register state of the guest.
1335 */
1336 vmsa_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1337 if (!vmsa_page)
1338 goto error_free_vmcb_page;
Tom Lendackyed02b212020-12-10 11:10:01 -06001339
1340 /*
1341 * SEV-ES guests maintain an encrypted version of their FPU
1342 * state which is restored and saved on VMRUN and VMEXIT.
1343 * Free the fpu structure to prevent KVM from attempting to
1344 * access the FPU state.
1345 */
1346 kvm_free_guest_fpu(vcpu);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001347 }
1348
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001349 err = avic_init_vcpu(svm);
1350 if (err)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001351 goto error_free_vmsa_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001352
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001353 /* We initialize this flag to true to make sure that the is_running
1354 * bit would be set the first time the vcpu is loaded.
1355 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001356 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
1357 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001358
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001359 svm->msrpm = svm_vcpu_alloc_msrpm();
Chen Zhou054409a2020-11-17 10:54:26 +08001360 if (!svm->msrpm) {
1361 err = -ENOMEM;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001362 goto error_free_vmsa_page;
Chen Zhou054409a2020-11-17 10:54:26 +08001363 }
Alexander Grafb286d5d2008-11-25 20:17:05 +01001364
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001365 svm_vcpu_init_msrpm(vcpu, svm->msrpm);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001366
Cathy Avery4995a362021-01-13 07:07:52 -05001367 svm->vmcb01.ptr = page_address(vmcb01_page);
1368 svm->vmcb01.pa = __sme_set(page_to_pfn(vmcb01_page) << PAGE_SHIFT);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001369
1370 if (vmsa_page)
1371 svm->vmsa = page_address(vmsa_page);
1372
Michael Rotha7fc06d2021-02-02 13:01:26 -06001373 svm->guest_state_loaded = false;
Cathy Avery4995a362021-01-13 07:07:52 -05001374
1375 svm_switch_vmcb(svm, &svm->vmcb01);
Paolo Bonzini63129752021-03-02 14:40:39 -05001376 init_vmcb(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377
Sean Christopherson7f271792019-12-18 13:54:51 -08001378 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01001379 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001380
Paolo Bonzini63129752021-03-02 14:40:39 -05001381 if (sev_es_guest(vcpu->kvm))
Tom Lendacky376c6d22020-12-10 11:10:06 -06001382 /* Perform SEV-ES specific VMCB creation updates */
1383 sev_es_create_vcpu(svm);
1384
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001385 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08001386
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001387error_free_vmsa_page:
1388 if (vmsa_page)
1389 __free_page(vmsa_page);
Maxim Levitsky8d22b902020-08-27 20:11:42 +03001390error_free_vmcb_page:
Cathy Avery4995a362021-01-13 07:07:52 -05001391 __free_page(vmcb01_page);
Sean Christopherson987b2592019-12-18 13:54:55 -08001392out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001393 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394}
1395
Jim Mattsonfd65d312018-05-22 09:54:20 -07001396static void svm_clear_current_vmcb(struct vmcb *vmcb)
1397{
1398 int i;
1399
1400 for_each_online_cpu(i)
1401 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
1402}
1403
Avi Kivity6aa8b732006-12-10 02:21:36 -08001404static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1405{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001406 struct vcpu_svm *svm = to_svm(vcpu);
1407
Jim Mattsonfd65d312018-05-22 09:54:20 -07001408 /*
1409 * The vmcb page can be recycled, causing a false negative in
1410 * svm_vcpu_load(). So, ensure that no logical CPU has this
1411 * vmcb page recorded as its current vmcb.
1412 */
1413 svm_clear_current_vmcb(svm->vmcb);
1414
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03001415 svm_free_nested(svm);
1416
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001417 sev_free_vcpu(vcpu);
1418
Cathy Avery4995a362021-01-13 07:07:52 -05001419 __free_page(pfn_to_page(__sme_clr(svm->vmcb01.pa) >> PAGE_SHIFT));
Krish Sadhukhan47903dc2021-04-12 17:56:05 -04001420 __free_pages(virt_to_page(svm->msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421}
1422
Michael Rotha7fc06d2021-02-02 13:01:26 -06001423static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001425 struct vcpu_svm *svm = to_svm(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001426 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity0cc50642007-03-25 12:07:27 +02001427
Michael Rotha7fc06d2021-02-02 13:01:26 -06001428 if (svm->guest_state_loaded)
1429 return;
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001430
Michael Rotha7fc06d2021-02-02 13:01:26 -06001431 /*
Michael Rotha7fc06d2021-02-02 13:01:26 -06001432 * Save additional host state that will be restored on VMEXIT (sev-es)
1433 * or subsequent vmload of host save area.
1434 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001435 if (sev_es_guest(vcpu->kvm)) {
Michael Rotha7fc06d2021-02-02 13:01:26 -06001436 sev_es_prepare_guest_switch(svm, vcpu->cpu);
Tom Lendacky86137772020-12-10 11:10:07 -06001437 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06001438 vmsave(__sme_page_pa(sd->save_area));
Tom Lendacky86137772020-12-10 11:10:07 -06001439 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001440
Haozhong Zhangad7218832015-10-20 15:39:02 +08001441 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1442 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1443 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1444 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1445 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1446 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001447 }
Michael Rotha7fc06d2021-02-02 13:01:26 -06001448
Paolo Bonzini46896c72015-11-12 14:49:16 +01001449 if (static_cpu_has(X86_FEATURE_RDTSCP))
Sean Christopherson844d69c2021-04-23 15:34:04 -07001450 kvm_set_user_return_msr(TSC_AUX_URET_SLOT, svm->tsc_aux, -1ull);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001451
Michael Rotha7fc06d2021-02-02 13:01:26 -06001452 svm->guest_state_loaded = true;
1453}
1454
1455static void svm_prepare_host_switch(struct kvm_vcpu *vcpu)
1456{
Sean Christopherson844d69c2021-04-23 15:34:04 -07001457 to_svm(vcpu)->guest_state_loaded = false;
Michael Rotha7fc06d2021-02-02 13:01:26 -06001458}
1459
1460static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1461{
1462 struct vcpu_svm *svm = to_svm(vcpu);
1463 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
1464
Ashok Raj15d45072018-02-01 22:59:43 +01001465 if (sd->current_vmcb != svm->vmcb) {
1466 sd->current_vmcb = svm->vmcb;
1467 indirect_branch_prediction_barrier();
1468 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001469 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470}
1471
1472static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1473{
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001474 avic_vcpu_put(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001475 svm_prepare_host_switch(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001476
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001477 ++vcpu->stat.host_state_reload;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001478}
1479
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1481{
Ladi Prosek9b611742017-06-21 09:06:59 +02001482 struct vcpu_svm *svm = to_svm(vcpu);
1483 unsigned long rflags = svm->vmcb->save.rflags;
1484
1485 if (svm->nmi_singlestep) {
1486 /* Hide our flags if they were not set by the guest */
1487 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1488 rflags &= ~X86_EFLAGS_TF;
1489 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1490 rflags &= ~X86_EFLAGS_RF;
1491 }
1492 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493}
1494
1495static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1496{
Ladi Prosek9b611742017-06-21 09:06:59 +02001497 if (to_svm(vcpu)->nmi_singlestep)
1498 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1499
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001500 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001501 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001502 * (caused by either a task switch or an inter-privilege IRET),
1503 * so we do not need to update the CPL here.
1504 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001505 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506}
1507
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001508static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1509{
1510 switch (reg) {
1511 case VCPU_EXREG_PDPTR:
1512 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001513 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001514 break;
1515 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07001516 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001517 }
1518}
1519
Suravee Suthikulpanite14b7782020-05-06 08:17:55 -05001520static void svm_set_vintr(struct vcpu_svm *svm)
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001521{
1522 struct vmcb_control_area *control;
1523
1524 /* The following fields are ignored when AVIC is enabled */
1525 WARN_ON(kvm_vcpu_apicv_active(&svm->vcpu));
Joerg Roedela284ba52020-06-25 10:03:24 +02001526 svm_set_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001527
1528 /*
1529 * This is just a dummy VINTR to actually cause a vmexit to happen.
1530 * Actual injection of virtual interrupts happens through EVENTINJ.
1531 */
1532 control = &svm->vmcb->control;
1533 control->int_vector = 0x0;
1534 control->int_ctl &= ~V_INTR_PRIO_MASK;
1535 control->int_ctl |= V_IRQ_MASK |
1536 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedel06e78522020-06-25 10:03:23 +02001537 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001538}
1539
Alexander Graff0b85052008-11-25 20:17:01 +01001540static void svm_clear_vintr(struct vcpu_svm *svm)
1541{
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001542 const u32 mask = V_TPR_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK | V_INTR_MASKING_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02001543 svm_clr_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001544
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001545 /* Drop int_ctl fields related to VINTR injection. */
1546 svm->vmcb->control.int_ctl &= mask;
1547 if (is_guest_mode(&svm->vcpu)) {
Cathy Avery4995a362021-01-13 07:07:52 -05001548 svm->vmcb01.ptr->control.int_ctl &= mask;
Paolo Bonzinifb7333d2020-06-08 07:11:47 -04001549
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001550 WARN_ON((svm->vmcb->control.int_ctl & V_TPR_MASK) !=
1551 (svm->nested.ctl.int_ctl & V_TPR_MASK));
1552 svm->vmcb->control.int_ctl |= svm->nested.ctl.int_ctl & ~mask;
1553 }
1554
Joerg Roedel06e78522020-06-25 10:03:23 +02001555 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001556}
1557
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1559{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001560 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001561 struct vmcb_save_area *save01 = &to_svm(vcpu)->vmcb01.ptr->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562
1563 switch (seg) {
1564 case VCPU_SREG_CS: return &save->cs;
1565 case VCPU_SREG_DS: return &save->ds;
1566 case VCPU_SREG_ES: return &save->es;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001567 case VCPU_SREG_FS: return &save01->fs;
1568 case VCPU_SREG_GS: return &save01->gs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569 case VCPU_SREG_SS: return &save->ss;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001570 case VCPU_SREG_TR: return &save01->tr;
1571 case VCPU_SREG_LDTR: return &save01->ldtr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572 }
1573 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001574 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575}
1576
1577static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1578{
1579 struct vmcb_seg *s = svm_seg(vcpu, seg);
1580
1581 return s->base;
1582}
1583
1584static void svm_get_segment(struct kvm_vcpu *vcpu,
1585 struct kvm_segment *var, int seg)
1586{
1587 struct vmcb_seg *s = svm_seg(vcpu, seg);
1588
1589 var->base = s->base;
1590 var->limit = s->limit;
1591 var->selector = s->selector;
1592 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1593 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1594 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1595 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1596 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1597 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1598 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301599
1600 /*
1601 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1602 * However, the SVM spec states that the G bit is not observed by the
1603 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1604 * So let's synthesize a legal G bit for all segments, this helps
1605 * running KVM nested. It also helps cross-vendor migration, because
1606 * Intel's vmentry has a check on the 'G' bit.
1607 */
1608 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001609
Joerg Roedele0231712010-02-24 18:59:10 +01001610 /*
1611 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001612 * for cross vendor migration purposes by "not present"
1613 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001614 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001615
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001616 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001617 case VCPU_SREG_TR:
1618 /*
1619 * Work around a bug where the busy flag in the tr selector
1620 * isn't exposed
1621 */
Amit Shahc0d09822008-10-27 09:04:18 +00001622 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001623 break;
1624 case VCPU_SREG_DS:
1625 case VCPU_SREG_ES:
1626 case VCPU_SREG_FS:
1627 case VCPU_SREG_GS:
1628 /*
1629 * The accessed bit must always be set in the segment
1630 * descriptor cache, although it can be cleared in the
1631 * descriptor, the cached bit always remains at 1. Since
1632 * Intel has a check on this, set it here to support
1633 * cross-vendor migration.
1634 */
1635 if (!var->unusable)
1636 var->type |= 0x1;
1637 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001638 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001639 /*
1640 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001641 * descriptor is left as 1, although the whole segment has
1642 * been made unusable. Clear it here to pass an Intel VMX
1643 * entry check when cross vendor migrating.
1644 */
1645 if (var->unusable)
1646 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001647 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001648 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001649 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001650 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651}
1652
Izik Eidus2e4d2652008-03-24 19:38:34 +02001653static int svm_get_cpl(struct kvm_vcpu *vcpu)
1654{
1655 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1656
1657 return save->cpl;
1658}
1659
Gleb Natapov89a27f42010-02-16 10:51:48 +02001660static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001661{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001662 struct vcpu_svm *svm = to_svm(vcpu);
1663
Gleb Natapov89a27f42010-02-16 10:51:48 +02001664 dt->size = svm->vmcb->save.idtr.limit;
1665 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001666}
1667
Gleb Natapov89a27f42010-02-16 10:51:48 +02001668static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001670 struct vcpu_svm *svm = to_svm(vcpu);
1671
Gleb Natapov89a27f42010-02-16 10:51:48 +02001672 svm->vmcb->save.idtr.limit = dt->size;
1673 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001674 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001675}
1676
Gleb Natapov89a27f42010-02-16 10:51:48 +02001677static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001679 struct vcpu_svm *svm = to_svm(vcpu);
1680
Gleb Natapov89a27f42010-02-16 10:51:48 +02001681 dt->size = svm->vmcb->save.gdtr.limit;
1682 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001683}
1684
Gleb Natapov89a27f42010-02-16 10:51:48 +02001685static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001687 struct vcpu_svm *svm = to_svm(vcpu);
1688
Gleb Natapov89a27f42010-02-16 10:51:48 +02001689 svm->vmcb->save.gdtr.limit = dt->size;
1690 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001691 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001692}
1693
Joerg Roedel883b0a92020-03-24 10:41:52 +01001694void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001695{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001696 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001697 u64 hcr0 = cr0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001698
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001699#ifdef CONFIG_X86_64
Tom Lendackyf1c63662020-12-14 10:29:50 -05001700 if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001701 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001702 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001703 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001704 }
1705
Mike Dayd77c26f2007-10-08 09:02:08 -04001706 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001707 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001708 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709 }
1710 }
1711#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001712 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02001713
1714 if (!npt_enabled)
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001715 hcr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02001716
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02001717 /*
1718 * re-enable caching here because the QEMU bios
1719 * does not do it - this results in some delay at
1720 * reboot
1721 */
1722 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001723 hcr0 &= ~(X86_CR0_CD | X86_CR0_NW);
1724
1725 svm->vmcb->save.cr0 = hcr0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001726 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001727
1728 /*
1729 * SEV-ES guests must always keep the CR intercepts cleared. CR
1730 * tracking is done using the CR write traps.
1731 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001732 if (sev_es_guest(vcpu->kvm))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001733 return;
1734
1735 if (hcr0 == cr0) {
1736 /* Selective CR0 write remains on. */
1737 svm_clr_intercept(svm, INTERCEPT_CR0_READ);
1738 svm_clr_intercept(svm, INTERCEPT_CR0_WRITE);
1739 } else {
1740 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1741 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1742 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743}
1744
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07001745static bool svm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1746{
1747 return true;
1748}
1749
1750void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001751{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07001752 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Paolo Bonzinidc924b02020-11-15 09:44:18 -05001753 unsigned long old_cr4 = vcpu->arch.cr4;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02001754
1755 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Sean Christophersonf55ac302020-03-20 14:28:12 -07001756 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02001757
Joerg Roedelec077262008-04-09 14:15:28 +02001758 vcpu->arch.cr4 = cr4;
1759 if (!npt_enabled)
1760 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02001761 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02001762 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedel06e78522020-06-25 10:03:23 +02001763 vmcb_mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Jim Mattson2259c172020-10-29 10:06:48 -07001764
1765 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
1766 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767}
1768
1769static void svm_set_segment(struct kvm_vcpu *vcpu,
1770 struct kvm_segment *var, int seg)
1771{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001772 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001773 struct vmcb_seg *s = svm_seg(vcpu, seg);
1774
1775 s->base = var->base;
1776 s->limit = var->limit;
1777 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02001778 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1779 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1780 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1781 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
1782 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1783 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1784 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1785 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001786
1787 /*
1788 * This is always accurate, except if SYSRET returned to a segment
1789 * with SS.DPL != 3. Intel does not have this quirk, and always
1790 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1791 * would entail passing the CPL to userspace and back.
1792 */
1793 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02001794 /* This is symmetric with svm_get_segment() */
1795 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796
Joerg Roedel06e78522020-06-25 10:03:23 +02001797 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798}
1799
Jason Baronb6a7cc32021-01-14 22:27:54 -05001800static void svm_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001802 struct vcpu_svm *svm = to_svm(vcpu);
1803
Joerg Roedel18c918c2010-11-30 18:03:59 +01001804 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03001805
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001806 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001807 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01001808 set_exception_intercept(svm, BP_VECTOR);
Paolo Bonzini69869822020-07-10 17:48:06 +02001809 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001810}
1811
Tejun Heo0fe1e002009-10-29 22:34:14 +09001812static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001813{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001814 if (sd->next_asid > sd->max_asid) {
1815 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06001816 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001817 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001818 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001819 }
1820
Cathy Avery193015a2021-01-12 11:43:13 -05001821 svm->current_vmcb->asid_generation = sd->asid_generation;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001822 svm->asid = sd->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001823}
1824
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001825static void svm_set_dr6(struct vcpu_svm *svm, unsigned long value)
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001826{
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001827 struct vmcb *vmcb = svm->vmcb;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001828
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001829 if (svm->vcpu.arch.guest_state_protected)
1830 return;
1831
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001832 if (unlikely(value != vmcb->save.dr6)) {
1833 vmcb->save.dr6 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001834 vmcb_mark_dirty(vmcb, VMCB_DR);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001835 }
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001836}
1837
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001838static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1839{
1840 struct vcpu_svm *svm = to_svm(vcpu);
1841
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001842 if (vcpu->arch.guest_state_protected)
1843 return;
1844
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001845 get_debugreg(vcpu->arch.db[0], 0);
1846 get_debugreg(vcpu->arch.db[1], 1);
1847 get_debugreg(vcpu->arch.db[2], 2);
1848 get_debugreg(vcpu->arch.db[3], 3);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001849 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001850 * We cannot reset svm->vmcb->save.dr6 to DR6_ACTIVE_LOW here,
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001851 * because db_interception might need it. We can do it before vmentry.
1852 */
Paolo Bonzini5679b802020-05-04 11:28:25 -04001853 vcpu->arch.dr6 = svm->vmcb->save.dr6;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001854 vcpu->arch.dr7 = svm->vmcb->save.dr7;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001855 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1856 set_dr_intercepts(svm);
1857}
1858
Gleb Natapov020df072010-04-13 10:05:23 +03001859static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001860{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001861 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001862
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001863 if (vcpu->arch.guest_state_protected)
1864 return;
1865
Gleb Natapov020df072010-04-13 10:05:23 +03001866 svm->vmcb->save.dr7 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001867 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001868}
1869
Paolo Bonzini63129752021-03-02 14:40:39 -05001870static int pf_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871{
Paolo Bonzini63129752021-03-02 14:40:39 -05001872 struct vcpu_svm *svm = to_svm(vcpu);
1873
Sean Christopherson6d1b8672021-03-04 17:10:56 -08001874 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001875 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001876
Paolo Bonzini63129752021-03-02 14:40:39 -05001877 return kvm_handle_page_fault(vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001878 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1879 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001880 svm->vmcb->control.insn_len);
1881}
1882
Paolo Bonzini63129752021-03-02 14:40:39 -05001883static int npf_interception(struct kvm_vcpu *vcpu)
Paolo Bonzinid0006532017-08-11 18:36:43 +02001884{
Paolo Bonzini63129752021-03-02 14:40:39 -05001885 struct vcpu_svm *svm = to_svm(vcpu);
1886
Brijesh Singh0ede79e2017-12-04 10:57:39 -06001887 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02001888 u64 error_code = svm->vmcb->control.exit_info_1;
1889
1890 trace_kvm_page_fault(fault_address, error_code);
Paolo Bonzini63129752021-03-02 14:40:39 -05001891 return kvm_mmu_page_fault(vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001892 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1893 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001894 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001895}
1896
Paolo Bonzini63129752021-03-02 14:40:39 -05001897static int db_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001898{
Paolo Bonzini63129752021-03-02 14:40:39 -05001899 struct kvm_run *kvm_run = vcpu->run;
1900 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03001901
Paolo Bonzini63129752021-03-02 14:40:39 -05001902 if (!(vcpu->guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03001903 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02001904 !svm->nmi_singlestep) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001905 u32 payload = svm->vmcb->save.dr6 ^ DR6_ACTIVE_LOW;
Paolo Bonzini63129752021-03-02 14:40:39 -05001906 kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001907 return 1;
1908 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001909
Jan Kiszka6be7d302009-10-18 13:24:54 +02001910 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001911 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001912 /* Make sure we check for pending NMIs upon entry */
1913 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03001914 }
1915
Paolo Bonzini63129752021-03-02 14:40:39 -05001916 if (vcpu->guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01001917 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03001918 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Paolo Bonzinidee919d2020-05-04 09:34:10 -04001919 kvm_run->debug.arch.dr6 = svm->vmcb->save.dr6;
1920 kvm_run->debug.arch.dr7 = svm->vmcb->save.dr7;
Gleb Natapov44c11432009-05-11 13:35:52 +03001921 kvm_run->debug.arch.pc =
1922 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1923 kvm_run->debug.arch.exception = DB_VECTOR;
1924 return 0;
1925 }
1926
1927 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001928}
1929
Paolo Bonzini63129752021-03-02 14:40:39 -05001930static int bp_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001931{
Paolo Bonzini63129752021-03-02 14:40:39 -05001932 struct vcpu_svm *svm = to_svm(vcpu);
1933 struct kvm_run *kvm_run = vcpu->run;
Avi Kivity851ba692009-08-24 11:10:17 +03001934
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001935 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1936 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1937 kvm_run->debug.arch.exception = BP_VECTOR;
1938 return 0;
1939}
1940
Paolo Bonzini63129752021-03-02 14:40:39 -05001941static int ud_interception(struct kvm_vcpu *vcpu)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001942{
Paolo Bonzini63129752021-03-02 14:40:39 -05001943 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001944}
1945
Paolo Bonzini63129752021-03-02 14:40:39 -05001946static int ac_interception(struct kvm_vcpu *vcpu)
Eric Northup54a20552015-11-03 18:03:53 +01001947{
Paolo Bonzini63129752021-03-02 14:40:39 -05001948 kvm_queue_exception_e(vcpu, AC_VECTOR, 0);
Eric Northup54a20552015-11-03 18:03:53 +01001949 return 1;
1950}
1951
Joerg Roedel67ec6602010-05-17 14:43:35 +02001952static bool is_erratum_383(void)
1953{
1954 int err, i;
1955 u64 value;
1956
1957 if (!erratum_383_found)
1958 return false;
1959
1960 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
1961 if (err)
1962 return false;
1963
1964 /* Bit 62 may or may not be set for this mce */
1965 value &= ~(1ULL << 62);
1966
1967 if (value != 0xb600000000010015ULL)
1968 return false;
1969
1970 /* Clear MCi_STATUS registers */
1971 for (i = 0; i < 6; ++i)
1972 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
1973
1974 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
1975 if (!err) {
1976 u32 low, high;
1977
1978 value &= ~(1ULL << 2);
1979 low = lower_32_bits(value);
1980 high = upper_32_bits(value);
1981
1982 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
1983 }
1984
1985 /* Flush tlb to evict multi-match entries */
1986 __flush_tlb_all();
1987
1988 return true;
1989}
1990
Paolo Bonzini63129752021-03-02 14:40:39 -05001991static void svm_handle_mce(struct kvm_vcpu *vcpu)
Joerg Roedel53371b52008-04-09 14:15:30 +02001992{
Joerg Roedel67ec6602010-05-17 14:43:35 +02001993 if (is_erratum_383()) {
1994 /*
1995 * Erratum 383 triggered. Guest state is corrupt so kill the
1996 * guest.
1997 */
1998 pr_err("KVM: Guest triggered AMD Erratum 383\n");
1999
Paolo Bonzini63129752021-03-02 14:40:39 -05002000 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002001
2002 return;
2003 }
2004
Joerg Roedel53371b52008-04-09 14:15:30 +02002005 /*
2006 * On an #MC intercept the MCE handler is not called automatically in
2007 * the host. So do it by hand here.
2008 */
Uros Bizjak1c164cb2020-04-11 17:36:27 +02002009 kvm_machine_check();
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002010}
2011
Paolo Bonzini63129752021-03-02 14:40:39 -05002012static int mc_interception(struct kvm_vcpu *vcpu)
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002013{
Joerg Roedel53371b52008-04-09 14:15:30 +02002014 return 1;
2015}
2016
Paolo Bonzini63129752021-03-02 14:40:39 -05002017static int shutdown_interception(struct kvm_vcpu *vcpu)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002018{
Paolo Bonzini63129752021-03-02 14:40:39 -05002019 struct kvm_run *kvm_run = vcpu->run;
2020 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002021
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002022 /*
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002023 * The VM save area has already been encrypted so it
2024 * cannot be reinitialized - just terminate.
2025 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002026 if (sev_es_guest(vcpu->kvm))
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002027 return -EINVAL;
2028
2029 /*
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002030 * VMCB is undefined after a SHUTDOWN intercept
2031 * so reinitialize it.
2032 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002033 clear_page(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05002034 init_vmcb(vcpu);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002035
2036 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2037 return 0;
2038}
2039
Paolo Bonzini63129752021-03-02 14:40:39 -05002040static int io_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002041{
Paolo Bonzini63129752021-03-02 14:40:39 -05002042 struct vcpu_svm *svm = to_svm(vcpu);
Mike Dayd77c26f2007-10-08 09:02:08 -04002043 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002044 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002045 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002046
Paolo Bonzini63129752021-03-02 14:40:39 -05002047 ++vcpu->stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002048 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002049 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
2050 port = io_info >> 16;
2051 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -06002052
2053 if (string) {
2054 if (sev_es_guest(vcpu->kvm))
2055 return sev_es_string_io(svm, size, port, in);
2056 else
2057 return kvm_emulate_instruction(vcpu, 0);
2058 }
2059
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002060 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002061
Paolo Bonzini63129752021-03-02 14:40:39 -05002062 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002063}
2064
Paolo Bonzini63129752021-03-02 14:40:39 -05002065static int nmi_interception(struct kvm_vcpu *vcpu)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002066{
2067 return 1;
2068}
2069
Paolo Bonzini63129752021-03-02 14:40:39 -05002070static int intr_interception(struct kvm_vcpu *vcpu)
Joerg Roedela0698052008-04-30 17:56:01 +02002071{
Paolo Bonzini63129752021-03-02 14:40:39 -05002072 ++vcpu->stat.irq_exits;
Joerg Roedela0698052008-04-30 17:56:01 +02002073 return 1;
2074}
2075
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002076static int vmload_vmsave_interception(struct kvm_vcpu *vcpu, bool vmload)
Alexander Graf55426752008-11-25 20:17:06 +01002077{
Paolo Bonzini63129752021-03-02 14:40:39 -05002078 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002079 struct vmcb *vmcb12;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002080 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002081 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002082
Paolo Bonzini63129752021-03-02 14:40:39 -05002083 if (nested_svm_check_permissions(vcpu))
Alexander Graf55426752008-11-25 20:17:06 +01002084 return 1;
2085
Paolo Bonzini63129752021-03-02 14:40:39 -05002086 ret = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002087 if (ret) {
2088 if (ret == -EINVAL)
Paolo Bonzini63129752021-03-02 14:40:39 -05002089 kvm_inject_gp(vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02002090 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002091 }
2092
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002093 vmcb12 = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002094
Paolo Bonzini63129752021-03-02 14:40:39 -05002095 ret = kvm_skip_emulated_instruction(vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02002096
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002097 if (vmload) {
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002098 nested_svm_vmloadsave(vmcb12, svm->vmcb);
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002099 svm->sysenter_eip_hi = 0;
2100 svm->sysenter_esp_hi = 0;
2101 } else
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002102 nested_svm_vmloadsave(svm->vmcb, vmcb12);
2103
Paolo Bonzini63129752021-03-02 14:40:39 -05002104 kvm_vcpu_unmap(vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002105
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002106 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002107}
2108
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002109static int vmload_interception(struct kvm_vcpu *vcpu)
2110{
2111 return vmload_vmsave_interception(vcpu, true);
2112}
2113
Paolo Bonzini63129752021-03-02 14:40:39 -05002114static int vmsave_interception(struct kvm_vcpu *vcpu)
Alexander Graf55426752008-11-25 20:17:06 +01002115{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002116 return vmload_vmsave_interception(vcpu, false);
Alexander Graf55426752008-11-25 20:17:06 +01002117}
2118
Paolo Bonzini63129752021-03-02 14:40:39 -05002119static int vmrun_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002120{
Paolo Bonzini63129752021-03-02 14:40:39 -05002121 if (nested_svm_check_permissions(vcpu))
Alexander Graf3d6368e2008-11-25 20:17:07 +01002122 return 1;
2123
Paolo Bonzini63129752021-03-02 14:40:39 -05002124 return nested_svm_vmrun(vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002125}
2126
Bandan Das82a11e9c2021-01-26 03:18:29 -05002127enum {
2128 NONE_SVM_INSTR,
2129 SVM_INSTR_VMRUN,
2130 SVM_INSTR_VMLOAD,
2131 SVM_INSTR_VMSAVE,
2132};
2133
2134/* Return NONE_SVM_INSTR if not SVM instrs, otherwise return decode result */
2135static int svm_instr_opcode(struct kvm_vcpu *vcpu)
2136{
2137 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
2138
2139 if (ctxt->b != 0x1 || ctxt->opcode_len != 2)
2140 return NONE_SVM_INSTR;
2141
2142 switch (ctxt->modrm) {
2143 case 0xd8: /* VMRUN */
2144 return SVM_INSTR_VMRUN;
2145 case 0xda: /* VMLOAD */
2146 return SVM_INSTR_VMLOAD;
2147 case 0xdb: /* VMSAVE */
2148 return SVM_INSTR_VMSAVE;
2149 default:
2150 break;
2151 }
2152
2153 return NONE_SVM_INSTR;
2154}
2155
2156static int emulate_svm_instr(struct kvm_vcpu *vcpu, int opcode)
2157{
Wei Huang14c2bf82021-01-26 03:18:31 -05002158 const int guest_mode_exit_codes[] = {
2159 [SVM_INSTR_VMRUN] = SVM_EXIT_VMRUN,
2160 [SVM_INSTR_VMLOAD] = SVM_EXIT_VMLOAD,
2161 [SVM_INSTR_VMSAVE] = SVM_EXIT_VMSAVE,
2162 };
Paolo Bonzini63129752021-03-02 14:40:39 -05002163 int (*const svm_instr_handlers[])(struct kvm_vcpu *vcpu) = {
Bandan Das82a11e9c2021-01-26 03:18:29 -05002164 [SVM_INSTR_VMRUN] = vmrun_interception,
2165 [SVM_INSTR_VMLOAD] = vmload_interception,
2166 [SVM_INSTR_VMSAVE] = vmsave_interception,
2167 };
2168 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002169 int ret;
Bandan Das82a11e9c2021-01-26 03:18:29 -05002170
Wei Huang14c2bf82021-01-26 03:18:31 -05002171 if (is_guest_mode(vcpu)) {
Sean Christopherson2df8d382021-02-23 16:56:26 -08002172 /* Returns '1' or -errno on failure, '0' on success. */
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08002173 ret = nested_svm_simple_vmexit(svm, guest_mode_exit_codes[opcode]);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002174 if (ret)
2175 return ret;
2176 return 1;
2177 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002178 return svm_instr_handlers[opcode](vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002179}
2180
2181/*
2182 * #GP handling code. Note that #GP can be triggered under the following two
2183 * cases:
2184 * 1) SVM VM-related instructions (VMRUN/VMSAVE/VMLOAD) that trigger #GP on
2185 * some AMD CPUs when EAX of these instructions are in the reserved memory
2186 * regions (e.g. SMM memory on host).
2187 * 2) VMware backdoor
2188 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002189static int gp_interception(struct kvm_vcpu *vcpu)
Bandan Das82a11e9c2021-01-26 03:18:29 -05002190{
Paolo Bonzini63129752021-03-02 14:40:39 -05002191 struct vcpu_svm *svm = to_svm(vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002192 u32 error_code = svm->vmcb->control.exit_info_1;
2193 int opcode;
2194
2195 /* Both #GP cases have zero error_code */
2196 if (error_code)
2197 goto reinject;
2198
2199 /* Decode the instruction for usage later */
2200 if (x86_decode_emulated_instruction(vcpu, 0, NULL, 0) != EMULATION_OK)
2201 goto reinject;
2202
2203 opcode = svm_instr_opcode(vcpu);
2204
2205 if (opcode == NONE_SVM_INSTR) {
2206 if (!enable_vmware_backdoor)
2207 goto reinject;
2208
2209 /*
2210 * VMware backdoor emulation on #GP interception only handles
2211 * IN{S}, OUT{S}, and RDPMC.
2212 */
Wei Huang14c2bf82021-01-26 03:18:31 -05002213 if (!is_guest_mode(vcpu))
2214 return kvm_emulate_instruction(vcpu,
Bandan Das82a11e9c2021-01-26 03:18:29 -05002215 EMULTYPE_VMWARE_GP | EMULTYPE_NO_DECODE);
2216 } else
2217 return emulate_svm_instr(vcpu, opcode);
2218
2219reinject:
2220 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2221 return 1;
2222}
2223
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002224void svm_set_gif(struct vcpu_svm *svm, bool value)
2225{
2226 if (value) {
2227 /*
2228 * If VGIF is enabled, the STGI intercept is only added to
2229 * detect the opening of the SMI/NMI window; remove it now.
2230 * Likewise, clear the VINTR intercept, we will set it
2231 * again while processing KVM_REQ_EVENT if needed.
2232 */
2233 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02002234 svm_clr_intercept(svm, INTERCEPT_STGI);
2235 if (svm_is_intercept(svm, INTERCEPT_VINTR))
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002236 svm_clear_vintr(svm);
2237
2238 enable_gif(svm);
2239 if (svm->vcpu.arch.smi_pending ||
2240 svm->vcpu.arch.nmi_pending ||
2241 kvm_cpu_has_injectable_intr(&svm->vcpu))
2242 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
2243 } else {
2244 disable_gif(svm);
2245
2246 /*
2247 * After a CLGI no interrupts should come. But if vGIF is
2248 * in use, we still rely on the VINTR intercept (rather than
2249 * STGI) to detect an open interrupt window.
2250 */
2251 if (!vgif_enabled(svm))
2252 svm_clear_vintr(svm);
2253 }
2254}
2255
Paolo Bonzini63129752021-03-02 14:40:39 -05002256static int stgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002257{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002258 int ret;
2259
Paolo Bonzini63129752021-03-02 14:40:39 -05002260 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002261 return 1;
2262
Paolo Bonzini63129752021-03-02 14:40:39 -05002263 ret = kvm_skip_emulated_instruction(vcpu);
2264 svm_set_gif(to_svm(vcpu), true);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002265 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002266}
2267
Paolo Bonzini63129752021-03-02 14:40:39 -05002268static int clgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002269{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002270 int ret;
2271
Paolo Bonzini63129752021-03-02 14:40:39 -05002272 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002273 return 1;
2274
Paolo Bonzini63129752021-03-02 14:40:39 -05002275 ret = kvm_skip_emulated_instruction(vcpu);
2276 svm_set_gif(to_svm(vcpu), false);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002277 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002278}
2279
Paolo Bonzini63129752021-03-02 14:40:39 -05002280static int invlpga_interception(struct kvm_vcpu *vcpu)
Alexander Grafff092382009-06-15 15:21:24 +02002281{
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002282 gva_t gva = kvm_rax_read(vcpu);
2283 u32 asid = kvm_rcx_read(vcpu);
2284
2285 /* FIXME: Handle an address size prefix. */
2286 if (!is_long_mode(vcpu))
2287 gva = (u32)gva;
2288
2289 trace_kvm_invlpga(to_svm(vcpu)->vmcb->save.rip, asid, gva);
Joerg Roedelec1ff792009-10-09 16:08:31 +02002290
Alexander Grafff092382009-06-15 15:21:24 +02002291 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002292 kvm_mmu_invlpg(vcpu, gva);
Alexander Grafff092382009-06-15 15:21:24 +02002293
Paolo Bonzini63129752021-03-02 14:40:39 -05002294 return kvm_skip_emulated_instruction(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002295}
2296
Paolo Bonzini63129752021-03-02 14:40:39 -05002297static int skinit_interception(struct kvm_vcpu *vcpu)
Joerg Roedel532a46b2009-10-09 16:08:32 +02002298{
Paolo Bonzini63129752021-03-02 14:40:39 -05002299 trace_kvm_skinit(to_svm(vcpu)->vmcb->save.rip, kvm_rax_read(vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02002300
Paolo Bonzini63129752021-03-02 14:40:39 -05002301 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedel532a46b2009-10-09 16:08:32 +02002302 return 1;
2303}
2304
Paolo Bonzini63129752021-03-02 14:40:39 -05002305static int task_switch_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306{
Paolo Bonzini63129752021-03-02 14:40:39 -05002307 struct vcpu_svm *svm = to_svm(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02002308 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002309 int reason;
2310 int int_type = svm->vmcb->control.exit_int_info &
2311 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03002312 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002313 uint32_t type =
2314 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2315 uint32_t idt_v =
2316 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02002317 bool has_error_code = false;
2318 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02002319
2320 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002321
Izik Eidus37817f22008-03-24 23:14:53 +02002322 if (svm->vmcb->control.exit_info_2 &
2323 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002324 reason = TASK_SWITCH_IRET;
2325 else if (svm->vmcb->control.exit_info_2 &
2326 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2327 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002328 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002329 reason = TASK_SWITCH_GATE;
2330 else
2331 reason = TASK_SWITCH_CALL;
2332
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002333 if (reason == TASK_SWITCH_GATE) {
2334 switch (type) {
2335 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05002336 vcpu->arch.nmi_injected = false;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002337 break;
2338 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02002339 if (svm->vmcb->control.exit_info_2 &
2340 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2341 has_error_code = true;
2342 error_code =
2343 (u32)svm->vmcb->control.exit_info_2;
2344 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002345 kvm_clear_exception_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002346 break;
2347 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05002348 kvm_clear_interrupt_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002349 break;
2350 default:
2351 break;
2352 }
2353 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002354
Gleb Natapov8317c292009-04-12 13:37:02 +03002355 if (reason != TASK_SWITCH_GATE ||
2356 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2357 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002358 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Paolo Bonzini63129752021-03-02 14:40:39 -05002359 if (!skip_emulated_instruction(vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07002360 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002361 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002362
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01002363 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2364 int_vec = -1;
2365
Paolo Bonzini63129752021-03-02 14:40:39 -05002366 return kvm_task_switch(vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002367 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002368}
2369
Paolo Bonzini63129752021-03-02 14:40:39 -05002370static int iret_interception(struct kvm_vcpu *vcpu)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002371{
Paolo Bonzini63129752021-03-02 14:40:39 -05002372 struct vcpu_svm *svm = to_svm(vcpu);
2373
2374 ++vcpu->stat.nmi_window_exits;
2375 vcpu->arch.hflags |= HF_IRET_MASK;
2376 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002377 svm_clr_intercept(svm, INTERCEPT_IRET);
Paolo Bonzini63129752021-03-02 14:40:39 -05002378 svm->nmi_iret_rip = kvm_rip_read(vcpu);
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002379 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002380 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002381 return 1;
2382}
2383
Paolo Bonzini63129752021-03-02 14:40:39 -05002384static int invlpg_interception(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03002385{
Andre Przywaradf4f31082010-12-21 11:12:06 +01002386 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002387 return kvm_emulate_instruction(vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01002388
Paolo Bonzini63129752021-03-02 14:40:39 -05002389 kvm_mmu_invlpg(vcpu, to_svm(vcpu)->vmcb->control.exit_info_1);
2390 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002391}
2392
Paolo Bonzini63129752021-03-02 14:40:39 -05002393static int emulate_on_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394{
Paolo Bonzini63129752021-03-02 14:40:39 -05002395 return kvm_emulate_instruction(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396}
2397
Paolo Bonzini63129752021-03-02 14:40:39 -05002398static int rsm_interception(struct kvm_vcpu *vcpu)
Brijesh Singh7607b712018-02-19 10:14:44 -06002399{
Paolo Bonzini63129752021-03-02 14:40:39 -05002400 return kvm_emulate_instruction_from_buffer(vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06002401}
2402
Paolo Bonzini63129752021-03-02 14:40:39 -05002403static bool check_selective_cr0_intercepted(struct kvm_vcpu *vcpu,
Xiubo Li52eb5a62015-03-13 17:39:45 +08002404 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02002405{
Paolo Bonzini63129752021-03-02 14:40:39 -05002406 struct vcpu_svm *svm = to_svm(vcpu);
2407 unsigned long cr0 = vcpu->arch.cr0;
Joerg Roedel628afd22011-04-04 12:39:36 +02002408 bool ret = false;
Joerg Roedel628afd22011-04-04 12:39:36 +02002409
Paolo Bonzini63129752021-03-02 14:40:39 -05002410 if (!is_guest_mode(vcpu) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05002411 (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_SELECTIVE_CR0))))
Joerg Roedel628afd22011-04-04 12:39:36 +02002412 return false;
2413
2414 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2415 val &= ~SVM_CR0_SELECTIVE_MASK;
2416
2417 if (cr0 ^ val) {
2418 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2419 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2420 }
2421
2422 return ret;
2423}
2424
Andre Przywara7ff76d52010-12-21 11:12:04 +01002425#define CR_VALID (1ULL << 63)
2426
Paolo Bonzini63129752021-03-02 14:40:39 -05002427static int cr_interception(struct kvm_vcpu *vcpu)
Andre Przywara7ff76d52010-12-21 11:12:04 +01002428{
Paolo Bonzini63129752021-03-02 14:40:39 -05002429 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002430 int reg, cr;
2431 unsigned long val;
2432 int err;
2433
2434 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002435 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002436
2437 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
Paolo Bonzini63129752021-03-02 14:40:39 -05002438 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002439
2440 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06002441 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
2442 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
2443 else
2444 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002445
2446 err = 0;
2447 if (cr >= 16) { /* mov to cr */
2448 cr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002449 val = kvm_register_read(vcpu, reg);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002450 trace_kvm_cr_write(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002451 switch (cr) {
2452 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002453 if (!check_selective_cr0_intercepted(vcpu, val))
2454 err = kvm_set_cr0(vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02002455 else
2456 return 1;
2457
Andre Przywara7ff76d52010-12-21 11:12:04 +01002458 break;
2459 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002460 err = kvm_set_cr3(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002461 break;
2462 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002463 err = kvm_set_cr4(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002464 break;
2465 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002466 err = kvm_set_cr8(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002467 break;
2468 default:
2469 WARN(1, "unhandled write to CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002470 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002471 return 1;
2472 }
2473 } else { /* mov from cr */
2474 switch (cr) {
2475 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002476 val = kvm_read_cr0(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002477 break;
2478 case 2:
Paolo Bonzini63129752021-03-02 14:40:39 -05002479 val = vcpu->arch.cr2;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002480 break;
2481 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002482 val = kvm_read_cr3(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002483 break;
2484 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002485 val = kvm_read_cr4(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002486 break;
2487 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002488 val = kvm_get_cr8(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002489 break;
2490 default:
2491 WARN(1, "unhandled read from CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002492 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002493 return 1;
2494 }
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002495 kvm_register_write(vcpu, reg, val);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002496 trace_kvm_cr_read(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002497 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002498 return kvm_complete_insn_gp(vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002499}
2500
Paolo Bonzini63129752021-03-02 14:40:39 -05002501static int cr_trap(struct kvm_vcpu *vcpu)
Tom Lendackyf27ad382020-12-10 11:09:56 -06002502{
Paolo Bonzini63129752021-03-02 14:40:39 -05002503 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002504 unsigned long old_value, new_value;
2505 unsigned int cr;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002506 int ret = 0;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002507
2508 new_value = (unsigned long)svm->vmcb->control.exit_info_1;
2509
2510 cr = svm->vmcb->control.exit_code - SVM_EXIT_CR0_WRITE_TRAP;
2511 switch (cr) {
2512 case 0:
2513 old_value = kvm_read_cr0(vcpu);
2514 svm_set_cr0(vcpu, new_value);
2515
2516 kvm_post_set_cr0(vcpu, old_value, new_value);
2517 break;
Tom Lendacky5b51cb12020-12-10 11:09:57 -06002518 case 4:
2519 old_value = kvm_read_cr4(vcpu);
2520 svm_set_cr4(vcpu, new_value);
2521
2522 kvm_post_set_cr4(vcpu, old_value, new_value);
2523 break;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002524 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002525 ret = kvm_set_cr8(vcpu, new_value);
Tom Lendackyd1949b92020-12-10 11:09:58 -06002526 break;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002527 default:
2528 WARN(1, "unhandled CR%d write trap", cr);
2529 kvm_queue_exception(vcpu, UD_VECTOR);
2530 return 1;
2531 }
2532
Tom Lendackyd1949b92020-12-10 11:09:58 -06002533 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002534}
2535
Paolo Bonzini63129752021-03-02 14:40:39 -05002536static int dr_interception(struct kvm_vcpu *vcpu)
Andre Przywaracae37972010-12-21 11:12:05 +01002537{
Paolo Bonzini63129752021-03-02 14:40:39 -05002538 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002539 int reg, dr;
2540 unsigned long val;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002541 int err = 0;
Andre Przywaracae37972010-12-21 11:12:05 +01002542
Paolo Bonzini63129752021-03-02 14:40:39 -05002543 if (vcpu->guest_debug == 0) {
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002544 /*
2545 * No more DR vmexits; force a reload of the debug registers
2546 * and reenter on this instruction. The next vmexit will
2547 * retrieve the full state of the debug registers.
2548 */
2549 clr_dr_intercepts(svm);
Paolo Bonzini63129752021-03-02 14:40:39 -05002550 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002551 return 1;
2552 }
2553
Andre Przywaracae37972010-12-21 11:12:05 +01002554 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002555 return emulate_on_interception(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002556
2557 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2558 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002559 if (dr >= 16) { /* mov to DRn */
2560 dr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002561 val = kvm_register_read(vcpu, reg);
Paolo Bonzini63129752021-03-02 14:40:39 -05002562 err = kvm_set_dr(vcpu, dr, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002563 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05002564 kvm_get_dr(vcpu, dr, &val);
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002565 kvm_register_write(vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002566 }
2567
Paolo Bonzini63129752021-03-02 14:40:39 -05002568 return kvm_complete_insn_gp(vcpu, err);
Andre Przywaracae37972010-12-21 11:12:05 +01002569}
2570
Paolo Bonzini63129752021-03-02 14:40:39 -05002571static int cr8_write_interception(struct kvm_vcpu *vcpu)
Joerg Roedel1d075432007-12-06 21:02:25 +01002572{
Andre Przywaraeea1cff2010-12-21 11:12:00 +01002573 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03002574
Paolo Bonzini63129752021-03-02 14:40:39 -05002575 u8 cr8_prev = kvm_get_cr8(vcpu);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002576 /* instruction emulation calls kvm_set_cr8() */
Paolo Bonzini63129752021-03-02 14:40:39 -05002577 r = cr_interception(vcpu);
2578 if (lapic_in_kernel(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002579 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002580 if (cr8_prev <= kvm_get_cr8(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002581 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002582 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Joerg Roedel1d075432007-12-06 21:02:25 +01002583 return 0;
2584}
2585
Paolo Bonzini63129752021-03-02 14:40:39 -05002586static int efer_trap(struct kvm_vcpu *vcpu)
Tom Lendacky2985afb2020-12-10 11:09:55 -06002587{
2588 struct msr_data msr_info;
2589 int ret;
2590
2591 /*
2592 * Clear the EFER_SVME bit from EFER. The SVM code always sets this
2593 * bit in svm_set_efer(), but __kvm_valid_efer() checks it against
2594 * whether the guest has X86_FEATURE_SVM - this avoids a failure if
2595 * the guest doesn't have X86_FEATURE_SVM.
2596 */
2597 msr_info.host_initiated = false;
2598 msr_info.index = MSR_EFER;
Paolo Bonzini63129752021-03-02 14:40:39 -05002599 msr_info.data = to_svm(vcpu)->vmcb->control.exit_info_1 & ~EFER_SVME;
2600 ret = kvm_set_msr_common(vcpu, &msr_info);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002601
Paolo Bonzini63129752021-03-02 14:40:39 -05002602 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002603}
2604
Tom Lendacky801e4592018-02-21 13:39:51 -06002605static int svm_get_msr_feature(struct kvm_msr_entry *msr)
2606{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002607 msr->data = 0;
2608
2609 switch (msr->index) {
2610 case MSR_F10H_DECFG:
2611 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
2612 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
2613 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002614 case MSR_IA32_PERF_CAPABILITIES:
2615 return 0;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002616 default:
Peter Xu12bc2132020-06-22 18:04:42 -04002617 return KVM_MSR_RET_INVALID;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002618 }
2619
2620 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06002621}
2622
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002623static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002625 struct vcpu_svm *svm = to_svm(vcpu);
2626
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002627 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04002628 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002629 msr_info->data = svm->vmcb01.ptr->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08002631#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002633 msr_info->data = svm->vmcb01.ptr->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634 break;
2635 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002636 msr_info->data = svm->vmcb01.ptr->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 break;
2638 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002639 msr_info->data = svm->vmcb01.ptr->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640 break;
2641 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002642 msr_info->data = svm->vmcb01.ptr->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 break;
2644#endif
2645 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002646 msr_info->data = svm->vmcb01.ptr->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647 break;
2648 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002649 msr_info->data = (u32)svm->vmcb01.ptr->save.sysenter_eip;
2650 if (guest_cpuid_is_intel(vcpu))
2651 msr_info->data |= (u64)svm->sysenter_eip_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002652 break;
2653 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002654 msr_info->data = svm->vmcb01.ptr->save.sysenter_esp;
2655 if (guest_cpuid_is_intel(vcpu))
2656 msr_info->data |= (u64)svm->sysenter_esp_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002658 case MSR_TSC_AUX:
2659 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2660 return 1;
Sean Christopherson6f2b2962021-04-23 15:34:01 -07002661 if (!msr_info->host_initiated &&
2662 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
2663 return 1;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002664 msr_info->data = svm->tsc_aux;
2665 break;
Joerg Roedele0231712010-02-24 18:59:10 +01002666 /*
2667 * Nobody will change the following 5 values in the VMCB so we can
2668 * safely return them on rdmsr. They will always be 0 until LBRV is
2669 * implemented.
2670 */
Joerg Roedela2938c82008-02-13 16:30:28 +01002671 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002672 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01002673 break;
2674 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002675 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002676 break;
2677 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002678 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002679 break;
2680 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002681 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002682 break;
2683 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002684 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002685 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002686 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002687 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002688 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002689 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002690 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002691 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002692 case MSR_IA32_SPEC_CTRL:
2693 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002694 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002695 return 1;
2696
Babu Mogerd00b99c2021-02-17 10:56:04 -05002697 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2698 msr_info->data = svm->vmcb->save.spec_ctrl;
2699 else
2700 msr_info->data = svm->spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002701 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002702 case MSR_AMD64_VIRT_SPEC_CTRL:
2703 if (!msr_info->host_initiated &&
2704 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2705 return 1;
2706
2707 msr_info->data = svm->virt_spec_ctrl;
2708 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01002709 case MSR_F15H_IC_CFG: {
2710
2711 int family, model;
2712
2713 family = guest_cpuid_family(vcpu);
2714 model = guest_cpuid_model(vcpu);
2715
2716 if (family < 0 || model < 0)
2717 return kvm_get_msr_common(vcpu, msr_info);
2718
2719 msr_info->data = 0;
2720
2721 if (family == 0x15 &&
2722 (model >= 0x2 && model < 0x20))
2723 msr_info->data = 0x1E;
2724 }
2725 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002726 case MSR_F10H_DECFG:
2727 msr_info->data = svm->msr_decfg;
2728 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002730 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731 }
2732 return 0;
2733}
2734
Tom Lendackyf1c63662020-12-14 10:29:50 -05002735static int svm_complete_emulated_msr(struct kvm_vcpu *vcpu, int err)
2736{
2737 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackya3ba26e2021-04-09 09:38:42 -05002738 if (!err || !sev_es_guest(vcpu->kvm) || WARN_ON_ONCE(!svm->ghcb))
Paolo Bonzini63129752021-03-02 14:40:39 -05002739 return kvm_complete_insn_gp(vcpu, err);
Tom Lendackyf1c63662020-12-14 10:29:50 -05002740
2741 ghcb_set_sw_exit_info_1(svm->ghcb, 1);
2742 ghcb_set_sw_exit_info_2(svm->ghcb,
2743 X86_TRAP_GP |
2744 SVM_EVTINJ_TYPE_EXEPT |
2745 SVM_EVTINJ_VALID);
2746 return 1;
2747}
2748
Joerg Roedel4a810182010-02-24 18:59:15 +01002749static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2750{
2751 struct vcpu_svm *svm = to_svm(vcpu);
2752 int svm_dis, chg_mask;
2753
2754 if (data & ~SVM_VM_CR_VALID_MASK)
2755 return 1;
2756
2757 chg_mask = SVM_VM_CR_VALID_MASK;
2758
2759 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2760 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2761
2762 svm->nested.vm_cr_msr &= ~chg_mask;
2763 svm->nested.vm_cr_msr |= (data & chg_mask);
2764
2765 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2766
2767 /* check for svm_disable while efer.svme is set */
2768 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2769 return 1;
2770
2771 return 0;
2772}
2773
Will Auld8fe8ab42012-11-29 12:42:12 -08002774static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002775{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002776 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson844d69c2021-04-23 15:34:04 -07002777 int r;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002778
Will Auld8fe8ab42012-11-29 12:42:12 -08002779 u32 ecx = msr->index;
2780 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02002782 case MSR_IA32_CR_PAT:
2783 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2784 return 1;
2785 vcpu->arch.pat = data;
Cathy Avery4995a362021-01-13 07:07:52 -05002786 svm->vmcb01.ptr->save.g_pat = data;
2787 if (is_guest_mode(vcpu))
2788 nested_vmcb02_compute_g_pat(svm);
Joerg Roedel06e78522020-06-25 10:03:23 +02002789 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Paolo Bonzini15038e12017-10-26 09:13:27 +02002790 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002791 case MSR_IA32_SPEC_CTRL:
2792 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002793 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002794 return 1;
2795
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002796 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002797 return 1;
2798
Babu Mogerd00b99c2021-02-17 10:56:04 -05002799 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2800 svm->vmcb->save.spec_ctrl = data;
2801 else
2802 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002803 if (!data)
2804 break;
2805
2806 /*
2807 * For non-nested:
2808 * When it's written (to non-zero) for the first time, pass
2809 * it through.
2810 *
2811 * For nested:
2812 * The handling of the MSR bitmap for L2 guests is done in
2813 * nested_svm_vmrun_msrpm.
2814 * We update the L1 MSR bit as well since it will end up
2815 * touching the MSR anyway now.
2816 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002817 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002818 break;
Ashok Raj15d45072018-02-01 22:59:43 +01002819 case MSR_IA32_PRED_CMD:
2820 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002821 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002822 return 1;
2823
2824 if (data & ~PRED_CMD_IBPB)
2825 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002826 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002827 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002828 if (!data)
2829 break;
2830
2831 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002832 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
Ashok Raj15d45072018-02-01 22:59:43 +01002833 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002834 case MSR_AMD64_VIRT_SPEC_CTRL:
2835 if (!msr->host_initiated &&
2836 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2837 return 1;
2838
2839 if (data & ~SPEC_CTRL_SSBD)
2840 return 1;
2841
2842 svm->virt_spec_ctrl = data;
2843 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002844 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002845 svm->vmcb01.ptr->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08002847#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002849 svm->vmcb01.ptr->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002850 break;
2851 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002852 svm->vmcb01.ptr->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002853 break;
2854 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002855 svm->vmcb01.ptr->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856 break;
2857 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002858 svm->vmcb01.ptr->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002859 break;
2860#endif
2861 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002862 svm->vmcb01.ptr->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002863 break;
2864 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002865 svm->vmcb01.ptr->save.sysenter_eip = (u32)data;
2866 /*
2867 * We only intercept the MSR_IA32_SYSENTER_{EIP|ESP} msrs
2868 * when we spoof an Intel vendor ID (for cross vendor migration).
2869 * In this case we use this intercept to track the high
2870 * 32 bit part of these msrs to support Intel's
2871 * implementation of SYSENTER/SYSEXIT.
2872 */
2873 svm->sysenter_eip_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874 break;
2875 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002876 svm->vmcb01.ptr->save.sysenter_esp = (u32)data;
2877 svm->sysenter_esp_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002878 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002879 case MSR_TSC_AUX:
2880 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2881 return 1;
2882
Sean Christopherson6f2b2962021-04-23 15:34:01 -07002883 if (!msr->host_initiated &&
2884 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
2885 return 1;
2886
Paolo Bonzini46896c72015-11-12 14:49:16 +01002887 /*
Sean Christophersondbd61272021-04-23 15:34:02 -07002888 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
2889 * incomplete and conflicting architectural behavior. Current
2890 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
2891 * reserved and always read as zeros. Emulate AMD CPU behavior
2892 * to avoid explosions if the vCPU is migrated from an AMD host
2893 * to an Intel host.
2894 */
2895 data = (u32)data;
2896
2897 /*
Sean Christopherson844d69c2021-04-23 15:34:04 -07002898 * TSC_AUX is usually changed only during boot and never read
2899 * directly. Intercept TSC_AUX instead of exposing it to the
2900 * guest via direct_access_msrs, and switch it via user return.
Paolo Bonzini46896c72015-11-12 14:49:16 +01002901 */
Sean Christopherson844d69c2021-04-23 15:34:04 -07002902 preempt_disable();
2903 r = kvm_set_user_return_msr(TSC_AUX_URET_SLOT, data, -1ull);
2904 preempt_enable();
2905 if (r)
2906 return 1;
2907
Paolo Bonzini46896c72015-11-12 14:49:16 +01002908 svm->tsc_aux = data;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002909 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01002910 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02002911 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002912 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
2913 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002914 break;
2915 }
2916 if (data & DEBUGCTL_RESERVED_BITS)
2917 return 1;
2918
2919 svm->vmcb->save.dbgctl = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002920 vmcb_mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002921 if (data & (1ULL<<0))
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002922 svm_enable_lbrv(vcpu);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002923 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002924 svm_disable_lbrv(vcpu);
Joerg Roedela2938c82008-02-13 16:30:28 +01002925 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002926 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002927 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002928 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002929 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01002930 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002931 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03002932 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002933 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002934 case MSR_F10H_DECFG: {
2935 struct kvm_msr_entry msr_entry;
2936
2937 msr_entry.index = msr->index;
2938 if (svm_get_msr_feature(&msr_entry))
2939 return 1;
2940
2941 /* Check the supported bits */
2942 if (data & ~msr_entry.data)
2943 return 1;
2944
2945 /* Don't allow the guest to change a bit, #GP */
2946 if (!msr->host_initiated && (data ^ msr_entry.data))
2947 return 1;
2948
2949 svm->msr_decfg = data;
2950 break;
2951 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002952 case MSR_IA32_APICBASE:
2953 if (kvm_vcpu_apicv_active(vcpu))
2954 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002955 fallthrough;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002956 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08002957 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002958 }
2959 return 0;
2960}
2961
Paolo Bonzini63129752021-03-02 14:40:39 -05002962static int msr_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963{
Paolo Bonzini63129752021-03-02 14:40:39 -05002964 if (to_svm(vcpu)->vmcb->control.exit_info_1)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002965 return kvm_emulate_wrmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002966 else
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002967 return kvm_emulate_rdmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968}
2969
Paolo Bonzini63129752021-03-02 14:40:39 -05002970static int interrupt_window_interception(struct kvm_vcpu *vcpu)
Dor Laorc1150d82007-01-05 16:36:24 -08002971{
Paolo Bonzini63129752021-03-02 14:40:39 -05002972 kvm_make_request(KVM_REQ_EVENT, vcpu);
2973 svm_clear_vintr(to_svm(vcpu));
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002974
2975 /*
2976 * For AVIC, the only reason to end up here is ExtINTs.
2977 * In this case AVIC was temporarily disabled for
2978 * requesting the IRQ window and we have to re-enable it.
2979 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002980 svm_toggle_avic_for_irq_window(vcpu, true);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002981
Paolo Bonzini63129752021-03-02 14:40:39 -05002982 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002983 return 1;
2984}
2985
Paolo Bonzini63129752021-03-02 14:40:39 -05002986static int pause_interception(struct kvm_vcpu *vcpu)
Mark Langsdorf565d0992009-10-06 14:25:02 -05002987{
Tom Lendackyf1c63662020-12-14 10:29:50 -05002988 bool in_kernel;
2989
2990 /*
2991 * CPL is not made available for an SEV-ES guest, therefore
2992 * vcpu->arch.preempted_in_kernel can never be true. Just
2993 * set in_kernel to false as well.
2994 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002995 in_kernel = !sev_es_guest(vcpu->kvm) && svm_get_cpl(vcpu) == 0;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002996
Wanpeng Li830f01b2020-07-31 11:12:21 +08002997 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04002998 grow_ple_window(vcpu);
2999
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003000 kvm_vcpu_on_spin(vcpu, in_kernel);
Sean Christophersonc8781fe2021-02-04 16:57:50 -08003001 return kvm_skip_emulated_instruction(vcpu);
Mark Langsdorf565d0992009-10-06 14:25:02 -05003002}
3003
Paolo Bonzini63129752021-03-02 14:40:39 -05003004static int invpcid_interception(struct kvm_vcpu *vcpu)
Babu Moger4407a792020-09-11 14:29:19 -05003005{
Paolo Bonzini63129752021-03-02 14:40:39 -05003006 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger4407a792020-09-11 14:29:19 -05003007 unsigned long type;
3008 gva_t gva;
3009
3010 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
3011 kvm_queue_exception(vcpu, UD_VECTOR);
3012 return 1;
3013 }
3014
3015 /*
3016 * For an INVPCID intercept:
3017 * EXITINFO1 provides the linear address of the memory operand.
3018 * EXITINFO2 provides the contents of the register operand.
3019 */
3020 type = svm->vmcb->control.exit_info_2;
3021 gva = svm->vmcb->control.exit_info_1;
3022
3023 if (type > 3) {
3024 kvm_inject_gp(vcpu, 0);
3025 return 1;
3026 }
3027
3028 return kvm_handle_invpcid(vcpu, type, gva);
3029}
3030
Paolo Bonzini63129752021-03-02 14:40:39 -05003031static int (*const svm_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01003032 [SVM_EXIT_READ_CR0] = cr_interception,
3033 [SVM_EXIT_READ_CR3] = cr_interception,
3034 [SVM_EXIT_READ_CR4] = cr_interception,
3035 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06003036 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02003037 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01003038 [SVM_EXIT_WRITE_CR3] = cr_interception,
3039 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003040 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01003041 [SVM_EXIT_READ_DR0] = dr_interception,
3042 [SVM_EXIT_READ_DR1] = dr_interception,
3043 [SVM_EXIT_READ_DR2] = dr_interception,
3044 [SVM_EXIT_READ_DR3] = dr_interception,
3045 [SVM_EXIT_READ_DR4] = dr_interception,
3046 [SVM_EXIT_READ_DR5] = dr_interception,
3047 [SVM_EXIT_READ_DR6] = dr_interception,
3048 [SVM_EXIT_READ_DR7] = dr_interception,
3049 [SVM_EXIT_WRITE_DR0] = dr_interception,
3050 [SVM_EXIT_WRITE_DR1] = dr_interception,
3051 [SVM_EXIT_WRITE_DR2] = dr_interception,
3052 [SVM_EXIT_WRITE_DR3] = dr_interception,
3053 [SVM_EXIT_WRITE_DR4] = dr_interception,
3054 [SVM_EXIT_WRITE_DR5] = dr_interception,
3055 [SVM_EXIT_WRITE_DR6] = dr_interception,
3056 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003057 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3058 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003059 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003060 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003061 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01003062 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02003063 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003064 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02003065 [SVM_EXIT_NMI] = nmi_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003066 [SVM_EXIT_SMI] = kvm_emulate_as_nop,
3067 [SVM_EXIT_INIT] = kvm_emulate_as_nop,
Dor Laorc1150d82007-01-05 16:36:24 -08003068 [SVM_EXIT_VINTR] = interrupt_window_interception,
Sean Christopherson32c23c72021-02-04 16:57:49 -08003069 [SVM_EXIT_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003070 [SVM_EXIT_CPUID] = kvm_emulate_cpuid,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003071 [SVM_EXIT_IRET] = iret_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003072 [SVM_EXIT_INVD] = kvm_emulate_invd,
Mark Langsdorf565d0992009-10-06 14:25:02 -05003073 [SVM_EXIT_PAUSE] = pause_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003074 [SVM_EXIT_HLT] = kvm_emulate_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003075 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02003076 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003077 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003078 [SVM_EXIT_MSR] = msr_interception,
3079 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08003080 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01003081 [SVM_EXIT_VMRUN] = vmrun_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003082 [SVM_EXIT_VMMCALL] = kvm_emulate_hypercall,
Alexander Graf55426752008-11-25 20:17:06 +01003083 [SVM_EXIT_VMLOAD] = vmload_interception,
3084 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01003085 [SVM_EXIT_STGI] = stgi_interception,
3086 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02003087 [SVM_EXIT_SKINIT] = skinit_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003088 [SVM_EXIT_WBINVD] = kvm_emulate_wbinvd,
3089 [SVM_EXIT_MONITOR] = kvm_emulate_monitor,
3090 [SVM_EXIT_MWAIT] = kvm_emulate_mwait,
Sean Christopherson92f98952021-02-04 16:57:46 -08003091 [SVM_EXIT_XSETBV] = kvm_emulate_xsetbv,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003092 [SVM_EXIT_RDPRU] = kvm_handle_invalid_op,
Tom Lendacky2985afb2020-12-10 11:09:55 -06003093 [SVM_EXIT_EFER_WRITE_TRAP] = efer_trap,
Tom Lendackyf27ad382020-12-10 11:09:56 -06003094 [SVM_EXIT_CR0_WRITE_TRAP] = cr_trap,
Tom Lendacky5b51cb12020-12-10 11:09:57 -06003095 [SVM_EXIT_CR4_WRITE_TRAP] = cr_trap,
Tom Lendackyd1949b92020-12-10 11:09:58 -06003096 [SVM_EXIT_CR8_WRITE_TRAP] = cr_trap,
Babu Moger4407a792020-09-11 14:29:19 -05003097 [SVM_EXIT_INVPCID] = invpcid_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02003098 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06003099 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003100 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
3101 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Tom Lendacky291bd202020-12-10 11:09:47 -06003102 [SVM_EXIT_VMGEXIT] = sev_handle_vmgexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103};
3104
Joe Perchesae8cc052011-04-24 22:00:50 -07003105static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02003106{
3107 struct vcpu_svm *svm = to_svm(vcpu);
3108 struct vmcb_control_area *control = &svm->vmcb->control;
3109 struct vmcb_save_area *save = &svm->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003110 struct vmcb_save_area *save01 = &svm->vmcb01.ptr->save;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003111
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02003112 if (!dump_invalid_vmcb) {
3113 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
3114 return;
3115 }
3116
Joerg Roedel3f10c842010-05-05 16:04:42 +02003117 pr_err("VMCB Control Area:\n");
Babu Moger03bfeeb2020-09-11 14:28:05 -05003118 pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
3119 pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
Babu Moger30abaa882020-09-11 14:28:12 -05003120 pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
3121 pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
Babu Moger9780d512020-09-11 14:28:20 -05003122 pr_err("%-20s%08x\n", "exceptions:", control->intercepts[INTERCEPT_EXCEPTION]);
Babu Mogerc62e2e92020-09-11 14:28:28 -05003123 pr_err("%-20s%08x %08x\n", "intercepts:",
3124 control->intercepts[INTERCEPT_WORD3],
3125 control->intercepts[INTERCEPT_WORD4]);
Joe Perchesae8cc052011-04-24 22:00:50 -07003126 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04003127 pr_err("%-20s%d\n", "pause filter threshold:",
3128 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07003129 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
3130 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
3131 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
3132 pr_err("%-20s%d\n", "asid:", control->asid);
3133 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
3134 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
3135 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
3136 pr_err("%-20s%08x\n", "int_state:", control->int_state);
3137 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
3138 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
3139 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3140 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3141 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3142 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3143 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003144 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Tom Lendacky291bd202020-12-10 11:09:47 -06003145 pr_err("%-20s%016llx\n", "ghcb:", control->ghcb_gpa);
Joe Perchesae8cc052011-04-24 22:00:50 -07003146 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3147 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003148 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07003149 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003150 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
3151 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
3152 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Tom Lendacky376c6d22020-12-10 11:10:06 -06003153 pr_err("%-20s%016llx\n", "vmsa_pa:", control->vmsa_pa);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003154 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07003155 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3156 "es:",
3157 save->es.selector, save->es.attrib,
3158 save->es.limit, save->es.base);
3159 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3160 "cs:",
3161 save->cs.selector, save->cs.attrib,
3162 save->cs.limit, save->cs.base);
3163 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3164 "ss:",
3165 save->ss.selector, save->ss.attrib,
3166 save->ss.limit, save->ss.base);
3167 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3168 "ds:",
3169 save->ds.selector, save->ds.attrib,
3170 save->ds.limit, save->ds.base);
3171 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3172 "fs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003173 save01->fs.selector, save01->fs.attrib,
3174 save01->fs.limit, save01->fs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003175 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3176 "gs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003177 save01->gs.selector, save01->gs.attrib,
3178 save01->gs.limit, save01->gs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003179 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3180 "gdtr:",
3181 save->gdtr.selector, save->gdtr.attrib,
3182 save->gdtr.limit, save->gdtr.base);
3183 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3184 "ldtr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003185 save01->ldtr.selector, save01->ldtr.attrib,
3186 save01->ldtr.limit, save01->ldtr.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003187 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3188 "idtr:",
3189 save->idtr.selector, save->idtr.attrib,
3190 save->idtr.limit, save->idtr.base);
3191 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3192 "tr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003193 save01->tr.selector, save01->tr.attrib,
3194 save01->tr.limit, save01->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003195 pr_err("cpl: %d efer: %016llx\n",
3196 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07003197 pr_err("%-15s %016llx %-13s %016llx\n",
3198 "cr0:", save->cr0, "cr2:", save->cr2);
3199 pr_err("%-15s %016llx %-13s %016llx\n",
3200 "cr3:", save->cr3, "cr4:", save->cr4);
3201 pr_err("%-15s %016llx %-13s %016llx\n",
3202 "dr6:", save->dr6, "dr7:", save->dr7);
3203 pr_err("%-15s %016llx %-13s %016llx\n",
3204 "rip:", save->rip, "rflags:", save->rflags);
3205 pr_err("%-15s %016llx %-13s %016llx\n",
3206 "rsp:", save->rsp, "rax:", save->rax);
3207 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003208 "star:", save01->star, "lstar:", save01->lstar);
Joe Perchesae8cc052011-04-24 22:00:50 -07003209 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003210 "cstar:", save01->cstar, "sfmask:", save01->sfmask);
Joe Perchesae8cc052011-04-24 22:00:50 -07003211 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003212 "kernel_gs_base:", save01->kernel_gs_base,
3213 "sysenter_cs:", save01->sysenter_cs);
Joe Perchesae8cc052011-04-24 22:00:50 -07003214 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003215 "sysenter_esp:", save01->sysenter_esp,
3216 "sysenter_eip:", save01->sysenter_eip);
Joe Perchesae8cc052011-04-24 22:00:50 -07003217 pr_err("%-15s %016llx %-13s %016llx\n",
3218 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3219 pr_err("%-15s %016llx %-13s %016llx\n",
3220 "br_from:", save->br_from, "br_to:", save->br_to);
3221 pr_err("%-15s %016llx %-13s %016llx\n",
3222 "excp_from:", save->last_excp_from,
3223 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003224}
3225
Tom Lendackye9093fd42020-12-10 11:09:46 -06003226static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code)
3227{
3228 if (exit_code < ARRAY_SIZE(svm_exit_handlers) &&
3229 svm_exit_handlers[exit_code])
3230 return 0;
3231
3232 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%llx\n", exit_code);
3233 dump_vmcb(vcpu);
3234 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3235 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
3236 vcpu->run->internal.ndata = 2;
3237 vcpu->run->internal.data[0] = exit_code;
3238 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
3239
3240 return -EINVAL;
3241}
3242
Paolo Bonzini63129752021-03-02 14:40:39 -05003243int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code)
Tom Lendackye9093fd42020-12-10 11:09:46 -06003244{
Paolo Bonzini63129752021-03-02 14:40:39 -05003245 if (svm_handle_invalid_exit(vcpu, exit_code))
Tom Lendackye9093fd42020-12-10 11:09:46 -06003246 return 0;
3247
3248#ifdef CONFIG_RETPOLINE
3249 if (exit_code == SVM_EXIT_MSR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003250 return msr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003251 else if (exit_code == SVM_EXIT_VINTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003252 return interrupt_window_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003253 else if (exit_code == SVM_EXIT_INTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003254 return intr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003255 else if (exit_code == SVM_EXIT_HLT)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003256 return kvm_emulate_halt(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003257 else if (exit_code == SVM_EXIT_NPF)
Paolo Bonzini63129752021-03-02 14:40:39 -05003258 return npf_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003259#endif
Paolo Bonzini63129752021-03-02 14:40:39 -05003260 return svm_exit_handlers[exit_code](vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003261}
3262
Sean Christopherson235ba742020-09-23 13:13:46 -07003263static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
3264 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02003265{
3266 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3267
3268 *info1 = control->exit_info_1;
3269 *info2 = control->exit_info_2;
Sean Christopherson235ba742020-09-23 13:13:46 -07003270 *intr_info = control->exit_int_info;
3271 if ((*intr_info & SVM_EXITINTINFO_VALID) &&
3272 (*intr_info & SVM_EXITINTINFO_VALID_ERR))
3273 *error_code = control->exit_int_info_err;
3274 else
3275 *error_code = 0;
Avi Kivity586f9602010-11-18 13:09:54 +02003276}
3277
Wanpeng Li404d5d72020-04-28 14:23:25 +08003278static int handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003279{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003280 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003281 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003282 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003283
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01003284 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
3285
Tom Lendackyf1c63662020-12-14 10:29:50 -05003286 /* SEV-ES guests must use the CR write traps to track CR registers. */
3287 if (!sev_es_guest(vcpu->kvm)) {
3288 if (!svm_is_intercept(svm, INTERCEPT_CR0_WRITE))
3289 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3290 if (npt_enabled)
3291 vcpu->arch.cr3 = svm->vmcb->save.cr3;
3292 }
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003293
Joerg Roedel20307532010-11-29 17:51:48 +01003294 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02003295 int vmexit;
3296
Sean Christophersoncc167bd2020-09-23 13:13:48 -07003297 trace_kvm_nested_vmexit(exit_code, vcpu, KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02003298
Joerg Roedel410e4d52009-08-07 11:49:44 +02003299 vmexit = nested_svm_exit_special(svm);
3300
3301 if (vmexit == NESTED_EXIT_CONTINUE)
3302 vmexit = nested_svm_exit_handled(svm);
3303
3304 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01003305 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01003306 }
3307
Avi Kivity04d2cc72007-09-10 18:10:54 +03003308 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3309 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3310 kvm_run->fail_entry.hardware_entry_failure_reason
3311 = svm->vmcb->control.exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003312 kvm_run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003313 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003314 return 0;
3315 }
3316
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003317 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01003318 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02003319 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3320 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02003321 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003322 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003323 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324 exit_code);
3325
Wanpeng Li404d5d72020-04-28 14:23:25 +08003326 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08003327 return 1;
Wanpeng Li404d5d72020-04-28 14:23:25 +08003328
Paolo Bonzini63129752021-03-02 14:40:39 -05003329 return svm_invoke_exit_handler(vcpu, exit_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003330}
3331
3332static void reload_tss(struct kvm_vcpu *vcpu)
3333{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003334 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003335
Tejun Heo0fe1e002009-10-29 22:34:14 +09003336 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003337 load_TR_desc();
3338}
3339
Paolo Bonzini63129752021-03-02 14:40:39 -05003340static void pre_svm_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341{
Paolo Bonzini63129752021-03-02 14:40:39 -05003342 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3343 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003344
Cathy Averyaf18fa72021-01-12 11:43:12 -05003345 /*
Sean Christopherson44f1b552021-04-06 10:18:11 -07003346 * If the previous vmrun of the vmcb occurred on a different physical
3347 * cpu, then mark the vmcb dirty and assign a new asid. Hardware's
3348 * vmcb clean bits are per logical CPU, as are KVM's asid assignments.
3349 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003350 if (unlikely(svm->current_vmcb->cpu != vcpu->cpu)) {
Cathy Avery193015a2021-01-12 11:43:13 -05003351 svm->current_vmcb->asid_generation = 0;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003352 vmcb_mark_all_dirty(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05003353 svm->current_vmcb->cpu = vcpu->cpu;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003354 }
3355
Paolo Bonzini63129752021-03-02 14:40:39 -05003356 if (sev_guest(vcpu->kvm))
3357 return pre_sev_run(svm, vcpu->cpu);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003358
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03003359 /* FIXME: handle wraparound of asid_generation */
Cathy Avery193015a2021-01-12 11:43:13 -05003360 if (svm->current_vmcb->asid_generation != sd->asid_generation)
Tejun Heo0fe1e002009-10-29 22:34:14 +09003361 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362}
3363
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003364static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3365{
3366 struct vcpu_svm *svm = to_svm(vcpu);
3367
3368 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3369 vcpu->arch.hflags |= HF_NMI_MASK;
Paolo Bonzini63129752021-03-02 14:40:39 -05003370 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003371 svm_set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003372 ++vcpu->stat.nmi_injections;
3373}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003375static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03003376{
3377 struct vcpu_svm *svm = to_svm(vcpu);
3378
Joerg Roedel2af91942009-08-07 11:49:28 +02003379 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01003380
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03003381 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3382 ++vcpu->stat.irq_injections;
3383
Alexander Graf219b65d2009-06-15 15:21:25 +02003384 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3385 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03003386}
3387
Jason Baronb6a7cc32021-01-14 22:27:54 -05003388static void svm_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003389{
3390 struct vcpu_svm *svm = to_svm(vcpu);
3391
Tom Lendackyf1c63662020-12-14 10:29:50 -05003392 /*
3393 * SEV-ES guests must always keep the CR intercepts cleared. CR
3394 * tracking is done using the CR write traps.
3395 */
3396 if (sev_es_guest(vcpu->kvm))
3397 return;
3398
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003399 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003400 return;
3401
Babu Moger830bd712020-09-11 14:28:50 -05003402 svm_clr_intercept(svm, INTERCEPT_CR8_WRITE);
Radim Krčmář596f3142014-03-11 19:11:18 +01003403
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003404 if (irr == -1)
3405 return;
3406
3407 if (tpr >= irr)
Babu Moger830bd712020-09-11 14:28:50 -05003408 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003409}
3410
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003411bool svm_nmi_blocked(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003412{
3413 struct vcpu_svm *svm = to_svm(vcpu);
3414 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson88c604b2020-04-22 19:25:41 -07003415 bool ret;
Cathy Avery9c3d3702020-04-14 16:11:06 -04003416
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003417 if (!gif_set(svm))
Paolo Bonzinibbdad0b2020-04-23 08:06:43 -04003418 return true;
3419
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003420 if (is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
3421 return false;
3422
3423 ret = (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
Paolo Bonzini63129752021-03-02 14:40:39 -05003424 (vcpu->arch.hflags & HF_NMI_MASK);
Joerg Roedel924584c2010-04-22 12:33:07 +02003425
3426 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003427}
3428
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003429static int svm_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003430{
3431 struct vcpu_svm *svm = to_svm(vcpu);
3432 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003433 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003434
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003435 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
3436 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003437 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003438
3439 return !svm_nmi_blocked(vcpu);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003440}
3441
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003442static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3443{
Paolo Bonzini63129752021-03-02 14:40:39 -05003444 return !!(vcpu->arch.hflags & HF_NMI_MASK);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003445}
3446
3447static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3448{
3449 struct vcpu_svm *svm = to_svm(vcpu);
3450
3451 if (masked) {
Paolo Bonzini63129752021-03-02 14:40:39 -05003452 vcpu->arch.hflags |= HF_NMI_MASK;
3453 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003454 svm_set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003455 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05003456 vcpu->arch.hflags &= ~HF_NMI_MASK;
3457 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003458 svm_clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003459 }
3460}
3461
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003462bool svm_interrupt_blocked(struct kvm_vcpu *vcpu)
Gleb Natapov78646122009-03-23 12:12:11 +02003463{
3464 struct vcpu_svm *svm = to_svm(vcpu);
3465 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003466
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003467 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003468 return true;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003469
Paolo Bonzini63129752021-03-02 14:40:39 -05003470 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyf1c63662020-12-14 10:29:50 -05003471 /*
3472 * SEV-ES guests to not expose RFLAGS. Use the VMCB interrupt mask
3473 * bit to determine the state of the IF flag.
3474 */
3475 if (!(vmcb->control.int_state & SVM_GUEST_INTERRUPT_MASK))
3476 return true;
3477 } else if (is_guest_mode(vcpu)) {
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003478 /* As long as interrupts are being delivered... */
Paolo Bonzinie9fd7612020-05-13 13:28:23 -04003479 if ((svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK)
Cathy Avery4995a362021-01-13 07:07:52 -05003480 ? !(svm->vmcb01.ptr->save.rflags & X86_EFLAGS_IF)
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003481 : !(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3482 return true;
3483
3484 /* ... vmexits aren't blocked by the interrupt shadow */
3485 if (nested_exit_on_intr(svm))
3486 return false;
3487 } else {
3488 if (!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3489 return true;
3490 }
3491
3492 return (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003493}
3494
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003495static int svm_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003496{
3497 struct vcpu_svm *svm = to_svm(vcpu);
3498 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003499 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003500
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003501 /*
3502 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
3503 * e.g. if the IRQ arrived asynchronously after checking nested events.
3504 */
3505 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003506 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003507
3508 return !svm_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02003509}
3510
Jason Baronb6a7cc32021-01-14 22:27:54 -05003511static void svm_enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003512{
Alexander Graf219b65d2009-06-15 15:21:25 +02003513 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02003514
Joerg Roedele0231712010-02-24 18:59:10 +01003515 /*
3516 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3517 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3518 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003519 * we'll get the vintr intercept. However, if the vGIF feature is
3520 * enabled, the STGI interception will not occur. Enable the irq
3521 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01003522 */
Paolo Bonzinib518ba92020-03-04 16:46:47 -05003523 if (vgif_enabled(svm) || gif_set(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003524 /*
3525 * IRQ window is not needed when AVIC is enabled,
3526 * unless we have pending ExtINT since it cannot be injected
3527 * via AVIC. In such case, we need to temporarily disable AVIC,
3528 * and fallback to injecting IRQ via V_IRQ.
3529 */
3530 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02003531 svm_set_vintr(svm);
Alexander Graf219b65d2009-06-15 15:21:25 +02003532 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003533}
3534
Jason Baronb6a7cc32021-01-14 22:27:54 -05003535static void svm_enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003536{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003537 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003538
Paolo Bonzini63129752021-03-02 14:40:39 -05003539 if ((vcpu->arch.hflags & (HF_NMI_MASK | HF_IRET_MASK)) == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01003540 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03003541
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003542 if (!gif_set(svm)) {
3543 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02003544 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003545 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003546 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003547
Joerg Roedele0231712010-02-24 18:59:10 +01003548 /*
3549 * Something prevents NMI from been injected. Single step over possible
3550 * problem (IRET or exception injection or interrupt shadow)
3551 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003552 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02003553 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03003554 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03003555}
3556
Izik Eiduscbc94022007-10-25 00:29:55 +02003557static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3558{
3559 return 0;
3560}
3561
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07003562static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
3563{
3564 return 0;
3565}
3566
Sean Christophersonf55ac302020-03-20 14:28:12 -07003567void svm_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivityd9e368d2007-06-07 19:18:30 +03003568{
Joerg Roedel38e5e922010-12-03 15:25:16 +01003569 struct vcpu_svm *svm = to_svm(vcpu);
3570
Sean Christopherson4a41e432020-03-20 14:28:17 -07003571 /*
3572 * Flush only the current ASID even if the TLB flush was invoked via
3573 * kvm_flush_remote_tlbs(). Although flushing remote TLBs requires all
3574 * ASIDs to be flushed, KVM uses a single ASID for L1 and L2, and
3575 * unconditionally does a TLB flush on both nested VM-Enter and nested
3576 * VM-Exit (via kvm_mmu_reset_context()).
3577 */
Joerg Roedel38e5e922010-12-03 15:25:16 +01003578 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3579 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3580 else
Cathy Avery193015a2021-01-12 11:43:13 -05003581 svm->current_vmcb->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03003582}
3583
Junaid Shahidfaff8752018-06-29 13:10:05 -07003584static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
3585{
3586 struct vcpu_svm *svm = to_svm(vcpu);
3587
3588 invlpga(gva, svm->vmcb->control.asid);
3589}
3590
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003591static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3592{
3593 struct vcpu_svm *svm = to_svm(vcpu);
3594
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003595 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003596 return;
3597
Babu Moger830bd712020-09-11 14:28:50 -05003598 if (!svm_is_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003599 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03003600 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003601 }
3602}
3603
Joerg Roedel649d6862008-04-16 16:51:15 +02003604static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3605{
3606 struct vcpu_svm *svm = to_svm(vcpu);
3607 u64 cr8;
3608
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003609 if (nested_svm_virtualize_tpr(vcpu) ||
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05003610 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003611 return;
3612
Joerg Roedel649d6862008-04-16 16:51:15 +02003613 cr8 = kvm_get_cr8(vcpu);
3614 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3615 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3616}
3617
Paolo Bonzini63129752021-03-02 14:40:39 -05003618static void svm_complete_interrupts(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003619{
Paolo Bonzini63129752021-03-02 14:40:39 -05003620 struct vcpu_svm *svm = to_svm(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003621 u8 vector;
3622 int type;
3623 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01003624 unsigned int3_injected = svm->int3_injected;
3625
3626 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03003627
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003628 /*
3629 * If we've made progress since setting HF_IRET_MASK, we've
3630 * executed an IRET and can allow NMI injection.
3631 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003632 if ((vcpu->arch.hflags & HF_IRET_MASK) &&
3633 (sev_es_guest(vcpu->kvm) ||
3634 kvm_rip_read(vcpu) != svm->nmi_iret_rip)) {
3635 vcpu->arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3636 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003637 }
Gleb Natapov44c11432009-05-11 13:35:52 +03003638
Paolo Bonzini63129752021-03-02 14:40:39 -05003639 vcpu->arch.nmi_injected = false;
3640 kvm_clear_exception_queue(vcpu);
3641 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003642
3643 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3644 return;
3645
Paolo Bonzini63129752021-03-02 14:40:39 -05003646 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003647
Gleb Natapov9222be12009-04-23 17:14:37 +03003648 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3649 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3650
3651 switch (type) {
3652 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05003653 vcpu->arch.nmi_injected = true;
Gleb Natapov9222be12009-04-23 17:14:37 +03003654 break;
3655 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01003656 /*
Tom Lendackyf1c63662020-12-14 10:29:50 -05003657 * Never re-inject a #VC exception.
3658 */
3659 if (vector == X86_TRAP_VC)
3660 break;
3661
3662 /*
Jan Kiszka66b71382010-02-23 17:47:56 +01003663 * In case of software exceptions, do not reinject the vector,
3664 * but re-execute the instruction instead. Rewind RIP first
3665 * if we emulated INT3 before.
3666 */
3667 if (kvm_exception_is_soft(vector)) {
3668 if (vector == BP_VECTOR && int3_injected &&
Paolo Bonzini63129752021-03-02 14:40:39 -05003669 kvm_is_linear_rip(vcpu, svm->int3_rip))
3670 kvm_rip_write(vcpu,
3671 kvm_rip_read(vcpu) - int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02003672 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01003673 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003674 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3675 u32 err = svm->vmcb->control.exit_int_info_err;
Paolo Bonzini63129752021-03-02 14:40:39 -05003676 kvm_requeue_exception_e(vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03003677
3678 } else
Paolo Bonzini63129752021-03-02 14:40:39 -05003679 kvm_requeue_exception(vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03003680 break;
3681 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05003682 kvm_queue_interrupt(vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03003683 break;
3684 default:
3685 break;
3686 }
3687}
3688
Avi Kivityb463a6f2010-07-20 15:06:17 +03003689static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3690{
3691 struct vcpu_svm *svm = to_svm(vcpu);
3692 struct vmcb_control_area *control = &svm->vmcb->control;
3693
3694 control->exit_int_info = control->event_inj;
3695 control->exit_int_info_err = control->event_inj_err;
3696 control->event_inj = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003697 svm_complete_interrupts(vcpu);
Avi Kivityb463a6f2010-07-20 15:06:17 +03003698}
3699
Wanpeng Li404d5d72020-04-28 14:23:25 +08003700static fastpath_t svm_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003701{
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003702 if (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR &&
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003703 to_svm(vcpu)->vmcb->control.exit_info_1)
3704 return handle_fastpath_set_msr_irqoff(vcpu);
3705
3706 return EXIT_FASTPATH_NONE;
3707}
3708
Paolo Bonzini63129752021-03-02 14:40:39 -05003709static noinstr void svm_vcpu_enter_exit(struct kvm_vcpu *vcpu)
Thomas Gleixner135961e2020-07-08 21:51:58 +02003710{
Paolo Bonzini63129752021-03-02 14:40:39 -05003711 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christophersond1788192021-04-06 10:18:09 -07003712 unsigned long vmcb_pa = svm->current_vmcb->pa;
Paolo Bonzini63129752021-03-02 14:40:39 -05003713
Thomas Gleixner135961e2020-07-08 21:51:58 +02003714 /*
3715 * VMENTER enables interrupts (host state), but the kernel state is
3716 * interrupts disabled when this is invoked. Also tell RCU about
3717 * it. This is the same logic as for exit_to_user_mode().
3718 *
3719 * This ensures that e.g. latency analysis on the host observes
3720 * guest mode as interrupt enabled.
3721 *
3722 * guest_enter_irqoff() informs context tracking about the
3723 * transition to guest mode and if enabled adjusts RCU state
3724 * accordingly.
3725 */
3726 instrumentation_begin();
3727 trace_hardirqs_on_prepare();
3728 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
3729 instrumentation_end();
3730
3731 guest_enter_irqoff();
3732 lockdep_hardirqs_on(CALLER_ADDR0);
3733
Paolo Bonzini63129752021-03-02 14:40:39 -05003734 if (sev_es_guest(vcpu->kvm)) {
Sean Christophersond1788192021-04-06 10:18:09 -07003735 __svm_sev_es_vcpu_run(vmcb_pa);
Tom Lendacky16809ec2020-12-10 11:10:08 -06003736 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06003737 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3738
Sean Christophersond1788192021-04-06 10:18:09 -07003739 /*
3740 * Use a single vmcb (vmcb01 because it's always valid) for
3741 * context switching guest state via VMLOAD/VMSAVE, that way
3742 * the state doesn't need to be copied between vmcb01 and
3743 * vmcb02 when switching vmcbs for nested virtualization.
3744 */
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003745 vmload(svm->vmcb01.pa);
Sean Christophersond1788192021-04-06 10:18:09 -07003746 __svm_vcpu_run(vmcb_pa, (unsigned long *)&vcpu->arch.regs);
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003747 vmsave(svm->vmcb01.pa);
Thomas Gleixner135961e2020-07-08 21:51:58 +02003748
Michael Rothe79b91b2021-02-02 13:01:24 -06003749 vmload(__sme_page_pa(sd->save_area));
Tom Lendacky16809ec2020-12-10 11:10:08 -06003750 }
Thomas Gleixner135961e2020-07-08 21:51:58 +02003751
3752 /*
3753 * VMEXIT disables interrupts (host state), but tracing and lockdep
3754 * have them in state 'on' as recorded before entering guest mode.
3755 * Same as enter_from_user_mode().
3756 *
3757 * guest_exit_irqoff() restores host context and reinstates RCU if
3758 * enabled and required.
3759 *
3760 * This needs to be done before the below as native_read_msr()
3761 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
3762 * into world and some more.
3763 */
3764 lockdep_hardirqs_off(CALLER_ADDR0);
3765 guest_exit_irqoff();
3766
3767 instrumentation_begin();
3768 trace_hardirqs_off_finish();
3769 instrumentation_end();
3770}
3771
Qian Caib95273f2020-04-15 11:37:09 -04003772static __no_kcsan fastpath_t svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003773{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003774 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03003775
Lorenzo Bresciad95df952020-12-23 14:45:07 +00003776 trace_kvm_entry(vcpu);
3777
Joerg Roedel2041a062010-04-22 12:33:08 +02003778 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3779 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3780 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3781
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003782 /*
Ladi Proseka12713c2017-06-21 09:07:00 +02003783 * Disable singlestep if we're injecting an interrupt/exception.
3784 * We don't want our modified rflags to be pushed on the stack where
3785 * we might not be able to easily reset them if we disabled NMI
3786 * singlestep later.
3787 */
3788 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
3789 /*
3790 * Event injection happens before external interrupts cause a
3791 * vmexit and interrupts are disabled here, so smp_send_reschedule
3792 * is enough to force an immediate vmexit.
3793 */
3794 disable_nmi_singlestep(svm);
3795 smp_send_reschedule(vcpu->cpu);
3796 }
3797
Paolo Bonzini63129752021-03-02 14:40:39 -05003798 pre_svm_run(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003799
Joerg Roedel649d6862008-04-16 16:51:15 +02003800 sync_lapic_to_cr8(vcpu);
3801
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04003802 if (unlikely(svm->asid != svm->vmcb->control.asid)) {
3803 svm->vmcb->control.asid = svm->asid;
3804 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
3805 }
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02003806 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003807
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003808 /*
3809 * Run with all-zero DR6 unless needed, so that we can get the exact cause
3810 * of a #DB.
3811 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003812 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003813 svm_set_dr6(svm, vcpu->arch.dr6);
3814 else
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08003815 svm_set_dr6(svm, DR6_ACTIVE_LOW);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003816
Avi Kivity04d2cc72007-09-10 18:10:54 +03003817 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07003818 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003819
Wanpeng Li010fd372020-09-10 17:50:41 +08003820 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08003821
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003822 /*
3823 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
3824 * it's non-zero. Since vmentry is serialising on affected CPUs, there
3825 * is no need to worry about the conditional branch over the wrmsr
3826 * being speculatively taken.
3827 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003828 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3829 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003830
Paolo Bonzini63129752021-03-02 14:40:39 -05003831 svm_vcpu_enter_exit(vcpu);
Thomas Gleixner15e6c222018-05-11 15:21:01 +02003832
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003833 /*
3834 * We do not use IBRS in the kernel. If this vCPU has used the
3835 * SPEC_CTRL MSR it may have left it on; save the value and
3836 * turn it off. This is much more efficient than blindly adding
3837 * it to the atomic save/restore list. Especially as the former
3838 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
3839 *
3840 * For non-nested case:
3841 * If the L01 MSR bitmap does not intercept the MSR, then we need to
3842 * save it.
3843 *
3844 * For nested case:
3845 * If the L02 MSR bitmap does not intercept the MSR, then we need to
3846 * save it.
3847 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003848 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL) &&
3849 unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01003850 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003851
Paolo Bonzini63129752021-03-02 14:40:39 -05003852 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky16809ec2020-12-10 11:10:08 -06003853 reload_tss(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003854
Babu Mogerd00b99c2021-02-17 10:56:04 -05003855 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3856 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
Thomas Gleixner024d83c2018-08-12 20:41:45 +02003857
Paolo Bonzini63129752021-03-02 14:40:39 -05003858 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky16809ec2020-12-10 11:10:08 -06003859 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3860 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3861 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3862 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3863 }
Avi Kivity13c34e02010-10-21 12:20:31 +02003864
Joerg Roedel3781c012011-01-14 16:45:02 +01003865 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003866 kvm_before_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003867
Aaron Lewis139a12c2019-10-21 16:30:25 -07003868 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003869 stgi();
3870
3871 /* Any pending NMI will happen here */
3872
3873 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003874 kvm_after_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003875
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003876 sync_cr8_to_lapic(vcpu);
3877
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003878 svm->next_rip = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003879 if (is_guest_mode(vcpu)) {
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05003880 nested_sync_control_from_vmcb02(svm);
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -04003881 svm->nested.nested_run_pending = 0;
3882 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003883
Joerg Roedel38e5e922010-12-03 15:25:16 +01003884 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Wanpeng Lie42c6822020-09-12 02:16:39 -04003885 vmcb_mark_all_clean(svm->vmcb);
Joerg Roedel38e5e922010-12-03 15:25:16 +01003886
Gleb Natapov631bc482010-10-14 11:22:52 +02003887 /* if exit due to PF check for async PF */
3888 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003889 vcpu->arch.apf.host_apf_flags =
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003890 kvm_read_and_reset_apf_flags();
Gleb Natapov631bc482010-10-14 11:22:52 +02003891
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003892 if (npt_enabled) {
3893 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
3894 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
3895 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02003896
3897 /*
3898 * We need to handle MC intercepts here before the vcpu has a chance to
3899 * change the physical cpu
3900 */
3901 if (unlikely(svm->vmcb->control.exit_code ==
3902 SVM_EXIT_EXCP_BASE + MC_VECTOR))
Paolo Bonzini63129752021-03-02 14:40:39 -05003903 svm_handle_mce(vcpu);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003904
Paolo Bonzini63129752021-03-02 14:40:39 -05003905 svm_complete_interrupts(vcpu);
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003906
3907 if (is_guest_mode(vcpu))
3908 return EXIT_FASTPATH_NONE;
3909
3910 return svm_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003911}
3912
Sean Christophersone83bc092021-03-05 10:31:13 -08003913static void svm_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
Sean Christopherson2a40b902020-07-15 20:41:18 -07003914 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003916 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003917 unsigned long cr3;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003918
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003919 if (npt_enabled) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003920 svm->vmcb->control.nested_cr3 = __sme_set(root_hpa);
Joerg Roedel06e78522020-06-25 10:03:23 +02003921 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003922
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003923 /* Loading L2's CR3 is handled by enter_svm_guest_mode. */
Paolo Bonzini978ce582020-05-20 08:37:37 -04003924 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3925 return;
3926 cr3 = vcpu->arch.cr3;
Sean Christophersone83bc092021-03-05 10:31:13 -08003927 } else if (vcpu->arch.mmu->shadow_root_level >= PT64_ROOT_4LEVEL) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003928 cr3 = __sme_set(root_hpa) | kvm_get_active_pcid(vcpu);
Sean Christophersone83bc092021-03-05 10:31:13 -08003929 } else {
3930 /* PCID in the guest should be impossible with a 32-bit MMU. */
3931 WARN_ON_ONCE(kvm_get_active_pcid(vcpu));
3932 cr3 = root_hpa;
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003933 }
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003934
Paolo Bonzini978ce582020-05-20 08:37:37 -04003935 svm->vmcb->save.cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003936 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003937}
3938
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939static int is_disabled(void)
3940{
Joerg Roedel6031a612007-06-22 12:29:50 +03003941 u64 vm_cr;
3942
3943 rdmsrl(MSR_VM_CR, vm_cr);
3944 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3945 return 1;
3946
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947 return 0;
3948}
3949
Ingo Molnar102d8322007-02-19 14:37:47 +02003950static void
3951svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3952{
3953 /*
3954 * Patch in the VMMCALL instruction:
3955 */
3956 hypercall[0] = 0x0f;
3957 hypercall[1] = 0x01;
3958 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02003959}
3960
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003961static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003962{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003963 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003964}
3965
Avi Kivity774ead32007-12-26 13:57:04 +02003966static bool svm_cpu_has_accelerated_tpr(void)
3967{
3968 return false;
3969}
3970
Tom Lendacky57194552020-12-10 11:10:00 -06003971/*
3972 * The kvm parameter can be NULL (module initialization, or invocation before
3973 * VM creation). Be sure to check the kvm parameter before using it.
3974 */
3975static bool svm_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003976{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003977 switch (index) {
3978 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02003979 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003980 return false;
Tom Lendacky57194552020-12-10 11:10:00 -06003981 case MSR_IA32_SMBASE:
3982 /* SEV-ES guests do not support SMM, so report false */
3983 if (kvm && sev_es_guest(kvm))
3984 return false;
3985 break;
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003986 default:
3987 break;
3988 }
3989
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003990 return true;
3991}
3992
Paolo Bonzinifc07e762015-10-01 13:20:22 +02003993static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
3994{
3995 return 0;
3996}
3997
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08003998static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08003999{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004000 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger96308b02020-11-12 16:18:03 -06004001 struct kvm_cpuid_entry2 *best;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004002
Aaron Lewis72041602019-10-21 16:30:20 -07004003 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08004004 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07004005 boot_cpu_has(X86_FEATURE_XSAVES);
4006
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004007 /* Update nrips enabled cache */
Sean Christopherson4eb87462020-03-02 15:57:08 -08004008 svm->nrips_enabled = kvm_cpu_cap_has(X86_FEATURE_NRIPS) &&
Paolo Bonzini63129752021-03-02 14:40:39 -05004009 guest_cpuid_has(vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004010
Babu Moger4407a792020-09-11 14:29:19 -05004011 /* Check again if INVPCID interception if required */
4012 svm_check_invpcid(svm);
4013
Babu Moger96308b02020-11-12 16:18:03 -06004014 /* For sev guests, the memory encryption bit is not reserved in CR3. */
4015 if (sev_guest(vcpu->kvm)) {
4016 best = kvm_find_cpuid_entry(vcpu, 0x8000001F, 0);
4017 if (best)
Sean Christophersonca29e142021-02-03 16:01:12 -08004018 vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f));
Babu Moger96308b02020-11-12 16:18:03 -06004019 }
4020
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004021 if (kvm_vcpu_apicv_active(vcpu)) {
4022 /*
4023 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
4024 * is exposed to the guest, disable AVIC.
4025 */
4026 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
4027 kvm_request_apicv_update(vcpu->kvm, false,
4028 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004029
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004030 /*
4031 * Currently, AVIC does not work with nested virtualization.
4032 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
4033 */
4034 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4035 kvm_request_apicv_update(vcpu->kvm, false,
4036 APICV_INHIBIT_REASON_NESTED);
4037 }
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06004038
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004039 if (guest_cpuid_is_intel(vcpu)) {
4040 /*
4041 * We must intercept SYSENTER_EIP and SYSENTER_ESP
4042 * accesses because the processor only stores 32 bits.
4043 * For the same reason we cannot use virtual VMLOAD/VMSAVE.
4044 */
4045 svm_set_intercept(svm, INTERCEPT_VMLOAD);
4046 svm_set_intercept(svm, INTERCEPT_VMSAVE);
4047 svm->vmcb->control.virt_ext &= ~VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
4048
4049 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 0, 0);
4050 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 0, 0);
4051 } else {
4052 /*
4053 * If hardware supports Virtual VMLOAD VMSAVE then enable it
4054 * in VMCB and clear intercepts to avoid #VMEXIT.
4055 */
4056 if (vls) {
4057 svm_clr_intercept(svm, INTERCEPT_VMLOAD);
4058 svm_clr_intercept(svm, INTERCEPT_VMSAVE);
4059 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
4060 }
4061 /* No need to intercept these MSRs */
4062 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 1, 1);
4063 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 1, 1);
4064 }
Sheng Yang0e851882009-12-18 16:48:46 +08004065}
4066
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004067static bool svm_has_wbinvd_exit(void)
4068{
4069 return true;
4070}
4071
Joerg Roedel80612522011-04-04 12:39:33 +02004072#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004073 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004074#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004075 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004076#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004077 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004078
Mathias Krause09941fb2012-08-30 01:30:20 +02004079static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004080 u32 exit_code;
4081 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004082} x86_intercept_map[] = {
4083 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
4084 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
4085 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
4086 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
4087 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02004088 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
4089 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02004090 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
4091 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
4092 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
4093 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
4094 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
4095 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
4096 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
4097 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02004098 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
4099 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
4100 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
4101 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
4102 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
4103 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
4104 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
4105 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004106 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
4107 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
4108 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02004109 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
4110 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
4111 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
4112 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
4113 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
4114 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
4115 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
4116 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
4117 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02004118 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
4119 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
4120 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
4121 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
4122 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
4123 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
4124 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02004125 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
4126 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
4127 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
4128 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02004129 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004130};
4131
Joerg Roedel80612522011-04-04 12:39:33 +02004132#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004133#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004134#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004135
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004136static int svm_check_intercept(struct kvm_vcpu *vcpu,
4137 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08004138 enum x86_intercept_stage stage,
4139 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004140{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004141 struct vcpu_svm *svm = to_svm(vcpu);
4142 int vmexit, ret = X86EMUL_CONTINUE;
4143 struct __x86_intercept icpt_info;
4144 struct vmcb *vmcb = svm->vmcb;
4145
4146 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
4147 goto out;
4148
4149 icpt_info = x86_intercept_map[info->intercept];
4150
Avi Kivity40e19b52011-04-21 12:35:41 +03004151 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004152 goto out;
4153
4154 switch (icpt_info.exit_code) {
4155 case SVM_EXIT_READ_CR0:
4156 if (info->intercept == x86_intercept_cr_read)
4157 icpt_info.exit_code += info->modrm_reg;
4158 break;
4159 case SVM_EXIT_WRITE_CR0: {
4160 unsigned long cr0, val;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004161
4162 if (info->intercept == x86_intercept_cr_write)
4163 icpt_info.exit_code += info->modrm_reg;
4164
Jan Kiszka62baf442014-06-29 21:55:53 +02004165 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
4166 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004167 break;
4168
Babu Mogerc62e2e92020-09-11 14:28:28 -05004169 if (!(vmcb_is_intercept(&svm->nested.ctl,
4170 INTERCEPT_SELECTIVE_CR0)))
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004171 break;
4172
4173 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
4174 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
4175
4176 if (info->intercept == x86_intercept_lmsw) {
4177 cr0 &= 0xfUL;
4178 val &= 0xfUL;
4179 /* lmsw can't clear PE - catch this here */
4180 if (cr0 & X86_CR0_PE)
4181 val |= X86_CR0_PE;
4182 }
4183
4184 if (cr0 ^ val)
4185 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4186
4187 break;
4188 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02004189 case SVM_EXIT_READ_DR0:
4190 case SVM_EXIT_WRITE_DR0:
4191 icpt_info.exit_code += info->modrm_reg;
4192 break;
Joerg Roedel80612522011-04-04 12:39:33 +02004193 case SVM_EXIT_MSR:
4194 if (info->intercept == x86_intercept_wrmsr)
4195 vmcb->control.exit_info_1 = 1;
4196 else
4197 vmcb->control.exit_info_1 = 0;
4198 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02004199 case SVM_EXIT_PAUSE:
4200 /*
4201 * We get this for NOP only, but pause
4202 * is rep not, check this here
4203 */
4204 if (info->rep_prefix != REPE_PREFIX)
4205 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02004206 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02004207 case SVM_EXIT_IOIO: {
4208 u64 exit_info;
4209 u32 bytes;
4210
Joerg Roedelf6511932011-04-04 12:39:35 +02004211 if (info->intercept == x86_intercept_in ||
4212 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004213 exit_info = ((info->src_val & 0xffff) << 16) |
4214 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02004215 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02004216 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004217 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02004218 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02004219 }
4220
4221 if (info->intercept == x86_intercept_outs ||
4222 info->intercept == x86_intercept_ins)
4223 exit_info |= SVM_IOIO_STR_MASK;
4224
4225 if (info->rep_prefix)
4226 exit_info |= SVM_IOIO_REP_MASK;
4227
4228 bytes = min(bytes, 4u);
4229
4230 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4231
4232 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4233
4234 vmcb->control.exit_info_1 = exit_info;
4235 vmcb->control.exit_info_2 = info->next_rip;
4236
4237 break;
4238 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004239 default:
4240 break;
4241 }
4242
Bandan Dasf1047652015-06-11 02:05:33 -04004243 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
4244 if (static_cpu_has(X86_FEATURE_NRIPS))
4245 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004246 vmcb->control.exit_code = icpt_info.exit_code;
4247 vmexit = nested_svm_exit_handled(svm);
4248
4249 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4250 : X86EMUL_CONTINUE;
4251
4252out:
4253 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004254}
4255
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07004256static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08004257{
Yang Zhanga547c6d2013-04-11 19:25:10 +08004258}
4259
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004260static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4261{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004262 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04004263 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004264}
4265
Borislav Petkov74f16902017-03-26 23:51:24 +02004266static void svm_setup_mce(struct kvm_vcpu *vcpu)
4267{
4268 /* [63:9] are reserved. */
4269 vcpu->arch.mcg_cap &= 0x1ff;
4270}
4271
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004272bool svm_smi_blocked(struct kvm_vcpu *vcpu)
Ladi Prosek72d7b372017-10-11 16:54:41 +02004273{
Ladi Prosek05cade72017-10-11 16:54:45 +02004274 struct vcpu_svm *svm = to_svm(vcpu);
4275
4276 /* Per APM Vol.2 15.22.2 "Response to SMI" */
4277 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004278 return true;
4279
4280 return is_smm(vcpu);
4281}
4282
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004283static int svm_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004284{
4285 struct vcpu_svm *svm = to_svm(vcpu);
4286 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004287 return -EBUSY;
Ladi Prosek05cade72017-10-11 16:54:45 +02004288
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004289 /* An SMI must not be injected into L2 if it's supposed to VM-Exit. */
4290 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_smi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004291 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004292
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004293 return !svm_smi_blocked(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02004294}
4295
Ladi Prosek0234bf82017-10-11 16:54:40 +02004296static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
4297{
Ladi Prosek05cade72017-10-11 16:54:45 +02004298 struct vcpu_svm *svm = to_svm(vcpu);
4299 int ret;
4300
4301 if (is_guest_mode(vcpu)) {
4302 /* FED8h - SVM Guest */
4303 put_smstate(u64, smstate, 0x7ed8, 1);
4304 /* FEE0h - SVM Guest VMCB Physical Address */
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004305 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb12_gpa);
Ladi Prosek05cade72017-10-11 16:54:45 +02004306
4307 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4308 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4309 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4310
4311 ret = nested_svm_vmexit(svm);
4312 if (ret)
4313 return ret;
4314 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02004315 return 0;
4316}
4317
Sean Christophersoned193212019-04-02 08:03:09 -07004318static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004319{
Ladi Prosek05cade72017-10-11 16:54:45 +02004320 struct vcpu_svm *svm = to_svm(vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01004321 struct kvm_host_map map;
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004322 int ret = 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004323
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004324 if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) {
4325 u64 saved_efer = GET_SMSTATE(u64, smstate, 0x7ed0);
4326 u64 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004327 u64 vmcb12_gpa = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02004328
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004329 if (guest) {
4330 if (!guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4331 return 1;
4332
4333 if (!(saved_efer & EFER_SVME))
4334 return 1;
4335
Paolo Bonzini63129752021-03-02 14:40:39 -05004336 if (kvm_vcpu_map(vcpu,
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004337 gpa_to_gfn(vmcb12_gpa), &map) == -EINVAL)
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004338 return 1;
4339
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03004340 if (svm_allocate_nested(svm))
4341 return 1;
4342
Paolo Bonzini63129752021-03-02 14:40:39 -05004343 ret = enter_svm_guest_mode(vcpu, vmcb12_gpa, map.hva);
4344 kvm_vcpu_unmap(vcpu, &map, true);
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004345 }
Ladi Prosek05cade72017-10-11 16:54:45 +02004346 }
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004347
4348 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02004349}
4350
Jason Baronb6a7cc32021-01-14 22:27:54 -05004351static void svm_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004352{
4353 struct vcpu_svm *svm = to_svm(vcpu);
4354
4355 if (!gif_set(svm)) {
4356 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02004357 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004358 /* STGI will cause a vm exit */
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004359 } else {
4360 /* We must be in SMM; RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004361 }
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004362}
4363
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004364static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004365{
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004366 bool smep, smap, is_user;
4367 unsigned long cr4;
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004368
4369 /*
Tom Lendackybc624d92020-12-10 11:09:44 -06004370 * When the guest is an SEV-ES guest, emulation is not possible.
4371 */
4372 if (sev_es_guest(vcpu->kvm))
4373 return false;
4374
4375 /*
Liran Alon118154b2019-07-17 02:56:58 +03004376 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
4377 *
4378 * Errata:
4379 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
4380 * possible that CPU microcode implementing DecodeAssist will fail
4381 * to read bytes of instruction which caused #NPF. In this case,
4382 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
4383 * return 0 instead of the correct guest instruction bytes.
4384 *
4385 * This happens because CPU microcode reading instruction bytes
4386 * uses a special opcode which attempts to read data using CPL=0
4387 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
4388 * fault, it gives up and returns no instruction bytes.
4389 *
4390 * Detection:
4391 * We reach here in case CPU supports DecodeAssist, raised #NPF and
4392 * returned 0 in GuestIntrBytes field of the VMCB.
4393 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
4394 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
4395 * in case vCPU CPL==3 (Because otherwise guest would have triggered
4396 * a SMEP fault instead of #NPF).
4397 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
4398 * As most guests enable SMAP if they have also enabled SMEP, use above
4399 * logic in order to attempt minimize false-positive of detecting errata
4400 * while still preserving all cases semantic correctness.
4401 *
4402 * Workaround:
4403 * To determine what instruction the guest was executing, the hypervisor
4404 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004405 *
4406 * In non SEV guest, hypervisor will be able to read the guest
4407 * memory to decode the instruction pointer when insn_len is zero
4408 * so we return true to indicate that decoding is possible.
4409 *
4410 * But in the SEV guest, the guest memory is encrypted with the
4411 * guest specific key and hypervisor will not be able to decode the
4412 * instruction pointer so we will not able to workaround it. Lets
4413 * print the error and request to kill the guest.
4414 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004415 if (likely(!insn || insn_len))
4416 return true;
4417
4418 /*
4419 * If RIP is invalid, go ahead with emulation which will cause an
4420 * internal error exit.
4421 */
4422 if (!kvm_vcpu_gfn_to_memslot(vcpu, kvm_rip_read(vcpu) >> PAGE_SHIFT))
4423 return true;
4424
4425 cr4 = kvm_read_cr4(vcpu);
4426 smep = cr4 & X86_CR4_SMEP;
4427 smap = cr4 & X86_CR4_SMAP;
4428 is_user = svm_get_cpl(vcpu) == 3;
Liran Alon118154b2019-07-17 02:56:58 +03004429 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004430 if (!sev_guest(vcpu->kvm))
4431 return true;
4432
Liran Alon118154b2019-07-17 02:56:58 +03004433 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004434 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4435 }
4436
4437 return false;
4438}
4439
Liran Alon4b9852f2019-08-26 13:24:49 +03004440static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
4441{
4442 struct vcpu_svm *svm = to_svm(vcpu);
4443
4444 /*
4445 * TODO: Last condition latch INIT signals on vCPU when
4446 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
Paolo Bonzini33b22172020-04-17 10:24:18 -04004447 * To properly emulate the INIT intercept,
4448 * svm_check_nested_events() should call nested_svm_vmexit()
4449 * if an INIT signal is pending.
Liran Alon4b9852f2019-08-26 13:24:49 +03004450 */
4451 return !gif_set(svm) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05004452 (vmcb_is_intercept(&svm->vmcb->control, INTERCEPT_INIT));
Liran Alon4b9852f2019-08-26 13:24:49 +03004453}
4454
Tom Lendacky647daca2021-01-04 14:20:01 -06004455static void svm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
4456{
4457 if (!sev_es_guest(vcpu->kvm))
4458 return kvm_vcpu_deliver_sipi_vector(vcpu, vector);
4459
4460 sev_vcpu_deliver_sipi_vector(vcpu, vector);
4461}
4462
Joerg Roedeleaf78262020-03-24 10:41:54 +01004463static void svm_vm_destroy(struct kvm *kvm)
4464{
4465 avic_vm_destroy(kvm);
4466 sev_vm_destroy(kvm);
4467}
4468
4469static int svm_vm_init(struct kvm *kvm)
4470{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004471 if (!pause_filter_count || !pause_filter_thresh)
4472 kvm->arch.pause_in_guest = true;
4473
Joerg Roedeleaf78262020-03-24 10:41:54 +01004474 if (avic) {
4475 int ret = avic_vm_init(kvm);
4476 if (ret)
4477 return ret;
4478 }
4479
4480 kvm_apicv_init(kvm, avic);
4481 return 0;
4482}
4483
Sean Christopherson9c14ee22020-03-21 13:26:03 -07004484static struct kvm_x86_ops svm_x86_ops __initdata = {
Li RongQingdd58f3c2020-02-23 16:13:12 +08004485 .hardware_unsetup = svm_hardware_teardown,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004486 .hardware_enable = svm_hardware_enable,
4487 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02004488 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02004489 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004490
4491 .vcpu_create = svm_create_vcpu,
4492 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004493 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004494
Sean Christopherson562b6b02020-01-26 16:41:13 -08004495 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06004496 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004497 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004498
Avi Kivity04d2cc72007-09-10 18:10:54 +03004499 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004500 .vcpu_load = svm_vcpu_load,
4501 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05004502 .vcpu_blocking = svm_vcpu_blocking,
4503 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004504
Jason Baronb6a7cc32021-01-14 22:27:54 -05004505 .update_exception_bitmap = svm_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06004506 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004507 .get_msr = svm_get_msr,
4508 .set_msr = svm_set_msr,
4509 .get_segment_base = svm_get_segment_base,
4510 .get_segment = svm_get_segment,
4511 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004512 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10004513 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004514 .set_cr0 = svm_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07004515 .is_valid_cr4 = svm_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004516 .set_cr4 = svm_set_cr4,
4517 .set_efer = svm_set_efer,
4518 .get_idt = svm_get_idt,
4519 .set_idt = svm_set_idt,
4520 .get_gdt = svm_get_gdt,
4521 .set_gdt = svm_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03004522 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004523 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004524 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004525 .get_rflags = svm_get_rflags,
4526 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004527
Sean Christopherson77809382020-03-20 14:28:18 -07004528 .tlb_flush_all = svm_flush_tlb,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004529 .tlb_flush_current = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07004530 .tlb_flush_gva = svm_flush_tlb_gva,
Sean Christopherson72b38322020-03-20 14:28:13 -07004531 .tlb_flush_guest = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004532
Avi Kivity6aa8b732006-12-10 02:21:36 -08004533 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004534 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004535 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08004536 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004537 .set_interrupt_shadow = svm_set_interrupt_shadow,
4538 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004539 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004540 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004541 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004542 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03004543 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02004544 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004545 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004546 .get_nmi_mask = svm_get_nmi_mask,
4547 .set_nmi_mask = svm_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004548 .enable_nmi_window = svm_enable_nmi_window,
4549 .enable_irq_window = svm_enable_irq_window,
4550 .update_cr8_intercept = svm_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04004551 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03004552 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06004553 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06004554 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08004555 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004556 .hwapic_irr_update = svm_hwapic_irr_update,
4557 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02004558 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05004559 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02004560
4561 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004562 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004563 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004564
Avi Kivity586f9602010-11-18 13:09:54 +02004565 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02004566
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004567 .vcpu_after_set_cpuid = svm_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004568
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004569 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10004570
Leonid Shatz326e7422018-11-06 12:14:25 +02004571 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004572
Paolo Bonzini727a7e22020-03-05 03:52:50 -05004573 .load_mmu_pgd = svm_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004574
4575 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07004576 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004577
Sean Christophersond264ee02018-08-27 15:21:12 -07004578 .request_immediate_exit = __kvm_request_immediate_exit,
4579
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004580 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02004581
4582 .pmu_ops = &amd_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04004583 .nested_ops = &svm_nested_ops,
4584
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004585 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08004586 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004587 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02004588 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004589
Ladi Prosek72d7b372017-10-11 16:54:41 +02004590 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004591 .pre_enter_smm = svm_pre_enter_smm,
4592 .pre_leave_smm = svm_pre_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004593 .enable_smi_window = svm_enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004594
4595 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06004596 .mem_enc_reg_region = svm_register_enc_region,
4597 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004598
Nathan Tempelman54526d12021-04-08 22:32:14 +00004599 .vm_copy_enc_context_from = svm_vm_copy_asid_from,
4600
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004601 .can_emulate_instruction = svm_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03004602
4603 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Alexander Graffd6fa732020-09-25 16:34:19 +02004604
4605 .msr_filter_changed = svm_msr_filter_changed,
Tom Lendackyf1c63662020-12-14 10:29:50 -05004606 .complete_emulated_msr = svm_complete_emulated_msr,
Tom Lendacky647daca2021-01-04 14:20:01 -06004607
4608 .vcpu_deliver_sipi_vector = svm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004609};
4610
Sean Christophersond008dfd2020-03-21 13:25:56 -07004611static struct kvm_x86_init_ops svm_init_ops __initdata = {
4612 .cpu_has_kvm_support = has_svm,
4613 .disabled_by_bios = is_disabled,
4614 .hardware_setup = svm_hardware_setup,
4615 .check_processor_compatibility = svm_check_processor_compat,
4616
4617 .runtime_ops = &svm_x86_ops,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004618};
4619
4620static int __init svm_init(void)
4621{
Tom Lendackyd07f46f2020-09-07 15:15:03 +02004622 __unused_size_checks();
4623
Sean Christophersond008dfd2020-03-21 13:25:56 -07004624 return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03004625 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004626}
4627
4628static void __exit svm_exit(void)
4629{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004630 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004631}
4632
4633module_init(svm_init)
4634module_exit(svm_exit)