blob: 271196400495f251b3cb78cb84e7f43cced7ecd2 [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 IOPM_ALLOC_ORDER 2
60#define MSRPM_ALLOC_ORDER 1
61
Avi Kivity6aa8b732006-12-10 02:21:36 -080062#define SEG_TYPE_LDT 2
63#define SEG_TYPE_BUSY_TSS16 3
64
Andre Przywara6bc31bd2010-04-11 23:07:28 +020065#define SVM_FEATURE_LBRV (1 << 1)
66#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010067#define SVM_FEATURE_TSC_RATE (1 << 4)
68#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
69#define SVM_FEATURE_FLUSH_ASID (1 << 6)
70#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020071#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030072
Joerg Roedel24e09cb2008-02-13 18:58:47 +010073#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
74
Joerg Roedelfbc0db72011-03-25 09:44:46 +010075#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010076#define TSC_RATIO_MIN 0x0000000000000001ULL
77#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010078
Joerg Roedel67ec6602010-05-17 14:43:35 +020079static bool erratum_383_found __read_mostly;
80
Joerg Roedel883b0a92020-03-24 10:41:52 +010081u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
Joerg Roedel323c3d82010-03-01 15:34:37 +010082
Boris Ostrovsky2b036c62012-01-09 14:00:35 -050083/*
84 * Set osvw_len to higher value when updated Revision Guides
85 * are published and we know what the new status bits are
86 */
87static uint64_t osvw_len = 4, osvw_status;
88
Joerg Roedelfbc0db72011-03-25 09:44:46 +010089static DEFINE_PER_CPU(u64, current_tsc_ratio);
90#define TSC_RATIO_DEFAULT 0x0100000000ULL
91
Mathias Krause09941fb2012-08-30 01:30:20 +020092static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +010093 u32 index; /* Index of the MSR */
Tom Lendacky376c6d22020-12-10 11:10:06 -060094 bool always; /* True if intercept is initially cleared */
Alexander Graffd6fa732020-09-25 16:34:19 +020095} direct_access_msrs[MAX_DIRECT_ACCESS_MSRS] = {
Brian Gerst8c065852010-07-17 09:03:26 -040096 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010097 { .index = MSR_IA32_SYSENTER_CS, .always = true },
98#ifdef CONFIG_X86_64
99 { .index = MSR_GS_BASE, .always = true },
100 { .index = MSR_FS_BASE, .always = true },
101 { .index = MSR_KERNEL_GS_BASE, .always = true },
102 { .index = MSR_LSTAR, .always = true },
103 { .index = MSR_CSTAR, .always = true },
104 { .index = MSR_SYSCALL_MASK, .always = true },
105#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100106 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100107 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100108 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
109 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
110 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
111 { .index = MSR_IA32_LASTINTTOIP, .always = false },
Tom Lendacky376c6d22020-12-10 11:10:06 -0600112 { .index = MSR_EFER, .always = false },
113 { .index = MSR_IA32_CR_PAT, .always = false },
114 { .index = MSR_AMD64_SEV_ES_GHCB, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100115 { .index = MSR_INVALID, .always = false },
Avi Kivity6c8166a2009-05-31 18:15:37 +0300116};
117
Babu Moger8566ac82018-03-16 16:37:26 -0400118/*
119 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
120 * pause_filter_count: On processors that support Pause filtering(indicated
121 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
122 * count value. On VMRUN this value is loaded into an internal counter.
123 * Each time a pause instruction is executed, this counter is decremented
124 * until it reaches zero at which time a #VMEXIT is generated if pause
125 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
126 * Intercept Filtering for more details.
127 * This also indicate if ple logic enabled.
128 *
129 * pause_filter_thresh: In addition, some processor families support advanced
130 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
131 * the amount of time a guest is allowed to execute in a pause loop.
132 * In this mode, a 16-bit pause filter threshold field is added in the
133 * VMCB. The threshold value is a cycle count that is used to reset the
134 * pause counter. As with simple pause filtering, VMRUN loads the pause
135 * count value from VMCB into an internal counter. Then, on each pause
136 * instruction the hardware checks the elapsed number of cycles since
137 * the most recent pause instruction against the pause filter threshold.
138 * If the elapsed cycle count is greater than the pause filter threshold,
139 * then the internal pause count is reloaded from the VMCB and execution
140 * continues. If the elapsed cycle count is less than the pause filter
141 * threshold, then the internal pause count is decremented. If the count
142 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
143 * triggered. If advanced pause filtering is supported and pause filter
144 * threshold field is set to zero, the filter will operate in the simpler,
145 * count only mode.
146 */
147
148static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
149module_param(pause_filter_thresh, ushort, 0444);
150
151static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
152module_param(pause_filter_count, ushort, 0444);
153
154/* Default doubles per-vcpu window every exit. */
155static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
156module_param(pause_filter_count_grow, ushort, 0444);
157
158/* Default resets per-vcpu window every exit to pause_filter_count. */
159static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
160module_param(pause_filter_count_shrink, ushort, 0444);
161
162/* Default is to compute the maximum so we can never overflow. */
163static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
164module_param(pause_filter_count_max, ushort, 0444);
165
Sean Christopherson99840a72021-03-04 18:16:37 -0800166/*
167 * Use nested page tables by default. Note, NPT may get forced off by
168 * svm_hardware_setup() if it's unsupported by hardware or the host kernel.
169 */
170bool npt_enabled = true;
171module_param_named(npt, npt_enabled, bool, 0444);
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100172
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100173/* allow nested virtualization in KVM/SVM */
174static int nested = true;
Alexander Graf236de052008-11-25 20:17:10 +0100175module_param(nested, int, S_IRUGO);
176
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200177/* enable/disable Next RIP Save */
178static int nrips = true;
179module_param(nrips, int, 0444);
180
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500181/* enable/disable Virtual VMLOAD VMSAVE */
182static int vls = true;
183module_param(vls, int, 0444);
184
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500185/* enable/disable Virtual GIF */
186static int vgif = true;
187module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500188
Brijesh Singhe9df0942017-12-04 10:57:33 -0600189/* enable/disable SEV support */
Tom Lendacky916391a2020-12-10 11:09:38 -0600190int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
Brijesh Singhe9df0942017-12-04 10:57:33 -0600191module_param(sev, int, 0444);
192
Tom Lendacky916391a2020-12-10 11:09:38 -0600193/* enable/disable SEV-ES support */
194int sev_es = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
195module_param(sev_es, int, 0444);
196
Tom Lendacky291bd202020-12-10 11:09:47 -0600197bool __read_mostly dump_invalid_vmcb;
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200198module_param(dump_invalid_vmcb, bool, 0644);
199
Wei Yongjun2e215212021-02-10 07:59:58 +0000200static bool svm_gp_erratum_intercept = true;
Bandan Das82a11e9c2021-01-26 03:18:29 -0500201
Brijesh Singh7607b712018-02-19 10:14:44 -0600202static u8 rsm_ins_bytes[] = "\x0f\xaa";
203
Harvey Harrison4866d5e2008-02-19 10:32:02 -0800204static unsigned long iopm_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800205
206struct kvm_ldttss_desc {
207 u16 limit0;
208 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100209 unsigned base1:8, type:5, dpl:2, p:1;
210 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211 u32 base3;
212 u32 zero1;
213} __attribute__((packed));
214
Joerg Roedeleaf78262020-03-24 10:41:54 +0100215DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800216
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()) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700567 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
568 sizeof(void *),
569 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600570 if (!sd->sev_vmcbs)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800571 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600572 }
573
Tejun Heo0fe1e002009-10-29 22:34:14 +0900574 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575
576 return 0;
577
Miaohe Lind80b64f2020-01-04 16:56:49 +0800578free_save_area:
579 __free_page(sd->save_area);
580free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900581 kfree(sd);
Miaohe Lind80b64f2020-01-04 16:56:49 +0800582 return -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800583
584}
585
Alexander Graffd6fa732020-09-25 16:34:19 +0200586static int direct_access_msr_slot(u32 msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800587{
Alexander Graffd6fa732020-09-25 16:34:19 +0200588 u32 i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800589
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100590 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
Alexander Graffd6fa732020-09-25 16:34:19 +0200591 if (direct_access_msrs[i].index == msr)
592 return i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800593
Alexander Graffd6fa732020-09-25 16:34:19 +0200594 return -ENOENT;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100595}
596
Alexander Graffd6fa732020-09-25 16:34:19 +0200597static void set_shadow_msr_intercept(struct kvm_vcpu *vcpu, u32 msr, int read,
598 int write)
599{
600 struct vcpu_svm *svm = to_svm(vcpu);
601 int slot = direct_access_msr_slot(msr);
602
603 if (slot == -ENOENT)
604 return;
605
606 /* Set the shadow bitmaps to the desired intercept states */
607 if (read)
608 set_bit(slot, svm->shadow_msr_intercept.read);
609 else
610 clear_bit(slot, svm->shadow_msr_intercept.read);
611
612 if (write)
613 set_bit(slot, svm->shadow_msr_intercept.write);
614 else
615 clear_bit(slot, svm->shadow_msr_intercept.write);
616}
617
618static bool valid_msr_intercept(u32 index)
619{
620 return direct_access_msr_slot(index) != -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800621}
622
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200623static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100624{
625 u8 bit_write;
626 unsigned long tmp;
627 u32 offset;
628 u32 *msrpm;
629
630 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
631 to_svm(vcpu)->msrpm;
632
633 offset = svm_msrpm_offset(msr);
634 bit_write = 2 * (msr & 0x0f) + 1;
635 tmp = msrpm[offset];
636
637 BUG_ON(offset == MSR_INVALID);
638
639 return !!test_bit(bit_write, &tmp);
640}
641
Alexander Graffd6fa732020-09-25 16:34:19 +0200642static void set_msr_interception_bitmap(struct kvm_vcpu *vcpu, u32 *msrpm,
643 u32 msr, int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800644{
Joerg Roedel455716f2010-03-01 15:34:35 +0100645 u8 bit_read, bit_write;
646 unsigned long tmp;
647 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800648
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100649 /*
650 * If this warning triggers extend the direct_access_msrs list at the
651 * beginning of the file
652 */
653 WARN_ON(!valid_msr_intercept(msr));
654
Alexander Graffd6fa732020-09-25 16:34:19 +0200655 /* Enforce non allowed MSRs to trap */
656 if (read && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ))
657 read = 0;
658
659 if (write && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE))
660 write = 0;
661
Joerg Roedel455716f2010-03-01 15:34:35 +0100662 offset = svm_msrpm_offset(msr);
663 bit_read = 2 * (msr & 0x0f);
664 bit_write = 2 * (msr & 0x0f) + 1;
665 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666
Joerg Roedel455716f2010-03-01 15:34:35 +0100667 BUG_ON(offset == MSR_INVALID);
668
669 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
670 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
671
672 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800673}
674
Tom Lendacky376c6d22020-12-10 11:10:06 -0600675void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
676 int read, int write)
Alexander Graffd6fa732020-09-25 16:34:19 +0200677{
678 set_shadow_msr_intercept(vcpu, msr, read, write);
679 set_msr_interception_bitmap(vcpu, msrpm, msr, read, write);
680}
681
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300682u32 *svm_vcpu_alloc_msrpm(void)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100683{
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300684 struct page *pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_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);
Joerg Roedelf65c2292008-02-13 18:58:46 +0100691 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
692
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{
710 __free_pages(virt_to_page(msrpm), MSRPM_ALLOC_ORDER);
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
Joerg Roedeleaf78262020-03-24 10:41:54 +0100891 if (svm_sev_enabled())
892 sev_hardware_teardown();
Li RongQingdd58f3c2020-02-23 16:13:12 +0800893
894 for_each_possible_cpu(cpu)
895 svm_cpu_uninit(cpu);
896
897 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
898 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);
Sean Christopherson9b58b982020-03-02 15:56:42 -0800925}
926
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927static __init int svm_hardware_setup(void)
928{
929 int cpu;
930 struct page *iopm_pages;
931 void *iopm_va;
932 int r;
933
934 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
935
936 if (!iopm_pages)
937 return -ENOMEM;
938
939 iopm_va = page_address(iopm_pages);
Anthony Liguoric8681332007-04-30 09:48:11 +0300940 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
942
Joerg Roedel323c3d82010-03-01 15:34:37 +0100943 init_msrpm_offsets();
944
Sean Christophersoncfc48182020-03-02 15:56:23 -0800945 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
946
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100947 if (boot_cpu_has(X86_FEATURE_NX))
948 kvm_enable_efer_bits(EFER_NX);
949
Alexander Graf1b2fd702009-02-02 16:23:51 +0100950 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
951 kvm_enable_efer_bits(EFER_FFXSR);
952
Joerg Roedel92a1f122011-03-25 09:44:51 +0100953 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +0100954 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800955 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
956 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100957 }
958
Babu Moger8566ac82018-03-16 16:37:26 -0400959 /* Check for pause filtering support */
960 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
961 pause_filter_count = 0;
962 pause_filter_thresh = 0;
963 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
964 pause_filter_thresh = 0;
965 }
966
Alexander Graf236de052008-11-25 20:17:10 +0100967 if (nested) {
968 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +0200969 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +0100970 }
971
Tom Lendacky916391a2020-12-10 11:09:38 -0600972 if (IS_ENABLED(CONFIG_KVM_AMD_SEV) && sev) {
973 sev_hardware_setup();
974 } else {
975 sev = false;
976 sev_es = false;
Brijesh Singhe9df0942017-12-04 10:57:33 -0600977 }
978
Tom Lendacky52918ed2020-01-09 17:42:16 -0600979 svm_adjust_mmio_mask();
980
Zachary Amsden3230bb42009-09-29 11:38:37 -1000981 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982 r = svm_cpu_init(cpu);
983 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100984 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +0100986
Sean Christopherson99840a72021-03-04 18:16:37 -0800987 /*
988 * KVM's MMU doesn't support using 2-level paging for itself, and thus
989 * NPT isn't supported if the host is using 2-level paging since host
990 * CR4 is unchanged on VMRUN.
991 */
992 if (!IS_ENABLED(CONFIG_X86_64) && !IS_ENABLED(CONFIG_X86_PAE))
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100993 npt_enabled = false;
994
Sean Christopherson99840a72021-03-04 18:16:37 -0800995 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100996 npt_enabled = false;
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100997
Sean Christopherson83013052020-07-15 20:41:22 -0700998 kvm_configure_mmu(npt_enabled, get_max_npt_level(), PG_LEVEL_1G);
Sean Christopherson213e0e12020-03-02 15:57:01 -0800999 pr_info("kvm: Nested Paging %sabled\n", npt_enabled ? "en" : "dis");
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001000
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001001 if (nrips) {
1002 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1003 nrips = false;
1004 }
1005
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001006 if (avic) {
1007 if (!npt_enabled ||
1008 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001009 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001010 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001011 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001012 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001013
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001014 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1015 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001016 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001017
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001018 if (vls) {
1019 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001020 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001021 !IS_ENABLED(CONFIG_X86_64)) {
1022 vls = false;
1023 } else {
1024 pr_info("Virtual VMLOAD VMSAVE supported\n");
1025 }
1026 }
1027
Wei Huang3b9c7232021-01-26 03:18:30 -05001028 if (boot_cpu_has(X86_FEATURE_SVME_ADDR_CHK))
1029 svm_gp_erratum_intercept = false;
1030
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001031 if (vgif) {
1032 if (!boot_cpu_has(X86_FEATURE_VGIF))
1033 vgif = false;
1034 else
1035 pr_info("Virtual GIF supported\n");
1036 }
1037
Sean Christopherson9b58b982020-03-02 15:56:42 -08001038 svm_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08001039
Mohammed Gamal3edd6832020-07-10 17:48:11 +02001040 /*
1041 * It seems that on AMD processors PTE's accessed bit is
1042 * being set by the CPU hardware before the NPF vmexit.
1043 * This is not expected behaviour and our tests fail because
1044 * of it.
1045 * A workaround here is to disable support for
1046 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR if NPT is enabled.
1047 * In this case userspace can know if there is support using
1048 * KVM_CAP_SMALLER_MAXPHYADDR extension and decide how to handle
1049 * it
1050 * If future AMD CPU models change the behaviour described above,
1051 * this variable can be changed accordingly
1052 */
1053 allow_smaller_maxphyaddr = !npt_enabled;
1054
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 return 0;
1056
Joerg Roedelf65c2292008-02-13 18:58:46 +01001057err:
Li RongQingdd58f3c2020-02-23 16:13:12 +08001058 svm_hardware_teardown();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059 return r;
1060}
1061
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062static void init_seg(struct vmcb_seg *seg)
1063{
1064 seg->selector = 0;
1065 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001066 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067 seg->limit = 0xffff;
1068 seg->base = 0;
1069}
1070
1071static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1072{
1073 seg->selector = 0;
1074 seg->attrib = SVM_SELECTOR_P_MASK | type;
1075 seg->limit = 0xffff;
1076 seg->base = 0;
1077}
1078
Leonid Shatz326e7422018-11-06 12:14:25 +02001079static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001080{
1081 struct vcpu_svm *svm = to_svm(vcpu);
1082 u64 g_tsc_offset = 0;
1083
Joerg Roedel20307532010-11-29 17:51:48 +01001084 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001085 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001086 g_tsc_offset = svm->vmcb->control.tsc_offset -
Cathy Avery4995a362021-01-13 07:07:52 -05001087 svm->vmcb01.ptr->control.tsc_offset;
1088 svm->vmcb01.ptr->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001089 }
1090
1091 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1092 svm->vmcb->control.tsc_offset - g_tsc_offset,
1093 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001094
1095 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001096
Joerg Roedel06e78522020-06-25 10:03:23 +02001097 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001098 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001099}
1100
Babu Moger4407a792020-09-11 14:29:19 -05001101static void svm_check_invpcid(struct vcpu_svm *svm)
1102{
1103 /*
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001104 * Intercept INVPCID if shadow paging is enabled to sync/free shadow
1105 * roots, or if INVPCID is disabled in the guest to inject #UD.
Babu Moger4407a792020-09-11 14:29:19 -05001106 */
1107 if (kvm_cpu_cap_has(X86_FEATURE_INVPCID)) {
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001108 if (!npt_enabled ||
1109 !guest_cpuid_has(&svm->vcpu, X86_FEATURE_INVPCID))
Babu Moger4407a792020-09-11 14:29:19 -05001110 svm_set_intercept(svm, INTERCEPT_INVPCID);
1111 else
1112 svm_clr_intercept(svm, INTERCEPT_INVPCID);
1113 }
1114}
1115
Paolo Bonzini63129752021-03-02 14:40:39 -05001116static void init_vmcb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117{
Paolo Bonzini63129752021-03-02 14:40:39 -05001118 struct vcpu_svm *svm = to_svm(vcpu);
Joerg Roedele6101a92008-02-13 18:58:45 +01001119 struct vmcb_control_area *control = &svm->vmcb->control;
1120 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121
Paolo Bonzini63129752021-03-02 14:40:39 -05001122 vcpu->arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001123
Babu Moger830bd712020-09-11 14:28:50 -05001124 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1125 svm_set_intercept(svm, INTERCEPT_CR3_READ);
1126 svm_set_intercept(svm, INTERCEPT_CR4_READ);
1127 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1128 svm_set_intercept(svm, INTERCEPT_CR3_WRITE);
1129 svm_set_intercept(svm, INTERCEPT_CR4_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001130 if (!kvm_vcpu_apicv_active(vcpu))
Babu Moger830bd712020-09-11 14:28:50 -05001131 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132
Paolo Bonzini5315c712014-03-03 13:08:29 +01001133 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134
Joerg Roedel18c918c2010-11-30 18:03:59 +01001135 set_exception_intercept(svm, PF_VECTOR);
1136 set_exception_intercept(svm, UD_VECTOR);
1137 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001138 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001139 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001140 /*
1141 * Guest access to VMware backdoor ports could legitimately
1142 * trigger #GP because of TSS I/O permission bitmap.
1143 * We intercept those #GP and allow access to them anyway
1144 * as VMware does.
1145 */
1146 if (enable_vmware_backdoor)
1147 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001148
Joerg Roedela284ba52020-06-25 10:03:24 +02001149 svm_set_intercept(svm, INTERCEPT_INTR);
1150 svm_set_intercept(svm, INTERCEPT_NMI);
1151 svm_set_intercept(svm, INTERCEPT_SMI);
1152 svm_set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
1153 svm_set_intercept(svm, INTERCEPT_RDPMC);
1154 svm_set_intercept(svm, INTERCEPT_CPUID);
1155 svm_set_intercept(svm, INTERCEPT_INVD);
1156 svm_set_intercept(svm, INTERCEPT_INVLPG);
1157 svm_set_intercept(svm, INTERCEPT_INVLPGA);
1158 svm_set_intercept(svm, INTERCEPT_IOIO_PROT);
1159 svm_set_intercept(svm, INTERCEPT_MSR_PROT);
1160 svm_set_intercept(svm, INTERCEPT_TASK_SWITCH);
1161 svm_set_intercept(svm, INTERCEPT_SHUTDOWN);
1162 svm_set_intercept(svm, INTERCEPT_VMRUN);
1163 svm_set_intercept(svm, INTERCEPT_VMMCALL);
1164 svm_set_intercept(svm, INTERCEPT_VMLOAD);
1165 svm_set_intercept(svm, INTERCEPT_VMSAVE);
1166 svm_set_intercept(svm, INTERCEPT_STGI);
1167 svm_set_intercept(svm, INTERCEPT_CLGI);
1168 svm_set_intercept(svm, INTERCEPT_SKINIT);
1169 svm_set_intercept(svm, INTERCEPT_WBINVD);
1170 svm_set_intercept(svm, INTERCEPT_XSETBV);
1171 svm_set_intercept(svm, INTERCEPT_RDPRU);
1172 svm_set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001173
Paolo Bonzini63129752021-03-02 14:40:39 -05001174 if (!kvm_mwait_in_guest(vcpu->kvm)) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001175 svm_set_intercept(svm, INTERCEPT_MONITOR);
1176 svm_set_intercept(svm, INTERCEPT_MWAIT);
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001177 }
1178
Paolo Bonzini63129752021-03-02 14:40:39 -05001179 if (!kvm_hlt_in_guest(vcpu->kvm))
Joerg Roedela284ba52020-06-25 10:03:24 +02001180 svm_set_intercept(svm, INTERCEPT_HLT);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001181
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001182 control->iopm_base_pa = __sme_set(iopm_base);
1183 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184 control->int_ctl = V_INTR_MASKING_MASK;
1185
1186 init_seg(&save->es);
1187 init_seg(&save->ss);
1188 init_seg(&save->ds);
1189 init_seg(&save->fs);
1190 init_seg(&save->gs);
1191
1192 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001193 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001194 /* Executable/Readable Code Segment */
1195 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1196 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1197 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001198
1199 save->gdtr.limit = 0xffff;
1200 save->idtr.limit = 0xffff;
1201
1202 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1203 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1204
Paolo Bonzini63129752021-03-02 14:40:39 -05001205 svm_set_cr4(vcpu, 0);
1206 svm_set_efer(vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001207 save->dr6 = 0xffff0ff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001208 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001209 save->rip = 0x0000fff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001210 vcpu->arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001211
Joerg Roedele0231712010-02-24 18:59:10 +01001212 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001213 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001214 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001215 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001216 svm_set_cr0(vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
1217 kvm_mmu_reset_context(vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001218
Rusty Russell66aee912007-07-17 23:34:16 +10001219 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001220 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001221
1222 if (npt_enabled) {
1223 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001224 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedela284ba52020-06-25 10:03:24 +02001225 svm_clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001226 clr_exception_intercept(svm, PF_VECTOR);
Babu Moger830bd712020-09-11 14:28:50 -05001227 svm_clr_intercept(svm, INTERCEPT_CR3_READ);
1228 svm_clr_intercept(svm, INTERCEPT_CR3_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001229 save->g_pat = vcpu->arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001230 save->cr3 = 0;
1231 save->cr4 = 0;
1232 }
Cathy Avery193015a2021-01-12 11:43:13 -05001233 svm->current_vmcb->asid_generation = 0;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001234 svm->asid = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001235
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03001236 svm->nested.vmcb12_gpa = 0;
Cathy Avery81733962021-03-01 15:08:44 -05001237 svm->nested.last_vmcb12_gpa = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001238 vcpu->arch.hflags = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001239
Paolo Bonzini63129752021-03-02 14:40:39 -05001240 if (!kvm_pause_in_guest(vcpu->kvm)) {
Babu Moger8566ac82018-03-16 16:37:26 -04001241 control->pause_filter_count = pause_filter_count;
1242 if (pause_filter_thresh)
1243 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedela284ba52020-06-25 10:03:24 +02001244 svm_set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001245 } else {
Joerg Roedela284ba52020-06-25 10:03:24 +02001246 svm_clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001247 }
1248
Babu Moger4407a792020-09-11 14:29:19 -05001249 svm_check_invpcid(svm);
1250
Babu Mogerd00b99c2021-02-17 10:56:04 -05001251 /*
1252 * If the host supports V_SPEC_CTRL then disable the interception
1253 * of MSR_IA32_SPEC_CTRL.
1254 */
1255 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
1256 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
1257
Paolo Bonzini63129752021-03-02 14:40:39 -05001258 if (kvm_vcpu_apicv_active(vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001259 avic_init_vmcb(svm);
1260
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001261 /*
1262 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1263 * in VMCB and clear intercepts to avoid #VMEXIT.
1264 */
1265 if (vls) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001266 svm_clr_intercept(svm, INTERCEPT_VMLOAD);
1267 svm_clr_intercept(svm, INTERCEPT_VMSAVE);
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001268 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1269 }
1270
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001271 if (vgif) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001272 svm_clr_intercept(svm, INTERCEPT_STGI);
1273 svm_clr_intercept(svm, INTERCEPT_CLGI);
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001274 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1275 }
1276
Paolo Bonzini63129752021-03-02 14:40:39 -05001277 if (sev_guest(vcpu->kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001278 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001279 clr_exception_intercept(svm, UD_VECTOR);
Tom Lendacky376c6d22020-12-10 11:10:06 -06001280
Paolo Bonzini63129752021-03-02 14:40:39 -05001281 if (sev_es_guest(vcpu->kvm)) {
Tom Lendacky376c6d22020-12-10 11:10:06 -06001282 /* Perform SEV-ES specific VMCB updates */
1283 sev_es_init_vmcb(svm);
1284 }
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001285 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001286
Joerg Roedel06e78522020-06-25 10:03:23 +02001287 vmcb_mark_all_dirty(svm->vmcb);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001288
Joerg Roedel2af91942009-08-07 11:49:28 +02001289 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001290
1291}
1292
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001293static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001294{
1295 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001296 u32 dummy;
1297 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001298
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001299 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02001300 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001301
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001302 if (!init_event) {
Paolo Bonzini63129752021-03-02 14:40:39 -05001303 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1304 MSR_IA32_APICBASE_ENABLE;
1305 if (kvm_vcpu_is_reset_bsp(vcpu))
1306 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001307 }
Paolo Bonzini63129752021-03-02 14:40:39 -05001308 init_vmcb(vcpu);
Avi Kivity70433382007-11-07 12:57:23 +02001309
Sean Christophersonf91af512020-03-04 17:34:37 -08001310 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001311 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001312
1313 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1314 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001315}
1316
Cathy Avery4995a362021-01-13 07:07:52 -05001317void svm_switch_vmcb(struct vcpu_svm *svm, struct kvm_vmcb_info *target_vmcb)
1318{
1319 svm->current_vmcb = target_vmcb;
1320 svm->vmcb = target_vmcb->ptr;
1321 svm->vmcb_pa = target_vmcb->pa;
1322
1323 /*
Cathy Averyaf18fa72021-01-12 11:43:12 -05001324 * Track the physical CPU the target_vmcb is running on
1325 * in order to mark the VMCB dirty if the cpu changes at
1326 * its next vmrun.
Cathy Avery4995a362021-01-13 07:07:52 -05001327 */
1328
Cathy Averyaf18fa72021-01-12 11:43:12 -05001329 svm->current_vmcb->cpu = svm->vcpu.cpu;
Cathy Avery4995a362021-01-13 07:07:52 -05001330}
1331
Sean Christopherson987b2592019-12-18 13:54:55 -08001332static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001334 struct vcpu_svm *svm;
Cathy Avery4995a362021-01-13 07:07:52 -05001335 struct page *vmcb01_page;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001336 struct page *vmsa_page = NULL;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001337 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001339 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
1340 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001341
Joerg Roedelf65c2292008-02-13 18:58:46 +01001342 err = -ENOMEM;
Cathy Avery4995a362021-01-13 07:07:52 -05001343 vmcb01_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1344 if (!vmcb01_page)
Sean Christopherson987b2592019-12-18 13:54:55 -08001345 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001346
Paolo Bonzini63129752021-03-02 14:40:39 -05001347 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001348 /*
1349 * SEV-ES guests require a separate VMSA page used to contain
1350 * the encrypted register state of the guest.
1351 */
1352 vmsa_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1353 if (!vmsa_page)
1354 goto error_free_vmcb_page;
Tom Lendackyed02b212020-12-10 11:10:01 -06001355
1356 /*
1357 * SEV-ES guests maintain an encrypted version of their FPU
1358 * state which is restored and saved on VMRUN and VMEXIT.
1359 * Free the fpu structure to prevent KVM from attempting to
1360 * access the FPU state.
1361 */
1362 kvm_free_guest_fpu(vcpu);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001363 }
1364
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001365 err = avic_init_vcpu(svm);
1366 if (err)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001367 goto error_free_vmsa_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001368
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001369 /* We initialize this flag to true to make sure that the is_running
1370 * bit would be set the first time the vcpu is loaded.
1371 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001372 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
1373 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001374
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001375 svm->msrpm = svm_vcpu_alloc_msrpm();
Chen Zhou054409a2020-11-17 10:54:26 +08001376 if (!svm->msrpm) {
1377 err = -ENOMEM;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001378 goto error_free_vmsa_page;
Chen Zhou054409a2020-11-17 10:54:26 +08001379 }
Alexander Grafb286d5d2008-11-25 20:17:05 +01001380
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001381 svm_vcpu_init_msrpm(vcpu, svm->msrpm);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001382
Cathy Avery4995a362021-01-13 07:07:52 -05001383 svm->vmcb01.ptr = page_address(vmcb01_page);
1384 svm->vmcb01.pa = __sme_set(page_to_pfn(vmcb01_page) << PAGE_SHIFT);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001385
1386 if (vmsa_page)
1387 svm->vmsa = page_address(vmsa_page);
1388
Michael Rotha7fc06d2021-02-02 13:01:26 -06001389 svm->guest_state_loaded = false;
Cathy Avery4995a362021-01-13 07:07:52 -05001390
1391 svm_switch_vmcb(svm, &svm->vmcb01);
Paolo Bonzini63129752021-03-02 14:40:39 -05001392 init_vmcb(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001393
Sean Christopherson7f271792019-12-18 13:54:51 -08001394 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01001395 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001396
Paolo Bonzini63129752021-03-02 14:40:39 -05001397 if (sev_es_guest(vcpu->kvm))
Tom Lendacky376c6d22020-12-10 11:10:06 -06001398 /* Perform SEV-ES specific VMCB creation updates */
1399 sev_es_create_vcpu(svm);
1400
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001401 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08001402
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001403error_free_vmsa_page:
1404 if (vmsa_page)
1405 __free_page(vmsa_page);
Maxim Levitsky8d22b902020-08-27 20:11:42 +03001406error_free_vmcb_page:
Cathy Avery4995a362021-01-13 07:07:52 -05001407 __free_page(vmcb01_page);
Sean Christopherson987b2592019-12-18 13:54:55 -08001408out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001409 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001410}
1411
Jim Mattsonfd65d312018-05-22 09:54:20 -07001412static void svm_clear_current_vmcb(struct vmcb *vmcb)
1413{
1414 int i;
1415
1416 for_each_online_cpu(i)
1417 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
1418}
1419
Avi Kivity6aa8b732006-12-10 02:21:36 -08001420static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1421{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001422 struct vcpu_svm *svm = to_svm(vcpu);
1423
Jim Mattsonfd65d312018-05-22 09:54:20 -07001424 /*
1425 * The vmcb page can be recycled, causing a false negative in
1426 * svm_vcpu_load(). So, ensure that no logical CPU has this
1427 * vmcb page recorded as its current vmcb.
1428 */
1429 svm_clear_current_vmcb(svm->vmcb);
1430
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03001431 svm_free_nested(svm);
1432
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001433 sev_free_vcpu(vcpu);
1434
Cathy Avery4995a362021-01-13 07:07:52 -05001435 __free_page(pfn_to_page(__sme_clr(svm->vmcb01.pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01001436 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001437}
1438
Michael Rotha7fc06d2021-02-02 13:01:26 -06001439static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001440{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001441 struct vcpu_svm *svm = to_svm(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001442 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
1443 unsigned int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02001444
Michael Rotha7fc06d2021-02-02 13:01:26 -06001445 if (svm->guest_state_loaded)
1446 return;
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001447
Michael Rotha7fc06d2021-02-02 13:01:26 -06001448 /*
1449 * Certain MSRs are restored on VMEXIT (sev-es), or vmload of host save
1450 * area (non-sev-es). Save ones that aren't so we can restore them
1451 * individually later.
1452 */
1453 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
1454 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
1455
1456 /*
1457 * Save additional host state that will be restored on VMEXIT (sev-es)
1458 * or subsequent vmload of host save area.
1459 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001460 if (sev_es_guest(vcpu->kvm)) {
Michael Rotha7fc06d2021-02-02 13:01:26 -06001461 sev_es_prepare_guest_switch(svm, vcpu->cpu);
Tom Lendacky86137772020-12-10 11:10:07 -06001462 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06001463 vmsave(__sme_page_pa(sd->save_area));
Tom Lendacky86137772020-12-10 11:10:07 -06001464 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001465
Haozhong Zhangad7218832015-10-20 15:39:02 +08001466 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1467 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1468 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1469 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1470 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1471 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001472 }
Michael Rotha7fc06d2021-02-02 13:01:26 -06001473
Paolo Bonzini46896c72015-11-12 14:49:16 +01001474 /* This assumes that the kernel never uses MSR_TSC_AUX */
1475 if (static_cpu_has(X86_FEATURE_RDTSCP))
1476 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001477
Michael Rotha7fc06d2021-02-02 13:01:26 -06001478 svm->guest_state_loaded = true;
1479}
1480
1481static void svm_prepare_host_switch(struct kvm_vcpu *vcpu)
1482{
1483 struct vcpu_svm *svm = to_svm(vcpu);
1484 unsigned int i;
1485
1486 if (!svm->guest_state_loaded)
1487 return;
1488
1489 /*
1490 * Certain MSRs are restored on VMEXIT (sev-es), or vmload of host save
1491 * area (non-sev-es). Restore the ones that weren't.
1492 */
1493 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
1494 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
1495
1496 svm->guest_state_loaded = false;
1497}
1498
1499static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1500{
1501 struct vcpu_svm *svm = to_svm(vcpu);
1502 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
1503
Ashok Raj15d45072018-02-01 22:59:43 +01001504 if (sd->current_vmcb != svm->vmcb) {
1505 sd->current_vmcb = svm->vmcb;
1506 indirect_branch_prediction_barrier();
1507 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001508 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509}
1510
1511static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1512{
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001513 avic_vcpu_put(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001514 svm_prepare_host_switch(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001515
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001516 ++vcpu->stat.host_state_reload;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517}
1518
Avi Kivity6aa8b732006-12-10 02:21:36 -08001519static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1520{
Ladi Prosek9b611742017-06-21 09:06:59 +02001521 struct vcpu_svm *svm = to_svm(vcpu);
1522 unsigned long rflags = svm->vmcb->save.rflags;
1523
1524 if (svm->nmi_singlestep) {
1525 /* Hide our flags if they were not set by the guest */
1526 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1527 rflags &= ~X86_EFLAGS_TF;
1528 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1529 rflags &= ~X86_EFLAGS_RF;
1530 }
1531 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001532}
1533
1534static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1535{
Ladi Prosek9b611742017-06-21 09:06:59 +02001536 if (to_svm(vcpu)->nmi_singlestep)
1537 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1538
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001539 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001540 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001541 * (caused by either a task switch or an inter-privilege IRET),
1542 * so we do not need to update the CPL here.
1543 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001544 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001545}
1546
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001547static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1548{
1549 switch (reg) {
1550 case VCPU_EXREG_PDPTR:
1551 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001552 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001553 break;
1554 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07001555 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001556 }
1557}
1558
Suravee Suthikulpanite14b7782020-05-06 08:17:55 -05001559static void svm_set_vintr(struct vcpu_svm *svm)
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001560{
1561 struct vmcb_control_area *control;
1562
1563 /* The following fields are ignored when AVIC is enabled */
1564 WARN_ON(kvm_vcpu_apicv_active(&svm->vcpu));
Joerg Roedela284ba52020-06-25 10:03:24 +02001565 svm_set_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001566
1567 /*
1568 * This is just a dummy VINTR to actually cause a vmexit to happen.
1569 * Actual injection of virtual interrupts happens through EVENTINJ.
1570 */
1571 control = &svm->vmcb->control;
1572 control->int_vector = 0x0;
1573 control->int_ctl &= ~V_INTR_PRIO_MASK;
1574 control->int_ctl |= V_IRQ_MASK |
1575 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedel06e78522020-06-25 10:03:23 +02001576 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001577}
1578
Alexander Graff0b85052008-11-25 20:17:01 +01001579static void svm_clear_vintr(struct vcpu_svm *svm)
1580{
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001581 const u32 mask = V_TPR_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK | V_INTR_MASKING_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02001582 svm_clr_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001583
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001584 /* Drop int_ctl fields related to VINTR injection. */
1585 svm->vmcb->control.int_ctl &= mask;
1586 if (is_guest_mode(&svm->vcpu)) {
Cathy Avery4995a362021-01-13 07:07:52 -05001587 svm->vmcb01.ptr->control.int_ctl &= mask;
Paolo Bonzinifb7333d2020-06-08 07:11:47 -04001588
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001589 WARN_ON((svm->vmcb->control.int_ctl & V_TPR_MASK) !=
1590 (svm->nested.ctl.int_ctl & V_TPR_MASK));
1591 svm->vmcb->control.int_ctl |= svm->nested.ctl.int_ctl & ~mask;
1592 }
1593
Joerg Roedel06e78522020-06-25 10:03:23 +02001594 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001595}
1596
Avi Kivity6aa8b732006-12-10 02:21:36 -08001597static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1598{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001599 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001600 struct vmcb_save_area *save01 = &to_svm(vcpu)->vmcb01.ptr->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001601
1602 switch (seg) {
1603 case VCPU_SREG_CS: return &save->cs;
1604 case VCPU_SREG_DS: return &save->ds;
1605 case VCPU_SREG_ES: return &save->es;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001606 case VCPU_SREG_FS: return &save01->fs;
1607 case VCPU_SREG_GS: return &save01->gs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001608 case VCPU_SREG_SS: return &save->ss;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001609 case VCPU_SREG_TR: return &save01->tr;
1610 case VCPU_SREG_LDTR: return &save01->ldtr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611 }
1612 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001613 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001614}
1615
1616static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1617{
1618 struct vmcb_seg *s = svm_seg(vcpu, seg);
1619
1620 return s->base;
1621}
1622
1623static void svm_get_segment(struct kvm_vcpu *vcpu,
1624 struct kvm_segment *var, int seg)
1625{
1626 struct vmcb_seg *s = svm_seg(vcpu, seg);
1627
1628 var->base = s->base;
1629 var->limit = s->limit;
1630 var->selector = s->selector;
1631 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1632 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1633 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1634 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1635 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1636 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1637 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301638
1639 /*
1640 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1641 * However, the SVM spec states that the G bit is not observed by the
1642 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1643 * So let's synthesize a legal G bit for all segments, this helps
1644 * running KVM nested. It also helps cross-vendor migration, because
1645 * Intel's vmentry has a check on the 'G' bit.
1646 */
1647 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001648
Joerg Roedele0231712010-02-24 18:59:10 +01001649 /*
1650 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001651 * for cross vendor migration purposes by "not present"
1652 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001653 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001654
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001655 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001656 case VCPU_SREG_TR:
1657 /*
1658 * Work around a bug where the busy flag in the tr selector
1659 * isn't exposed
1660 */
Amit Shahc0d09822008-10-27 09:04:18 +00001661 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001662 break;
1663 case VCPU_SREG_DS:
1664 case VCPU_SREG_ES:
1665 case VCPU_SREG_FS:
1666 case VCPU_SREG_GS:
1667 /*
1668 * The accessed bit must always be set in the segment
1669 * descriptor cache, although it can be cleared in the
1670 * descriptor, the cached bit always remains at 1. Since
1671 * Intel has a check on this, set it here to support
1672 * cross-vendor migration.
1673 */
1674 if (!var->unusable)
1675 var->type |= 0x1;
1676 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001677 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001678 /*
1679 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001680 * descriptor is left as 1, although the whole segment has
1681 * been made unusable. Clear it here to pass an Intel VMX
1682 * entry check when cross vendor migrating.
1683 */
1684 if (var->unusable)
1685 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001686 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001687 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001688 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001689 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690}
1691
Izik Eidus2e4d2652008-03-24 19:38:34 +02001692static int svm_get_cpl(struct kvm_vcpu *vcpu)
1693{
1694 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1695
1696 return save->cpl;
1697}
1698
Gleb Natapov89a27f42010-02-16 10:51:48 +02001699static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001701 struct vcpu_svm *svm = to_svm(vcpu);
1702
Gleb Natapov89a27f42010-02-16 10:51:48 +02001703 dt->size = svm->vmcb->save.idtr.limit;
1704 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001705}
1706
Gleb Natapov89a27f42010-02-16 10:51:48 +02001707static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001709 struct vcpu_svm *svm = to_svm(vcpu);
1710
Gleb Natapov89a27f42010-02-16 10:51:48 +02001711 svm->vmcb->save.idtr.limit = dt->size;
1712 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001713 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714}
1715
Gleb Natapov89a27f42010-02-16 10:51:48 +02001716static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001717{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001718 struct vcpu_svm *svm = to_svm(vcpu);
1719
Gleb Natapov89a27f42010-02-16 10:51:48 +02001720 dt->size = svm->vmcb->save.gdtr.limit;
1721 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001722}
1723
Gleb Natapov89a27f42010-02-16 10:51:48 +02001724static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001726 struct vcpu_svm *svm = to_svm(vcpu);
1727
Gleb Natapov89a27f42010-02-16 10:51:48 +02001728 svm->vmcb->save.gdtr.limit = dt->size;
1729 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001730 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001731}
1732
Joerg Roedel883b0a92020-03-24 10:41:52 +01001733void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001734{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001735 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001736 u64 hcr0 = cr0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001737
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001738#ifdef CONFIG_X86_64
Tom Lendackyf1c63662020-12-14 10:29:50 -05001739 if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001740 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001741 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001742 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743 }
1744
Mike Dayd77c26f2007-10-08 09:02:08 -04001745 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001746 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001747 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001748 }
1749 }
1750#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001751 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02001752
1753 if (!npt_enabled)
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001754 hcr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02001755
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02001756 /*
1757 * re-enable caching here because the QEMU bios
1758 * does not do it - this results in some delay at
1759 * reboot
1760 */
1761 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001762 hcr0 &= ~(X86_CR0_CD | X86_CR0_NW);
1763
1764 svm->vmcb->save.cr0 = hcr0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001765 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001766
1767 /*
1768 * SEV-ES guests must always keep the CR intercepts cleared. CR
1769 * tracking is done using the CR write traps.
1770 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001771 if (sev_es_guest(vcpu->kvm))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001772 return;
1773
1774 if (hcr0 == cr0) {
1775 /* Selective CR0 write remains on. */
1776 svm_clr_intercept(svm, INTERCEPT_CR0_READ);
1777 svm_clr_intercept(svm, INTERCEPT_CR0_WRITE);
1778 } else {
1779 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1780 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1781 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001782}
1783
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07001784static bool svm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1785{
1786 return true;
1787}
1788
1789void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001790{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07001791 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Paolo Bonzinidc924b02020-11-15 09:44:18 -05001792 unsigned long old_cr4 = vcpu->arch.cr4;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02001793
1794 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Sean Christophersonf55ac302020-03-20 14:28:12 -07001795 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02001796
Joerg Roedelec077262008-04-09 14:15:28 +02001797 vcpu->arch.cr4 = cr4;
1798 if (!npt_enabled)
1799 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02001800 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02001801 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedel06e78522020-06-25 10:03:23 +02001802 vmcb_mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Jim Mattson2259c172020-10-29 10:06:48 -07001803
1804 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
1805 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001806}
1807
1808static void svm_set_segment(struct kvm_vcpu *vcpu,
1809 struct kvm_segment *var, int seg)
1810{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001811 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001812 struct vmcb_seg *s = svm_seg(vcpu, seg);
1813
1814 s->base = var->base;
1815 s->limit = var->limit;
1816 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02001817 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1818 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1819 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1820 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
1821 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1822 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1823 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1824 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001825
1826 /*
1827 * This is always accurate, except if SYSRET returned to a segment
1828 * with SS.DPL != 3. Intel does not have this quirk, and always
1829 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1830 * would entail passing the CPL to userspace and back.
1831 */
1832 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02001833 /* This is symmetric with svm_get_segment() */
1834 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001835
Joerg Roedel06e78522020-06-25 10:03:23 +02001836 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001837}
1838
Jason Baronb6a7cc32021-01-14 22:27:54 -05001839static void svm_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001841 struct vcpu_svm *svm = to_svm(vcpu);
1842
Joerg Roedel18c918c2010-11-30 18:03:59 +01001843 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03001844
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001845 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001846 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01001847 set_exception_intercept(svm, BP_VECTOR);
Paolo Bonzini69869822020-07-10 17:48:06 +02001848 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001849}
1850
Tejun Heo0fe1e002009-10-29 22:34:14 +09001851static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001852{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001853 if (sd->next_asid > sd->max_asid) {
1854 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06001855 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001856 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001857 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858 }
1859
Cathy Avery193015a2021-01-12 11:43:13 -05001860 svm->current_vmcb->asid_generation = sd->asid_generation;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001861 svm->asid = sd->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862}
1863
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001864static void svm_set_dr6(struct vcpu_svm *svm, unsigned long value)
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001865{
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001866 struct vmcb *vmcb = svm->vmcb;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001867
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001868 if (svm->vcpu.arch.guest_state_protected)
1869 return;
1870
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001871 if (unlikely(value != vmcb->save.dr6)) {
1872 vmcb->save.dr6 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001873 vmcb_mark_dirty(vmcb, VMCB_DR);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001874 }
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001875}
1876
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001877static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1878{
1879 struct vcpu_svm *svm = to_svm(vcpu);
1880
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001881 if (vcpu->arch.guest_state_protected)
1882 return;
1883
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001884 get_debugreg(vcpu->arch.db[0], 0);
1885 get_debugreg(vcpu->arch.db[1], 1);
1886 get_debugreg(vcpu->arch.db[2], 2);
1887 get_debugreg(vcpu->arch.db[3], 3);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001888 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001889 * We cannot reset svm->vmcb->save.dr6 to DR6_ACTIVE_LOW here,
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001890 * because db_interception might need it. We can do it before vmentry.
1891 */
Paolo Bonzini5679b802020-05-04 11:28:25 -04001892 vcpu->arch.dr6 = svm->vmcb->save.dr6;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001893 vcpu->arch.dr7 = svm->vmcb->save.dr7;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001894 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1895 set_dr_intercepts(svm);
1896}
1897
Gleb Natapov020df072010-04-13 10:05:23 +03001898static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001899{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001900 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001901
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001902 if (vcpu->arch.guest_state_protected)
1903 return;
1904
Gleb Natapov020df072010-04-13 10:05:23 +03001905 svm->vmcb->save.dr7 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001906 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001907}
1908
Paolo Bonzini63129752021-03-02 14:40:39 -05001909static int pf_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001910{
Paolo Bonzini63129752021-03-02 14:40:39 -05001911 struct vcpu_svm *svm = to_svm(vcpu);
1912
Sean Christopherson6d1b8672021-03-04 17:10:56 -08001913 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001914 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001915
Paolo Bonzini63129752021-03-02 14:40:39 -05001916 return kvm_handle_page_fault(vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001917 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1918 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001919 svm->vmcb->control.insn_len);
1920}
1921
Paolo Bonzini63129752021-03-02 14:40:39 -05001922static int npf_interception(struct kvm_vcpu *vcpu)
Paolo Bonzinid0006532017-08-11 18:36:43 +02001923{
Paolo Bonzini63129752021-03-02 14:40:39 -05001924 struct vcpu_svm *svm = to_svm(vcpu);
1925
Brijesh Singh0ede79e2017-12-04 10:57:39 -06001926 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02001927 u64 error_code = svm->vmcb->control.exit_info_1;
1928
1929 trace_kvm_page_fault(fault_address, error_code);
Paolo Bonzini63129752021-03-02 14:40:39 -05001930 return kvm_mmu_page_fault(vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001931 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1932 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001933 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934}
1935
Paolo Bonzini63129752021-03-02 14:40:39 -05001936static int db_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001937{
Paolo Bonzini63129752021-03-02 14:40:39 -05001938 struct kvm_run *kvm_run = vcpu->run;
1939 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03001940
Paolo Bonzini63129752021-03-02 14:40:39 -05001941 if (!(vcpu->guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03001942 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02001943 !svm->nmi_singlestep) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001944 u32 payload = svm->vmcb->save.dr6 ^ DR6_ACTIVE_LOW;
Paolo Bonzini63129752021-03-02 14:40:39 -05001945 kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001946 return 1;
1947 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001948
Jan Kiszka6be7d302009-10-18 13:24:54 +02001949 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001950 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001951 /* Make sure we check for pending NMIs upon entry */
1952 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03001953 }
1954
Paolo Bonzini63129752021-03-02 14:40:39 -05001955 if (vcpu->guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01001956 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03001957 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Paolo Bonzinidee919d2020-05-04 09:34:10 -04001958 kvm_run->debug.arch.dr6 = svm->vmcb->save.dr6;
1959 kvm_run->debug.arch.dr7 = svm->vmcb->save.dr7;
Gleb Natapov44c11432009-05-11 13:35:52 +03001960 kvm_run->debug.arch.pc =
1961 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1962 kvm_run->debug.arch.exception = DB_VECTOR;
1963 return 0;
1964 }
1965
1966 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001967}
1968
Paolo Bonzini63129752021-03-02 14:40:39 -05001969static int bp_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001970{
Paolo Bonzini63129752021-03-02 14:40:39 -05001971 struct vcpu_svm *svm = to_svm(vcpu);
1972 struct kvm_run *kvm_run = vcpu->run;
Avi Kivity851ba692009-08-24 11:10:17 +03001973
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001974 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1975 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1976 kvm_run->debug.arch.exception = BP_VECTOR;
1977 return 0;
1978}
1979
Paolo Bonzini63129752021-03-02 14:40:39 -05001980static int ud_interception(struct kvm_vcpu *vcpu)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001981{
Paolo Bonzini63129752021-03-02 14:40:39 -05001982 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001983}
1984
Paolo Bonzini63129752021-03-02 14:40:39 -05001985static int ac_interception(struct kvm_vcpu *vcpu)
Eric Northup54a20552015-11-03 18:03:53 +01001986{
Paolo Bonzini63129752021-03-02 14:40:39 -05001987 kvm_queue_exception_e(vcpu, AC_VECTOR, 0);
Eric Northup54a20552015-11-03 18:03:53 +01001988 return 1;
1989}
1990
Joerg Roedel67ec6602010-05-17 14:43:35 +02001991static bool is_erratum_383(void)
1992{
1993 int err, i;
1994 u64 value;
1995
1996 if (!erratum_383_found)
1997 return false;
1998
1999 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2000 if (err)
2001 return false;
2002
2003 /* Bit 62 may or may not be set for this mce */
2004 value &= ~(1ULL << 62);
2005
2006 if (value != 0xb600000000010015ULL)
2007 return false;
2008
2009 /* Clear MCi_STATUS registers */
2010 for (i = 0; i < 6; ++i)
2011 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2012
2013 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2014 if (!err) {
2015 u32 low, high;
2016
2017 value &= ~(1ULL << 2);
2018 low = lower_32_bits(value);
2019 high = upper_32_bits(value);
2020
2021 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2022 }
2023
2024 /* Flush tlb to evict multi-match entries */
2025 __flush_tlb_all();
2026
2027 return true;
2028}
2029
Paolo Bonzini63129752021-03-02 14:40:39 -05002030static void svm_handle_mce(struct kvm_vcpu *vcpu)
Joerg Roedel53371b52008-04-09 14:15:30 +02002031{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002032 if (is_erratum_383()) {
2033 /*
2034 * Erratum 383 triggered. Guest state is corrupt so kill the
2035 * guest.
2036 */
2037 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2038
Paolo Bonzini63129752021-03-02 14:40:39 -05002039 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002040
2041 return;
2042 }
2043
Joerg Roedel53371b52008-04-09 14:15:30 +02002044 /*
2045 * On an #MC intercept the MCE handler is not called automatically in
2046 * the host. So do it by hand here.
2047 */
Uros Bizjak1c164cb2020-04-11 17:36:27 +02002048 kvm_machine_check();
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002049}
2050
Paolo Bonzini63129752021-03-02 14:40:39 -05002051static int mc_interception(struct kvm_vcpu *vcpu)
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002052{
Joerg Roedel53371b52008-04-09 14:15:30 +02002053 return 1;
2054}
2055
Paolo Bonzini63129752021-03-02 14:40:39 -05002056static int shutdown_interception(struct kvm_vcpu *vcpu)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002057{
Paolo Bonzini63129752021-03-02 14:40:39 -05002058 struct kvm_run *kvm_run = vcpu->run;
2059 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002060
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002061 /*
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002062 * The VM save area has already been encrypted so it
2063 * cannot be reinitialized - just terminate.
2064 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002065 if (sev_es_guest(vcpu->kvm))
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002066 return -EINVAL;
2067
2068 /*
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002069 * VMCB is undefined after a SHUTDOWN intercept
2070 * so reinitialize it.
2071 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002072 clear_page(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05002073 init_vmcb(vcpu);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002074
2075 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2076 return 0;
2077}
2078
Paolo Bonzini63129752021-03-02 14:40:39 -05002079static int io_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002080{
Paolo Bonzini63129752021-03-02 14:40:39 -05002081 struct vcpu_svm *svm = to_svm(vcpu);
Mike Dayd77c26f2007-10-08 09:02:08 -04002082 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002083 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002084 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002085
Paolo Bonzini63129752021-03-02 14:40:39 -05002086 ++vcpu->stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002087 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002088 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
2089 port = io_info >> 16;
2090 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -06002091
2092 if (string) {
2093 if (sev_es_guest(vcpu->kvm))
2094 return sev_es_string_io(svm, size, port, in);
2095 else
2096 return kvm_emulate_instruction(vcpu, 0);
2097 }
2098
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002099 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002100
Paolo Bonzini63129752021-03-02 14:40:39 -05002101 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002102}
2103
Paolo Bonzini63129752021-03-02 14:40:39 -05002104static int nmi_interception(struct kvm_vcpu *vcpu)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002105{
2106 return 1;
2107}
2108
Paolo Bonzini63129752021-03-02 14:40:39 -05002109static int intr_interception(struct kvm_vcpu *vcpu)
Joerg Roedela0698052008-04-30 17:56:01 +02002110{
Paolo Bonzini63129752021-03-02 14:40:39 -05002111 ++vcpu->stat.irq_exits;
Joerg Roedela0698052008-04-30 17:56:01 +02002112 return 1;
2113}
2114
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002115static int vmload_vmsave_interception(struct kvm_vcpu *vcpu, bool vmload)
Alexander Graf55426752008-11-25 20:17:06 +01002116{
Paolo Bonzini63129752021-03-02 14:40:39 -05002117 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002118 struct vmcb *vmcb12;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002119 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002120 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002121
Paolo Bonzini63129752021-03-02 14:40:39 -05002122 if (nested_svm_check_permissions(vcpu))
Alexander Graf55426752008-11-25 20:17:06 +01002123 return 1;
2124
Paolo Bonzini63129752021-03-02 14:40:39 -05002125 ret = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002126 if (ret) {
2127 if (ret == -EINVAL)
Paolo Bonzini63129752021-03-02 14:40:39 -05002128 kvm_inject_gp(vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02002129 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002130 }
2131
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002132 vmcb12 = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002133
Paolo Bonzini63129752021-03-02 14:40:39 -05002134 ret = kvm_skip_emulated_instruction(vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02002135
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002136 if (vmload)
2137 nested_svm_vmloadsave(vmcb12, svm->vmcb);
2138 else
2139 nested_svm_vmloadsave(svm->vmcb, vmcb12);
2140
Paolo Bonzini63129752021-03-02 14:40:39 -05002141 kvm_vcpu_unmap(vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002142
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002143 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002144}
2145
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002146static int vmload_interception(struct kvm_vcpu *vcpu)
2147{
2148 return vmload_vmsave_interception(vcpu, true);
2149}
2150
Paolo Bonzini63129752021-03-02 14:40:39 -05002151static int vmsave_interception(struct kvm_vcpu *vcpu)
Alexander Graf55426752008-11-25 20:17:06 +01002152{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002153 return vmload_vmsave_interception(vcpu, false);
Alexander Graf55426752008-11-25 20:17:06 +01002154}
2155
Paolo Bonzini63129752021-03-02 14:40:39 -05002156static int vmrun_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002157{
Paolo Bonzini63129752021-03-02 14:40:39 -05002158 if (nested_svm_check_permissions(vcpu))
Alexander Graf3d6368e2008-11-25 20:17:07 +01002159 return 1;
2160
Paolo Bonzini63129752021-03-02 14:40:39 -05002161 return nested_svm_vmrun(vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002162}
2163
Bandan Das82a11e9c2021-01-26 03:18:29 -05002164enum {
2165 NONE_SVM_INSTR,
2166 SVM_INSTR_VMRUN,
2167 SVM_INSTR_VMLOAD,
2168 SVM_INSTR_VMSAVE,
2169};
2170
2171/* Return NONE_SVM_INSTR if not SVM instrs, otherwise return decode result */
2172static int svm_instr_opcode(struct kvm_vcpu *vcpu)
2173{
2174 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
2175
2176 if (ctxt->b != 0x1 || ctxt->opcode_len != 2)
2177 return NONE_SVM_INSTR;
2178
2179 switch (ctxt->modrm) {
2180 case 0xd8: /* VMRUN */
2181 return SVM_INSTR_VMRUN;
2182 case 0xda: /* VMLOAD */
2183 return SVM_INSTR_VMLOAD;
2184 case 0xdb: /* VMSAVE */
2185 return SVM_INSTR_VMSAVE;
2186 default:
2187 break;
2188 }
2189
2190 return NONE_SVM_INSTR;
2191}
2192
2193static int emulate_svm_instr(struct kvm_vcpu *vcpu, int opcode)
2194{
Wei Huang14c2bf82021-01-26 03:18:31 -05002195 const int guest_mode_exit_codes[] = {
2196 [SVM_INSTR_VMRUN] = SVM_EXIT_VMRUN,
2197 [SVM_INSTR_VMLOAD] = SVM_EXIT_VMLOAD,
2198 [SVM_INSTR_VMSAVE] = SVM_EXIT_VMSAVE,
2199 };
Paolo Bonzini63129752021-03-02 14:40:39 -05002200 int (*const svm_instr_handlers[])(struct kvm_vcpu *vcpu) = {
Bandan Das82a11e9c2021-01-26 03:18:29 -05002201 [SVM_INSTR_VMRUN] = vmrun_interception,
2202 [SVM_INSTR_VMLOAD] = vmload_interception,
2203 [SVM_INSTR_VMSAVE] = vmsave_interception,
2204 };
2205 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002206 int ret;
Bandan Das82a11e9c2021-01-26 03:18:29 -05002207
Wei Huang14c2bf82021-01-26 03:18:31 -05002208 if (is_guest_mode(vcpu)) {
Sean Christopherson2df8d382021-02-23 16:56:26 -08002209 /* Returns '1' or -errno on failure, '0' on success. */
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08002210 ret = nested_svm_simple_vmexit(svm, guest_mode_exit_codes[opcode]);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002211 if (ret)
2212 return ret;
2213 return 1;
2214 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002215 return svm_instr_handlers[opcode](vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002216}
2217
2218/*
2219 * #GP handling code. Note that #GP can be triggered under the following two
2220 * cases:
2221 * 1) SVM VM-related instructions (VMRUN/VMSAVE/VMLOAD) that trigger #GP on
2222 * some AMD CPUs when EAX of these instructions are in the reserved memory
2223 * regions (e.g. SMM memory on host).
2224 * 2) VMware backdoor
2225 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002226static int gp_interception(struct kvm_vcpu *vcpu)
Bandan Das82a11e9c2021-01-26 03:18:29 -05002227{
Paolo Bonzini63129752021-03-02 14:40:39 -05002228 struct vcpu_svm *svm = to_svm(vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002229 u32 error_code = svm->vmcb->control.exit_info_1;
2230 int opcode;
2231
2232 /* Both #GP cases have zero error_code */
2233 if (error_code)
2234 goto reinject;
2235
2236 /* Decode the instruction for usage later */
2237 if (x86_decode_emulated_instruction(vcpu, 0, NULL, 0) != EMULATION_OK)
2238 goto reinject;
2239
2240 opcode = svm_instr_opcode(vcpu);
2241
2242 if (opcode == NONE_SVM_INSTR) {
2243 if (!enable_vmware_backdoor)
2244 goto reinject;
2245
2246 /*
2247 * VMware backdoor emulation on #GP interception only handles
2248 * IN{S}, OUT{S}, and RDPMC.
2249 */
Wei Huang14c2bf82021-01-26 03:18:31 -05002250 if (!is_guest_mode(vcpu))
2251 return kvm_emulate_instruction(vcpu,
Bandan Das82a11e9c2021-01-26 03:18:29 -05002252 EMULTYPE_VMWARE_GP | EMULTYPE_NO_DECODE);
2253 } else
2254 return emulate_svm_instr(vcpu, opcode);
2255
2256reinject:
2257 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2258 return 1;
2259}
2260
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002261void svm_set_gif(struct vcpu_svm *svm, bool value)
2262{
2263 if (value) {
2264 /*
2265 * If VGIF is enabled, the STGI intercept is only added to
2266 * detect the opening of the SMI/NMI window; remove it now.
2267 * Likewise, clear the VINTR intercept, we will set it
2268 * again while processing KVM_REQ_EVENT if needed.
2269 */
2270 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02002271 svm_clr_intercept(svm, INTERCEPT_STGI);
2272 if (svm_is_intercept(svm, INTERCEPT_VINTR))
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002273 svm_clear_vintr(svm);
2274
2275 enable_gif(svm);
2276 if (svm->vcpu.arch.smi_pending ||
2277 svm->vcpu.arch.nmi_pending ||
2278 kvm_cpu_has_injectable_intr(&svm->vcpu))
2279 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
2280 } else {
2281 disable_gif(svm);
2282
2283 /*
2284 * After a CLGI no interrupts should come. But if vGIF is
2285 * in use, we still rely on the VINTR intercept (rather than
2286 * STGI) to detect an open interrupt window.
2287 */
2288 if (!vgif_enabled(svm))
2289 svm_clear_vintr(svm);
2290 }
2291}
2292
Paolo Bonzini63129752021-03-02 14:40:39 -05002293static int stgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002294{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002295 int ret;
2296
Paolo Bonzini63129752021-03-02 14:40:39 -05002297 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002298 return 1;
2299
Paolo Bonzini63129752021-03-02 14:40:39 -05002300 ret = kvm_skip_emulated_instruction(vcpu);
2301 svm_set_gif(to_svm(vcpu), true);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002302 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002303}
2304
Paolo Bonzini63129752021-03-02 14:40:39 -05002305static int clgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002306{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002307 int ret;
2308
Paolo Bonzini63129752021-03-02 14:40:39 -05002309 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002310 return 1;
2311
Paolo Bonzini63129752021-03-02 14:40:39 -05002312 ret = kvm_skip_emulated_instruction(vcpu);
2313 svm_set_gif(to_svm(vcpu), false);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002314 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002315}
2316
Paolo Bonzini63129752021-03-02 14:40:39 -05002317static int invlpga_interception(struct kvm_vcpu *vcpu)
Alexander Grafff092382009-06-15 15:21:24 +02002318{
Paolo Bonzini63129752021-03-02 14:40:39 -05002319 trace_kvm_invlpga(to_svm(vcpu)->vmcb->save.rip, kvm_rcx_read(vcpu),
2320 kvm_rax_read(vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02002321
Alexander Grafff092382009-06-15 15:21:24 +02002322 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Paolo Bonzini63129752021-03-02 14:40:39 -05002323 kvm_mmu_invlpg(vcpu, kvm_rax_read(vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02002324
Paolo Bonzini63129752021-03-02 14:40:39 -05002325 return kvm_skip_emulated_instruction(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002326}
2327
Paolo Bonzini63129752021-03-02 14:40:39 -05002328static int skinit_interception(struct kvm_vcpu *vcpu)
Joerg Roedel532a46b2009-10-09 16:08:32 +02002329{
Paolo Bonzini63129752021-03-02 14:40:39 -05002330 trace_kvm_skinit(to_svm(vcpu)->vmcb->save.rip, kvm_rax_read(vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02002331
Paolo Bonzini63129752021-03-02 14:40:39 -05002332 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedel532a46b2009-10-09 16:08:32 +02002333 return 1;
2334}
2335
Paolo Bonzini63129752021-03-02 14:40:39 -05002336static int task_switch_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337{
Paolo Bonzini63129752021-03-02 14:40:39 -05002338 struct vcpu_svm *svm = to_svm(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02002339 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002340 int reason;
2341 int int_type = svm->vmcb->control.exit_int_info &
2342 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03002343 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002344 uint32_t type =
2345 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2346 uint32_t idt_v =
2347 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02002348 bool has_error_code = false;
2349 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02002350
2351 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002352
Izik Eidus37817f22008-03-24 23:14:53 +02002353 if (svm->vmcb->control.exit_info_2 &
2354 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002355 reason = TASK_SWITCH_IRET;
2356 else if (svm->vmcb->control.exit_info_2 &
2357 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2358 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002359 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002360 reason = TASK_SWITCH_GATE;
2361 else
2362 reason = TASK_SWITCH_CALL;
2363
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002364 if (reason == TASK_SWITCH_GATE) {
2365 switch (type) {
2366 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05002367 vcpu->arch.nmi_injected = false;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002368 break;
2369 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02002370 if (svm->vmcb->control.exit_info_2 &
2371 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2372 has_error_code = true;
2373 error_code =
2374 (u32)svm->vmcb->control.exit_info_2;
2375 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002376 kvm_clear_exception_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002377 break;
2378 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05002379 kvm_clear_interrupt_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002380 break;
2381 default:
2382 break;
2383 }
2384 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002385
Gleb Natapov8317c292009-04-12 13:37:02 +03002386 if (reason != TASK_SWITCH_GATE ||
2387 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2388 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002389 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Paolo Bonzini63129752021-03-02 14:40:39 -05002390 if (!skip_emulated_instruction(vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07002391 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002392 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002393
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01002394 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2395 int_vec = -1;
2396
Paolo Bonzini63129752021-03-02 14:40:39 -05002397 return kvm_task_switch(vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002398 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399}
2400
Paolo Bonzini63129752021-03-02 14:40:39 -05002401static int iret_interception(struct kvm_vcpu *vcpu)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002402{
Paolo Bonzini63129752021-03-02 14:40:39 -05002403 struct vcpu_svm *svm = to_svm(vcpu);
2404
2405 ++vcpu->stat.nmi_window_exits;
2406 vcpu->arch.hflags |= HF_IRET_MASK;
2407 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002408 svm_clr_intercept(svm, INTERCEPT_IRET);
Paolo Bonzini63129752021-03-02 14:40:39 -05002409 svm->nmi_iret_rip = kvm_rip_read(vcpu);
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002410 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002411 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002412 return 1;
2413}
2414
Paolo Bonzini63129752021-03-02 14:40:39 -05002415static int invlpg_interception(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03002416{
Andre Przywaradf4f31082010-12-21 11:12:06 +01002417 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002418 return kvm_emulate_instruction(vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01002419
Paolo Bonzini63129752021-03-02 14:40:39 -05002420 kvm_mmu_invlpg(vcpu, to_svm(vcpu)->vmcb->control.exit_info_1);
2421 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002422}
2423
Paolo Bonzini63129752021-03-02 14:40:39 -05002424static int emulate_on_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002425{
Paolo Bonzini63129752021-03-02 14:40:39 -05002426 return kvm_emulate_instruction(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427}
2428
Paolo Bonzini63129752021-03-02 14:40:39 -05002429static int rsm_interception(struct kvm_vcpu *vcpu)
Brijesh Singh7607b712018-02-19 10:14:44 -06002430{
Paolo Bonzini63129752021-03-02 14:40:39 -05002431 return kvm_emulate_instruction_from_buffer(vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06002432}
2433
Paolo Bonzini63129752021-03-02 14:40:39 -05002434static bool check_selective_cr0_intercepted(struct kvm_vcpu *vcpu,
Xiubo Li52eb5a62015-03-13 17:39:45 +08002435 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02002436{
Paolo Bonzini63129752021-03-02 14:40:39 -05002437 struct vcpu_svm *svm = to_svm(vcpu);
2438 unsigned long cr0 = vcpu->arch.cr0;
Joerg Roedel628afd22011-04-04 12:39:36 +02002439 bool ret = false;
Joerg Roedel628afd22011-04-04 12:39:36 +02002440
Paolo Bonzini63129752021-03-02 14:40:39 -05002441 if (!is_guest_mode(vcpu) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05002442 (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_SELECTIVE_CR0))))
Joerg Roedel628afd22011-04-04 12:39:36 +02002443 return false;
2444
2445 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2446 val &= ~SVM_CR0_SELECTIVE_MASK;
2447
2448 if (cr0 ^ val) {
2449 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2450 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2451 }
2452
2453 return ret;
2454}
2455
Andre Przywara7ff76d52010-12-21 11:12:04 +01002456#define CR_VALID (1ULL << 63)
2457
Paolo Bonzini63129752021-03-02 14:40:39 -05002458static int cr_interception(struct kvm_vcpu *vcpu)
Andre Przywara7ff76d52010-12-21 11:12:04 +01002459{
Paolo Bonzini63129752021-03-02 14:40:39 -05002460 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002461 int reg, cr;
2462 unsigned long val;
2463 int err;
2464
2465 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002466 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002467
2468 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
Paolo Bonzini63129752021-03-02 14:40:39 -05002469 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002470
2471 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06002472 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
2473 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
2474 else
2475 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002476
2477 err = 0;
2478 if (cr >= 16) { /* mov to cr */
2479 cr -= 16;
Paolo Bonzini63129752021-03-02 14:40:39 -05002480 val = kvm_register_read(vcpu, reg);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002481 trace_kvm_cr_write(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002482 switch (cr) {
2483 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002484 if (!check_selective_cr0_intercepted(vcpu, val))
2485 err = kvm_set_cr0(vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02002486 else
2487 return 1;
2488
Andre Przywara7ff76d52010-12-21 11:12:04 +01002489 break;
2490 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002491 err = kvm_set_cr3(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002492 break;
2493 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002494 err = kvm_set_cr4(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002495 break;
2496 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002497 err = kvm_set_cr8(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002498 break;
2499 default:
2500 WARN(1, "unhandled write to CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002501 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002502 return 1;
2503 }
2504 } else { /* mov from cr */
2505 switch (cr) {
2506 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002507 val = kvm_read_cr0(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002508 break;
2509 case 2:
Paolo Bonzini63129752021-03-02 14:40:39 -05002510 val = vcpu->arch.cr2;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002511 break;
2512 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002513 val = kvm_read_cr3(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002514 break;
2515 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002516 val = kvm_read_cr4(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002517 break;
2518 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002519 val = kvm_get_cr8(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002520 break;
2521 default:
2522 WARN(1, "unhandled read from CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002523 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002524 return 1;
2525 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002526 kvm_register_write(vcpu, reg, val);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002527 trace_kvm_cr_read(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002528 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002529 return kvm_complete_insn_gp(vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002530}
2531
Paolo Bonzini63129752021-03-02 14:40:39 -05002532static int cr_trap(struct kvm_vcpu *vcpu)
Tom Lendackyf27ad382020-12-10 11:09:56 -06002533{
Paolo Bonzini63129752021-03-02 14:40:39 -05002534 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002535 unsigned long old_value, new_value;
2536 unsigned int cr;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002537 int ret = 0;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002538
2539 new_value = (unsigned long)svm->vmcb->control.exit_info_1;
2540
2541 cr = svm->vmcb->control.exit_code - SVM_EXIT_CR0_WRITE_TRAP;
2542 switch (cr) {
2543 case 0:
2544 old_value = kvm_read_cr0(vcpu);
2545 svm_set_cr0(vcpu, new_value);
2546
2547 kvm_post_set_cr0(vcpu, old_value, new_value);
2548 break;
Tom Lendacky5b51cb12020-12-10 11:09:57 -06002549 case 4:
2550 old_value = kvm_read_cr4(vcpu);
2551 svm_set_cr4(vcpu, new_value);
2552
2553 kvm_post_set_cr4(vcpu, old_value, new_value);
2554 break;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002555 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002556 ret = kvm_set_cr8(vcpu, new_value);
Tom Lendackyd1949b92020-12-10 11:09:58 -06002557 break;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002558 default:
2559 WARN(1, "unhandled CR%d write trap", cr);
2560 kvm_queue_exception(vcpu, UD_VECTOR);
2561 return 1;
2562 }
2563
Tom Lendackyd1949b92020-12-10 11:09:58 -06002564 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002565}
2566
Paolo Bonzini63129752021-03-02 14:40:39 -05002567static int dr_interception(struct kvm_vcpu *vcpu)
Andre Przywaracae37972010-12-21 11:12:05 +01002568{
Paolo Bonzini63129752021-03-02 14:40:39 -05002569 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002570 int reg, dr;
2571 unsigned long val;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002572 int err = 0;
Andre Przywaracae37972010-12-21 11:12:05 +01002573
Paolo Bonzini63129752021-03-02 14:40:39 -05002574 if (vcpu->guest_debug == 0) {
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002575 /*
2576 * No more DR vmexits; force a reload of the debug registers
2577 * and reenter on this instruction. The next vmexit will
2578 * retrieve the full state of the debug registers.
2579 */
2580 clr_dr_intercepts(svm);
Paolo Bonzini63129752021-03-02 14:40:39 -05002581 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002582 return 1;
2583 }
2584
Andre Przywaracae37972010-12-21 11:12:05 +01002585 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002586 return emulate_on_interception(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002587
2588 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2589 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002590 if (dr >= 16) { /* mov to DRn */
2591 dr -= 16;
Paolo Bonzini63129752021-03-02 14:40:39 -05002592 val = kvm_register_read(vcpu, reg);
2593 err = kvm_set_dr(vcpu, dr, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002594 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05002595 kvm_get_dr(vcpu, dr, &val);
2596 kvm_register_write(vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002597 }
2598
Paolo Bonzini63129752021-03-02 14:40:39 -05002599 return kvm_complete_insn_gp(vcpu, err);
Andre Przywaracae37972010-12-21 11:12:05 +01002600}
2601
Paolo Bonzini63129752021-03-02 14:40:39 -05002602static int cr8_write_interception(struct kvm_vcpu *vcpu)
Joerg Roedel1d075432007-12-06 21:02:25 +01002603{
Andre Przywaraeea1cff2010-12-21 11:12:00 +01002604 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03002605
Paolo Bonzini63129752021-03-02 14:40:39 -05002606 u8 cr8_prev = kvm_get_cr8(vcpu);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002607 /* instruction emulation calls kvm_set_cr8() */
Paolo Bonzini63129752021-03-02 14:40:39 -05002608 r = cr_interception(vcpu);
2609 if (lapic_in_kernel(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002610 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002611 if (cr8_prev <= kvm_get_cr8(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002612 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002613 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Joerg Roedel1d075432007-12-06 21:02:25 +01002614 return 0;
2615}
2616
Paolo Bonzini63129752021-03-02 14:40:39 -05002617static int efer_trap(struct kvm_vcpu *vcpu)
Tom Lendacky2985afb2020-12-10 11:09:55 -06002618{
2619 struct msr_data msr_info;
2620 int ret;
2621
2622 /*
2623 * Clear the EFER_SVME bit from EFER. The SVM code always sets this
2624 * bit in svm_set_efer(), but __kvm_valid_efer() checks it against
2625 * whether the guest has X86_FEATURE_SVM - this avoids a failure if
2626 * the guest doesn't have X86_FEATURE_SVM.
2627 */
2628 msr_info.host_initiated = false;
2629 msr_info.index = MSR_EFER;
Paolo Bonzini63129752021-03-02 14:40:39 -05002630 msr_info.data = to_svm(vcpu)->vmcb->control.exit_info_1 & ~EFER_SVME;
2631 ret = kvm_set_msr_common(vcpu, &msr_info);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002632
Paolo Bonzini63129752021-03-02 14:40:39 -05002633 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002634}
2635
Tom Lendacky801e4592018-02-21 13:39:51 -06002636static int svm_get_msr_feature(struct kvm_msr_entry *msr)
2637{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002638 msr->data = 0;
2639
2640 switch (msr->index) {
2641 case MSR_F10H_DECFG:
2642 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
2643 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
2644 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002645 case MSR_IA32_PERF_CAPABILITIES:
2646 return 0;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002647 default:
Peter Xu12bc2132020-06-22 18:04:42 -04002648 return KVM_MSR_RET_INVALID;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002649 }
2650
2651 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06002652}
2653
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002654static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002656 struct vcpu_svm *svm = to_svm(vcpu);
2657
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002658 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04002659 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002660 msr_info->data = svm->vmcb01.ptr->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002661 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08002662#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002663 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002664 msr_info->data = svm->vmcb01.ptr->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665 break;
2666 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002667 msr_info->data = svm->vmcb01.ptr->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668 break;
2669 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002670 msr_info->data = svm->vmcb01.ptr->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002671 break;
2672 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002673 msr_info->data = svm->vmcb01.ptr->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674 break;
2675#endif
2676 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002677 msr_info->data = svm->vmcb01.ptr->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002678 break;
2679 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002680 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681 break;
2682 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002683 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002685 case MSR_TSC_AUX:
2686 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2687 return 1;
2688 msr_info->data = svm->tsc_aux;
2689 break;
Joerg Roedele0231712010-02-24 18:59:10 +01002690 /*
2691 * Nobody will change the following 5 values in the VMCB so we can
2692 * safely return them on rdmsr. They will always be 0 until LBRV is
2693 * implemented.
2694 */
Joerg Roedela2938c82008-02-13 16:30:28 +01002695 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002696 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01002697 break;
2698 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002699 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002700 break;
2701 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002702 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002703 break;
2704 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002705 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002706 break;
2707 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002708 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002709 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002710 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002711 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002712 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002713 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002714 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002715 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002716 case MSR_IA32_SPEC_CTRL:
2717 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002718 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002719 return 1;
2720
Babu Mogerd00b99c2021-02-17 10:56:04 -05002721 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2722 msr_info->data = svm->vmcb->save.spec_ctrl;
2723 else
2724 msr_info->data = svm->spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002725 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002726 case MSR_AMD64_VIRT_SPEC_CTRL:
2727 if (!msr_info->host_initiated &&
2728 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2729 return 1;
2730
2731 msr_info->data = svm->virt_spec_ctrl;
2732 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01002733 case MSR_F15H_IC_CFG: {
2734
2735 int family, model;
2736
2737 family = guest_cpuid_family(vcpu);
2738 model = guest_cpuid_model(vcpu);
2739
2740 if (family < 0 || model < 0)
2741 return kvm_get_msr_common(vcpu, msr_info);
2742
2743 msr_info->data = 0;
2744
2745 if (family == 0x15 &&
2746 (model >= 0x2 && model < 0x20))
2747 msr_info->data = 0x1E;
2748 }
2749 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002750 case MSR_F10H_DECFG:
2751 msr_info->data = svm->msr_decfg;
2752 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002753 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002754 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002755 }
2756 return 0;
2757}
2758
Tom Lendackyf1c63662020-12-14 10:29:50 -05002759static int svm_complete_emulated_msr(struct kvm_vcpu *vcpu, int err)
2760{
2761 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini63129752021-03-02 14:40:39 -05002762 if (!sev_es_guest(vcpu->kvm) || !err)
2763 return kvm_complete_insn_gp(vcpu, err);
Tom Lendackyf1c63662020-12-14 10:29:50 -05002764
2765 ghcb_set_sw_exit_info_1(svm->ghcb, 1);
2766 ghcb_set_sw_exit_info_2(svm->ghcb,
2767 X86_TRAP_GP |
2768 SVM_EVTINJ_TYPE_EXEPT |
2769 SVM_EVTINJ_VALID);
2770 return 1;
2771}
2772
Joerg Roedel4a810182010-02-24 18:59:15 +01002773static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2774{
2775 struct vcpu_svm *svm = to_svm(vcpu);
2776 int svm_dis, chg_mask;
2777
2778 if (data & ~SVM_VM_CR_VALID_MASK)
2779 return 1;
2780
2781 chg_mask = SVM_VM_CR_VALID_MASK;
2782
2783 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2784 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2785
2786 svm->nested.vm_cr_msr &= ~chg_mask;
2787 svm->nested.vm_cr_msr |= (data & chg_mask);
2788
2789 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2790
2791 /* check for svm_disable while efer.svme is set */
2792 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2793 return 1;
2794
2795 return 0;
2796}
2797
Will Auld8fe8ab42012-11-29 12:42:12 -08002798static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002800 struct vcpu_svm *svm = to_svm(vcpu);
2801
Will Auld8fe8ab42012-11-29 12:42:12 -08002802 u32 ecx = msr->index;
2803 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002804 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02002805 case MSR_IA32_CR_PAT:
2806 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2807 return 1;
2808 vcpu->arch.pat = data;
Cathy Avery4995a362021-01-13 07:07:52 -05002809 svm->vmcb01.ptr->save.g_pat = data;
2810 if (is_guest_mode(vcpu))
2811 nested_vmcb02_compute_g_pat(svm);
Joerg Roedel06e78522020-06-25 10:03:23 +02002812 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Paolo Bonzini15038e12017-10-26 09:13:27 +02002813 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002814 case MSR_IA32_SPEC_CTRL:
2815 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002816 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002817 return 1;
2818
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002819 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002820 return 1;
2821
Babu Mogerd00b99c2021-02-17 10:56:04 -05002822 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2823 svm->vmcb->save.spec_ctrl = data;
2824 else
2825 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002826 if (!data)
2827 break;
2828
2829 /*
2830 * For non-nested:
2831 * When it's written (to non-zero) for the first time, pass
2832 * it through.
2833 *
2834 * For nested:
2835 * The handling of the MSR bitmap for L2 guests is done in
2836 * nested_svm_vmrun_msrpm.
2837 * We update the L1 MSR bit as well since it will end up
2838 * touching the MSR anyway now.
2839 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002840 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002841 break;
Ashok Raj15d45072018-02-01 22:59:43 +01002842 case MSR_IA32_PRED_CMD:
2843 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002844 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002845 return 1;
2846
2847 if (data & ~PRED_CMD_IBPB)
2848 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002849 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002850 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002851 if (!data)
2852 break;
2853
2854 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002855 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
Ashok Raj15d45072018-02-01 22:59:43 +01002856 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002857 case MSR_AMD64_VIRT_SPEC_CTRL:
2858 if (!msr->host_initiated &&
2859 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2860 return 1;
2861
2862 if (data & ~SPEC_CTRL_SSBD)
2863 return 1;
2864
2865 svm->virt_spec_ctrl = data;
2866 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002867 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002868 svm->vmcb01.ptr->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08002870#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002871 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002872 svm->vmcb01.ptr->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873 break;
2874 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002875 svm->vmcb01.ptr->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876 break;
2877 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002878 svm->vmcb01.ptr->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879 break;
2880 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002881 svm->vmcb01.ptr->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882 break;
2883#endif
2884 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002885 svm->vmcb01.ptr->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886 break;
2887 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02002888 svm->sysenter_eip = data;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002889 svm->vmcb01.ptr->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890 break;
2891 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02002892 svm->sysenter_esp = data;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002893 svm->vmcb01.ptr->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002895 case MSR_TSC_AUX:
2896 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2897 return 1;
2898
2899 /*
2900 * This is rare, so we update the MSR here instead of using
2901 * direct_access_msrs. Doing that would require a rdmsr in
2902 * svm_vcpu_put.
2903 */
2904 svm->tsc_aux = data;
2905 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
2906 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01002907 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02002908 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002909 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
2910 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002911 break;
2912 }
2913 if (data & DEBUGCTL_RESERVED_BITS)
2914 return 1;
2915
2916 svm->vmcb->save.dbgctl = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002917 vmcb_mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002918 if (data & (1ULL<<0))
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002919 svm_enable_lbrv(vcpu);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002920 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002921 svm_disable_lbrv(vcpu);
Joerg Roedela2938c82008-02-13 16:30:28 +01002922 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002923 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002924 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002925 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002926 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01002927 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002928 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03002929 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002930 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002931 case MSR_F10H_DECFG: {
2932 struct kvm_msr_entry msr_entry;
2933
2934 msr_entry.index = msr->index;
2935 if (svm_get_msr_feature(&msr_entry))
2936 return 1;
2937
2938 /* Check the supported bits */
2939 if (data & ~msr_entry.data)
2940 return 1;
2941
2942 /* Don't allow the guest to change a bit, #GP */
2943 if (!msr->host_initiated && (data ^ msr_entry.data))
2944 return 1;
2945
2946 svm->msr_decfg = data;
2947 break;
2948 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002949 case MSR_IA32_APICBASE:
2950 if (kvm_vcpu_apicv_active(vcpu))
2951 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002952 fallthrough;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08002954 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955 }
2956 return 0;
2957}
2958
Paolo Bonzini63129752021-03-02 14:40:39 -05002959static int msr_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002960{
Paolo Bonzini63129752021-03-02 14:40:39 -05002961 if (to_svm(vcpu)->vmcb->control.exit_info_1)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002962 return kvm_emulate_wrmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963 else
Sean Christopherson5ff3a352021-02-04 16:57:47 -08002964 return kvm_emulate_rdmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965}
2966
Paolo Bonzini63129752021-03-02 14:40:39 -05002967static int interrupt_window_interception(struct kvm_vcpu *vcpu)
Dor Laorc1150d82007-01-05 16:36:24 -08002968{
Paolo Bonzini63129752021-03-02 14:40:39 -05002969 kvm_make_request(KVM_REQ_EVENT, vcpu);
2970 svm_clear_vintr(to_svm(vcpu));
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002971
2972 /*
2973 * For AVIC, the only reason to end up here is ExtINTs.
2974 * In this case AVIC was temporarily disabled for
2975 * requesting the IRQ window and we have to re-enable it.
2976 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002977 svm_toggle_avic_for_irq_window(vcpu, true);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002978
Paolo Bonzini63129752021-03-02 14:40:39 -05002979 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002980 return 1;
2981}
2982
Paolo Bonzini63129752021-03-02 14:40:39 -05002983static int pause_interception(struct kvm_vcpu *vcpu)
Mark Langsdorf565d0992009-10-06 14:25:02 -05002984{
Tom Lendackyf1c63662020-12-14 10:29:50 -05002985 bool in_kernel;
2986
2987 /*
2988 * CPL is not made available for an SEV-ES guest, therefore
2989 * vcpu->arch.preempted_in_kernel can never be true. Just
2990 * set in_kernel to false as well.
2991 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002992 in_kernel = !sev_es_guest(vcpu->kvm) && svm_get_cpl(vcpu) == 0;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002993
Wanpeng Li830f01b2020-07-31 11:12:21 +08002994 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04002995 grow_ple_window(vcpu);
2996
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002997 kvm_vcpu_on_spin(vcpu, in_kernel);
Sean Christophersonc8781fe2021-02-04 16:57:50 -08002998 return kvm_skip_emulated_instruction(vcpu);
Mark Langsdorf565d0992009-10-06 14:25:02 -05002999}
3000
Paolo Bonzini63129752021-03-02 14:40:39 -05003001static int invpcid_interception(struct kvm_vcpu *vcpu)
Babu Moger4407a792020-09-11 14:29:19 -05003002{
Paolo Bonzini63129752021-03-02 14:40:39 -05003003 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger4407a792020-09-11 14:29:19 -05003004 unsigned long type;
3005 gva_t gva;
3006
3007 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
3008 kvm_queue_exception(vcpu, UD_VECTOR);
3009 return 1;
3010 }
3011
3012 /*
3013 * For an INVPCID intercept:
3014 * EXITINFO1 provides the linear address of the memory operand.
3015 * EXITINFO2 provides the contents of the register operand.
3016 */
3017 type = svm->vmcb->control.exit_info_2;
3018 gva = svm->vmcb->control.exit_info_1;
3019
3020 if (type > 3) {
3021 kvm_inject_gp(vcpu, 0);
3022 return 1;
3023 }
3024
3025 return kvm_handle_invpcid(vcpu, type, gva);
3026}
3027
Paolo Bonzini63129752021-03-02 14:40:39 -05003028static int (*const svm_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01003029 [SVM_EXIT_READ_CR0] = cr_interception,
3030 [SVM_EXIT_READ_CR3] = cr_interception,
3031 [SVM_EXIT_READ_CR4] = cr_interception,
3032 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06003033 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02003034 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01003035 [SVM_EXIT_WRITE_CR3] = cr_interception,
3036 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003037 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01003038 [SVM_EXIT_READ_DR0] = dr_interception,
3039 [SVM_EXIT_READ_DR1] = dr_interception,
3040 [SVM_EXIT_READ_DR2] = dr_interception,
3041 [SVM_EXIT_READ_DR3] = dr_interception,
3042 [SVM_EXIT_READ_DR4] = dr_interception,
3043 [SVM_EXIT_READ_DR5] = dr_interception,
3044 [SVM_EXIT_READ_DR6] = dr_interception,
3045 [SVM_EXIT_READ_DR7] = dr_interception,
3046 [SVM_EXIT_WRITE_DR0] = dr_interception,
3047 [SVM_EXIT_WRITE_DR1] = dr_interception,
3048 [SVM_EXIT_WRITE_DR2] = dr_interception,
3049 [SVM_EXIT_WRITE_DR3] = dr_interception,
3050 [SVM_EXIT_WRITE_DR4] = dr_interception,
3051 [SVM_EXIT_WRITE_DR5] = dr_interception,
3052 [SVM_EXIT_WRITE_DR6] = dr_interception,
3053 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003054 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3055 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003056 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003057 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003058 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01003059 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02003060 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003061 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02003062 [SVM_EXIT_NMI] = nmi_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003063 [SVM_EXIT_SMI] = kvm_emulate_as_nop,
3064 [SVM_EXIT_INIT] = kvm_emulate_as_nop,
Dor Laorc1150d82007-01-05 16:36:24 -08003065 [SVM_EXIT_VINTR] = interrupt_window_interception,
Sean Christopherson32c23c72021-02-04 16:57:49 -08003066 [SVM_EXIT_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003067 [SVM_EXIT_CPUID] = kvm_emulate_cpuid,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003068 [SVM_EXIT_IRET] = iret_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003069 [SVM_EXIT_INVD] = kvm_emulate_invd,
Mark Langsdorf565d0992009-10-06 14:25:02 -05003070 [SVM_EXIT_PAUSE] = pause_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003071 [SVM_EXIT_HLT] = kvm_emulate_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003072 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02003073 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003074 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003075 [SVM_EXIT_MSR] = msr_interception,
3076 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08003077 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01003078 [SVM_EXIT_VMRUN] = vmrun_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003079 [SVM_EXIT_VMMCALL] = kvm_emulate_hypercall,
Alexander Graf55426752008-11-25 20:17:06 +01003080 [SVM_EXIT_VMLOAD] = vmload_interception,
3081 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01003082 [SVM_EXIT_STGI] = stgi_interception,
3083 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02003084 [SVM_EXIT_SKINIT] = skinit_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003085 [SVM_EXIT_WBINVD] = kvm_emulate_wbinvd,
3086 [SVM_EXIT_MONITOR] = kvm_emulate_monitor,
3087 [SVM_EXIT_MWAIT] = kvm_emulate_mwait,
Sean Christopherson92f98952021-02-04 16:57:46 -08003088 [SVM_EXIT_XSETBV] = kvm_emulate_xsetbv,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003089 [SVM_EXIT_RDPRU] = kvm_handle_invalid_op,
Tom Lendacky2985afb2020-12-10 11:09:55 -06003090 [SVM_EXIT_EFER_WRITE_TRAP] = efer_trap,
Tom Lendackyf27ad382020-12-10 11:09:56 -06003091 [SVM_EXIT_CR0_WRITE_TRAP] = cr_trap,
Tom Lendacky5b51cb12020-12-10 11:09:57 -06003092 [SVM_EXIT_CR4_WRITE_TRAP] = cr_trap,
Tom Lendackyd1949b92020-12-10 11:09:58 -06003093 [SVM_EXIT_CR8_WRITE_TRAP] = cr_trap,
Babu Moger4407a792020-09-11 14:29:19 -05003094 [SVM_EXIT_INVPCID] = invpcid_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02003095 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06003096 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003097 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
3098 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Tom Lendacky291bd202020-12-10 11:09:47 -06003099 [SVM_EXIT_VMGEXIT] = sev_handle_vmgexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003100};
3101
Joe Perchesae8cc052011-04-24 22:00:50 -07003102static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02003103{
3104 struct vcpu_svm *svm = to_svm(vcpu);
3105 struct vmcb_control_area *control = &svm->vmcb->control;
3106 struct vmcb_save_area *save = &svm->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003107 struct vmcb_save_area *save01 = &svm->vmcb01.ptr->save;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003108
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02003109 if (!dump_invalid_vmcb) {
3110 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
3111 return;
3112 }
3113
Joerg Roedel3f10c842010-05-05 16:04:42 +02003114 pr_err("VMCB Control Area:\n");
Babu Moger03bfeeb2020-09-11 14:28:05 -05003115 pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
3116 pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
Babu Moger30abaa882020-09-11 14:28:12 -05003117 pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
3118 pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
Babu Moger9780d512020-09-11 14:28:20 -05003119 pr_err("%-20s%08x\n", "exceptions:", control->intercepts[INTERCEPT_EXCEPTION]);
Babu Mogerc62e2e92020-09-11 14:28:28 -05003120 pr_err("%-20s%08x %08x\n", "intercepts:",
3121 control->intercepts[INTERCEPT_WORD3],
3122 control->intercepts[INTERCEPT_WORD4]);
Joe Perchesae8cc052011-04-24 22:00:50 -07003123 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04003124 pr_err("%-20s%d\n", "pause filter threshold:",
3125 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07003126 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
3127 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
3128 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
3129 pr_err("%-20s%d\n", "asid:", control->asid);
3130 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
3131 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
3132 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
3133 pr_err("%-20s%08x\n", "int_state:", control->int_state);
3134 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
3135 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
3136 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3137 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3138 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3139 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3140 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003141 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Tom Lendacky291bd202020-12-10 11:09:47 -06003142 pr_err("%-20s%016llx\n", "ghcb:", control->ghcb_gpa);
Joe Perchesae8cc052011-04-24 22:00:50 -07003143 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3144 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003145 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07003146 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003147 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
3148 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
3149 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Tom Lendacky376c6d22020-12-10 11:10:06 -06003150 pr_err("%-20s%016llx\n", "vmsa_pa:", control->vmsa_pa);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003151 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07003152 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3153 "es:",
3154 save->es.selector, save->es.attrib,
3155 save->es.limit, save->es.base);
3156 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3157 "cs:",
3158 save->cs.selector, save->cs.attrib,
3159 save->cs.limit, save->cs.base);
3160 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3161 "ss:",
3162 save->ss.selector, save->ss.attrib,
3163 save->ss.limit, save->ss.base);
3164 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3165 "ds:",
3166 save->ds.selector, save->ds.attrib,
3167 save->ds.limit, save->ds.base);
3168 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3169 "fs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003170 save01->fs.selector, save01->fs.attrib,
3171 save01->fs.limit, save01->fs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003172 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3173 "gs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003174 save01->gs.selector, save01->gs.attrib,
3175 save01->gs.limit, save01->gs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003176 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3177 "gdtr:",
3178 save->gdtr.selector, save->gdtr.attrib,
3179 save->gdtr.limit, save->gdtr.base);
3180 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3181 "ldtr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003182 save01->ldtr.selector, save01->ldtr.attrib,
3183 save01->ldtr.limit, save01->ldtr.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003184 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3185 "idtr:",
3186 save->idtr.selector, save->idtr.attrib,
3187 save->idtr.limit, save->idtr.base);
3188 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3189 "tr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003190 save01->tr.selector, save01->tr.attrib,
3191 save01->tr.limit, save01->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003192 pr_err("cpl: %d efer: %016llx\n",
3193 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07003194 pr_err("%-15s %016llx %-13s %016llx\n",
3195 "cr0:", save->cr0, "cr2:", save->cr2);
3196 pr_err("%-15s %016llx %-13s %016llx\n",
3197 "cr3:", save->cr3, "cr4:", save->cr4);
3198 pr_err("%-15s %016llx %-13s %016llx\n",
3199 "dr6:", save->dr6, "dr7:", save->dr7);
3200 pr_err("%-15s %016llx %-13s %016llx\n",
3201 "rip:", save->rip, "rflags:", save->rflags);
3202 pr_err("%-15s %016llx %-13s %016llx\n",
3203 "rsp:", save->rsp, "rax:", save->rax);
3204 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003205 "star:", save01->star, "lstar:", save01->lstar);
Joe Perchesae8cc052011-04-24 22:00:50 -07003206 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003207 "cstar:", save01->cstar, "sfmask:", save01->sfmask);
Joe Perchesae8cc052011-04-24 22:00:50 -07003208 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003209 "kernel_gs_base:", save01->kernel_gs_base,
3210 "sysenter_cs:", save01->sysenter_cs);
Joe Perchesae8cc052011-04-24 22:00:50 -07003211 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003212 "sysenter_esp:", save01->sysenter_esp,
3213 "sysenter_eip:", save01->sysenter_eip);
Joe Perchesae8cc052011-04-24 22:00:50 -07003214 pr_err("%-15s %016llx %-13s %016llx\n",
3215 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3216 pr_err("%-15s %016llx %-13s %016llx\n",
3217 "br_from:", save->br_from, "br_to:", save->br_to);
3218 pr_err("%-15s %016llx %-13s %016llx\n",
3219 "excp_from:", save->last_excp_from,
3220 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003221}
3222
Tom Lendackye9093fd42020-12-10 11:09:46 -06003223static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code)
3224{
3225 if (exit_code < ARRAY_SIZE(svm_exit_handlers) &&
3226 svm_exit_handlers[exit_code])
3227 return 0;
3228
3229 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%llx\n", exit_code);
3230 dump_vmcb(vcpu);
3231 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3232 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
3233 vcpu->run->internal.ndata = 2;
3234 vcpu->run->internal.data[0] = exit_code;
3235 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
3236
3237 return -EINVAL;
3238}
3239
Paolo Bonzini63129752021-03-02 14:40:39 -05003240int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code)
Tom Lendackye9093fd42020-12-10 11:09:46 -06003241{
Paolo Bonzini63129752021-03-02 14:40:39 -05003242 if (svm_handle_invalid_exit(vcpu, exit_code))
Tom Lendackye9093fd42020-12-10 11:09:46 -06003243 return 0;
3244
3245#ifdef CONFIG_RETPOLINE
3246 if (exit_code == SVM_EXIT_MSR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003247 return msr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003248 else if (exit_code == SVM_EXIT_VINTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003249 return interrupt_window_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003250 else if (exit_code == SVM_EXIT_INTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003251 return intr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003252 else if (exit_code == SVM_EXIT_HLT)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003253 return kvm_emulate_halt(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003254 else if (exit_code == SVM_EXIT_NPF)
Paolo Bonzini63129752021-03-02 14:40:39 -05003255 return npf_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003256#endif
Paolo Bonzini63129752021-03-02 14:40:39 -05003257 return svm_exit_handlers[exit_code](vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003258}
3259
Sean Christopherson235ba742020-09-23 13:13:46 -07003260static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
3261 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02003262{
3263 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3264
3265 *info1 = control->exit_info_1;
3266 *info2 = control->exit_info_2;
Sean Christopherson235ba742020-09-23 13:13:46 -07003267 *intr_info = control->exit_int_info;
3268 if ((*intr_info & SVM_EXITINTINFO_VALID) &&
3269 (*intr_info & SVM_EXITINTINFO_VALID_ERR))
3270 *error_code = control->exit_int_info_err;
3271 else
3272 *error_code = 0;
Avi Kivity586f9602010-11-18 13:09:54 +02003273}
3274
Wanpeng Li404d5d72020-04-28 14:23:25 +08003275static int handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003276{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003277 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003278 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003279 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003280
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01003281 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
3282
Tom Lendackyf1c63662020-12-14 10:29:50 -05003283 /* SEV-ES guests must use the CR write traps to track CR registers. */
3284 if (!sev_es_guest(vcpu->kvm)) {
3285 if (!svm_is_intercept(svm, INTERCEPT_CR0_WRITE))
3286 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3287 if (npt_enabled)
3288 vcpu->arch.cr3 = svm->vmcb->save.cr3;
3289 }
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003290
Joerg Roedel20307532010-11-29 17:51:48 +01003291 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02003292 int vmexit;
3293
Sean Christophersoncc167bd2020-09-23 13:13:48 -07003294 trace_kvm_nested_vmexit(exit_code, vcpu, KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02003295
Joerg Roedel410e4d52009-08-07 11:49:44 +02003296 vmexit = nested_svm_exit_special(svm);
3297
3298 if (vmexit == NESTED_EXIT_CONTINUE)
3299 vmexit = nested_svm_exit_handled(svm);
3300
3301 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01003302 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01003303 }
3304
Avi Kivity04d2cc72007-09-10 18:10:54 +03003305 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3306 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3307 kvm_run->fail_entry.hardware_entry_failure_reason
3308 = svm->vmcb->control.exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003309 kvm_run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003310 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003311 return 0;
3312 }
3313
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003314 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01003315 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02003316 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3317 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02003318 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003320 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321 exit_code);
3322
Wanpeng Li404d5d72020-04-28 14:23:25 +08003323 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08003324 return 1;
Wanpeng Li404d5d72020-04-28 14:23:25 +08003325
Paolo Bonzini63129752021-03-02 14:40:39 -05003326 return svm_invoke_exit_handler(vcpu, exit_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003327}
3328
3329static void reload_tss(struct kvm_vcpu *vcpu)
3330{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003331 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003332
Tejun Heo0fe1e002009-10-29 22:34:14 +09003333 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003334 load_TR_desc();
3335}
3336
Paolo Bonzini63129752021-03-02 14:40:39 -05003337static void pre_svm_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003338{
Paolo Bonzini63129752021-03-02 14:40:39 -05003339 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3340 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341
Cathy Averyaf18fa72021-01-12 11:43:12 -05003342 /*
3343 * If the previous vmrun of the vmcb occurred on
3344 * a different physical cpu then we must mark the vmcb dirty.
Cathy Avery193015a2021-01-12 11:43:13 -05003345 * and assign a new asid.
3346 */
Cathy Averyaf18fa72021-01-12 11:43:12 -05003347
Paolo Bonzini63129752021-03-02 14:40:39 -05003348 if (unlikely(svm->current_vmcb->cpu != vcpu->cpu)) {
Cathy Avery193015a2021-01-12 11:43:13 -05003349 svm->current_vmcb->asid_generation = 0;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003350 vmcb_mark_all_dirty(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05003351 svm->current_vmcb->cpu = vcpu->cpu;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003352 }
3353
Paolo Bonzini63129752021-03-02 14:40:39 -05003354 if (sev_guest(vcpu->kvm))
3355 return pre_sev_run(svm, vcpu->cpu);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003356
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03003357 /* FIXME: handle wraparound of asid_generation */
Cathy Avery193015a2021-01-12 11:43:13 -05003358 if (svm->current_vmcb->asid_generation != sd->asid_generation)
Tejun Heo0fe1e002009-10-29 22:34:14 +09003359 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360}
3361
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003362static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3363{
3364 struct vcpu_svm *svm = to_svm(vcpu);
3365
3366 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3367 vcpu->arch.hflags |= HF_NMI_MASK;
Paolo Bonzini63129752021-03-02 14:40:39 -05003368 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003369 svm_set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003370 ++vcpu->stat.nmi_injections;
3371}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003372
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003373static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03003374{
3375 struct vcpu_svm *svm = to_svm(vcpu);
3376
Joerg Roedel2af91942009-08-07 11:49:28 +02003377 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01003378
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03003379 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3380 ++vcpu->stat.irq_injections;
3381
Alexander Graf219b65d2009-06-15 15:21:25 +02003382 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3383 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03003384}
3385
Jason Baronb6a7cc32021-01-14 22:27:54 -05003386static void svm_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003387{
3388 struct vcpu_svm *svm = to_svm(vcpu);
3389
Tom Lendackyf1c63662020-12-14 10:29:50 -05003390 /*
3391 * SEV-ES guests must always keep the CR intercepts cleared. CR
3392 * tracking is done using the CR write traps.
3393 */
3394 if (sev_es_guest(vcpu->kvm))
3395 return;
3396
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003397 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003398 return;
3399
Babu Moger830bd712020-09-11 14:28:50 -05003400 svm_clr_intercept(svm, INTERCEPT_CR8_WRITE);
Radim Krčmář596f3142014-03-11 19:11:18 +01003401
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003402 if (irr == -1)
3403 return;
3404
3405 if (tpr >= irr)
Babu Moger830bd712020-09-11 14:28:50 -05003406 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003407}
3408
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003409bool svm_nmi_blocked(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003410{
3411 struct vcpu_svm *svm = to_svm(vcpu);
3412 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson88c604b2020-04-22 19:25:41 -07003413 bool ret;
Cathy Avery9c3d3702020-04-14 16:11:06 -04003414
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003415 if (!gif_set(svm))
Paolo Bonzinibbdad0b2020-04-23 08:06:43 -04003416 return true;
3417
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003418 if (is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
3419 return false;
3420
3421 ret = (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
Paolo Bonzini63129752021-03-02 14:40:39 -05003422 (vcpu->arch.hflags & HF_NMI_MASK);
Joerg Roedel924584c2010-04-22 12:33:07 +02003423
3424 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003425}
3426
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003427static int svm_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003428{
3429 struct vcpu_svm *svm = to_svm(vcpu);
3430 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003431 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003432
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003433 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
3434 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003435 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003436
3437 return !svm_nmi_blocked(vcpu);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003438}
3439
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003440static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3441{
Paolo Bonzini63129752021-03-02 14:40:39 -05003442 return !!(vcpu->arch.hflags & HF_NMI_MASK);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003443}
3444
3445static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3446{
3447 struct vcpu_svm *svm = to_svm(vcpu);
3448
3449 if (masked) {
Paolo Bonzini63129752021-03-02 14:40:39 -05003450 vcpu->arch.hflags |= HF_NMI_MASK;
3451 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003452 svm_set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003453 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05003454 vcpu->arch.hflags &= ~HF_NMI_MASK;
3455 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003456 svm_clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003457 }
3458}
3459
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003460bool svm_interrupt_blocked(struct kvm_vcpu *vcpu)
Gleb Natapov78646122009-03-23 12:12:11 +02003461{
3462 struct vcpu_svm *svm = to_svm(vcpu);
3463 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003464
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003465 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003466 return true;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003467
Paolo Bonzini63129752021-03-02 14:40:39 -05003468 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyf1c63662020-12-14 10:29:50 -05003469 /*
3470 * SEV-ES guests to not expose RFLAGS. Use the VMCB interrupt mask
3471 * bit to determine the state of the IF flag.
3472 */
3473 if (!(vmcb->control.int_state & SVM_GUEST_INTERRUPT_MASK))
3474 return true;
3475 } else if (is_guest_mode(vcpu)) {
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003476 /* As long as interrupts are being delivered... */
Paolo Bonzinie9fd7612020-05-13 13:28:23 -04003477 if ((svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK)
Cathy Avery4995a362021-01-13 07:07:52 -05003478 ? !(svm->vmcb01.ptr->save.rflags & X86_EFLAGS_IF)
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003479 : !(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3480 return true;
3481
3482 /* ... vmexits aren't blocked by the interrupt shadow */
3483 if (nested_exit_on_intr(svm))
3484 return false;
3485 } else {
3486 if (!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3487 return true;
3488 }
3489
3490 return (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003491}
3492
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003493static int svm_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003494{
3495 struct vcpu_svm *svm = to_svm(vcpu);
3496 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003497 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003498
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003499 /*
3500 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
3501 * e.g. if the IRQ arrived asynchronously after checking nested events.
3502 */
3503 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003504 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003505
3506 return !svm_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02003507}
3508
Jason Baronb6a7cc32021-01-14 22:27:54 -05003509static void svm_enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003510{
Alexander Graf219b65d2009-06-15 15:21:25 +02003511 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02003512
Joerg Roedele0231712010-02-24 18:59:10 +01003513 /*
3514 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3515 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3516 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003517 * we'll get the vintr intercept. However, if the vGIF feature is
3518 * enabled, the STGI interception will not occur. Enable the irq
3519 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01003520 */
Paolo Bonzinib518ba92020-03-04 16:46:47 -05003521 if (vgif_enabled(svm) || gif_set(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003522 /*
3523 * IRQ window is not needed when AVIC is enabled,
3524 * unless we have pending ExtINT since it cannot be injected
3525 * via AVIC. In such case, we need to temporarily disable AVIC,
3526 * and fallback to injecting IRQ via V_IRQ.
3527 */
3528 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02003529 svm_set_vintr(svm);
Alexander Graf219b65d2009-06-15 15:21:25 +02003530 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003531}
3532
Jason Baronb6a7cc32021-01-14 22:27:54 -05003533static void svm_enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003534{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003535 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003536
Paolo Bonzini63129752021-03-02 14:40:39 -05003537 if ((vcpu->arch.hflags & (HF_NMI_MASK | HF_IRET_MASK)) == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01003538 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03003539
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003540 if (!gif_set(svm)) {
3541 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02003542 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003543 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003544 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003545
Joerg Roedele0231712010-02-24 18:59:10 +01003546 /*
3547 * Something prevents NMI from been injected. Single step over possible
3548 * problem (IRET or exception injection or interrupt shadow)
3549 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003550 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02003551 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03003552 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03003553}
3554
Izik Eiduscbc94022007-10-25 00:29:55 +02003555static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3556{
3557 return 0;
3558}
3559
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07003560static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
3561{
3562 return 0;
3563}
3564
Sean Christophersonf55ac302020-03-20 14:28:12 -07003565void svm_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivityd9e368d2007-06-07 19:18:30 +03003566{
Joerg Roedel38e5e922010-12-03 15:25:16 +01003567 struct vcpu_svm *svm = to_svm(vcpu);
3568
Sean Christopherson4a41e432020-03-20 14:28:17 -07003569 /*
3570 * Flush only the current ASID even if the TLB flush was invoked via
3571 * kvm_flush_remote_tlbs(). Although flushing remote TLBs requires all
3572 * ASIDs to be flushed, KVM uses a single ASID for L1 and L2, and
3573 * unconditionally does a TLB flush on both nested VM-Enter and nested
3574 * VM-Exit (via kvm_mmu_reset_context()).
3575 */
Joerg Roedel38e5e922010-12-03 15:25:16 +01003576 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3577 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3578 else
Cathy Avery193015a2021-01-12 11:43:13 -05003579 svm->current_vmcb->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03003580}
3581
Junaid Shahidfaff8752018-06-29 13:10:05 -07003582static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
3583{
3584 struct vcpu_svm *svm = to_svm(vcpu);
3585
3586 invlpga(gva, svm->vmcb->control.asid);
3587}
3588
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003589static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3590{
3591 struct vcpu_svm *svm = to_svm(vcpu);
3592
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003593 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003594 return;
3595
Babu Moger830bd712020-09-11 14:28:50 -05003596 if (!svm_is_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003597 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03003598 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003599 }
3600}
3601
Joerg Roedel649d6862008-04-16 16:51:15 +02003602static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3603{
3604 struct vcpu_svm *svm = to_svm(vcpu);
3605 u64 cr8;
3606
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003607 if (nested_svm_virtualize_tpr(vcpu) ||
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05003608 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003609 return;
3610
Joerg Roedel649d6862008-04-16 16:51:15 +02003611 cr8 = kvm_get_cr8(vcpu);
3612 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3613 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3614}
3615
Paolo Bonzini63129752021-03-02 14:40:39 -05003616static void svm_complete_interrupts(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003617{
Paolo Bonzini63129752021-03-02 14:40:39 -05003618 struct vcpu_svm *svm = to_svm(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003619 u8 vector;
3620 int type;
3621 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01003622 unsigned int3_injected = svm->int3_injected;
3623
3624 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03003625
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003626 /*
3627 * If we've made progress since setting HF_IRET_MASK, we've
3628 * executed an IRET and can allow NMI injection.
3629 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003630 if ((vcpu->arch.hflags & HF_IRET_MASK) &&
3631 (sev_es_guest(vcpu->kvm) ||
3632 kvm_rip_read(vcpu) != svm->nmi_iret_rip)) {
3633 vcpu->arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3634 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003635 }
Gleb Natapov44c11432009-05-11 13:35:52 +03003636
Paolo Bonzini63129752021-03-02 14:40:39 -05003637 vcpu->arch.nmi_injected = false;
3638 kvm_clear_exception_queue(vcpu);
3639 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003640
3641 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3642 return;
3643
Paolo Bonzini63129752021-03-02 14:40:39 -05003644 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003645
Gleb Natapov9222be12009-04-23 17:14:37 +03003646 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3647 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3648
3649 switch (type) {
3650 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05003651 vcpu->arch.nmi_injected = true;
Gleb Natapov9222be12009-04-23 17:14:37 +03003652 break;
3653 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01003654 /*
Tom Lendackyf1c63662020-12-14 10:29:50 -05003655 * Never re-inject a #VC exception.
3656 */
3657 if (vector == X86_TRAP_VC)
3658 break;
3659
3660 /*
Jan Kiszka66b71382010-02-23 17:47:56 +01003661 * In case of software exceptions, do not reinject the vector,
3662 * but re-execute the instruction instead. Rewind RIP first
3663 * if we emulated INT3 before.
3664 */
3665 if (kvm_exception_is_soft(vector)) {
3666 if (vector == BP_VECTOR && int3_injected &&
Paolo Bonzini63129752021-03-02 14:40:39 -05003667 kvm_is_linear_rip(vcpu, svm->int3_rip))
3668 kvm_rip_write(vcpu,
3669 kvm_rip_read(vcpu) - int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02003670 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01003671 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003672 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3673 u32 err = svm->vmcb->control.exit_int_info_err;
Paolo Bonzini63129752021-03-02 14:40:39 -05003674 kvm_requeue_exception_e(vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03003675
3676 } else
Paolo Bonzini63129752021-03-02 14:40:39 -05003677 kvm_requeue_exception(vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03003678 break;
3679 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05003680 kvm_queue_interrupt(vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03003681 break;
3682 default:
3683 break;
3684 }
3685}
3686
Avi Kivityb463a6f2010-07-20 15:06:17 +03003687static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3688{
3689 struct vcpu_svm *svm = to_svm(vcpu);
3690 struct vmcb_control_area *control = &svm->vmcb->control;
3691
3692 control->exit_int_info = control->event_inj;
3693 control->exit_int_info_err = control->event_inj_err;
3694 control->event_inj = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003695 svm_complete_interrupts(vcpu);
Avi Kivityb463a6f2010-07-20 15:06:17 +03003696}
3697
Wanpeng Li404d5d72020-04-28 14:23:25 +08003698static fastpath_t svm_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003699{
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003700 if (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR &&
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003701 to_svm(vcpu)->vmcb->control.exit_info_1)
3702 return handle_fastpath_set_msr_irqoff(vcpu);
3703
3704 return EXIT_FASTPATH_NONE;
3705}
3706
Paolo Bonzini63129752021-03-02 14:40:39 -05003707static noinstr void svm_vcpu_enter_exit(struct kvm_vcpu *vcpu)
Thomas Gleixner135961e2020-07-08 21:51:58 +02003708{
Paolo Bonzini63129752021-03-02 14:40:39 -05003709 struct vcpu_svm *svm = to_svm(vcpu);
3710
Thomas Gleixner135961e2020-07-08 21:51:58 +02003711 /*
3712 * VMENTER enables interrupts (host state), but the kernel state is
3713 * interrupts disabled when this is invoked. Also tell RCU about
3714 * it. This is the same logic as for exit_to_user_mode().
3715 *
3716 * This ensures that e.g. latency analysis on the host observes
3717 * guest mode as interrupt enabled.
3718 *
3719 * guest_enter_irqoff() informs context tracking about the
3720 * transition to guest mode and if enabled adjusts RCU state
3721 * accordingly.
3722 */
3723 instrumentation_begin();
3724 trace_hardirqs_on_prepare();
3725 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
3726 instrumentation_end();
3727
3728 guest_enter_irqoff();
3729 lockdep_hardirqs_on(CALLER_ADDR0);
3730
Paolo Bonzini63129752021-03-02 14:40:39 -05003731 if (sev_es_guest(vcpu->kvm)) {
Tom Lendacky16809ec2020-12-10 11:10:08 -06003732 __svm_sev_es_vcpu_run(svm->vmcb_pa);
3733 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06003734 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3735
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003736 vmload(svm->vmcb01.pa);
Paolo Bonzini63129752021-03-02 14:40:39 -05003737 __svm_vcpu_run(svm->vmcb_pa, (unsigned long *)&vcpu->arch.regs);
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003738 vmsave(svm->vmcb01.pa);
Thomas Gleixner135961e2020-07-08 21:51:58 +02003739
Michael Rothe79b91b2021-02-02 13:01:24 -06003740 vmload(__sme_page_pa(sd->save_area));
Tom Lendacky16809ec2020-12-10 11:10:08 -06003741 }
Thomas Gleixner135961e2020-07-08 21:51:58 +02003742
3743 /*
3744 * VMEXIT disables interrupts (host state), but tracing and lockdep
3745 * have them in state 'on' as recorded before entering guest mode.
3746 * Same as enter_from_user_mode().
3747 *
3748 * guest_exit_irqoff() restores host context and reinstates RCU if
3749 * enabled and required.
3750 *
3751 * This needs to be done before the below as native_read_msr()
3752 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
3753 * into world and some more.
3754 */
3755 lockdep_hardirqs_off(CALLER_ADDR0);
3756 guest_exit_irqoff();
3757
3758 instrumentation_begin();
3759 trace_hardirqs_off_finish();
3760 instrumentation_end();
3761}
3762
Qian Caib95273f2020-04-15 11:37:09 -04003763static __no_kcsan fastpath_t svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003764{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003765 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03003766
Lorenzo Bresciad95df952020-12-23 14:45:07 +00003767 trace_kvm_entry(vcpu);
3768
Joerg Roedel2041a062010-04-22 12:33:08 +02003769 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3770 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3771 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3772
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003773 /*
Ladi Proseka12713c2017-06-21 09:07:00 +02003774 * Disable singlestep if we're injecting an interrupt/exception.
3775 * We don't want our modified rflags to be pushed on the stack where
3776 * we might not be able to easily reset them if we disabled NMI
3777 * singlestep later.
3778 */
3779 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
3780 /*
3781 * Event injection happens before external interrupts cause a
3782 * vmexit and interrupts are disabled here, so smp_send_reschedule
3783 * is enough to force an immediate vmexit.
3784 */
3785 disable_nmi_singlestep(svm);
3786 smp_send_reschedule(vcpu->cpu);
3787 }
3788
Paolo Bonzini63129752021-03-02 14:40:39 -05003789 pre_svm_run(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790
Joerg Roedel649d6862008-04-16 16:51:15 +02003791 sync_lapic_to_cr8(vcpu);
3792
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04003793 if (unlikely(svm->asid != svm->vmcb->control.asid)) {
3794 svm->vmcb->control.asid = svm->asid;
3795 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
3796 }
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02003797 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003798
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003799 /*
3800 * Run with all-zero DR6 unless needed, so that we can get the exact cause
3801 * of a #DB.
3802 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003803 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003804 svm_set_dr6(svm, vcpu->arch.dr6);
3805 else
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08003806 svm_set_dr6(svm, DR6_ACTIVE_LOW);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003807
Avi Kivity04d2cc72007-09-10 18:10:54 +03003808 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07003809 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003810
Wanpeng Li010fd372020-09-10 17:50:41 +08003811 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08003812
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003813 /*
3814 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
3815 * it's non-zero. Since vmentry is serialising on affected CPUs, there
3816 * is no need to worry about the conditional branch over the wrmsr
3817 * being speculatively taken.
3818 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003819 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3820 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003821
Paolo Bonzini63129752021-03-02 14:40:39 -05003822 svm_vcpu_enter_exit(vcpu);
Thomas Gleixner15e6c222018-05-11 15:21:01 +02003823
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003824 /*
3825 * We do not use IBRS in the kernel. If this vCPU has used the
3826 * SPEC_CTRL MSR it may have left it on; save the value and
3827 * turn it off. This is much more efficient than blindly adding
3828 * it to the atomic save/restore list. Especially as the former
3829 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
3830 *
3831 * For non-nested case:
3832 * If the L01 MSR bitmap does not intercept the MSR, then we need to
3833 * save it.
3834 *
3835 * For nested case:
3836 * If the L02 MSR bitmap does not intercept the MSR, then we need to
3837 * save it.
3838 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003839 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL) &&
3840 unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01003841 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003842
Paolo Bonzini63129752021-03-02 14:40:39 -05003843 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky16809ec2020-12-10 11:10:08 -06003844 reload_tss(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003845
Babu Mogerd00b99c2021-02-17 10:56:04 -05003846 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3847 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
Thomas Gleixner024d83c2018-08-12 20:41:45 +02003848
Paolo Bonzini63129752021-03-02 14:40:39 -05003849 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky16809ec2020-12-10 11:10:08 -06003850 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3851 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3852 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3853 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3854 }
Avi Kivity13c34e02010-10-21 12:20:31 +02003855
Joerg Roedel3781c012011-01-14 16:45:02 +01003856 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003857 kvm_before_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003858
Aaron Lewis139a12c2019-10-21 16:30:25 -07003859 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003860 stgi();
3861
3862 /* Any pending NMI will happen here */
3863
3864 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003865 kvm_after_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003866
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003867 sync_cr8_to_lapic(vcpu);
3868
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003869 svm->next_rip = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003870 if (is_guest_mode(vcpu)) {
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05003871 nested_sync_control_from_vmcb02(svm);
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -04003872 svm->nested.nested_run_pending = 0;
3873 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003874
Joerg Roedel38e5e922010-12-03 15:25:16 +01003875 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Wanpeng Lie42c6822020-09-12 02:16:39 -04003876 vmcb_mark_all_clean(svm->vmcb);
Joerg Roedel38e5e922010-12-03 15:25:16 +01003877
Gleb Natapov631bc482010-10-14 11:22:52 +02003878 /* if exit due to PF check for async PF */
3879 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003880 vcpu->arch.apf.host_apf_flags =
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003881 kvm_read_and_reset_apf_flags();
Gleb Natapov631bc482010-10-14 11:22:52 +02003882
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003883 if (npt_enabled) {
3884 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
3885 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
3886 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02003887
3888 /*
3889 * We need to handle MC intercepts here before the vcpu has a chance to
3890 * change the physical cpu
3891 */
3892 if (unlikely(svm->vmcb->control.exit_code ==
3893 SVM_EXIT_EXCP_BASE + MC_VECTOR))
Paolo Bonzini63129752021-03-02 14:40:39 -05003894 svm_handle_mce(vcpu);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003895
Paolo Bonzini63129752021-03-02 14:40:39 -05003896 svm_complete_interrupts(vcpu);
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003897
3898 if (is_guest_mode(vcpu))
3899 return EXIT_FASTPATH_NONE;
3900
3901 return svm_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003902}
3903
Sean Christophersone83bc092021-03-05 10:31:13 -08003904static void svm_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
Sean Christopherson2a40b902020-07-15 20:41:18 -07003905 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003906{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003907 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003908 unsigned long cr3;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003909
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003910 if (npt_enabled) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003911 svm->vmcb->control.nested_cr3 = __sme_set(root_hpa);
Joerg Roedel06e78522020-06-25 10:03:23 +02003912 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003914 /* Loading L2's CR3 is handled by enter_svm_guest_mode. */
Paolo Bonzini978ce582020-05-20 08:37:37 -04003915 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3916 return;
3917 cr3 = vcpu->arch.cr3;
Sean Christophersone83bc092021-03-05 10:31:13 -08003918 } else if (vcpu->arch.mmu->shadow_root_level >= PT64_ROOT_4LEVEL) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003919 cr3 = __sme_set(root_hpa) | kvm_get_active_pcid(vcpu);
Sean Christophersone83bc092021-03-05 10:31:13 -08003920 } else {
3921 /* PCID in the guest should be impossible with a 32-bit MMU. */
3922 WARN_ON_ONCE(kvm_get_active_pcid(vcpu));
3923 cr3 = root_hpa;
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003924 }
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003925
Paolo Bonzini978ce582020-05-20 08:37:37 -04003926 svm->vmcb->save.cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003927 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003928}
3929
Avi Kivity6aa8b732006-12-10 02:21:36 -08003930static int is_disabled(void)
3931{
Joerg Roedel6031a612007-06-22 12:29:50 +03003932 u64 vm_cr;
3933
3934 rdmsrl(MSR_VM_CR, vm_cr);
3935 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3936 return 1;
3937
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938 return 0;
3939}
3940
Ingo Molnar102d8322007-02-19 14:37:47 +02003941static void
3942svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3943{
3944 /*
3945 * Patch in the VMMCALL instruction:
3946 */
3947 hypercall[0] = 0x0f;
3948 hypercall[1] = 0x01;
3949 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02003950}
3951
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003952static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003953{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003954 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003955}
3956
Avi Kivity774ead32007-12-26 13:57:04 +02003957static bool svm_cpu_has_accelerated_tpr(void)
3958{
3959 return false;
3960}
3961
Tom Lendacky57194552020-12-10 11:10:00 -06003962/*
3963 * The kvm parameter can be NULL (module initialization, or invocation before
3964 * VM creation). Be sure to check the kvm parameter before using it.
3965 */
3966static bool svm_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003967{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003968 switch (index) {
3969 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02003970 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003971 return false;
Tom Lendacky57194552020-12-10 11:10:00 -06003972 case MSR_IA32_SMBASE:
3973 /* SEV-ES guests do not support SMM, so report false */
3974 if (kvm && sev_es_guest(kvm))
3975 return false;
3976 break;
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003977 default:
3978 break;
3979 }
3980
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003981 return true;
3982}
3983
Paolo Bonzinifc07e762015-10-01 13:20:22 +02003984static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
3985{
3986 return 0;
3987}
3988
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08003989static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08003990{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003991 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger96308b02020-11-12 16:18:03 -06003992 struct kvm_cpuid_entry2 *best;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003993
Aaron Lewis72041602019-10-21 16:30:20 -07003994 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08003995 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07003996 boot_cpu_has(X86_FEATURE_XSAVES);
3997
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003998 /* Update nrips enabled cache */
Sean Christopherson4eb87462020-03-02 15:57:08 -08003999 svm->nrips_enabled = kvm_cpu_cap_has(X86_FEATURE_NRIPS) &&
Paolo Bonzini63129752021-03-02 14:40:39 -05004000 guest_cpuid_has(vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004001
Babu Moger4407a792020-09-11 14:29:19 -05004002 /* Check again if INVPCID interception if required */
4003 svm_check_invpcid(svm);
4004
Babu Moger96308b02020-11-12 16:18:03 -06004005 /* For sev guests, the memory encryption bit is not reserved in CR3. */
4006 if (sev_guest(vcpu->kvm)) {
4007 best = kvm_find_cpuid_entry(vcpu, 0x8000001F, 0);
4008 if (best)
Sean Christophersonca29e142021-02-03 16:01:12 -08004009 vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f));
Babu Moger96308b02020-11-12 16:18:03 -06004010 }
4011
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004012 if (!kvm_vcpu_apicv_active(vcpu))
4013 return;
4014
Oliver Uptoncc7f5572020-02-28 00:59:04 -08004015 /*
4016 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
4017 * is exposed to the guest, disable AVIC.
4018 */
4019 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
4020 kvm_request_apicv_update(vcpu->kvm, false,
4021 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06004022
4023 /*
4024 * Currently, AVIC does not work with nested virtualization.
4025 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
4026 */
4027 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4028 kvm_request_apicv_update(vcpu->kvm, false,
4029 APICV_INHIBIT_REASON_NESTED);
Sheng Yang0e851882009-12-18 16:48:46 +08004030}
4031
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004032static bool svm_has_wbinvd_exit(void)
4033{
4034 return true;
4035}
4036
Joerg Roedel80612522011-04-04 12:39:33 +02004037#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004038 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004039#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004040 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004041#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004042 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004043
Mathias Krause09941fb2012-08-30 01:30:20 +02004044static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004045 u32 exit_code;
4046 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004047} x86_intercept_map[] = {
4048 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
4049 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
4050 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
4051 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
4052 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02004053 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
4054 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02004055 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
4056 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
4057 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
4058 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
4059 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
4060 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
4061 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
4062 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02004063 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
4064 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
4065 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
4066 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
4067 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
4068 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
4069 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
4070 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004071 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
4072 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
4073 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02004074 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
4075 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
4076 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
4077 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
4078 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
4079 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
4080 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
4081 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
4082 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02004083 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
4084 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
4085 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
4086 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
4087 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
4088 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
4089 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02004090 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
4091 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
4092 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
4093 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02004094 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004095};
4096
Joerg Roedel80612522011-04-04 12:39:33 +02004097#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004098#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004099#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004100
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004101static int svm_check_intercept(struct kvm_vcpu *vcpu,
4102 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08004103 enum x86_intercept_stage stage,
4104 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004105{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004106 struct vcpu_svm *svm = to_svm(vcpu);
4107 int vmexit, ret = X86EMUL_CONTINUE;
4108 struct __x86_intercept icpt_info;
4109 struct vmcb *vmcb = svm->vmcb;
4110
4111 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
4112 goto out;
4113
4114 icpt_info = x86_intercept_map[info->intercept];
4115
Avi Kivity40e19b52011-04-21 12:35:41 +03004116 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004117 goto out;
4118
4119 switch (icpt_info.exit_code) {
4120 case SVM_EXIT_READ_CR0:
4121 if (info->intercept == x86_intercept_cr_read)
4122 icpt_info.exit_code += info->modrm_reg;
4123 break;
4124 case SVM_EXIT_WRITE_CR0: {
4125 unsigned long cr0, val;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004126
4127 if (info->intercept == x86_intercept_cr_write)
4128 icpt_info.exit_code += info->modrm_reg;
4129
Jan Kiszka62baf442014-06-29 21:55:53 +02004130 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
4131 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004132 break;
4133
Babu Mogerc62e2e92020-09-11 14:28:28 -05004134 if (!(vmcb_is_intercept(&svm->nested.ctl,
4135 INTERCEPT_SELECTIVE_CR0)))
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004136 break;
4137
4138 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
4139 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
4140
4141 if (info->intercept == x86_intercept_lmsw) {
4142 cr0 &= 0xfUL;
4143 val &= 0xfUL;
4144 /* lmsw can't clear PE - catch this here */
4145 if (cr0 & X86_CR0_PE)
4146 val |= X86_CR0_PE;
4147 }
4148
4149 if (cr0 ^ val)
4150 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4151
4152 break;
4153 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02004154 case SVM_EXIT_READ_DR0:
4155 case SVM_EXIT_WRITE_DR0:
4156 icpt_info.exit_code += info->modrm_reg;
4157 break;
Joerg Roedel80612522011-04-04 12:39:33 +02004158 case SVM_EXIT_MSR:
4159 if (info->intercept == x86_intercept_wrmsr)
4160 vmcb->control.exit_info_1 = 1;
4161 else
4162 vmcb->control.exit_info_1 = 0;
4163 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02004164 case SVM_EXIT_PAUSE:
4165 /*
4166 * We get this for NOP only, but pause
4167 * is rep not, check this here
4168 */
4169 if (info->rep_prefix != REPE_PREFIX)
4170 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02004171 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02004172 case SVM_EXIT_IOIO: {
4173 u64 exit_info;
4174 u32 bytes;
4175
Joerg Roedelf6511932011-04-04 12:39:35 +02004176 if (info->intercept == x86_intercept_in ||
4177 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004178 exit_info = ((info->src_val & 0xffff) << 16) |
4179 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02004180 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02004181 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004182 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02004183 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02004184 }
4185
4186 if (info->intercept == x86_intercept_outs ||
4187 info->intercept == x86_intercept_ins)
4188 exit_info |= SVM_IOIO_STR_MASK;
4189
4190 if (info->rep_prefix)
4191 exit_info |= SVM_IOIO_REP_MASK;
4192
4193 bytes = min(bytes, 4u);
4194
4195 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4196
4197 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4198
4199 vmcb->control.exit_info_1 = exit_info;
4200 vmcb->control.exit_info_2 = info->next_rip;
4201
4202 break;
4203 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004204 default:
4205 break;
4206 }
4207
Bandan Dasf1047652015-06-11 02:05:33 -04004208 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
4209 if (static_cpu_has(X86_FEATURE_NRIPS))
4210 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004211 vmcb->control.exit_code = icpt_info.exit_code;
4212 vmexit = nested_svm_exit_handled(svm);
4213
4214 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4215 : X86EMUL_CONTINUE;
4216
4217out:
4218 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004219}
4220
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07004221static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08004222{
Yang Zhanga547c6d2013-04-11 19:25:10 +08004223}
4224
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004225static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4226{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004227 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04004228 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004229}
4230
Borislav Petkov74f16902017-03-26 23:51:24 +02004231static void svm_setup_mce(struct kvm_vcpu *vcpu)
4232{
4233 /* [63:9] are reserved. */
4234 vcpu->arch.mcg_cap &= 0x1ff;
4235}
4236
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004237bool svm_smi_blocked(struct kvm_vcpu *vcpu)
Ladi Prosek72d7b372017-10-11 16:54:41 +02004238{
Ladi Prosek05cade72017-10-11 16:54:45 +02004239 struct vcpu_svm *svm = to_svm(vcpu);
4240
4241 /* Per APM Vol.2 15.22.2 "Response to SMI" */
4242 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004243 return true;
4244
4245 return is_smm(vcpu);
4246}
4247
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004248static int svm_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004249{
4250 struct vcpu_svm *svm = to_svm(vcpu);
4251 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004252 return -EBUSY;
Ladi Prosek05cade72017-10-11 16:54:45 +02004253
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004254 /* An SMI must not be injected into L2 if it's supposed to VM-Exit. */
4255 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_smi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004256 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004257
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004258 return !svm_smi_blocked(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02004259}
4260
Ladi Prosek0234bf82017-10-11 16:54:40 +02004261static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
4262{
Ladi Prosek05cade72017-10-11 16:54:45 +02004263 struct vcpu_svm *svm = to_svm(vcpu);
4264 int ret;
4265
4266 if (is_guest_mode(vcpu)) {
4267 /* FED8h - SVM Guest */
4268 put_smstate(u64, smstate, 0x7ed8, 1);
4269 /* FEE0h - SVM Guest VMCB Physical Address */
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004270 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb12_gpa);
Ladi Prosek05cade72017-10-11 16:54:45 +02004271
4272 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4273 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4274 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4275
4276 ret = nested_svm_vmexit(svm);
4277 if (ret)
4278 return ret;
4279 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02004280 return 0;
4281}
4282
Sean Christophersoned193212019-04-02 08:03:09 -07004283static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004284{
Ladi Prosek05cade72017-10-11 16:54:45 +02004285 struct vcpu_svm *svm = to_svm(vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01004286 struct kvm_host_map map;
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004287 int ret = 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004288
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004289 if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) {
4290 u64 saved_efer = GET_SMSTATE(u64, smstate, 0x7ed0);
4291 u64 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004292 u64 vmcb12_gpa = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02004293
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004294 if (guest) {
4295 if (!guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4296 return 1;
4297
4298 if (!(saved_efer & EFER_SVME))
4299 return 1;
4300
Paolo Bonzini63129752021-03-02 14:40:39 -05004301 if (kvm_vcpu_map(vcpu,
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004302 gpa_to_gfn(vmcb12_gpa), &map) == -EINVAL)
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004303 return 1;
4304
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03004305 if (svm_allocate_nested(svm))
4306 return 1;
4307
Paolo Bonzini63129752021-03-02 14:40:39 -05004308 ret = enter_svm_guest_mode(vcpu, vmcb12_gpa, map.hva);
4309 kvm_vcpu_unmap(vcpu, &map, true);
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004310 }
Ladi Prosek05cade72017-10-11 16:54:45 +02004311 }
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004312
4313 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02004314}
4315
Jason Baronb6a7cc32021-01-14 22:27:54 -05004316static void svm_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004317{
4318 struct vcpu_svm *svm = to_svm(vcpu);
4319
4320 if (!gif_set(svm)) {
4321 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02004322 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004323 /* STGI will cause a vm exit */
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004324 } else {
4325 /* We must be in SMM; RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004326 }
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004327}
4328
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004329static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004330{
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004331 bool smep, smap, is_user;
4332 unsigned long cr4;
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004333
4334 /*
Tom Lendackybc624d92020-12-10 11:09:44 -06004335 * When the guest is an SEV-ES guest, emulation is not possible.
4336 */
4337 if (sev_es_guest(vcpu->kvm))
4338 return false;
4339
4340 /*
Liran Alon118154b2019-07-17 02:56:58 +03004341 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
4342 *
4343 * Errata:
4344 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
4345 * possible that CPU microcode implementing DecodeAssist will fail
4346 * to read bytes of instruction which caused #NPF. In this case,
4347 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
4348 * return 0 instead of the correct guest instruction bytes.
4349 *
4350 * This happens because CPU microcode reading instruction bytes
4351 * uses a special opcode which attempts to read data using CPL=0
4352 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
4353 * fault, it gives up and returns no instruction bytes.
4354 *
4355 * Detection:
4356 * We reach here in case CPU supports DecodeAssist, raised #NPF and
4357 * returned 0 in GuestIntrBytes field of the VMCB.
4358 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
4359 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
4360 * in case vCPU CPL==3 (Because otherwise guest would have triggered
4361 * a SMEP fault instead of #NPF).
4362 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
4363 * As most guests enable SMAP if they have also enabled SMEP, use above
4364 * logic in order to attempt minimize false-positive of detecting errata
4365 * while still preserving all cases semantic correctness.
4366 *
4367 * Workaround:
4368 * To determine what instruction the guest was executing, the hypervisor
4369 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004370 *
4371 * In non SEV guest, hypervisor will be able to read the guest
4372 * memory to decode the instruction pointer when insn_len is zero
4373 * so we return true to indicate that decoding is possible.
4374 *
4375 * But in the SEV guest, the guest memory is encrypted with the
4376 * guest specific key and hypervisor will not be able to decode the
4377 * instruction pointer so we will not able to workaround it. Lets
4378 * print the error and request to kill the guest.
4379 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004380 if (likely(!insn || insn_len))
4381 return true;
4382
4383 /*
4384 * If RIP is invalid, go ahead with emulation which will cause an
4385 * internal error exit.
4386 */
4387 if (!kvm_vcpu_gfn_to_memslot(vcpu, kvm_rip_read(vcpu) >> PAGE_SHIFT))
4388 return true;
4389
4390 cr4 = kvm_read_cr4(vcpu);
4391 smep = cr4 & X86_CR4_SMEP;
4392 smap = cr4 & X86_CR4_SMAP;
4393 is_user = svm_get_cpl(vcpu) == 3;
Liran Alon118154b2019-07-17 02:56:58 +03004394 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004395 if (!sev_guest(vcpu->kvm))
4396 return true;
4397
Liran Alon118154b2019-07-17 02:56:58 +03004398 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004399 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4400 }
4401
4402 return false;
4403}
4404
Liran Alon4b9852f2019-08-26 13:24:49 +03004405static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
4406{
4407 struct vcpu_svm *svm = to_svm(vcpu);
4408
4409 /*
4410 * TODO: Last condition latch INIT signals on vCPU when
4411 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
Paolo Bonzini33b22172020-04-17 10:24:18 -04004412 * To properly emulate the INIT intercept,
4413 * svm_check_nested_events() should call nested_svm_vmexit()
4414 * if an INIT signal is pending.
Liran Alon4b9852f2019-08-26 13:24:49 +03004415 */
4416 return !gif_set(svm) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05004417 (vmcb_is_intercept(&svm->vmcb->control, INTERCEPT_INIT));
Liran Alon4b9852f2019-08-26 13:24:49 +03004418}
4419
Tom Lendacky647daca2021-01-04 14:20:01 -06004420static void svm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
4421{
4422 if (!sev_es_guest(vcpu->kvm))
4423 return kvm_vcpu_deliver_sipi_vector(vcpu, vector);
4424
4425 sev_vcpu_deliver_sipi_vector(vcpu, vector);
4426}
4427
Joerg Roedeleaf78262020-03-24 10:41:54 +01004428static void svm_vm_destroy(struct kvm *kvm)
4429{
4430 avic_vm_destroy(kvm);
4431 sev_vm_destroy(kvm);
4432}
4433
4434static int svm_vm_init(struct kvm *kvm)
4435{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004436 if (!pause_filter_count || !pause_filter_thresh)
4437 kvm->arch.pause_in_guest = true;
4438
Joerg Roedeleaf78262020-03-24 10:41:54 +01004439 if (avic) {
4440 int ret = avic_vm_init(kvm);
4441 if (ret)
4442 return ret;
4443 }
4444
4445 kvm_apicv_init(kvm, avic);
4446 return 0;
4447}
4448
Sean Christopherson9c14ee22020-03-21 13:26:03 -07004449static struct kvm_x86_ops svm_x86_ops __initdata = {
Li RongQingdd58f3c2020-02-23 16:13:12 +08004450 .hardware_unsetup = svm_hardware_teardown,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451 .hardware_enable = svm_hardware_enable,
4452 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02004453 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02004454 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004455
4456 .vcpu_create = svm_create_vcpu,
4457 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004458 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459
Sean Christopherson562b6b02020-01-26 16:41:13 -08004460 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06004461 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004462 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004463
Avi Kivity04d2cc72007-09-10 18:10:54 +03004464 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004465 .vcpu_load = svm_vcpu_load,
4466 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05004467 .vcpu_blocking = svm_vcpu_blocking,
4468 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004469
Jason Baronb6a7cc32021-01-14 22:27:54 -05004470 .update_exception_bitmap = svm_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06004471 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004472 .get_msr = svm_get_msr,
4473 .set_msr = svm_set_msr,
4474 .get_segment_base = svm_get_segment_base,
4475 .get_segment = svm_get_segment,
4476 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004477 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10004478 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004479 .set_cr0 = svm_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07004480 .is_valid_cr4 = svm_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004481 .set_cr4 = svm_set_cr4,
4482 .set_efer = svm_set_efer,
4483 .get_idt = svm_get_idt,
4484 .set_idt = svm_set_idt,
4485 .get_gdt = svm_get_gdt,
4486 .set_gdt = svm_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03004487 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004488 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004489 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004490 .get_rflags = svm_get_rflags,
4491 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004492
Sean Christopherson77809382020-03-20 14:28:18 -07004493 .tlb_flush_all = svm_flush_tlb,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004494 .tlb_flush_current = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07004495 .tlb_flush_gva = svm_flush_tlb_gva,
Sean Christopherson72b38322020-03-20 14:28:13 -07004496 .tlb_flush_guest = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004497
Avi Kivity6aa8b732006-12-10 02:21:36 -08004498 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004499 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004500 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08004501 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004502 .set_interrupt_shadow = svm_set_interrupt_shadow,
4503 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004504 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004505 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004506 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004507 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03004508 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02004509 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004510 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004511 .get_nmi_mask = svm_get_nmi_mask,
4512 .set_nmi_mask = svm_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004513 .enable_nmi_window = svm_enable_nmi_window,
4514 .enable_irq_window = svm_enable_irq_window,
4515 .update_cr8_intercept = svm_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04004516 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03004517 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06004518 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06004519 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08004520 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004521 .hwapic_irr_update = svm_hwapic_irr_update,
4522 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02004523 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05004524 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02004525
4526 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004527 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004528 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004529
Avi Kivity586f9602010-11-18 13:09:54 +02004530 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02004531
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004532 .vcpu_after_set_cpuid = svm_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004533
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004534 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10004535
Leonid Shatz326e7422018-11-06 12:14:25 +02004536 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004537
Paolo Bonzini727a7e22020-03-05 03:52:50 -05004538 .load_mmu_pgd = svm_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004539
4540 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07004541 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004542
Sean Christophersond264ee02018-08-27 15:21:12 -07004543 .request_immediate_exit = __kvm_request_immediate_exit,
4544
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004545 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02004546
4547 .pmu_ops = &amd_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04004548 .nested_ops = &svm_nested_ops,
4549
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004550 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08004551 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004552 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02004553 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004554
Ladi Prosek72d7b372017-10-11 16:54:41 +02004555 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004556 .pre_enter_smm = svm_pre_enter_smm,
4557 .pre_leave_smm = svm_pre_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004558 .enable_smi_window = svm_enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004559
4560 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06004561 .mem_enc_reg_region = svm_register_enc_region,
4562 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004563
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004564 .can_emulate_instruction = svm_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03004565
4566 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Alexander Graffd6fa732020-09-25 16:34:19 +02004567
4568 .msr_filter_changed = svm_msr_filter_changed,
Tom Lendackyf1c63662020-12-14 10:29:50 -05004569 .complete_emulated_msr = svm_complete_emulated_msr,
Tom Lendacky647daca2021-01-04 14:20:01 -06004570
4571 .vcpu_deliver_sipi_vector = svm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004572};
4573
Sean Christophersond008dfd2020-03-21 13:25:56 -07004574static struct kvm_x86_init_ops svm_init_ops __initdata = {
4575 .cpu_has_kvm_support = has_svm,
4576 .disabled_by_bios = is_disabled,
4577 .hardware_setup = svm_hardware_setup,
4578 .check_processor_compatibility = svm_check_processor_compat,
4579
4580 .runtime_ops = &svm_x86_ops,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004581};
4582
4583static int __init svm_init(void)
4584{
Tom Lendackyd07f46f2020-09-07 15:15:03 +02004585 __unused_size_checks();
4586
Sean Christophersond008dfd2020-03-21 13:25:56 -07004587 return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03004588 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004589}
4590
4591static void __exit svm_exit(void)
4592{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004593 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004594}
4595
4596module_init(svm_init)
4597module_exit(svm_exit)