blob: 4ce6d827fccd48dd597f5c3d618d5b219da19c64 [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
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +000046#include "kvm_onhyperv.h"
47#include "svm_onhyperv.h"
48
Avi Kivity4ecac3f2008-05-13 13:23:38 +030049#define __ex(x) __kvm_handle_fault_on_reboot(x)
50
Avi Kivity6aa8b732006-12-10 02:21:36 -080051MODULE_AUTHOR("Qumranet");
52MODULE_LICENSE("GPL");
53
Valdis Klētnieks575b2552020-02-27 21:49:52 -050054#ifdef MODULE
Josh Triplettae759542012-03-28 11:32:28 -070055static const struct x86_cpu_id svm_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010056 X86_MATCH_FEATURE(X86_FEATURE_SVM, NULL),
Josh Triplettae759542012-03-28 11:32:28 -070057 {}
58};
59MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050060#endif
Josh Triplettae759542012-03-28 11:32:28 -070061
Avi Kivity6aa8b732006-12-10 02:21:36 -080062#define SEG_TYPE_LDT 2
63#define SEG_TYPE_BUSY_TSS16 3
64
Andre Przywara6bc31bd2010-04-11 23:07:28 +020065#define SVM_FEATURE_LBRV (1 << 1)
66#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010067#define SVM_FEATURE_TSC_RATE (1 << 4)
68#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
69#define SVM_FEATURE_FLUSH_ASID (1 << 6)
70#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020071#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030072
Joerg Roedel24e09cb2008-02-13 18:58:47 +010073#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
74
Joerg Roedelfbc0db72011-03-25 09:44:46 +010075#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010076#define TSC_RATIO_MIN 0x0000000000000001ULL
77#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010078
Joerg Roedel67ec6602010-05-17 14:43:35 +020079static bool erratum_383_found __read_mostly;
80
Joerg Roedel883b0a92020-03-24 10:41:52 +010081u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
Joerg Roedel323c3d82010-03-01 15:34:37 +010082
Boris Ostrovsky2b036c62012-01-09 14:00:35 -050083/*
84 * Set osvw_len to higher value when updated Revision Guides
85 * are published and we know what the new status bits are
86 */
87static uint64_t osvw_len = 4, osvw_status;
88
Joerg Roedelfbc0db72011-03-25 09:44:46 +010089static DEFINE_PER_CPU(u64, current_tsc_ratio);
90#define TSC_RATIO_DEFAULT 0x0100000000ULL
91
Mathias Krause09941fb2012-08-30 01:30:20 +020092static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +010093 u32 index; /* Index of the MSR */
Tom Lendacky376c6d22020-12-10 11:10:06 -060094 bool always; /* True if intercept is initially cleared */
Alexander Graffd6fa732020-09-25 16:34:19 +020095} direct_access_msrs[MAX_DIRECT_ACCESS_MSRS] = {
Brian Gerst8c065852010-07-17 09:03:26 -040096 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010097 { .index = MSR_IA32_SYSENTER_CS, .always = true },
Maxim Levitskyadc2a232021-04-01 14:19:28 +030098 { .index = MSR_IA32_SYSENTER_EIP, .always = false },
99 { .index = MSR_IA32_SYSENTER_ESP, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100100#ifdef CONFIG_X86_64
101 { .index = MSR_GS_BASE, .always = true },
102 { .index = MSR_FS_BASE, .always = true },
103 { .index = MSR_KERNEL_GS_BASE, .always = true },
104 { .index = MSR_LSTAR, .always = true },
105 { .index = MSR_CSTAR, .always = true },
106 { .index = MSR_SYSCALL_MASK, .always = true },
107#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100108 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100109 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100110 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
111 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
112 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
113 { .index = MSR_IA32_LASTINTTOIP, .always = false },
Tom Lendacky376c6d22020-12-10 11:10:06 -0600114 { .index = MSR_EFER, .always = false },
115 { .index = MSR_IA32_CR_PAT, .always = false },
116 { .index = MSR_AMD64_SEV_ES_GHCB, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100117 { .index = MSR_INVALID, .always = false },
Avi Kivity6c8166a2009-05-31 18:15:37 +0300118};
119
Babu Moger8566ac82018-03-16 16:37:26 -0400120/*
121 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
122 * pause_filter_count: On processors that support Pause filtering(indicated
123 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
124 * count value. On VMRUN this value is loaded into an internal counter.
125 * Each time a pause instruction is executed, this counter is decremented
126 * until it reaches zero at which time a #VMEXIT is generated if pause
127 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
128 * Intercept Filtering for more details.
129 * This also indicate if ple logic enabled.
130 *
131 * pause_filter_thresh: In addition, some processor families support advanced
132 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
133 * the amount of time a guest is allowed to execute in a pause loop.
134 * In this mode, a 16-bit pause filter threshold field is added in the
135 * VMCB. The threshold value is a cycle count that is used to reset the
136 * pause counter. As with simple pause filtering, VMRUN loads the pause
137 * count value from VMCB into an internal counter. Then, on each pause
138 * instruction the hardware checks the elapsed number of cycles since
139 * the most recent pause instruction against the pause filter threshold.
140 * If the elapsed cycle count is greater than the pause filter threshold,
141 * then the internal pause count is reloaded from the VMCB and execution
142 * continues. If the elapsed cycle count is less than the pause filter
143 * threshold, then the internal pause count is decremented. If the count
144 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
145 * triggered. If advanced pause filtering is supported and pause filter
146 * threshold field is set to zero, the filter will operate in the simpler,
147 * count only mode.
148 */
149
150static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
151module_param(pause_filter_thresh, ushort, 0444);
152
153static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
154module_param(pause_filter_count, ushort, 0444);
155
156/* Default doubles per-vcpu window every exit. */
157static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
158module_param(pause_filter_count_grow, ushort, 0444);
159
160/* Default resets per-vcpu window every exit to pause_filter_count. */
161static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
162module_param(pause_filter_count_shrink, ushort, 0444);
163
164/* Default is to compute the maximum so we can never overflow. */
165static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
166module_param(pause_filter_count_max, ushort, 0444);
167
Sean Christopherson99840a72021-03-04 18:16:37 -0800168/*
169 * Use nested page tables by default. Note, NPT may get forced off by
170 * svm_hardware_setup() if it's unsupported by hardware or the host kernel.
171 */
172bool npt_enabled = true;
173module_param_named(npt, npt_enabled, bool, 0444);
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100174
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100175/* allow nested virtualization in KVM/SVM */
176static int nested = true;
Alexander Graf236de052008-11-25 20:17:10 +0100177module_param(nested, int, S_IRUGO);
178
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200179/* enable/disable Next RIP Save */
180static int nrips = true;
181module_param(nrips, int, 0444);
182
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500183/* enable/disable Virtual VMLOAD VMSAVE */
184static int vls = true;
185module_param(vls, int, 0444);
186
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500187/* enable/disable Virtual GIF */
188static int vgif = true;
189module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500190
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200191/*
192 * enable / disable AVIC. Because the defaults differ for APICv
193 * support between VMX and SVM we cannot use module_param_named.
194 */
195static bool avic;
196module_param(avic, bool, 0444);
197
Tom Lendacky291bd202020-12-10 11:09:47 -0600198bool __read_mostly dump_invalid_vmcb;
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200199module_param(dump_invalid_vmcb, bool, 0644);
200
Maxim Levitsky4b639a92021-07-07 15:51:00 +0300201
202bool intercept_smi = true;
203module_param(intercept_smi, bool, 0444);
204
205
Wei Yongjun2e215212021-02-10 07:59:58 +0000206static bool svm_gp_erratum_intercept = true;
Bandan Das82a11e9c2021-01-26 03:18:29 -0500207
Brijesh Singh7607b712018-02-19 10:14:44 -0600208static u8 rsm_ins_bytes[] = "\x0f\xaa";
209
Harvey Harrison4866d5e2008-02-19 10:32:02 -0800210static unsigned long iopm_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211
212struct kvm_ldttss_desc {
213 u16 limit0;
214 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100215 unsigned base1:8, type:5, dpl:2, p:1;
216 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800217 u32 base3;
218 u32 zero1;
219} __attribute__((packed));
220
Joerg Roedeleaf78262020-03-24 10:41:54 +0100221DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800222
Sean Christopherson844d69c2021-04-23 15:34:04 -0700223/*
224 * Only MSR_TSC_AUX is switched via the user return hook. EFER is switched via
225 * the VMCB, and the SYSCALL/SYSENTER MSRs are handled by VMLOAD/VMSAVE.
226 *
227 * RDTSCP and RDPID are not used in the kernel, specifically to allow KVM to
228 * defer the restoration of TSC_AUX until the CPU returns to userspace.
229 */
Sean Christopherson0caa0a72021-05-04 10:17:25 -0700230static int tsc_aux_uret_slot __read_mostly = -1;
Sean Christopherson844d69c2021-04-23 15:34:04 -0700231
Mathias Krause09941fb2012-08-30 01:30:20 +0200232static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800233
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200234#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800235#define MSRS_RANGE_SIZE 2048
236#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
237
Joerg Roedel883b0a92020-03-24 10:41:52 +0100238u32 svm_msrpm_offset(u32 msr)
Joerg Roedel455716f2010-03-01 15:34:35 +0100239{
240 u32 offset;
241 int i;
242
243 for (i = 0; i < NUM_MSR_MAPS; i++) {
244 if (msr < msrpm_ranges[i] ||
245 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
246 continue;
247
248 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
249 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
250
251 /* Now we have the u8 offset - but need the u32 offset */
252 return offset / 4;
253 }
254
255 /* MSR not in any range */
256 return MSR_INVALID;
257}
258
Avi Kivity6aa8b732006-12-10 02:21:36 -0800259#define MAX_INST_SIZE 15
260
Sean Christophersond468d942020-07-15 20:41:20 -0700261static int get_max_npt_level(void)
Joerg Roedel4b161842010-09-10 17:31:03 +0200262{
263#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800264 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200265#else
266 return PT32E_ROOT_LEVEL;
267#endif
268}
269
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300270int svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800271{
Paolo Bonzinic513f482020-05-18 13:08:37 -0400272 struct vcpu_svm *svm = to_svm(vcpu);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300273 u64 old_efer = vcpu->arch.efer;
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000274 vcpu->arch.efer = efer;
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100275
276 if (!npt_enabled) {
277 /* Shadow paging assumes NX to be available. */
278 efer |= EFER_NX;
279
280 if (!(efer & EFER_LMA))
281 efer &= ~EFER_LME;
282 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800283
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300284 if ((old_efer & EFER_SVME) != (efer & EFER_SVME)) {
285 if (!(efer & EFER_SVME)) {
286 svm_leave_nested(svm);
287 svm_set_gif(svm, true);
Bandan Das82a11e9c2021-01-26 03:18:29 -0500288 /* #GP intercept is still needed for vmware backdoor */
289 if (!enable_vmware_backdoor)
290 clr_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300291
292 /*
293 * Free the nested guest state, unless we are in SMM.
294 * In this case we will return to the nested guest
295 * as soon as we leave SMM.
296 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500297 if (!is_smm(vcpu))
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300298 svm_free_nested(svm);
299
300 } else {
301 int ret = svm_allocate_nested(svm);
302
303 if (ret) {
304 vcpu->arch.efer = old_efer;
305 return ret;
306 }
Bandan Das82a11e9c2021-01-26 03:18:29 -0500307
308 if (svm_gp_erratum_intercept)
309 set_exception_intercept(svm, GP_VECTOR);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300310 }
Paolo Bonzinic513f482020-05-18 13:08:37 -0400311 }
312
313 svm->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedel06e78522020-06-25 10:03:23 +0200314 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300315 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800316}
317
Avi Kivity6aa8b732006-12-10 02:21:36 -0800318static int is_external_interrupt(u32 info)
319{
320 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
321 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
322}
323
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200324static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400325{
326 struct vcpu_svm *svm = to_svm(vcpu);
327 u32 ret = 0;
328
329 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200330 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
331 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400332}
333
334static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
335{
336 struct vcpu_svm *svm = to_svm(vcpu);
337
338 if (mask == 0)
339 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
340 else
341 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
342
343}
344
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200345static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800346{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400347 struct vcpu_svm *svm = to_svm(vcpu);
348
Tom Lendackyf1c63662020-12-14 10:29:50 -0500349 /*
350 * SEV-ES does not expose the next RIP. The RIP update is controlled by
351 * the type of exit and the #VC handler in the guest.
352 */
353 if (sev_es_guest(vcpu->kvm))
354 goto done;
355
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200356 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200357 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200358 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400359 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200360
Sean Christopherson1957aa62019-08-27 14:40:39 -0700361 if (!svm->next_rip) {
362 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
363 return 0;
364 } else {
Sean Christopherson1957aa62019-08-27 14:40:39 -0700365 kvm_rip_write(vcpu, svm->next_rip);
366 }
Tom Lendackyf1c63662020-12-14 10:29:50 -0500367
368done:
Glauber Costa2809f5d2009-05-12 16:21:05 -0400369 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200370
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700371 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800372}
373
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700374static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100375{
376 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700377 unsigned nr = vcpu->arch.exception.nr;
378 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700379 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100380
Paolo Bonzini63129752021-03-02 14:40:39 -0500381 kvm_deliver_exception_payload(vcpu);
Jim Mattsonda998b42018-10-16 14:29:22 -0700382
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200383 if (nr == BP_VECTOR && !nrips) {
Paolo Bonzini63129752021-03-02 14:40:39 -0500384 unsigned long rip, old_rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100385
386 /*
387 * For guest debugging where we have to reinject #BP if some
388 * INT3 is guest-owned:
389 * Emulate nRIP by moving RIP forward. Will fail if injection
390 * raises a fault that is not intercepted. Still better than
391 * failing in all cases.
392 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500393 (void)skip_emulated_instruction(vcpu);
394 rip = kvm_rip_read(vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100395 svm->int3_rip = rip + svm->vmcb->save.cs.base;
396 svm->int3_injected = rip - old_rip;
397 }
398
Jan Kiszka116a4752010-02-23 17:47:54 +0100399 svm->vmcb->control.event_inj = nr
400 | SVM_EVTINJ_VALID
401 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
402 | SVM_EVTINJ_TYPE_EXEPT;
403 svm->vmcb->control.event_inj_err = error_code;
404}
405
Joerg Roedel67ec6602010-05-17 14:43:35 +0200406static void svm_init_erratum_383(void)
407{
408 u32 low, high;
409 int err;
410 u64 val;
411
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100412 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200413 return;
414
415 /* Use _safe variants to not break nested virtualization */
416 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
417 if (err)
418 return;
419
420 val |= (1ULL << 47);
421
422 low = lower_32_bits(val);
423 high = upper_32_bits(val);
424
425 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
426
427 erratum_383_found = true;
428}
429
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500430static void svm_init_osvw(struct kvm_vcpu *vcpu)
431{
432 /*
433 * Guests should see errata 400 and 415 as fixed (assuming that
434 * HLT and IO instructions are intercepted).
435 */
436 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
437 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
438
439 /*
440 * By increasing VCPU's osvw.length to 3 we are telling the guest that
441 * all osvw.status bits inside that length, including bit 0 (which is
442 * reserved for erratum 298), are valid. However, if host processor's
443 * osvw_len is 0 then osvw_status[0] carries no information. We need to
444 * be conservative here and therefore we tell the guest that erratum 298
445 * is present (because we really don't know).
446 */
447 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
448 vcpu->arch.osvw.status |= 1;
449}
450
Avi Kivity6aa8b732006-12-10 02:21:36 -0800451static int has_svm(void)
452{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200453 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454
Eduardo Habkost63d11422008-11-17 19:03:20 -0200455 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800456 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800457 return 0;
458 }
459
Sean Christophersonccd85d92021-02-02 13:20:17 -0800460 if (sev_active()) {
461 pr_info("KVM is unsupported when running as an SEV guest\n");
462 return 0;
463 }
464
Sean Christopherson03ca4582021-05-05 13:42:21 -0700465 if (pgtable_l5_enabled()) {
466 pr_info("KVM doesn't yet support 5-level paging on AMD SVM\n");
467 return 0;
468 }
469
Avi Kivity6aa8b732006-12-10 02:21:36 -0800470 return 1;
471}
472
Radim Krčmář13a34e02014-08-28 15:13:03 +0200473static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800474{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100475 /* Make sure we clean up behind us */
476 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
477 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
478
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200479 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100480
481 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800482}
483
Radim Krčmář13a34e02014-08-28 15:13:03 +0200484static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800485{
486
Tejun Heo0fe1e002009-10-29 22:34:14 +0900487 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800488 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489 struct desc_struct *gdt;
490 int me = raw_smp_processor_id();
491
Alexander Graf10474ae2009-09-15 11:37:46 +0200492 rdmsrl(MSR_EFER, efer);
493 if (efer & EFER_SVME)
494 return -EBUSY;
495
Avi Kivity6aa8b732006-12-10 02:21:36 -0800496 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200497 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200498 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800499 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900500 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900501 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200502 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200503 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504 }
505
Tejun Heo0fe1e002009-10-29 22:34:14 +0900506 sd->asid_generation = 1;
507 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
508 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600509 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800510
Thomas Garnier45fc8752017-03-14 10:05:08 -0700511 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900512 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513
Alexander Graf9962d032008-11-25 20:17:02 +0100514 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800515
Tom Lendacky85ca8be2020-12-10 11:10:04 -0600516 wrmsrl(MSR_VM_HSAVE_PA, __sme_page_pa(sd->save_area));
Alexander Graf10474ae2009-09-15 11:37:46 +0200517
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100518 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
519 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500520 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100521 }
522
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500523
524 /*
525 * Get OSVW bits.
526 *
527 * Note that it is possible to have a system with mixed processor
528 * revisions and therefore different OSVW bits. If bits are not the same
529 * on different processors then choose the worst case (i.e. if erratum
530 * is present on one processor and not on another then assume that the
531 * erratum is present everywhere).
532 */
533 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
534 uint64_t len, status = 0;
535 int err;
536
537 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
538 if (!err)
539 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
540 &err);
541
542 if (err)
543 osvw_status = osvw_len = 0;
544 else {
545 if (len < osvw_len)
546 osvw_len = len;
547 osvw_status |= status;
548 osvw_status &= (1ULL << osvw_len) - 1;
549 }
550 } else
551 osvw_status = osvw_len = 0;
552
Joerg Roedel67ec6602010-05-17 14:43:35 +0200553 svm_init_erratum_383();
554
Joerg Roedel1018faa2012-02-29 14:57:32 +0100555 amd_pmu_enable_virt();
556
Alexander Graf10474ae2009-09-15 11:37:46 +0200557 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800558}
559
Joerg Roedel0da1db752008-07-02 16:02:11 +0200560static void svm_cpu_uninit(int cpu)
561{
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800562 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200563
Tejun Heo0fe1e002009-10-29 22:34:14 +0900564 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200565 return;
566
Jacob Xua2b2d4b2020-12-03 12:59:39 -0800567 per_cpu(svm_data, cpu) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600568 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900569 __free_page(sd->save_area);
570 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200571}
572
Avi Kivity6aa8b732006-12-10 02:21:36 -0800573static int svm_cpu_init(int cpu)
574{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900575 struct svm_cpu_data *sd;
Sean Christophersonb95c2212021-04-21 19:11:22 -0700576 int ret = -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800577
Tejun Heo0fe1e002009-10-29 22:34:14 +0900578 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
579 if (!sd)
Sean Christophersonb95c2212021-04-21 19:11:22 -0700580 return ret;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900581 sd->cpu = cpu;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600582 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900583 if (!sd->save_area)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800584 goto free_cpu_data;
Sean Christophersonb95c2212021-04-21 19:11:22 -0700585
Tom Lendacky85ca8be2020-12-10 11:10:04 -0600586 clear_page(page_address(sd->save_area));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800587
Sean Christophersonb95c2212021-04-21 19:11:22 -0700588 ret = sev_cpu_init(sd);
589 if (ret)
590 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600591
Tejun Heo0fe1e002009-10-29 22:34:14 +0900592 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800593
594 return 0;
595
Miaohe Lind80b64f2020-01-04 16:56:49 +0800596free_save_area:
597 __free_page(sd->save_area);
598free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900599 kfree(sd);
Sean Christophersonb95c2212021-04-21 19:11:22 -0700600 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601
602}
603
Alexander Graffd6fa732020-09-25 16:34:19 +0200604static int direct_access_msr_slot(u32 msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800605{
Alexander Graffd6fa732020-09-25 16:34:19 +0200606 u32 i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100608 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
Alexander Graffd6fa732020-09-25 16:34:19 +0200609 if (direct_access_msrs[i].index == msr)
610 return i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611
Alexander Graffd6fa732020-09-25 16:34:19 +0200612 return -ENOENT;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100613}
614
Alexander Graffd6fa732020-09-25 16:34:19 +0200615static void set_shadow_msr_intercept(struct kvm_vcpu *vcpu, u32 msr, int read,
616 int write)
617{
618 struct vcpu_svm *svm = to_svm(vcpu);
619 int slot = direct_access_msr_slot(msr);
620
621 if (slot == -ENOENT)
622 return;
623
624 /* Set the shadow bitmaps to the desired intercept states */
625 if (read)
626 set_bit(slot, svm->shadow_msr_intercept.read);
627 else
628 clear_bit(slot, svm->shadow_msr_intercept.read);
629
630 if (write)
631 set_bit(slot, svm->shadow_msr_intercept.write);
632 else
633 clear_bit(slot, svm->shadow_msr_intercept.write);
634}
635
636static bool valid_msr_intercept(u32 index)
637{
638 return direct_access_msr_slot(index) != -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639}
640
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200641static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100642{
643 u8 bit_write;
644 unsigned long tmp;
645 u32 offset;
646 u32 *msrpm;
647
648 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
649 to_svm(vcpu)->msrpm;
650
651 offset = svm_msrpm_offset(msr);
652 bit_write = 2 * (msr & 0x0f) + 1;
653 tmp = msrpm[offset];
654
655 BUG_ON(offset == MSR_INVALID);
656
657 return !!test_bit(bit_write, &tmp);
658}
659
Alexander Graffd6fa732020-09-25 16:34:19 +0200660static void set_msr_interception_bitmap(struct kvm_vcpu *vcpu, u32 *msrpm,
661 u32 msr, int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800662{
Joerg Roedel455716f2010-03-01 15:34:35 +0100663 u8 bit_read, bit_write;
664 unsigned long tmp;
665 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100667 /*
668 * If this warning triggers extend the direct_access_msrs list at the
669 * beginning of the file
670 */
671 WARN_ON(!valid_msr_intercept(msr));
672
Alexander Graffd6fa732020-09-25 16:34:19 +0200673 /* Enforce non allowed MSRs to trap */
674 if (read && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ))
675 read = 0;
676
677 if (write && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE))
678 write = 0;
679
Joerg Roedel455716f2010-03-01 15:34:35 +0100680 offset = svm_msrpm_offset(msr);
681 bit_read = 2 * (msr & 0x0f);
682 bit_write = 2 * (msr & 0x0f) + 1;
683 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Joerg Roedel455716f2010-03-01 15:34:35 +0100685 BUG_ON(offset == MSR_INVALID);
686
687 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
688 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
689
690 msrpm[offset] = tmp;
Vineeth Pillaic4327f12021-06-03 15:14:39 +0000691
692 svm_hv_vmcb_dirty_nested_enlightenments(vcpu);
693
Avi Kivity6aa8b732006-12-10 02:21:36 -0800694}
695
Tom Lendacky376c6d22020-12-10 11:10:06 -0600696void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
697 int read, int write)
Alexander Graffd6fa732020-09-25 16:34:19 +0200698{
699 set_shadow_msr_intercept(vcpu, msr, read, write);
700 set_msr_interception_bitmap(vcpu, msrpm, msr, read, write);
701}
702
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300703u32 *svm_vcpu_alloc_msrpm(void)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100704{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400705 unsigned int order = get_order(MSRPM_SIZE);
706 struct page *pages = alloc_pages(GFP_KERNEL_ACCOUNT, order);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200707 u32 *msrpm;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100708
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300709 if (!pages)
710 return NULL;
711
712 msrpm = page_address(pages);
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400713 memset(msrpm, 0xff, PAGE_SIZE * (1 << order));
Joerg Roedelf65c2292008-02-13 18:58:46 +0100714
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200715 return msrpm;
716}
717
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300718void svm_vcpu_init_msrpm(struct kvm_vcpu *vcpu, u32 *msrpm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800719{
Joerg Roedelf65c2292008-02-13 18:58:46 +0100720 int i;
721
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100722 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
723 if (!direct_access_msrs[i].always)
724 continue;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200725 set_msr_interception(vcpu, msrpm, direct_access_msrs[i].index, 1, 1);
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100726 }
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300727}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300729
730void svm_vcpu_free_msrpm(u32 *msrpm)
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300731{
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400732 __free_pages(virt_to_page(msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733}
734
Alexander Graffd6fa732020-09-25 16:34:19 +0200735static void svm_msr_filter_changed(struct kvm_vcpu *vcpu)
736{
737 struct vcpu_svm *svm = to_svm(vcpu);
738 u32 i;
739
740 /*
741 * Set intercept permissions for all direct access MSRs again. They
742 * will automatically get filtered through the MSR filter, so we are
743 * back in sync after this.
744 */
745 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
746 u32 msr = direct_access_msrs[i].index;
747 u32 read = test_bit(i, svm->shadow_msr_intercept.read);
748 u32 write = test_bit(i, svm->shadow_msr_intercept.write);
749
750 set_msr_interception_bitmap(vcpu, svm->msrpm, msr, read, write);
Anthony Liguoric8681332007-04-30 09:48:11 +0300751 }
752}
753
Joerg Roedel323c3d82010-03-01 15:34:37 +0100754static void add_msr_offset(u32 offset)
755{
756 int i;
757
758 for (i = 0; i < MSRPM_OFFSETS; ++i) {
759
760 /* Offset already in list? */
761 if (msrpm_offsets[i] == offset)
762 return;
763
764 /* Slot used by another offset? */
765 if (msrpm_offsets[i] != MSR_INVALID)
766 continue;
767
768 /* Add offset to list */
769 msrpm_offsets[i] = offset;
770
771 return;
772 }
773
774 /*
775 * If this BUG triggers the msrpm_offsets table has an overflow. Just
776 * increase MSRPM_OFFSETS in this case.
777 */
778 BUG();
779}
780
781static void init_msrpm_offsets(void)
782{
783 int i;
784
785 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
786
787 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
788 u32 offset;
789
790 offset = svm_msrpm_offset(direct_access_msrs[i].index);
791 BUG_ON(offset == MSR_INVALID);
792
793 add_msr_offset(offset);
794 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795}
796
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200797static void svm_enable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800798{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200799 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500801 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200802 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
803 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
804 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
805 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806}
807
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200808static void svm_disable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800809{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200810 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800811
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500812 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200813 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
814 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
815 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
816 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817}
818
Joerg Roedel883b0a92020-03-24 10:41:52 +0100819void disable_nmi_singlestep(struct vcpu_svm *svm)
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200820{
821 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500822
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200823 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
824 /* Clear our flags if they were not set by the guest */
825 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
826 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
827 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
828 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
829 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200830}
831
Babu Moger8566ac82018-03-16 16:37:26 -0400832static void grow_ple_window(struct kvm_vcpu *vcpu)
833{
834 struct vcpu_svm *svm = to_svm(vcpu);
835 struct vmcb_control_area *control = &svm->vmcb->control;
836 int old = control->pause_filter_count;
837
838 control->pause_filter_count = __grow_ple_window(old,
839 pause_filter_count,
840 pause_filter_count_grow,
841 pause_filter_count_max);
842
Peter Xu4f75bcc2019-09-06 10:17:22 +0800843 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200844 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800845 trace_kvm_ple_window_update(vcpu->vcpu_id,
846 control->pause_filter_count, old);
847 }
Babu Moger8566ac82018-03-16 16:37:26 -0400848}
849
850static void shrink_ple_window(struct kvm_vcpu *vcpu)
851{
852 struct vcpu_svm *svm = to_svm(vcpu);
853 struct vmcb_control_area *control = &svm->vmcb->control;
854 int old = control->pause_filter_count;
855
856 control->pause_filter_count =
857 __shrink_ple_window(old,
858 pause_filter_count,
859 pause_filter_count_shrink,
860 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800861 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200862 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800863 trace_kvm_ple_window_update(vcpu->vcpu_id,
864 control->pause_filter_count, old);
865 }
Babu Moger8566ac82018-03-16 16:37:26 -0400866}
867
Tom Lendacky52918ed2020-01-09 17:42:16 -0600868/*
869 * The default MMIO mask is a single bit (excluding the present bit),
870 * which could conflict with the memory encryption bit. Check for
871 * memory encryption support and override the default MMIO mask if
872 * memory encryption is enabled.
873 */
874static __init void svm_adjust_mmio_mask(void)
875{
876 unsigned int enc_bit, mask_bit;
877 u64 msr, mask;
878
879 /* If there is no memory encryption support, use existing mask */
880 if (cpuid_eax(0x80000000) < 0x8000001f)
881 return;
882
883 /* If memory encryption is not enabled, use existing mask */
Brijesh Singh059e5c32021-04-27 06:16:36 -0500884 rdmsrl(MSR_AMD64_SYSCFG, msr);
885 if (!(msr & MSR_AMD64_SYSCFG_MEM_ENCRYPT))
Tom Lendacky52918ed2020-01-09 17:42:16 -0600886 return;
887
888 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
889 mask_bit = boot_cpu_data.x86_phys_bits;
890
891 /* Increment the mask bit if it is the same as the encryption bit */
892 if (enc_bit == mask_bit)
893 mask_bit++;
894
895 /*
896 * If the mask bit location is below 52, then some bits above the
897 * physical addressing limit will always be reserved, so use the
898 * rsvd_bits() function to generate the mask. This mask, along with
899 * the present bit, will be used to generate a page fault with
900 * PFER.RSV = 1.
901 *
902 * If the mask bit location is 52 (or above), then clear the mask.
903 */
904 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
905
Sean Christopherson81203372021-02-25 12:47:35 -0800906 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
Tom Lendacky52918ed2020-01-09 17:42:16 -0600907}
908
Li RongQingdd58f3c2020-02-23 16:13:12 +0800909static void svm_hardware_teardown(void)
910{
911 int cpu;
912
Sean Christopherson4cafd0c2021-04-21 19:11:20 -0700913 sev_hardware_teardown();
Li RongQingdd58f3c2020-02-23 16:13:12 +0800914
915 for_each_possible_cpu(cpu)
916 svm_cpu_uninit(cpu);
917
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400918 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT),
919 get_order(IOPM_SIZE));
Li RongQingdd58f3c2020-02-23 16:13:12 +0800920 iopm_base = 0;
921}
922
Sean Christopherson9b58b982020-03-02 15:56:42 -0800923static __init void svm_set_cpu_caps(void)
924{
925 kvm_set_cpu_caps();
926
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100927 supported_xss = 0;
928
Sean Christophersona50718c2020-03-02 15:57:07 -0800929 /* CPUID 0x80000001 and 0x8000000A (SVM features) */
930 if (nested) {
Sean Christopherson9b58b982020-03-02 15:56:42 -0800931 kvm_cpu_cap_set(X86_FEATURE_SVM);
932
Sean Christopherson4eb87462020-03-02 15:57:08 -0800933 if (nrips)
Sean Christophersona50718c2020-03-02 15:57:07 -0800934 kvm_cpu_cap_set(X86_FEATURE_NRIPS);
935
936 if (npt_enabled)
937 kvm_cpu_cap_set(X86_FEATURE_NPT);
Wei Huang14c2bf82021-01-26 03:18:31 -0500938
939 /* Nested VM can receive #VMEXIT instead of triggering #GP */
940 kvm_cpu_cap_set(X86_FEATURE_SVME_ADDR_CHK);
Sean Christophersona50718c2020-03-02 15:57:07 -0800941 }
942
Sean Christopherson93c380e2020-03-02 15:56:54 -0800943 /* CPUID 0x80000008 */
944 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
945 boot_cpu_has(X86_FEATURE_AMD_SSBD))
946 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
Paolo Bonzinid9db0fd2021-04-21 19:11:15 -0700947
948 /* CPUID 0x8000001F (SME/SEV features) */
949 sev_set_cpu_caps();
Sean Christopherson9b58b982020-03-02 15:56:42 -0800950}
951
Avi Kivity6aa8b732006-12-10 02:21:36 -0800952static __init int svm_hardware_setup(void)
953{
954 int cpu;
955 struct page *iopm_pages;
956 void *iopm_va;
957 int r;
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400958 unsigned int order = get_order(IOPM_SIZE);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959
Sean Christophersonb26a71a2021-06-15 09:45:33 -0700960 /*
961 * NX is required for shadow paging and for NPT if the NX huge pages
962 * mitigation is enabled.
963 */
964 if (!boot_cpu_has(X86_FEATURE_NX)) {
965 pr_err_ratelimited("NX (Execute Disable) not supported\n");
966 return -EOPNOTSUPP;
967 }
968 kvm_enable_efer_bits(EFER_NX);
969
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400970 iopm_pages = alloc_pages(GFP_KERNEL, order);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971
972 if (!iopm_pages)
973 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +0300974
975 iopm_va = page_address(iopm_pages);
Krish Sadhukhan47903dc2021-04-12 17:56:05 -0400976 memset(iopm_va, 0xff, PAGE_SIZE * (1 << order));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
978
Joerg Roedel323c3d82010-03-01 15:34:37 +0100979 init_msrpm_offsets();
980
Sean Christophersoncfc48182020-03-02 15:56:23 -0800981 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
982
Alexander Graf1b2fd702009-02-02 16:23:51 +0100983 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
984 kvm_enable_efer_bits(EFER_FFXSR);
985
Joerg Roedel92a1f122011-03-25 09:44:51 +0100986 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +0100987 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800988 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
989 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100990 }
991
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700992 tsc_aux_uret_slot = kvm_add_user_return_msr(MSR_TSC_AUX);
Sean Christopherson844d69c2021-04-23 15:34:04 -0700993
Babu Moger8566ac82018-03-16 16:37:26 -0400994 /* Check for pause filtering support */
995 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
996 pause_filter_count = 0;
997 pause_filter_thresh = 0;
998 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
999 pause_filter_thresh = 0;
1000 }
1001
Alexander Graf236de052008-11-25 20:17:10 +01001002 if (nested) {
1003 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001004 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001005 }
1006
Sean Christopherson99840a72021-03-04 18:16:37 -08001007 /*
1008 * KVM's MMU doesn't support using 2-level paging for itself, and thus
1009 * NPT isn't supported if the host is using 2-level paging since host
1010 * CR4 is unchanged on VMRUN.
1011 */
1012 if (!IS_ENABLED(CONFIG_X86_64) && !IS_ENABLED(CONFIG_X86_PAE))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001013 npt_enabled = false;
1014
Sean Christopherson99840a72021-03-04 18:16:37 -08001015 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001016 npt_enabled = false;
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001017
Sean Christopherson83013052020-07-15 20:41:22 -07001018 kvm_configure_mmu(npt_enabled, get_max_npt_level(), PG_LEVEL_1G);
Sean Christopherson213e0e12020-03-02 15:57:01 -08001019 pr_info("kvm: Nested Paging %sabled\n", npt_enabled ? "en" : "dis");
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001020
Sean Christophersone8126bd2021-04-21 19:11:14 -07001021 /* Note, SEV setup consumes npt_enabled. */
1022 sev_hardware_setup();
Sean Christophersonfa136802021-04-21 19:11:13 -07001023
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00001024 svm_hv_hardware_setup();
1025
Sean Christophersonfa136802021-04-21 19:11:13 -07001026 svm_adjust_mmio_mask();
1027
1028 for_each_possible_cpu(cpu) {
1029 r = svm_cpu_init(cpu);
1030 if (r)
1031 goto err;
1032 }
1033
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001034 if (nrips) {
1035 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1036 nrips = false;
1037 }
1038
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +02001039 enable_apicv = avic = avic && npt_enabled && boot_cpu_has(X86_FEATURE_AVIC);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001040
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +02001041 if (enable_apicv) {
1042 pr_info("AVIC enabled\n");
1043
1044 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001045 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001046
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001047 if (vls) {
1048 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001049 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001050 !IS_ENABLED(CONFIG_X86_64)) {
1051 vls = false;
1052 } else {
1053 pr_info("Virtual VMLOAD VMSAVE supported\n");
1054 }
1055 }
1056
Wei Huang3b9c7232021-01-26 03:18:30 -05001057 if (boot_cpu_has(X86_FEATURE_SVME_ADDR_CHK))
1058 svm_gp_erratum_intercept = false;
1059
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001060 if (vgif) {
1061 if (!boot_cpu_has(X86_FEATURE_VGIF))
1062 vgif = false;
1063 else
1064 pr_info("Virtual GIF supported\n");
1065 }
1066
Sean Christopherson9b58b982020-03-02 15:56:42 -08001067 svm_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08001068
Mohammed Gamal3edd6832020-07-10 17:48:11 +02001069 /*
1070 * It seems that on AMD processors PTE's accessed bit is
1071 * being set by the CPU hardware before the NPF vmexit.
1072 * This is not expected behaviour and our tests fail because
1073 * of it.
1074 * A workaround here is to disable support for
1075 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR if NPT is enabled.
1076 * In this case userspace can know if there is support using
1077 * KVM_CAP_SMALLER_MAXPHYADDR extension and decide how to handle
1078 * it
1079 * If future AMD CPU models change the behaviour described above,
1080 * this variable can be changed accordingly
1081 */
1082 allow_smaller_maxphyaddr = !npt_enabled;
1083
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084 return 0;
1085
Joerg Roedelf65c2292008-02-13 18:58:46 +01001086err:
Li RongQingdd58f3c2020-02-23 16:13:12 +08001087 svm_hardware_teardown();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001088 return r;
1089}
1090
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091static void init_seg(struct vmcb_seg *seg)
1092{
1093 seg->selector = 0;
1094 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001095 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001096 seg->limit = 0xffff;
1097 seg->base = 0;
1098}
1099
1100static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1101{
1102 seg->selector = 0;
1103 seg->attrib = SVM_SELECTOR_P_MASK | type;
1104 seg->limit = 0xffff;
1105 seg->base = 0;
1106}
1107
Ilias Stamatis307a94c2021-05-26 19:44:13 +01001108static u64 svm_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
1109{
1110 struct vcpu_svm *svm = to_svm(vcpu);
1111
1112 return svm->nested.ctl.tsc_offset;
1113}
1114
1115static u64 svm_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
1116{
1117 return kvm_default_tsc_scaling_ratio;
1118}
1119
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001120static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001121{
1122 struct vcpu_svm *svm = to_svm(vcpu);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001123
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001124 svm->vmcb01.ptr->control.tsc_offset = vcpu->arch.l1_tsc_offset;
1125 svm->vmcb->control.tsc_offset = offset;
Joerg Roedel06e78522020-06-25 10:03:23 +02001126 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001127}
1128
Ilias Stamatis1ab92872021-06-07 11:54:38 +01001129static void svm_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
1130{
1131 wrmsrl(MSR_AMD64_TSC_RATIO, multiplier);
1132}
1133
Sean Christopherson3b195ac2021-05-04 10:17:22 -07001134/* Evaluate instruction intercepts that depend on guest CPUID features. */
1135static void svm_recalc_instruction_intercepts(struct kvm_vcpu *vcpu,
1136 struct vcpu_svm *svm)
Babu Moger4407a792020-09-11 14:29:19 -05001137{
1138 /*
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001139 * Intercept INVPCID if shadow paging is enabled to sync/free shadow
1140 * roots, or if INVPCID is disabled in the guest to inject #UD.
Babu Moger4407a792020-09-11 14:29:19 -05001141 */
1142 if (kvm_cpu_cap_has(X86_FEATURE_INVPCID)) {
Sean Christopherson0a8ed2e2021-02-11 16:34:09 -08001143 if (!npt_enabled ||
1144 !guest_cpuid_has(&svm->vcpu, X86_FEATURE_INVPCID))
Babu Moger4407a792020-09-11 14:29:19 -05001145 svm_set_intercept(svm, INTERCEPT_INVPCID);
1146 else
1147 svm_clr_intercept(svm, INTERCEPT_INVPCID);
1148 }
Sean Christopherson3b195ac2021-05-04 10:17:22 -07001149
1150 if (kvm_cpu_cap_has(X86_FEATURE_RDTSCP)) {
1151 if (guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
1152 svm_clr_intercept(svm, INTERCEPT_RDTSCP);
1153 else
1154 svm_set_intercept(svm, INTERCEPT_RDTSCP);
1155 }
Babu Moger4407a792020-09-11 14:29:19 -05001156}
1157
Paolo Bonzini63129752021-03-02 14:40:39 -05001158static void init_vmcb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001159{
Paolo Bonzini63129752021-03-02 14:40:39 -05001160 struct vcpu_svm *svm = to_svm(vcpu);
Joerg Roedele6101a92008-02-13 18:58:45 +01001161 struct vmcb_control_area *control = &svm->vmcb->control;
1162 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001163
Paolo Bonzini63129752021-03-02 14:40:39 -05001164 vcpu->arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001165
Babu Moger830bd712020-09-11 14:28:50 -05001166 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1167 svm_set_intercept(svm, INTERCEPT_CR3_READ);
1168 svm_set_intercept(svm, INTERCEPT_CR4_READ);
1169 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1170 svm_set_intercept(svm, INTERCEPT_CR3_WRITE);
1171 svm_set_intercept(svm, INTERCEPT_CR4_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001172 if (!kvm_vcpu_apicv_active(vcpu))
Babu Moger830bd712020-09-11 14:28:50 -05001173 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001174
Paolo Bonzini5315c712014-03-03 13:08:29 +01001175 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001176
Joerg Roedel18c918c2010-11-30 18:03:59 +01001177 set_exception_intercept(svm, PF_VECTOR);
1178 set_exception_intercept(svm, UD_VECTOR);
1179 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001180 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001181 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001182 /*
1183 * Guest access to VMware backdoor ports could legitimately
1184 * trigger #GP because of TSS I/O permission bitmap.
1185 * We intercept those #GP and allow access to them anyway
1186 * as VMware does.
1187 */
1188 if (enable_vmware_backdoor)
1189 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001190
Joerg Roedela284ba52020-06-25 10:03:24 +02001191 svm_set_intercept(svm, INTERCEPT_INTR);
1192 svm_set_intercept(svm, INTERCEPT_NMI);
Maxim Levitsky4b639a92021-07-07 15:51:00 +03001193
1194 if (intercept_smi)
1195 svm_set_intercept(svm, INTERCEPT_SMI);
1196
Joerg Roedela284ba52020-06-25 10:03:24 +02001197 svm_set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
1198 svm_set_intercept(svm, INTERCEPT_RDPMC);
1199 svm_set_intercept(svm, INTERCEPT_CPUID);
1200 svm_set_intercept(svm, INTERCEPT_INVD);
1201 svm_set_intercept(svm, INTERCEPT_INVLPG);
1202 svm_set_intercept(svm, INTERCEPT_INVLPGA);
1203 svm_set_intercept(svm, INTERCEPT_IOIO_PROT);
1204 svm_set_intercept(svm, INTERCEPT_MSR_PROT);
1205 svm_set_intercept(svm, INTERCEPT_TASK_SWITCH);
1206 svm_set_intercept(svm, INTERCEPT_SHUTDOWN);
1207 svm_set_intercept(svm, INTERCEPT_VMRUN);
1208 svm_set_intercept(svm, INTERCEPT_VMMCALL);
1209 svm_set_intercept(svm, INTERCEPT_VMLOAD);
1210 svm_set_intercept(svm, INTERCEPT_VMSAVE);
1211 svm_set_intercept(svm, INTERCEPT_STGI);
1212 svm_set_intercept(svm, INTERCEPT_CLGI);
1213 svm_set_intercept(svm, INTERCEPT_SKINIT);
1214 svm_set_intercept(svm, INTERCEPT_WBINVD);
1215 svm_set_intercept(svm, INTERCEPT_XSETBV);
1216 svm_set_intercept(svm, INTERCEPT_RDPRU);
1217 svm_set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218
Paolo Bonzini63129752021-03-02 14:40:39 -05001219 if (!kvm_mwait_in_guest(vcpu->kvm)) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001220 svm_set_intercept(svm, INTERCEPT_MONITOR);
1221 svm_set_intercept(svm, INTERCEPT_MWAIT);
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001222 }
1223
Paolo Bonzini63129752021-03-02 14:40:39 -05001224 if (!kvm_hlt_in_guest(vcpu->kvm))
Joerg Roedela284ba52020-06-25 10:03:24 +02001225 svm_set_intercept(svm, INTERCEPT_HLT);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001226
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001227 control->iopm_base_pa = __sme_set(iopm_base);
1228 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229 control->int_ctl = V_INTR_MASKING_MASK;
1230
1231 init_seg(&save->es);
1232 init_seg(&save->ss);
1233 init_seg(&save->ds);
1234 init_seg(&save->fs);
1235 init_seg(&save->gs);
1236
1237 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001238 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001239 /* Executable/Readable Code Segment */
1240 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1241 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1242 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001243
1244 save->gdtr.limit = 0xffff;
1245 save->idtr.limit = 0xffff;
1246
1247 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1248 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1249
Paolo Bonzini63129752021-03-02 14:40:39 -05001250 svm_set_cr4(vcpu, 0);
1251 svm_set_efer(vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001252 save->dr6 = 0xffff0ff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001253 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001254 save->rip = 0x0000fff0;
Paolo Bonzini63129752021-03-02 14:40:39 -05001255 vcpu->arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001256
Joerg Roedele0231712010-02-24 18:59:10 +01001257 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001258 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001259 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001260 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001261 svm_set_cr0(vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
1262 kvm_mmu_reset_context(vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001263
Rusty Russell66aee912007-07-17 23:34:16 +10001264 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001265 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001266
1267 if (npt_enabled) {
1268 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001269 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedela284ba52020-06-25 10:03:24 +02001270 svm_clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001271 clr_exception_intercept(svm, PF_VECTOR);
Babu Moger830bd712020-09-11 14:28:50 -05001272 svm_clr_intercept(svm, INTERCEPT_CR3_READ);
1273 svm_clr_intercept(svm, INTERCEPT_CR3_WRITE);
Paolo Bonzini63129752021-03-02 14:40:39 -05001274 save->g_pat = vcpu->arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001275 save->cr3 = 0;
1276 save->cr4 = 0;
1277 }
Cathy Avery193015a2021-01-12 11:43:13 -05001278 svm->current_vmcb->asid_generation = 0;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001279 svm->asid = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001280
Maxim Levitskyc74ad082021-05-03 15:54:43 +03001281 svm->nested.vmcb12_gpa = INVALID_GPA;
1282 svm->nested.last_vmcb12_gpa = INVALID_GPA;
Paolo Bonzini63129752021-03-02 14:40:39 -05001283 vcpu->arch.hflags = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001284
Paolo Bonzini63129752021-03-02 14:40:39 -05001285 if (!kvm_pause_in_guest(vcpu->kvm)) {
Babu Moger8566ac82018-03-16 16:37:26 -04001286 control->pause_filter_count = pause_filter_count;
1287 if (pause_filter_thresh)
1288 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedela284ba52020-06-25 10:03:24 +02001289 svm_set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001290 } else {
Joerg Roedela284ba52020-06-25 10:03:24 +02001291 svm_clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001292 }
1293
Sean Christopherson3b195ac2021-05-04 10:17:22 -07001294 svm_recalc_instruction_intercepts(vcpu, svm);
Babu Moger4407a792020-09-11 14:29:19 -05001295
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001296 /*
Babu Mogerd00b99c2021-02-17 10:56:04 -05001297 * If the host supports V_SPEC_CTRL then disable the interception
1298 * of MSR_IA32_SPEC_CTRL.
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001299 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05001300 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
1301 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
1302
Paolo Bonzini63129752021-03-02 14:40:39 -05001303 if (kvm_vcpu_apicv_active(vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001304 avic_init_vmcb(svm);
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001305
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001306 if (vgif) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001307 svm_clr_intercept(svm, INTERCEPT_STGI);
1308 svm_clr_intercept(svm, INTERCEPT_CLGI);
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001309 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1310 }
1311
Paolo Bonzini63129752021-03-02 14:40:39 -05001312 if (sev_guest(vcpu->kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001313 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001314 clr_exception_intercept(svm, UD_VECTOR);
Tom Lendacky376c6d22020-12-10 11:10:06 -06001315
Paolo Bonzini63129752021-03-02 14:40:39 -05001316 if (sev_es_guest(vcpu->kvm)) {
Tom Lendacky376c6d22020-12-10 11:10:06 -06001317 /* Perform SEV-ES specific VMCB updates */
1318 sev_es_init_vmcb(svm);
1319 }
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001320 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001321
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00001322 svm_hv_init_vmcb(svm->vmcb);
1323
Joerg Roedel06e78522020-06-25 10:03:23 +02001324 vmcb_mark_all_dirty(svm->vmcb);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001325
Joerg Roedel2af91942009-08-07 11:49:28 +02001326 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001327
1328}
1329
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001330static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001331{
1332 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001333 u32 dummy;
1334 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001335
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001336 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02001337 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001338
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001339 if (!init_event) {
Paolo Bonzini63129752021-03-02 14:40:39 -05001340 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1341 MSR_IA32_APICBASE_ENABLE;
1342 if (kvm_vcpu_is_reset_bsp(vcpu))
1343 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001344 }
Paolo Bonzini63129752021-03-02 14:40:39 -05001345 init_vmcb(vcpu);
Avi Kivity70433382007-11-07 12:57:23 +02001346
Sean Christophersonf91af512020-03-04 17:34:37 -08001347 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001348 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001349
1350 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1351 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001352}
1353
Cathy Avery4995a362021-01-13 07:07:52 -05001354void svm_switch_vmcb(struct vcpu_svm *svm, struct kvm_vmcb_info *target_vmcb)
1355{
1356 svm->current_vmcb = target_vmcb;
1357 svm->vmcb = target_vmcb->ptr;
Cathy Avery4995a362021-01-13 07:07:52 -05001358}
1359
Sean Christopherson987b2592019-12-18 13:54:55 -08001360static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001362 struct vcpu_svm *svm;
Cathy Avery4995a362021-01-13 07:07:52 -05001363 struct page *vmcb01_page;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001364 struct page *vmsa_page = NULL;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001365 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001366
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001367 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
1368 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001369
Joerg Roedelf65c2292008-02-13 18:58:46 +01001370 err = -ENOMEM;
Cathy Avery4995a362021-01-13 07:07:52 -05001371 vmcb01_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1372 if (!vmcb01_page)
Sean Christopherson987b2592019-12-18 13:54:55 -08001373 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001374
Paolo Bonzini63129752021-03-02 14:40:39 -05001375 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001376 /*
1377 * SEV-ES guests require a separate VMSA page used to contain
1378 * the encrypted register state of the guest.
1379 */
1380 vmsa_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1381 if (!vmsa_page)
1382 goto error_free_vmcb_page;
Tom Lendackyed02b212020-12-10 11:10:01 -06001383
1384 /*
1385 * SEV-ES guests maintain an encrypted version of their FPU
1386 * state which is restored and saved on VMRUN and VMEXIT.
1387 * Free the fpu structure to prevent KVM from attempting to
1388 * access the FPU state.
1389 */
1390 kvm_free_guest_fpu(vcpu);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001391 }
1392
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001393 err = avic_init_vcpu(svm);
1394 if (err)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001395 goto error_free_vmsa_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001396
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001397 /* We initialize this flag to true to make sure that the is_running
1398 * bit would be set the first time the vcpu is loaded.
1399 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001400 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
1401 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001402
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001403 svm->msrpm = svm_vcpu_alloc_msrpm();
Chen Zhou054409a2020-11-17 10:54:26 +08001404 if (!svm->msrpm) {
1405 err = -ENOMEM;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001406 goto error_free_vmsa_page;
Chen Zhou054409a2020-11-17 10:54:26 +08001407 }
Alexander Grafb286d5d2008-11-25 20:17:05 +01001408
Cathy Avery4995a362021-01-13 07:07:52 -05001409 svm->vmcb01.ptr = page_address(vmcb01_page);
1410 svm->vmcb01.pa = __sme_set(page_to_pfn(vmcb01_page) << PAGE_SHIFT);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001411
1412 if (vmsa_page)
1413 svm->vmsa = page_address(vmsa_page);
1414
Michael Rotha7fc06d2021-02-02 13:01:26 -06001415 svm->guest_state_loaded = false;
Cathy Avery4995a362021-01-13 07:07:52 -05001416
1417 svm_switch_vmcb(svm, &svm->vmcb01);
Paolo Bonzini63129752021-03-02 14:40:39 -05001418 init_vmcb(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419
Paolo Bonzini3fa5e8f2021-07-26 12:39:01 -04001420 svm_vcpu_init_msrpm(vcpu, svm->msrpm);
1421
Sean Christopherson7f271792019-12-18 13:54:51 -08001422 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01001423 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001424
Paolo Bonzini63129752021-03-02 14:40:39 -05001425 if (sev_es_guest(vcpu->kvm))
Tom Lendacky376c6d22020-12-10 11:10:06 -06001426 /* Perform SEV-ES specific VMCB creation updates */
1427 sev_es_create_vcpu(svm);
1428
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001429 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08001430
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001431error_free_vmsa_page:
1432 if (vmsa_page)
1433 __free_page(vmsa_page);
Maxim Levitsky8d22b902020-08-27 20:11:42 +03001434error_free_vmcb_page:
Cathy Avery4995a362021-01-13 07:07:52 -05001435 __free_page(vmcb01_page);
Sean Christopherson987b2592019-12-18 13:54:55 -08001436out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001437 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438}
1439
Jim Mattsonfd65d312018-05-22 09:54:20 -07001440static void svm_clear_current_vmcb(struct vmcb *vmcb)
1441{
1442 int i;
1443
1444 for_each_online_cpu(i)
1445 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
1446}
1447
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1449{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001450 struct vcpu_svm *svm = to_svm(vcpu);
1451
Jim Mattsonfd65d312018-05-22 09:54:20 -07001452 /*
1453 * The vmcb page can be recycled, causing a false negative in
1454 * svm_vcpu_load(). So, ensure that no logical CPU has this
1455 * vmcb page recorded as its current vmcb.
1456 */
1457 svm_clear_current_vmcb(svm->vmcb);
1458
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03001459 svm_free_nested(svm);
1460
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001461 sev_free_vcpu(vcpu);
1462
Cathy Avery4995a362021-01-13 07:07:52 -05001463 __free_page(pfn_to_page(__sme_clr(svm->vmcb01.pa) >> PAGE_SHIFT));
Krish Sadhukhan47903dc2021-04-12 17:56:05 -04001464 __free_pages(virt_to_page(svm->msrpm), get_order(MSRPM_SIZE));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465}
1466
Michael Rotha7fc06d2021-02-02 13:01:26 -06001467static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001468{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001469 struct vcpu_svm *svm = to_svm(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001470 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity0cc50642007-03-25 12:07:27 +02001471
Tom Lendackyce7ea0c2021-05-06 15:14:41 -05001472 if (sev_es_guest(vcpu->kvm))
1473 sev_es_unmap_ghcb(svm);
1474
Michael Rotha7fc06d2021-02-02 13:01:26 -06001475 if (svm->guest_state_loaded)
1476 return;
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001477
Michael Rotha7fc06d2021-02-02 13:01:26 -06001478 /*
Michael Rotha7fc06d2021-02-02 13:01:26 -06001479 * Save additional host state that will be restored on VMEXIT (sev-es)
1480 * or subsequent vmload of host save area.
1481 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001482 if (sev_es_guest(vcpu->kvm)) {
Michael Rotha7fc06d2021-02-02 13:01:26 -06001483 sev_es_prepare_guest_switch(svm, vcpu->cpu);
Tom Lendacky86137772020-12-10 11:10:07 -06001484 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06001485 vmsave(__sme_page_pa(sd->save_area));
Tom Lendacky86137772020-12-10 11:10:07 -06001486 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001487
Haozhong Zhangad7218832015-10-20 15:39:02 +08001488 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1489 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1490 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1491 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1492 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1493 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001494 }
Michael Rotha7fc06d2021-02-02 13:01:26 -06001495
Sean Christopherson0caa0a72021-05-04 10:17:25 -07001496 if (likely(tsc_aux_uret_slot >= 0))
1497 kvm_set_user_return_msr(tsc_aux_uret_slot, svm->tsc_aux, -1ull);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001498
Michael Rotha7fc06d2021-02-02 13:01:26 -06001499 svm->guest_state_loaded = true;
1500}
1501
1502static void svm_prepare_host_switch(struct kvm_vcpu *vcpu)
1503{
Sean Christopherson844d69c2021-04-23 15:34:04 -07001504 to_svm(vcpu)->guest_state_loaded = false;
Michael Rotha7fc06d2021-02-02 13:01:26 -06001505}
1506
1507static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1508{
1509 struct vcpu_svm *svm = to_svm(vcpu);
1510 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
1511
Ashok Raj15d45072018-02-01 22:59:43 +01001512 if (sd->current_vmcb != svm->vmcb) {
1513 sd->current_vmcb = svm->vmcb;
1514 indirect_branch_prediction_barrier();
1515 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001516 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517}
1518
1519static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1520{
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001521 avic_vcpu_put(vcpu);
Michael Rotha7fc06d2021-02-02 13:01:26 -06001522 svm_prepare_host_switch(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001523
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001524 ++vcpu->stat.host_state_reload;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001525}
1526
Avi Kivity6aa8b732006-12-10 02:21:36 -08001527static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1528{
Ladi Prosek9b611742017-06-21 09:06:59 +02001529 struct vcpu_svm *svm = to_svm(vcpu);
1530 unsigned long rflags = svm->vmcb->save.rflags;
1531
1532 if (svm->nmi_singlestep) {
1533 /* Hide our flags if they were not set by the guest */
1534 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1535 rflags &= ~X86_EFLAGS_TF;
1536 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1537 rflags &= ~X86_EFLAGS_RF;
1538 }
1539 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001540}
1541
1542static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1543{
Ladi Prosek9b611742017-06-21 09:06:59 +02001544 if (to_svm(vcpu)->nmi_singlestep)
1545 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1546
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001547 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001548 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001549 * (caused by either a task switch or an inter-privilege IRET),
1550 * so we do not need to update the CPL here.
1551 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001552 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001553}
1554
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001555static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1556{
1557 switch (reg) {
1558 case VCPU_EXREG_PDPTR:
1559 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001560 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001561 break;
1562 default:
Sean Christopherson67369272021-07-02 15:04:25 -07001563 KVM_BUG_ON(1, vcpu->kvm);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001564 }
1565}
1566
Suravee Suthikulpanite14b7782020-05-06 08:17:55 -05001567static void svm_set_vintr(struct vcpu_svm *svm)
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001568{
1569 struct vmcb_control_area *control;
1570
Maxim Levitskyf1577ab2021-07-13 17:20:16 +03001571 /*
1572 * The following fields are ignored when AVIC is enabled
1573 */
1574 WARN_ON(kvm_apicv_activated(svm->vcpu.kvm));
1575
Joerg Roedela284ba52020-06-25 10:03:24 +02001576 svm_set_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001577
1578 /*
1579 * This is just a dummy VINTR to actually cause a vmexit to happen.
1580 * Actual injection of virtual interrupts happens through EVENTINJ.
1581 */
1582 control = &svm->vmcb->control;
1583 control->int_vector = 0x0;
1584 control->int_ctl &= ~V_INTR_PRIO_MASK;
1585 control->int_ctl |= V_IRQ_MASK |
1586 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedel06e78522020-06-25 10:03:23 +02001587 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001588}
1589
Alexander Graff0b85052008-11-25 20:17:01 +01001590static void svm_clear_vintr(struct vcpu_svm *svm)
1591{
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001592 const u32 mask = V_TPR_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK | V_INTR_MASKING_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02001593 svm_clr_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001594
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001595 /* Drop int_ctl fields related to VINTR injection. */
1596 svm->vmcb->control.int_ctl &= mask;
1597 if (is_guest_mode(&svm->vcpu)) {
Cathy Avery4995a362021-01-13 07:07:52 -05001598 svm->vmcb01.ptr->control.int_ctl &= mask;
Paolo Bonzinifb7333d2020-06-08 07:11:47 -04001599
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001600 WARN_ON((svm->vmcb->control.int_ctl & V_TPR_MASK) !=
1601 (svm->nested.ctl.int_ctl & V_TPR_MASK));
1602 svm->vmcb->control.int_ctl |= svm->nested.ctl.int_ctl & ~mask;
1603 }
1604
Joerg Roedel06e78522020-06-25 10:03:23 +02001605 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001606}
1607
Avi Kivity6aa8b732006-12-10 02:21:36 -08001608static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1609{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001610 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001611 struct vmcb_save_area *save01 = &to_svm(vcpu)->vmcb01.ptr->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001612
1613 switch (seg) {
1614 case VCPU_SREG_CS: return &save->cs;
1615 case VCPU_SREG_DS: return &save->ds;
1616 case VCPU_SREG_ES: return &save->es;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001617 case VCPU_SREG_FS: return &save01->fs;
1618 case VCPU_SREG_GS: return &save01->gs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001619 case VCPU_SREG_SS: return &save->ss;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02001620 case VCPU_SREG_TR: return &save01->tr;
1621 case VCPU_SREG_LDTR: return &save01->ldtr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001622 }
1623 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001624 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625}
1626
1627static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1628{
1629 struct vmcb_seg *s = svm_seg(vcpu, seg);
1630
1631 return s->base;
1632}
1633
1634static void svm_get_segment(struct kvm_vcpu *vcpu,
1635 struct kvm_segment *var, int seg)
1636{
1637 struct vmcb_seg *s = svm_seg(vcpu, seg);
1638
1639 var->base = s->base;
1640 var->limit = s->limit;
1641 var->selector = s->selector;
1642 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1643 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1644 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1645 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1646 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1647 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1648 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301649
1650 /*
1651 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1652 * However, the SVM spec states that the G bit is not observed by the
1653 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1654 * So let's synthesize a legal G bit for all segments, this helps
1655 * running KVM nested. It also helps cross-vendor migration, because
1656 * Intel's vmentry has a check on the 'G' bit.
1657 */
1658 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001659
Joerg Roedele0231712010-02-24 18:59:10 +01001660 /*
1661 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001662 * for cross vendor migration purposes by "not present"
1663 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001664 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001665
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001666 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001667 case VCPU_SREG_TR:
1668 /*
1669 * Work around a bug where the busy flag in the tr selector
1670 * isn't exposed
1671 */
Amit Shahc0d09822008-10-27 09:04:18 +00001672 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001673 break;
1674 case VCPU_SREG_DS:
1675 case VCPU_SREG_ES:
1676 case VCPU_SREG_FS:
1677 case VCPU_SREG_GS:
1678 /*
1679 * The accessed bit must always be set in the segment
1680 * descriptor cache, although it can be cleared in the
1681 * descriptor, the cached bit always remains at 1. Since
1682 * Intel has a check on this, set it here to support
1683 * cross-vendor migration.
1684 */
1685 if (!var->unusable)
1686 var->type |= 0x1;
1687 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001688 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001689 /*
1690 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001691 * descriptor is left as 1, although the whole segment has
1692 * been made unusable. Clear it here to pass an Intel VMX
1693 * entry check when cross vendor migrating.
1694 */
1695 if (var->unusable)
1696 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001697 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001698 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001699 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001700 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701}
1702
Izik Eidus2e4d2652008-03-24 19:38:34 +02001703static int svm_get_cpl(struct kvm_vcpu *vcpu)
1704{
1705 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1706
1707 return save->cpl;
1708}
1709
Gleb Natapov89a27f42010-02-16 10:51:48 +02001710static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001712 struct vcpu_svm *svm = to_svm(vcpu);
1713
Gleb Natapov89a27f42010-02-16 10:51:48 +02001714 dt->size = svm->vmcb->save.idtr.limit;
1715 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001716}
1717
Gleb Natapov89a27f42010-02-16 10:51:48 +02001718static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001719{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001720 struct vcpu_svm *svm = to_svm(vcpu);
1721
Gleb Natapov89a27f42010-02-16 10:51:48 +02001722 svm->vmcb->save.idtr.limit = dt->size;
1723 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001724 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725}
1726
Gleb Natapov89a27f42010-02-16 10:51:48 +02001727static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001729 struct vcpu_svm *svm = to_svm(vcpu);
1730
Gleb Natapov89a27f42010-02-16 10:51:48 +02001731 dt->size = svm->vmcb->save.gdtr.limit;
1732 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001733}
1734
Gleb Natapov89a27f42010-02-16 10:51:48 +02001735static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001736{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001737 struct vcpu_svm *svm = to_svm(vcpu);
1738
Gleb Natapov89a27f42010-02-16 10:51:48 +02001739 svm->vmcb->save.gdtr.limit = dt->size;
1740 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001741 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742}
1743
Joerg Roedel883b0a92020-03-24 10:41:52 +01001744void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001745{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001746 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001747 u64 hcr0 = cr0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001748
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001749#ifdef CONFIG_X86_64
Tom Lendackyf1c63662020-12-14 10:29:50 -05001750 if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001751 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001752 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001753 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001754 }
1755
Mike Dayd77c26f2007-10-08 09:02:08 -04001756 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001757 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001758 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001759 }
1760 }
1761#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001762 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02001763
1764 if (!npt_enabled)
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001765 hcr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02001766
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02001767 /*
1768 * re-enable caching here because the QEMU bios
1769 * does not do it - this results in some delay at
1770 * reboot
1771 */
1772 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001773 hcr0 &= ~(X86_CR0_CD | X86_CR0_NW);
1774
1775 svm->vmcb->save.cr0 = hcr0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001776 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001777
1778 /*
1779 * SEV-ES guests must always keep the CR intercepts cleared. CR
1780 * tracking is done using the CR write traps.
1781 */
Paolo Bonzini63129752021-03-02 14:40:39 -05001782 if (sev_es_guest(vcpu->kvm))
Paolo Bonzini2a32a772021-02-18 09:51:06 -05001783 return;
1784
1785 if (hcr0 == cr0) {
1786 /* Selective CR0 write remains on. */
1787 svm_clr_intercept(svm, INTERCEPT_CR0_READ);
1788 svm_clr_intercept(svm, INTERCEPT_CR0_WRITE);
1789 } else {
1790 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1791 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1792 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793}
1794
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07001795static bool svm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1796{
1797 return true;
1798}
1799
1800void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07001802 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Paolo Bonzinidc924b02020-11-15 09:44:18 -05001803 unsigned long old_cr4 = vcpu->arch.cr4;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02001804
1805 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Sean Christophersonf55ac302020-03-20 14:28:12 -07001806 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02001807
Joerg Roedelec077262008-04-09 14:15:28 +02001808 vcpu->arch.cr4 = cr4;
1809 if (!npt_enabled)
1810 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02001811 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02001812 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedel06e78522020-06-25 10:03:23 +02001813 vmcb_mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Jim Mattson2259c172020-10-29 10:06:48 -07001814
1815 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
1816 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001817}
1818
1819static void svm_set_segment(struct kvm_vcpu *vcpu,
1820 struct kvm_segment *var, int seg)
1821{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001822 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001823 struct vmcb_seg *s = svm_seg(vcpu, seg);
1824
1825 s->base = var->base;
1826 s->limit = var->limit;
1827 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02001828 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1829 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1830 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1831 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
1832 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1833 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1834 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1835 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001836
1837 /*
1838 * This is always accurate, except if SYSRET returned to a segment
1839 * with SS.DPL != 3. Intel does not have this quirk, and always
1840 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1841 * would entail passing the CPL to userspace and back.
1842 */
1843 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02001844 /* This is symmetric with svm_get_segment() */
1845 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001846
Joerg Roedel06e78522020-06-25 10:03:23 +02001847 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001848}
1849
Jason Baronb6a7cc32021-01-14 22:27:54 -05001850static void svm_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001851{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001852 struct vcpu_svm *svm = to_svm(vcpu);
1853
Joerg Roedel18c918c2010-11-30 18:03:59 +01001854 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03001855
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001856 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001857 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01001858 set_exception_intercept(svm, BP_VECTOR);
Paolo Bonzini69869822020-07-10 17:48:06 +02001859 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001860}
1861
Tejun Heo0fe1e002009-10-29 22:34:14 +09001862static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001864 if (sd->next_asid > sd->max_asid) {
1865 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06001866 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001867 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001868 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001869 }
1870
Cathy Avery193015a2021-01-12 11:43:13 -05001871 svm->current_vmcb->asid_generation = sd->asid_generation;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001872 svm->asid = sd->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001873}
1874
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001875static void svm_set_dr6(struct vcpu_svm *svm, unsigned long value)
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001876{
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001877 struct vmcb *vmcb = svm->vmcb;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001878
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001879 if (svm->vcpu.arch.guest_state_protected)
1880 return;
1881
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001882 if (unlikely(value != vmcb->save.dr6)) {
1883 vmcb->save.dr6 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001884 vmcb_mark_dirty(vmcb, VMCB_DR);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001885 }
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001886}
1887
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001888static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1889{
1890 struct vcpu_svm *svm = to_svm(vcpu);
1891
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001892 if (vcpu->arch.guest_state_protected)
1893 return;
1894
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001895 get_debugreg(vcpu->arch.db[0], 0);
1896 get_debugreg(vcpu->arch.db[1], 1);
1897 get_debugreg(vcpu->arch.db[2], 2);
1898 get_debugreg(vcpu->arch.db[3], 3);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001899 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001900 * We cannot reset svm->vmcb->save.dr6 to DR6_ACTIVE_LOW here,
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001901 * because db_interception might need it. We can do it before vmentry.
1902 */
Paolo Bonzini5679b802020-05-04 11:28:25 -04001903 vcpu->arch.dr6 = svm->vmcb->save.dr6;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001904 vcpu->arch.dr7 = svm->vmcb->save.dr7;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001905 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1906 set_dr_intercepts(svm);
1907}
1908
Gleb Natapov020df072010-04-13 10:05:23 +03001909static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001910{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001911 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001912
Tom Lendacky8d4846b2020-12-10 11:09:43 -06001913 if (vcpu->arch.guest_state_protected)
1914 return;
1915
Gleb Natapov020df072010-04-13 10:05:23 +03001916 svm->vmcb->save.dr7 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001917 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001918}
1919
Paolo Bonzini63129752021-03-02 14:40:39 -05001920static int pf_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921{
Paolo Bonzini63129752021-03-02 14:40:39 -05001922 struct vcpu_svm *svm = to_svm(vcpu);
1923
Sean Christopherson6d1b8672021-03-04 17:10:56 -08001924 u64 fault_address = svm->vmcb->control.exit_info_2;
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001925 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001926
Paolo Bonzini63129752021-03-02 14:40:39 -05001927 return kvm_handle_page_fault(vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001928 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1929 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001930 svm->vmcb->control.insn_len);
1931}
1932
Paolo Bonzini63129752021-03-02 14:40:39 -05001933static int npf_interception(struct kvm_vcpu *vcpu)
Paolo Bonzinid0006532017-08-11 18:36:43 +02001934{
Paolo Bonzini63129752021-03-02 14:40:39 -05001935 struct vcpu_svm *svm = to_svm(vcpu);
1936
Sean Christopherson76ff3712021-06-24 19:03:54 -07001937 u64 fault_address = svm->vmcb->control.exit_info_2;
Paolo Bonzinid0006532017-08-11 18:36:43 +02001938 u64 error_code = svm->vmcb->control.exit_info_1;
1939
1940 trace_kvm_page_fault(fault_address, error_code);
Paolo Bonzini63129752021-03-02 14:40:39 -05001941 return kvm_mmu_page_fault(vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001942 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1943 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001944 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001945}
1946
Paolo Bonzini63129752021-03-02 14:40:39 -05001947static int db_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001948{
Paolo Bonzini63129752021-03-02 14:40:39 -05001949 struct kvm_run *kvm_run = vcpu->run;
1950 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03001951
Paolo Bonzini63129752021-03-02 14:40:39 -05001952 if (!(vcpu->guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03001953 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02001954 !svm->nmi_singlestep) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08001955 u32 payload = svm->vmcb->save.dr6 ^ DR6_ACTIVE_LOW;
Paolo Bonzini63129752021-03-02 14:40:39 -05001956 kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001957 return 1;
1958 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001959
Jan Kiszka6be7d302009-10-18 13:24:54 +02001960 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001961 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001962 /* Make sure we check for pending NMIs upon entry */
1963 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03001964 }
1965
Paolo Bonzini63129752021-03-02 14:40:39 -05001966 if (vcpu->guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01001967 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03001968 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Paolo Bonzinidee919d2020-05-04 09:34:10 -04001969 kvm_run->debug.arch.dr6 = svm->vmcb->save.dr6;
1970 kvm_run->debug.arch.dr7 = svm->vmcb->save.dr7;
Gleb Natapov44c11432009-05-11 13:35:52 +03001971 kvm_run->debug.arch.pc =
1972 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1973 kvm_run->debug.arch.exception = DB_VECTOR;
1974 return 0;
1975 }
1976
1977 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001978}
1979
Paolo Bonzini63129752021-03-02 14:40:39 -05001980static int bp_interception(struct kvm_vcpu *vcpu)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001981{
Paolo Bonzini63129752021-03-02 14:40:39 -05001982 struct vcpu_svm *svm = to_svm(vcpu);
1983 struct kvm_run *kvm_run = vcpu->run;
Avi Kivity851ba692009-08-24 11:10:17 +03001984
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001985 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1986 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1987 kvm_run->debug.arch.exception = BP_VECTOR;
1988 return 0;
1989}
1990
Paolo Bonzini63129752021-03-02 14:40:39 -05001991static int ud_interception(struct kvm_vcpu *vcpu)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001992{
Paolo Bonzini63129752021-03-02 14:40:39 -05001993 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001994}
1995
Paolo Bonzini63129752021-03-02 14:40:39 -05001996static int ac_interception(struct kvm_vcpu *vcpu)
Eric Northup54a20552015-11-03 18:03:53 +01001997{
Paolo Bonzini63129752021-03-02 14:40:39 -05001998 kvm_queue_exception_e(vcpu, AC_VECTOR, 0);
Eric Northup54a20552015-11-03 18:03:53 +01001999 return 1;
2000}
2001
Joerg Roedel67ec6602010-05-17 14:43:35 +02002002static bool is_erratum_383(void)
2003{
2004 int err, i;
2005 u64 value;
2006
2007 if (!erratum_383_found)
2008 return false;
2009
2010 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2011 if (err)
2012 return false;
2013
2014 /* Bit 62 may or may not be set for this mce */
2015 value &= ~(1ULL << 62);
2016
2017 if (value != 0xb600000000010015ULL)
2018 return false;
2019
2020 /* Clear MCi_STATUS registers */
2021 for (i = 0; i < 6; ++i)
2022 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2023
2024 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2025 if (!err) {
2026 u32 low, high;
2027
2028 value &= ~(1ULL << 2);
2029 low = lower_32_bits(value);
2030 high = upper_32_bits(value);
2031
2032 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2033 }
2034
2035 /* Flush tlb to evict multi-match entries */
2036 __flush_tlb_all();
2037
2038 return true;
2039}
2040
Paolo Bonzini63129752021-03-02 14:40:39 -05002041static void svm_handle_mce(struct kvm_vcpu *vcpu)
Joerg Roedel53371b52008-04-09 14:15:30 +02002042{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002043 if (is_erratum_383()) {
2044 /*
2045 * Erratum 383 triggered. Guest state is corrupt so kill the
2046 * guest.
2047 */
2048 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2049
Paolo Bonzini63129752021-03-02 14:40:39 -05002050 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002051
2052 return;
2053 }
2054
Joerg Roedel53371b52008-04-09 14:15:30 +02002055 /*
2056 * On an #MC intercept the MCE handler is not called automatically in
2057 * the host. So do it by hand here.
2058 */
Uros Bizjak1c164cb2020-04-11 17:36:27 +02002059 kvm_machine_check();
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002060}
2061
Paolo Bonzini63129752021-03-02 14:40:39 -05002062static int mc_interception(struct kvm_vcpu *vcpu)
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002063{
Joerg Roedel53371b52008-04-09 14:15:30 +02002064 return 1;
2065}
2066
Paolo Bonzini63129752021-03-02 14:40:39 -05002067static int shutdown_interception(struct kvm_vcpu *vcpu)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002068{
Paolo Bonzini63129752021-03-02 14:40:39 -05002069 struct kvm_run *kvm_run = vcpu->run;
2070 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002071
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002072 /*
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002073 * The VM save area has already been encrypted so it
2074 * cannot be reinitialized - just terminate.
2075 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002076 if (sev_es_guest(vcpu->kvm))
Tom Lendacky8164a5f2020-12-10 11:09:45 -06002077 return -EINVAL;
2078
2079 /*
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002080 * VMCB is undefined after a SHUTDOWN intercept
2081 * so reinitialize it.
2082 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002083 clear_page(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05002084 init_vmcb(vcpu);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002085
2086 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2087 return 0;
2088}
2089
Paolo Bonzini63129752021-03-02 14:40:39 -05002090static int io_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091{
Paolo Bonzini63129752021-03-02 14:40:39 -05002092 struct vcpu_svm *svm = to_svm(vcpu);
Mike Dayd77c26f2007-10-08 09:02:08 -04002093 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002094 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002095 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096
Paolo Bonzini63129752021-03-02 14:40:39 -05002097 ++vcpu->stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002098 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002099 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
2100 port = io_info >> 16;
2101 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -06002102
2103 if (string) {
2104 if (sev_es_guest(vcpu->kvm))
2105 return sev_es_string_io(svm, size, port, in);
2106 else
2107 return kvm_emulate_instruction(vcpu, 0);
2108 }
2109
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002110 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002111
Paolo Bonzini63129752021-03-02 14:40:39 -05002112 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002113}
2114
Paolo Bonzini63129752021-03-02 14:40:39 -05002115static int nmi_interception(struct kvm_vcpu *vcpu)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002116{
2117 return 1;
2118}
2119
Maxim Levitsky991afbb2021-07-07 15:50:58 +03002120static int smi_interception(struct kvm_vcpu *vcpu)
2121{
2122 return 1;
2123}
2124
Paolo Bonzini63129752021-03-02 14:40:39 -05002125static int intr_interception(struct kvm_vcpu *vcpu)
Joerg Roedela0698052008-04-30 17:56:01 +02002126{
Paolo Bonzini63129752021-03-02 14:40:39 -05002127 ++vcpu->stat.irq_exits;
Joerg Roedela0698052008-04-30 17:56:01 +02002128 return 1;
2129}
2130
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002131static int vmload_vmsave_interception(struct kvm_vcpu *vcpu, bool vmload)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002132{
Paolo Bonzini63129752021-03-02 14:40:39 -05002133 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002134 struct vmcb *vmcb12;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002135 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002136 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002137
Paolo Bonzini63129752021-03-02 14:40:39 -05002138 if (nested_svm_check_permissions(vcpu))
Alexander Graf55426752008-11-25 20:17:06 +01002139 return 1;
2140
Paolo Bonzini63129752021-03-02 14:40:39 -05002141 ret = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002142 if (ret) {
2143 if (ret == -EINVAL)
Paolo Bonzini63129752021-03-02 14:40:39 -05002144 kvm_inject_gp(vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02002145 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002146 }
2147
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05002148 vmcb12 = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002149
Paolo Bonzini63129752021-03-02 14:40:39 -05002150 ret = kvm_skip_emulated_instruction(vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02002151
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002152 if (vmload) {
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02002153 svm_copy_vmloadsave_state(svm->vmcb, vmcb12);
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002154 svm->sysenter_eip_hi = 0;
2155 svm->sysenter_esp_hi = 0;
Vitaly Kuznetsov9a9e7482021-07-16 16:41:04 +02002156 } else {
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02002157 svm_copy_vmloadsave_state(vmcb12, svm->vmcb);
Vitaly Kuznetsov9a9e7482021-07-16 16:41:04 +02002158 }
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002159
Paolo Bonzini63129752021-03-02 14:40:39 -05002160 kvm_vcpu_unmap(vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002161
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002162 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002163}
2164
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002165static int vmload_interception(struct kvm_vcpu *vcpu)
Alexander Graf55426752008-11-25 20:17:06 +01002166{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002167 return vmload_vmsave_interception(vcpu, true);
Alexander Graf55426752008-11-25 20:17:06 +01002168}
2169
Paolo Bonzini63129752021-03-02 14:40:39 -05002170static int vmsave_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002171{
Sean Christopherson2ac636a2021-02-04 16:57:45 -08002172 return vmload_vmsave_interception(vcpu, false);
Alexander Grafc0725422008-11-25 20:17:03 +01002173}
2174
Paolo Bonzini63129752021-03-02 14:40:39 -05002175static int vmrun_interception(struct kvm_vcpu *vcpu)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002176{
Paolo Bonzini63129752021-03-02 14:40:39 -05002177 if (nested_svm_check_permissions(vcpu))
Alexander Graf3d6368e2008-11-25 20:17:07 +01002178 return 1;
2179
Paolo Bonzini63129752021-03-02 14:40:39 -05002180 return nested_svm_vmrun(vcpu);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002181}
2182
Bandan Das82a11e9c2021-01-26 03:18:29 -05002183enum {
2184 NONE_SVM_INSTR,
2185 SVM_INSTR_VMRUN,
2186 SVM_INSTR_VMLOAD,
2187 SVM_INSTR_VMSAVE,
2188};
2189
2190/* Return NONE_SVM_INSTR if not SVM instrs, otherwise return decode result */
2191static int svm_instr_opcode(struct kvm_vcpu *vcpu)
2192{
2193 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
2194
2195 if (ctxt->b != 0x1 || ctxt->opcode_len != 2)
2196 return NONE_SVM_INSTR;
2197
2198 switch (ctxt->modrm) {
2199 case 0xd8: /* VMRUN */
2200 return SVM_INSTR_VMRUN;
2201 case 0xda: /* VMLOAD */
2202 return SVM_INSTR_VMLOAD;
2203 case 0xdb: /* VMSAVE */
2204 return SVM_INSTR_VMSAVE;
2205 default:
2206 break;
2207 }
2208
2209 return NONE_SVM_INSTR;
2210}
2211
2212static int emulate_svm_instr(struct kvm_vcpu *vcpu, int opcode)
2213{
Wei Huang14c2bf82021-01-26 03:18:31 -05002214 const int guest_mode_exit_codes[] = {
2215 [SVM_INSTR_VMRUN] = SVM_EXIT_VMRUN,
2216 [SVM_INSTR_VMLOAD] = SVM_EXIT_VMLOAD,
2217 [SVM_INSTR_VMSAVE] = SVM_EXIT_VMSAVE,
2218 };
Paolo Bonzini63129752021-03-02 14:40:39 -05002219 int (*const svm_instr_handlers[])(struct kvm_vcpu *vcpu) = {
Bandan Das82a11e9c2021-01-26 03:18:29 -05002220 [SVM_INSTR_VMRUN] = vmrun_interception,
2221 [SVM_INSTR_VMLOAD] = vmload_interception,
2222 [SVM_INSTR_VMSAVE] = vmsave_interception,
2223 };
2224 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002225 int ret;
Bandan Das82a11e9c2021-01-26 03:18:29 -05002226
Wei Huang14c2bf82021-01-26 03:18:31 -05002227 if (is_guest_mode(vcpu)) {
Sean Christopherson2df8d382021-02-23 16:56:26 -08002228 /* Returns '1' or -errno on failure, '0' on success. */
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08002229 ret = nested_svm_simple_vmexit(svm, guest_mode_exit_codes[opcode]);
Sean Christopherson2df8d382021-02-23 16:56:26 -08002230 if (ret)
2231 return ret;
2232 return 1;
2233 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002234 return svm_instr_handlers[opcode](vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002235}
2236
2237/*
2238 * #GP handling code. Note that #GP can be triggered under the following two
2239 * cases:
2240 * 1) SVM VM-related instructions (VMRUN/VMSAVE/VMLOAD) that trigger #GP on
2241 * some AMD CPUs when EAX of these instructions are in the reserved memory
2242 * regions (e.g. SMM memory on host).
2243 * 2) VMware backdoor
2244 */
Paolo Bonzini63129752021-03-02 14:40:39 -05002245static int gp_interception(struct kvm_vcpu *vcpu)
Bandan Das82a11e9c2021-01-26 03:18:29 -05002246{
Paolo Bonzini63129752021-03-02 14:40:39 -05002247 struct vcpu_svm *svm = to_svm(vcpu);
Bandan Das82a11e9c2021-01-26 03:18:29 -05002248 u32 error_code = svm->vmcb->control.exit_info_1;
2249 int opcode;
2250
2251 /* Both #GP cases have zero error_code */
2252 if (error_code)
2253 goto reinject;
2254
2255 /* Decode the instruction for usage later */
2256 if (x86_decode_emulated_instruction(vcpu, 0, NULL, 0) != EMULATION_OK)
2257 goto reinject;
2258
2259 opcode = svm_instr_opcode(vcpu);
2260
2261 if (opcode == NONE_SVM_INSTR) {
2262 if (!enable_vmware_backdoor)
2263 goto reinject;
2264
2265 /*
2266 * VMware backdoor emulation on #GP interception only handles
2267 * IN{S}, OUT{S}, and RDPMC.
2268 */
Wei Huang14c2bf82021-01-26 03:18:31 -05002269 if (!is_guest_mode(vcpu))
2270 return kvm_emulate_instruction(vcpu,
Bandan Das82a11e9c2021-01-26 03:18:29 -05002271 EMULTYPE_VMWARE_GP | EMULTYPE_NO_DECODE);
2272 } else
2273 return emulate_svm_instr(vcpu, opcode);
2274
2275reinject:
2276 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2277 return 1;
2278}
2279
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002280void svm_set_gif(struct vcpu_svm *svm, bool value)
2281{
2282 if (value) {
2283 /*
2284 * If VGIF is enabled, the STGI intercept is only added to
2285 * detect the opening of the SMI/NMI window; remove it now.
2286 * Likewise, clear the VINTR intercept, we will set it
2287 * again while processing KVM_REQ_EVENT if needed.
2288 */
2289 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02002290 svm_clr_intercept(svm, INTERCEPT_STGI);
2291 if (svm_is_intercept(svm, INTERCEPT_VINTR))
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002292 svm_clear_vintr(svm);
2293
2294 enable_gif(svm);
2295 if (svm->vcpu.arch.smi_pending ||
2296 svm->vcpu.arch.nmi_pending ||
2297 kvm_cpu_has_injectable_intr(&svm->vcpu))
2298 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
2299 } else {
2300 disable_gif(svm);
2301
2302 /*
2303 * After a CLGI no interrupts should come. But if vGIF is
2304 * in use, we still rely on the VINTR intercept (rather than
2305 * STGI) to detect an open interrupt window.
2306 */
2307 if (!vgif_enabled(svm))
2308 svm_clear_vintr(svm);
2309 }
2310}
2311
Paolo Bonzini63129752021-03-02 14:40:39 -05002312static int stgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002313{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002314 int ret;
2315
Paolo Bonzini63129752021-03-02 14:40:39 -05002316 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002317 return 1;
2318
Paolo Bonzini63129752021-03-02 14:40:39 -05002319 ret = kvm_skip_emulated_instruction(vcpu);
2320 svm_set_gif(to_svm(vcpu), true);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002321 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002322}
2323
Paolo Bonzini63129752021-03-02 14:40:39 -05002324static int clgi_interception(struct kvm_vcpu *vcpu)
Alexander Graf1371d902008-11-25 20:17:04 +01002325{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002326 int ret;
2327
Paolo Bonzini63129752021-03-02 14:40:39 -05002328 if (nested_svm_check_permissions(vcpu))
Alexander Graf1371d902008-11-25 20:17:04 +01002329 return 1;
2330
Paolo Bonzini63129752021-03-02 14:40:39 -05002331 ret = kvm_skip_emulated_instruction(vcpu);
2332 svm_set_gif(to_svm(vcpu), false);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002333 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002334}
2335
Paolo Bonzini63129752021-03-02 14:40:39 -05002336static int invlpga_interception(struct kvm_vcpu *vcpu)
Alexander Grafff092382009-06-15 15:21:24 +02002337{
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002338 gva_t gva = kvm_rax_read(vcpu);
2339 u32 asid = kvm_rcx_read(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002340
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002341 /* FIXME: Handle an address size prefix. */
2342 if (!is_long_mode(vcpu))
2343 gva = (u32)gva;
2344
2345 trace_kvm_invlpga(to_svm(vcpu)->vmcb->save.rip, asid, gva);
Joerg Roedelec1ff792009-10-09 16:08:31 +02002346
Alexander Grafff092382009-06-15 15:21:24 +02002347 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonbc9eff62021-04-21 19:21:27 -07002348 kvm_mmu_invlpg(vcpu, gva);
Alexander Grafff092382009-06-15 15:21:24 +02002349
Paolo Bonzini63129752021-03-02 14:40:39 -05002350 return kvm_skip_emulated_instruction(vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002351}
2352
Paolo Bonzini63129752021-03-02 14:40:39 -05002353static int skinit_interception(struct kvm_vcpu *vcpu)
Joerg Roedel532a46b2009-10-09 16:08:32 +02002354{
Paolo Bonzini63129752021-03-02 14:40:39 -05002355 trace_kvm_skinit(to_svm(vcpu)->vmcb->save.rip, kvm_rax_read(vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02002356
Paolo Bonzini63129752021-03-02 14:40:39 -05002357 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedel532a46b2009-10-09 16:08:32 +02002358 return 1;
2359}
2360
Paolo Bonzini63129752021-03-02 14:40:39 -05002361static int task_switch_interception(struct kvm_vcpu *vcpu)
David Kaplandab429a2015-03-02 13:43:37 -06002362{
Paolo Bonzini63129752021-03-02 14:40:39 -05002363 struct vcpu_svm *svm = to_svm(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02002364 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002365 int reason;
2366 int int_type = svm->vmcb->control.exit_int_info &
2367 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03002368 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002369 uint32_t type =
2370 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2371 uint32_t idt_v =
2372 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02002373 bool has_error_code = false;
2374 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02002375
2376 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002377
Izik Eidus37817f22008-03-24 23:14:53 +02002378 if (svm->vmcb->control.exit_info_2 &
2379 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002380 reason = TASK_SWITCH_IRET;
2381 else if (svm->vmcb->control.exit_info_2 &
2382 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2383 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002384 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002385 reason = TASK_SWITCH_GATE;
2386 else
2387 reason = TASK_SWITCH_CALL;
2388
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002389 if (reason == TASK_SWITCH_GATE) {
2390 switch (type) {
2391 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05002392 vcpu->arch.nmi_injected = false;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002393 break;
2394 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02002395 if (svm->vmcb->control.exit_info_2 &
2396 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2397 has_error_code = true;
2398 error_code =
2399 (u32)svm->vmcb->control.exit_info_2;
2400 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002401 kvm_clear_exception_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002402 break;
2403 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05002404 kvm_clear_interrupt_queue(vcpu);
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002405 break;
2406 default:
2407 break;
2408 }
2409 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002410
Gleb Natapov8317c292009-04-12 13:37:02 +03002411 if (reason != TASK_SWITCH_GATE ||
2412 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2413 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002414 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Paolo Bonzini63129752021-03-02 14:40:39 -05002415 if (!skip_emulated_instruction(vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07002416 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002417 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002418
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01002419 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2420 int_vec = -1;
2421
Paolo Bonzini63129752021-03-02 14:40:39 -05002422 return kvm_task_switch(vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002423 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424}
2425
Paolo Bonzini63129752021-03-02 14:40:39 -05002426static int iret_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427{
Paolo Bonzini63129752021-03-02 14:40:39 -05002428 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002429
Paolo Bonzini63129752021-03-02 14:40:39 -05002430 ++vcpu->stat.nmi_window_exits;
2431 vcpu->arch.hflags |= HF_IRET_MASK;
2432 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002433 svm_clr_intercept(svm, INTERCEPT_IRET);
Paolo Bonzini63129752021-03-02 14:40:39 -05002434 svm->nmi_iret_rip = kvm_rip_read(vcpu);
Tom Lendacky4444dfe2020-12-14 11:16:03 -05002435 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002436 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002437 return 1;
2438}
2439
Paolo Bonzini63129752021-03-02 14:40:39 -05002440static int invlpg_interception(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03002441{
Andre Przywaradf4f31082010-12-21 11:12:06 +01002442 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002443 return kvm_emulate_instruction(vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01002444
Paolo Bonzini63129752021-03-02 14:40:39 -05002445 kvm_mmu_invlpg(vcpu, to_svm(vcpu)->vmcb->control.exit_info_1);
2446 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002447}
2448
Paolo Bonzini63129752021-03-02 14:40:39 -05002449static int emulate_on_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002450{
Paolo Bonzini63129752021-03-02 14:40:39 -05002451 return kvm_emulate_instruction(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452}
2453
Paolo Bonzini63129752021-03-02 14:40:39 -05002454static int rsm_interception(struct kvm_vcpu *vcpu)
Brijesh Singh7607b712018-02-19 10:14:44 -06002455{
Paolo Bonzini63129752021-03-02 14:40:39 -05002456 return kvm_emulate_instruction_from_buffer(vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06002457}
2458
Paolo Bonzini63129752021-03-02 14:40:39 -05002459static bool check_selective_cr0_intercepted(struct kvm_vcpu *vcpu,
Xiubo Li52eb5a62015-03-13 17:39:45 +08002460 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02002461{
Paolo Bonzini63129752021-03-02 14:40:39 -05002462 struct vcpu_svm *svm = to_svm(vcpu);
2463 unsigned long cr0 = vcpu->arch.cr0;
Joerg Roedel628afd22011-04-04 12:39:36 +02002464 bool ret = false;
Joerg Roedel628afd22011-04-04 12:39:36 +02002465
Paolo Bonzini63129752021-03-02 14:40:39 -05002466 if (!is_guest_mode(vcpu) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05002467 (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_SELECTIVE_CR0))))
Joerg Roedel628afd22011-04-04 12:39:36 +02002468 return false;
2469
2470 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2471 val &= ~SVM_CR0_SELECTIVE_MASK;
2472
2473 if (cr0 ^ val) {
2474 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2475 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2476 }
2477
2478 return ret;
2479}
2480
Andre Przywara7ff76d52010-12-21 11:12:04 +01002481#define CR_VALID (1ULL << 63)
2482
Paolo Bonzini63129752021-03-02 14:40:39 -05002483static int cr_interception(struct kvm_vcpu *vcpu)
Andre Przywara7ff76d52010-12-21 11:12:04 +01002484{
Paolo Bonzini63129752021-03-02 14:40:39 -05002485 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002486 int reg, cr;
2487 unsigned long val;
2488 int err;
2489
2490 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002491 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002492
2493 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
Paolo Bonzini63129752021-03-02 14:40:39 -05002494 return emulate_on_interception(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002495
2496 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06002497 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
2498 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
2499 else
2500 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002501
2502 err = 0;
2503 if (cr >= 16) { /* mov to cr */
2504 cr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002505 val = kvm_register_read(vcpu, reg);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002506 trace_kvm_cr_write(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002507 switch (cr) {
2508 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002509 if (!check_selective_cr0_intercepted(vcpu, val))
2510 err = kvm_set_cr0(vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02002511 else
2512 return 1;
2513
Andre Przywara7ff76d52010-12-21 11:12:04 +01002514 break;
2515 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002516 err = kvm_set_cr3(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002517 break;
2518 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002519 err = kvm_set_cr4(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002520 break;
2521 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002522 err = kvm_set_cr8(vcpu, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002523 break;
2524 default:
2525 WARN(1, "unhandled write to CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002526 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002527 return 1;
2528 }
2529 } else { /* mov from cr */
2530 switch (cr) {
2531 case 0:
Paolo Bonzini63129752021-03-02 14:40:39 -05002532 val = kvm_read_cr0(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002533 break;
2534 case 2:
Paolo Bonzini63129752021-03-02 14:40:39 -05002535 val = vcpu->arch.cr2;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002536 break;
2537 case 3:
Paolo Bonzini63129752021-03-02 14:40:39 -05002538 val = kvm_read_cr3(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002539 break;
2540 case 4:
Paolo Bonzini63129752021-03-02 14:40:39 -05002541 val = kvm_read_cr4(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002542 break;
2543 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002544 val = kvm_get_cr8(vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002545 break;
2546 default:
2547 WARN(1, "unhandled read from CR%d", cr);
Paolo Bonzini63129752021-03-02 14:40:39 -05002548 kvm_queue_exception(vcpu, UD_VECTOR);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002549 return 1;
2550 }
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002551 kvm_register_write(vcpu, reg, val);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002552 trace_kvm_cr_read(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002553 }
Paolo Bonzini63129752021-03-02 14:40:39 -05002554 return kvm_complete_insn_gp(vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002555}
2556
Paolo Bonzini63129752021-03-02 14:40:39 -05002557static int cr_trap(struct kvm_vcpu *vcpu)
Tom Lendackyf27ad382020-12-10 11:09:56 -06002558{
Paolo Bonzini63129752021-03-02 14:40:39 -05002559 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002560 unsigned long old_value, new_value;
2561 unsigned int cr;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002562 int ret = 0;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002563
2564 new_value = (unsigned long)svm->vmcb->control.exit_info_1;
2565
2566 cr = svm->vmcb->control.exit_code - SVM_EXIT_CR0_WRITE_TRAP;
2567 switch (cr) {
2568 case 0:
2569 old_value = kvm_read_cr0(vcpu);
2570 svm_set_cr0(vcpu, new_value);
2571
2572 kvm_post_set_cr0(vcpu, old_value, new_value);
2573 break;
Tom Lendacky5b51cb12020-12-10 11:09:57 -06002574 case 4:
2575 old_value = kvm_read_cr4(vcpu);
2576 svm_set_cr4(vcpu, new_value);
2577
2578 kvm_post_set_cr4(vcpu, old_value, new_value);
2579 break;
Tom Lendackyd1949b92020-12-10 11:09:58 -06002580 case 8:
Paolo Bonzini63129752021-03-02 14:40:39 -05002581 ret = kvm_set_cr8(vcpu, new_value);
Tom Lendackyd1949b92020-12-10 11:09:58 -06002582 break;
Tom Lendackyf27ad382020-12-10 11:09:56 -06002583 default:
2584 WARN(1, "unhandled CR%d write trap", cr);
2585 kvm_queue_exception(vcpu, UD_VECTOR);
2586 return 1;
2587 }
2588
Tom Lendackyd1949b92020-12-10 11:09:58 -06002589 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendackyf27ad382020-12-10 11:09:56 -06002590}
2591
Paolo Bonzini63129752021-03-02 14:40:39 -05002592static int dr_interception(struct kvm_vcpu *vcpu)
Andre Przywaracae37972010-12-21 11:12:05 +01002593{
Paolo Bonzini63129752021-03-02 14:40:39 -05002594 struct vcpu_svm *svm = to_svm(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002595 int reg, dr;
2596 unsigned long val;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002597 int err = 0;
Andre Przywaracae37972010-12-21 11:12:05 +01002598
Paolo Bonzini63129752021-03-02 14:40:39 -05002599 if (vcpu->guest_debug == 0) {
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002600 /*
2601 * No more DR vmexits; force a reload of the debug registers
2602 * and reenter on this instruction. The next vmexit will
2603 * retrieve the full state of the debug registers.
2604 */
2605 clr_dr_intercepts(svm);
Paolo Bonzini63129752021-03-02 14:40:39 -05002606 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002607 return 1;
2608 }
2609
Andre Przywaracae37972010-12-21 11:12:05 +01002610 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
Paolo Bonzini63129752021-03-02 14:40:39 -05002611 return emulate_on_interception(vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002612
2613 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2614 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
Paolo Bonzini996ff542020-12-14 07:49:54 -05002615 if (dr >= 16) { /* mov to DRn */
2616 dr -= 16;
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002617 val = kvm_register_read(vcpu, reg);
Paolo Bonzini63129752021-03-02 14:40:39 -05002618 err = kvm_set_dr(vcpu, dr, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002619 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05002620 kvm_get_dr(vcpu, dr, &val);
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07002621 kvm_register_write(vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002622 }
2623
Paolo Bonzini63129752021-03-02 14:40:39 -05002624 return kvm_complete_insn_gp(vcpu, err);
Andre Przywaracae37972010-12-21 11:12:05 +01002625}
2626
Paolo Bonzini63129752021-03-02 14:40:39 -05002627static int cr8_write_interception(struct kvm_vcpu *vcpu)
Joerg Roedel1d075432007-12-06 21:02:25 +01002628{
Andre Przywaraeea1cff2010-12-21 11:12:00 +01002629 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03002630
Paolo Bonzini63129752021-03-02 14:40:39 -05002631 u8 cr8_prev = kvm_get_cr8(vcpu);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002632 /* instruction emulation calls kvm_set_cr8() */
Paolo Bonzini63129752021-03-02 14:40:39 -05002633 r = cr_interception(vcpu);
2634 if (lapic_in_kernel(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002635 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002636 if (cr8_prev <= kvm_get_cr8(vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002637 return r;
Paolo Bonzini63129752021-03-02 14:40:39 -05002638 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Joerg Roedel1d075432007-12-06 21:02:25 +01002639 return 0;
2640}
2641
Paolo Bonzini63129752021-03-02 14:40:39 -05002642static int efer_trap(struct kvm_vcpu *vcpu)
Tom Lendacky2985afb2020-12-10 11:09:55 -06002643{
2644 struct msr_data msr_info;
2645 int ret;
2646
2647 /*
2648 * Clear the EFER_SVME bit from EFER. The SVM code always sets this
2649 * bit in svm_set_efer(), but __kvm_valid_efer() checks it against
2650 * whether the guest has X86_FEATURE_SVM - this avoids a failure if
2651 * the guest doesn't have X86_FEATURE_SVM.
2652 */
2653 msr_info.host_initiated = false;
2654 msr_info.index = MSR_EFER;
Paolo Bonzini63129752021-03-02 14:40:39 -05002655 msr_info.data = to_svm(vcpu)->vmcb->control.exit_info_1 & ~EFER_SVME;
2656 ret = kvm_set_msr_common(vcpu, &msr_info);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002657
Paolo Bonzini63129752021-03-02 14:40:39 -05002658 return kvm_complete_insn_gp(vcpu, ret);
Tom Lendacky2985afb2020-12-10 11:09:55 -06002659}
2660
Tom Lendacky801e4592018-02-21 13:39:51 -06002661static int svm_get_msr_feature(struct kvm_msr_entry *msr)
2662{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002663 msr->data = 0;
2664
2665 switch (msr->index) {
2666 case MSR_F10H_DECFG:
2667 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
2668 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
2669 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002670 case MSR_IA32_PERF_CAPABILITIES:
2671 return 0;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002672 default:
Peter Xu12bc2132020-06-22 18:04:42 -04002673 return KVM_MSR_RET_INVALID;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002674 }
2675
2676 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06002677}
2678
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002679static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002681 struct vcpu_svm *svm = to_svm(vcpu);
2682
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002683 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04002684 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002685 msr_info->data = svm->vmcb01.ptr->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08002687#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002689 msr_info->data = svm->vmcb01.ptr->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690 break;
2691 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002692 msr_info->data = svm->vmcb01.ptr->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002693 break;
2694 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002695 msr_info->data = svm->vmcb01.ptr->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002696 break;
2697 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002698 msr_info->data = svm->vmcb01.ptr->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699 break;
2700#endif
2701 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002702 msr_info->data = svm->vmcb01.ptr->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703 break;
2704 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002705 msr_info->data = (u32)svm->vmcb01.ptr->save.sysenter_eip;
2706 if (guest_cpuid_is_intel(vcpu))
2707 msr_info->data |= (u64)svm->sysenter_eip_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708 break;
2709 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002710 msr_info->data = svm->vmcb01.ptr->save.sysenter_esp;
2711 if (guest_cpuid_is_intel(vcpu))
2712 msr_info->data |= (u64)svm->sysenter_esp_hi << 32;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002714 case MSR_TSC_AUX:
Paolo Bonzini46896c72015-11-12 14:49:16 +01002715 msr_info->data = svm->tsc_aux;
2716 break;
Joerg Roedele0231712010-02-24 18:59:10 +01002717 /*
2718 * Nobody will change the following 5 values in the VMCB so we can
2719 * safely return them on rdmsr. They will always be 0 until LBRV is
2720 * implemented.
2721 */
Joerg Roedela2938c82008-02-13 16:30:28 +01002722 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002723 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01002724 break;
2725 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002726 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002727 break;
2728 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002729 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002730 break;
2731 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002732 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002733 break;
2734 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002735 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002736 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002737 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002738 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002739 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002740 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002741 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002742 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002743 case MSR_IA32_SPEC_CTRL:
2744 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002745 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002746 return 1;
2747
Babu Mogerd00b99c2021-02-17 10:56:04 -05002748 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2749 msr_info->data = svm->vmcb->save.spec_ctrl;
2750 else
2751 msr_info->data = svm->spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002752 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002753 case MSR_AMD64_VIRT_SPEC_CTRL:
2754 if (!msr_info->host_initiated &&
2755 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2756 return 1;
2757
2758 msr_info->data = svm->virt_spec_ctrl;
2759 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01002760 case MSR_F15H_IC_CFG: {
2761
2762 int family, model;
2763
2764 family = guest_cpuid_family(vcpu);
2765 model = guest_cpuid_model(vcpu);
2766
2767 if (family < 0 || model < 0)
2768 return kvm_get_msr_common(vcpu, msr_info);
2769
2770 msr_info->data = 0;
2771
2772 if (family == 0x15 &&
2773 (model >= 0x2 && model < 0x20))
2774 msr_info->data = 0x1E;
2775 }
2776 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002777 case MSR_F10H_DECFG:
2778 msr_info->data = svm->msr_decfg;
2779 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002780 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002781 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002782 }
2783 return 0;
2784}
2785
Tom Lendackyf1c63662020-12-14 10:29:50 -05002786static int svm_complete_emulated_msr(struct kvm_vcpu *vcpu, int err)
2787{
2788 struct vcpu_svm *svm = to_svm(vcpu);
Tom Lendackya3ba26e2021-04-09 09:38:42 -05002789 if (!err || !sev_es_guest(vcpu->kvm) || WARN_ON_ONCE(!svm->ghcb))
Paolo Bonzini63129752021-03-02 14:40:39 -05002790 return kvm_complete_insn_gp(vcpu, err);
Tom Lendackyf1c63662020-12-14 10:29:50 -05002791
2792 ghcb_set_sw_exit_info_1(svm->ghcb, 1);
2793 ghcb_set_sw_exit_info_2(svm->ghcb,
2794 X86_TRAP_GP |
2795 SVM_EVTINJ_TYPE_EXEPT |
2796 SVM_EVTINJ_VALID);
2797 return 1;
2798}
2799
Joerg Roedel4a810182010-02-24 18:59:15 +01002800static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2801{
2802 struct vcpu_svm *svm = to_svm(vcpu);
2803 int svm_dis, chg_mask;
2804
2805 if (data & ~SVM_VM_CR_VALID_MASK)
2806 return 1;
2807
2808 chg_mask = SVM_VM_CR_VALID_MASK;
2809
2810 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2811 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2812
2813 svm->nested.vm_cr_msr &= ~chg_mask;
2814 svm->nested.vm_cr_msr |= (data & chg_mask);
2815
2816 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2817
2818 /* check for svm_disable while efer.svme is set */
2819 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2820 return 1;
2821
2822 return 0;
2823}
2824
Will Auld8fe8ab42012-11-29 12:42:12 -08002825static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002827 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson844d69c2021-04-23 15:34:04 -07002828 int r;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002829
Will Auld8fe8ab42012-11-29 12:42:12 -08002830 u32 ecx = msr->index;
2831 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02002833 case MSR_IA32_CR_PAT:
2834 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2835 return 1;
2836 vcpu->arch.pat = data;
Cathy Avery4995a362021-01-13 07:07:52 -05002837 svm->vmcb01.ptr->save.g_pat = data;
2838 if (is_guest_mode(vcpu))
2839 nested_vmcb02_compute_g_pat(svm);
Joerg Roedel06e78522020-06-25 10:03:23 +02002840 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Paolo Bonzini15038e12017-10-26 09:13:27 +02002841 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002842 case MSR_IA32_SPEC_CTRL:
2843 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002844 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002845 return 1;
2846
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002847 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002848 return 1;
2849
Babu Mogerd00b99c2021-02-17 10:56:04 -05002850 if (boot_cpu_has(X86_FEATURE_V_SPEC_CTRL))
2851 svm->vmcb->save.spec_ctrl = data;
2852 else
2853 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002854 if (!data)
2855 break;
2856
2857 /*
2858 * For non-nested:
2859 * When it's written (to non-zero) for the first time, pass
2860 * it through.
2861 *
2862 * For nested:
2863 * The handling of the MSR bitmap for L2 guests is done in
2864 * nested_svm_vmrun_msrpm.
2865 * We update the L1 MSR bit as well since it will end up
2866 * touching the MSR anyway now.
2867 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002868 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002869 break;
Ashok Raj15d45072018-02-01 22:59:43 +01002870 case MSR_IA32_PRED_CMD:
2871 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002872 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002873 return 1;
2874
2875 if (data & ~PRED_CMD_IBPB)
2876 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002877 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002878 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002879 if (!data)
2880 break;
2881
2882 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002883 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
Ashok Raj15d45072018-02-01 22:59:43 +01002884 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002885 case MSR_AMD64_VIRT_SPEC_CTRL:
2886 if (!msr->host_initiated &&
2887 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2888 return 1;
2889
2890 if (data & ~SPEC_CTRL_SSBD)
2891 return 1;
2892
2893 svm->virt_spec_ctrl = data;
2894 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002895 case MSR_STAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002896 svm->vmcb01.ptr->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002897 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08002898#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002899 case MSR_LSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002900 svm->vmcb01.ptr->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901 break;
2902 case MSR_CSTAR:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002903 svm->vmcb01.ptr->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904 break;
2905 case MSR_KERNEL_GS_BASE:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002906 svm->vmcb01.ptr->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002907 break;
2908 case MSR_SYSCALL_MASK:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002909 svm->vmcb01.ptr->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 break;
2911#endif
2912 case MSR_IA32_SYSENTER_CS:
Maxim Levitskycc3ed802021-02-10 18:54:36 +02002913 svm->vmcb01.ptr->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002914 break;
2915 case MSR_IA32_SYSENTER_EIP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002916 svm->vmcb01.ptr->save.sysenter_eip = (u32)data;
2917 /*
2918 * We only intercept the MSR_IA32_SYSENTER_{EIP|ESP} msrs
2919 * when we spoof an Intel vendor ID (for cross vendor migration).
2920 * In this case we use this intercept to track the high
2921 * 32 bit part of these msrs to support Intel's
2922 * implementation of SYSENTER/SYSEXIT.
2923 */
2924 svm->sysenter_eip_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925 break;
2926 case MSR_IA32_SYSENTER_ESP:
Maxim Levitskyadc2a232021-04-01 14:19:28 +03002927 svm->vmcb01.ptr->save.sysenter_esp = (u32)data;
2928 svm->sysenter_esp_hi = guest_cpuid_is_intel(vcpu) ? (data >> 32) : 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002929 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002930 case MSR_TSC_AUX:
Sean Christophersondbd61272021-04-23 15:34:02 -07002931 /*
Sean Christopherson844d69c2021-04-23 15:34:04 -07002932 * TSC_AUX is usually changed only during boot and never read
2933 * directly. Intercept TSC_AUX instead of exposing it to the
2934 * guest via direct_access_msrs, and switch it via user return.
Paolo Bonzini46896c72015-11-12 14:49:16 +01002935 */
Sean Christopherson844d69c2021-04-23 15:34:04 -07002936 preempt_disable();
Sean Christopherson0caa0a72021-05-04 10:17:25 -07002937 r = kvm_set_user_return_msr(tsc_aux_uret_slot, data, -1ull);
Sean Christopherson844d69c2021-04-23 15:34:04 -07002938 preempt_enable();
2939 if (r)
2940 return 1;
2941
Paolo Bonzini46896c72015-11-12 14:49:16 +01002942 svm->tsc_aux = data;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002943 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01002944 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02002945 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002946 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
2947 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002948 break;
2949 }
2950 if (data & DEBUGCTL_RESERVED_BITS)
2951 return 1;
2952
2953 svm->vmcb->save.dbgctl = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002954 vmcb_mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002955 if (data & (1ULL<<0))
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002956 svm_enable_lbrv(vcpu);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002957 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002958 svm_disable_lbrv(vcpu);
Joerg Roedela2938c82008-02-13 16:30:28 +01002959 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002960 case MSR_VM_HSAVE_PA:
Vitaly Kuznetsovfce7e152021-06-28 12:44:20 +02002961 /*
2962 * Old kernels did not validate the value written to
2963 * MSR_VM_HSAVE_PA. Allow KVM_SET_MSR to set an invalid
2964 * value to allow live migrating buggy or malicious guests
2965 * originating from those kernels.
2966 */
2967 if (!msr->host_initiated && !page_address_valid(vcpu, data))
2968 return 1;
2969
2970 svm->nested.hsave_msr = data & PAGE_MASK;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002971 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002972 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01002973 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002974 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03002975 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002976 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002977 case MSR_F10H_DECFG: {
2978 struct kvm_msr_entry msr_entry;
2979
2980 msr_entry.index = msr->index;
2981 if (svm_get_msr_feature(&msr_entry))
2982 return 1;
2983
2984 /* Check the supported bits */
2985 if (data & ~msr_entry.data)
2986 return 1;
2987
2988 /* Don't allow the guest to change a bit, #GP */
2989 if (!msr->host_initiated && (data ^ msr_entry.data))
2990 return 1;
2991
2992 svm->msr_decfg = data;
2993 break;
2994 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002995 case MSR_IA32_APICBASE:
2996 if (kvm_vcpu_apicv_active(vcpu))
2997 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002998 fallthrough;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08003000 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003001 }
3002 return 0;
3003}
3004
Paolo Bonzini63129752021-03-02 14:40:39 -05003005static int msr_interception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006{
Paolo Bonzini63129752021-03-02 14:40:39 -05003007 if (to_svm(vcpu)->vmcb->control.exit_info_1)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003008 return kvm_emulate_wrmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003009 else
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003010 return kvm_emulate_rdmsr(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003011}
3012
Paolo Bonzini63129752021-03-02 14:40:39 -05003013static int interrupt_window_interception(struct kvm_vcpu *vcpu)
Dor Laorc1150d82007-01-05 16:36:24 -08003014{
Paolo Bonzini63129752021-03-02 14:40:39 -05003015 kvm_make_request(KVM_REQ_EVENT, vcpu);
3016 svm_clear_vintr(to_svm(vcpu));
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003017
3018 /*
3019 * For AVIC, the only reason to end up here is ExtINTs.
3020 * In this case AVIC was temporarily disabled for
3021 * requesting the IRQ window and we have to re-enable it.
3022 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003023 svm_toggle_avic_for_irq_window(vcpu, true);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003024
Paolo Bonzini63129752021-03-02 14:40:39 -05003025 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08003026 return 1;
3027}
3028
Paolo Bonzini63129752021-03-02 14:40:39 -05003029static int pause_interception(struct kvm_vcpu *vcpu)
Mark Langsdorf565d0992009-10-06 14:25:02 -05003030{
Tom Lendackyf1c63662020-12-14 10:29:50 -05003031 bool in_kernel;
3032
3033 /*
3034 * CPL is not made available for an SEV-ES guest, therefore
3035 * vcpu->arch.preempted_in_kernel can never be true. Just
3036 * set in_kernel to false as well.
3037 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003038 in_kernel = !sev_es_guest(vcpu->kvm) && svm_get_cpl(vcpu) == 0;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003039
Wanpeng Li830f01b2020-07-31 11:12:21 +08003040 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04003041 grow_ple_window(vcpu);
3042
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003043 kvm_vcpu_on_spin(vcpu, in_kernel);
Sean Christophersonc8781fe2021-02-04 16:57:50 -08003044 return kvm_skip_emulated_instruction(vcpu);
Mark Langsdorf565d0992009-10-06 14:25:02 -05003045}
3046
Paolo Bonzini63129752021-03-02 14:40:39 -05003047static int invpcid_interception(struct kvm_vcpu *vcpu)
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04003048{
Paolo Bonzini63129752021-03-02 14:40:39 -05003049 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger4407a792020-09-11 14:29:19 -05003050 unsigned long type;
3051 gva_t gva;
3052
3053 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
3054 kvm_queue_exception(vcpu, UD_VECTOR);
3055 return 1;
3056 }
3057
3058 /*
3059 * For an INVPCID intercept:
3060 * EXITINFO1 provides the linear address of the memory operand.
3061 * EXITINFO2 provides the contents of the register operand.
3062 */
3063 type = svm->vmcb->control.exit_info_2;
3064 gva = svm->vmcb->control.exit_info_1;
3065
3066 if (type > 3) {
3067 kvm_inject_gp(vcpu, 0);
3068 return 1;
3069 }
3070
3071 return kvm_handle_invpcid(vcpu, type, gva);
3072}
3073
Paolo Bonzini63129752021-03-02 14:40:39 -05003074static int (*const svm_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01003075 [SVM_EXIT_READ_CR0] = cr_interception,
3076 [SVM_EXIT_READ_CR3] = cr_interception,
3077 [SVM_EXIT_READ_CR4] = cr_interception,
3078 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06003079 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02003080 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01003081 [SVM_EXIT_WRITE_CR3] = cr_interception,
3082 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003083 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01003084 [SVM_EXIT_READ_DR0] = dr_interception,
3085 [SVM_EXIT_READ_DR1] = dr_interception,
3086 [SVM_EXIT_READ_DR2] = dr_interception,
3087 [SVM_EXIT_READ_DR3] = dr_interception,
3088 [SVM_EXIT_READ_DR4] = dr_interception,
3089 [SVM_EXIT_READ_DR5] = dr_interception,
3090 [SVM_EXIT_READ_DR6] = dr_interception,
3091 [SVM_EXIT_READ_DR7] = dr_interception,
3092 [SVM_EXIT_WRITE_DR0] = dr_interception,
3093 [SVM_EXIT_WRITE_DR1] = dr_interception,
3094 [SVM_EXIT_WRITE_DR2] = dr_interception,
3095 [SVM_EXIT_WRITE_DR3] = dr_interception,
3096 [SVM_EXIT_WRITE_DR4] = dr_interception,
3097 [SVM_EXIT_WRITE_DR5] = dr_interception,
3098 [SVM_EXIT_WRITE_DR6] = dr_interception,
3099 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003100 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3101 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003102 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003103 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003104 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01003105 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02003106 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003107 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02003108 [SVM_EXIT_NMI] = nmi_interception,
Maxim Levitsky991afbb2021-07-07 15:50:58 +03003109 [SVM_EXIT_SMI] = smi_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08003110 [SVM_EXIT_VINTR] = interrupt_window_interception,
Sean Christopherson32c23c72021-02-04 16:57:49 -08003111 [SVM_EXIT_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003112 [SVM_EXIT_CPUID] = kvm_emulate_cpuid,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003113 [SVM_EXIT_IRET] = iret_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003114 [SVM_EXIT_INVD] = kvm_emulate_invd,
Mark Langsdorf565d0992009-10-06 14:25:02 -05003115 [SVM_EXIT_PAUSE] = pause_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003116 [SVM_EXIT_HLT] = kvm_emulate_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003117 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02003118 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01003119 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003120 [SVM_EXIT_MSR] = msr_interception,
3121 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08003122 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01003123 [SVM_EXIT_VMRUN] = vmrun_interception,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003124 [SVM_EXIT_VMMCALL] = kvm_emulate_hypercall,
Alexander Graf55426752008-11-25 20:17:06 +01003125 [SVM_EXIT_VMLOAD] = vmload_interception,
3126 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01003127 [SVM_EXIT_STGI] = stgi_interception,
3128 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02003129 [SVM_EXIT_SKINIT] = skinit_interception,
Sean Christopherson3b195ac2021-05-04 10:17:22 -07003130 [SVM_EXIT_RDTSCP] = kvm_handle_invalid_op,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003131 [SVM_EXIT_WBINVD] = kvm_emulate_wbinvd,
3132 [SVM_EXIT_MONITOR] = kvm_emulate_monitor,
3133 [SVM_EXIT_MWAIT] = kvm_emulate_mwait,
Sean Christopherson92f98952021-02-04 16:57:46 -08003134 [SVM_EXIT_XSETBV] = kvm_emulate_xsetbv,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003135 [SVM_EXIT_RDPRU] = kvm_handle_invalid_op,
Tom Lendacky2985afb2020-12-10 11:09:55 -06003136 [SVM_EXIT_EFER_WRITE_TRAP] = efer_trap,
Tom Lendackyf27ad382020-12-10 11:09:56 -06003137 [SVM_EXIT_CR0_WRITE_TRAP] = cr_trap,
Tom Lendacky5b51cb12020-12-10 11:09:57 -06003138 [SVM_EXIT_CR4_WRITE_TRAP] = cr_trap,
Tom Lendackyd1949b92020-12-10 11:09:58 -06003139 [SVM_EXIT_CR8_WRITE_TRAP] = cr_trap,
Babu Moger4407a792020-09-11 14:29:19 -05003140 [SVM_EXIT_INVPCID] = invpcid_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02003141 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06003142 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05003143 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
3144 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Tom Lendacky291bd202020-12-10 11:09:47 -06003145 [SVM_EXIT_VMGEXIT] = sev_handle_vmgexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003146};
3147
Joe Perchesae8cc052011-04-24 22:00:50 -07003148static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02003149{
3150 struct vcpu_svm *svm = to_svm(vcpu);
3151 struct vmcb_control_area *control = &svm->vmcb->control;
3152 struct vmcb_save_area *save = &svm->vmcb->save;
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003153 struct vmcb_save_area *save01 = &svm->vmcb01.ptr->save;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003154
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02003155 if (!dump_invalid_vmcb) {
3156 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
3157 return;
3158 }
3159
Jim Mattson18f63b12021-06-21 15:16:48 -07003160 pr_err("VMCB %p, last attempted VMRUN on CPU %d\n",
3161 svm->current_vmcb->ptr, vcpu->arch.last_vmentry_cpu);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003162 pr_err("VMCB Control Area:\n");
Babu Moger03bfeeb2020-09-11 14:28:05 -05003163 pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
3164 pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
Babu Moger30abaa882020-09-11 14:28:12 -05003165 pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
3166 pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
Babu Moger9780d512020-09-11 14:28:20 -05003167 pr_err("%-20s%08x\n", "exceptions:", control->intercepts[INTERCEPT_EXCEPTION]);
Babu Mogerc62e2e92020-09-11 14:28:28 -05003168 pr_err("%-20s%08x %08x\n", "intercepts:",
3169 control->intercepts[INTERCEPT_WORD3],
3170 control->intercepts[INTERCEPT_WORD4]);
Joe Perchesae8cc052011-04-24 22:00:50 -07003171 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04003172 pr_err("%-20s%d\n", "pause filter threshold:",
3173 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07003174 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
3175 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
3176 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
3177 pr_err("%-20s%d\n", "asid:", control->asid);
3178 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
3179 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
3180 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
3181 pr_err("%-20s%08x\n", "int_state:", control->int_state);
3182 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
3183 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
3184 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3185 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3186 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3187 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3188 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003189 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Tom Lendacky291bd202020-12-10 11:09:47 -06003190 pr_err("%-20s%016llx\n", "ghcb:", control->ghcb_gpa);
Joe Perchesae8cc052011-04-24 22:00:50 -07003191 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3192 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003193 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07003194 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003195 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
3196 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
3197 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Tom Lendacky376c6d22020-12-10 11:10:06 -06003198 pr_err("%-20s%016llx\n", "vmsa_pa:", control->vmsa_pa);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003199 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07003200 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3201 "es:",
3202 save->es.selector, save->es.attrib,
3203 save->es.limit, save->es.base);
3204 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3205 "cs:",
3206 save->cs.selector, save->cs.attrib,
3207 save->cs.limit, save->cs.base);
3208 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3209 "ss:",
3210 save->ss.selector, save->ss.attrib,
3211 save->ss.limit, save->ss.base);
3212 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3213 "ds:",
3214 save->ds.selector, save->ds.attrib,
3215 save->ds.limit, save->ds.base);
3216 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3217 "fs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003218 save01->fs.selector, save01->fs.attrib,
3219 save01->fs.limit, save01->fs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003220 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3221 "gs:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003222 save01->gs.selector, save01->gs.attrib,
3223 save01->gs.limit, save01->gs.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003224 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3225 "gdtr:",
3226 save->gdtr.selector, save->gdtr.attrib,
3227 save->gdtr.limit, save->gdtr.base);
3228 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3229 "ldtr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003230 save01->ldtr.selector, save01->ldtr.attrib,
3231 save01->ldtr.limit, save01->ldtr.base);
Joe Perchesae8cc052011-04-24 22:00:50 -07003232 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3233 "idtr:",
3234 save->idtr.selector, save->idtr.attrib,
3235 save->idtr.limit, save->idtr.base);
3236 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3237 "tr:",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003238 save01->tr.selector, save01->tr.attrib,
3239 save01->tr.limit, save01->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003240 pr_err("cpl: %d efer: %016llx\n",
3241 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07003242 pr_err("%-15s %016llx %-13s %016llx\n",
3243 "cr0:", save->cr0, "cr2:", save->cr2);
3244 pr_err("%-15s %016llx %-13s %016llx\n",
3245 "cr3:", save->cr3, "cr4:", save->cr4);
3246 pr_err("%-15s %016llx %-13s %016llx\n",
3247 "dr6:", save->dr6, "dr7:", save->dr7);
3248 pr_err("%-15s %016llx %-13s %016llx\n",
3249 "rip:", save->rip, "rflags:", save->rflags);
3250 pr_err("%-15s %016llx %-13s %016llx\n",
3251 "rsp:", save->rsp, "rax:", save->rax);
3252 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003253 "star:", save01->star, "lstar:", save01->lstar);
Joe Perchesae8cc052011-04-24 22:00:50 -07003254 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003255 "cstar:", save01->cstar, "sfmask:", save01->sfmask);
Joe Perchesae8cc052011-04-24 22:00:50 -07003256 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003257 "kernel_gs_base:", save01->kernel_gs_base,
3258 "sysenter_cs:", save01->sysenter_cs);
Joe Perchesae8cc052011-04-24 22:00:50 -07003259 pr_err("%-15s %016llx %-13s %016llx\n",
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003260 "sysenter_esp:", save01->sysenter_esp,
3261 "sysenter_eip:", save01->sysenter_eip);
Joe Perchesae8cc052011-04-24 22:00:50 -07003262 pr_err("%-15s %016llx %-13s %016llx\n",
3263 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3264 pr_err("%-15s %016llx %-13s %016llx\n",
3265 "br_from:", save->br_from, "br_to:", save->br_to);
3266 pr_err("%-15s %016llx %-13s %016llx\n",
3267 "excp_from:", save->last_excp_from,
3268 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003269}
3270
Tom Lendackye9093fd42020-12-10 11:09:46 -06003271static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code)
3272{
3273 if (exit_code < ARRAY_SIZE(svm_exit_handlers) &&
3274 svm_exit_handlers[exit_code])
3275 return 0;
3276
3277 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%llx\n", exit_code);
3278 dump_vmcb(vcpu);
3279 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3280 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
3281 vcpu->run->internal.ndata = 2;
3282 vcpu->run->internal.data[0] = exit_code;
3283 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
3284
3285 return -EINVAL;
3286}
3287
Paolo Bonzini63129752021-03-02 14:40:39 -05003288int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code)
Tom Lendackye9093fd42020-12-10 11:09:46 -06003289{
Paolo Bonzini63129752021-03-02 14:40:39 -05003290 if (svm_handle_invalid_exit(vcpu, exit_code))
Tom Lendackye9093fd42020-12-10 11:09:46 -06003291 return 0;
3292
3293#ifdef CONFIG_RETPOLINE
3294 if (exit_code == SVM_EXIT_MSR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003295 return msr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003296 else if (exit_code == SVM_EXIT_VINTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003297 return interrupt_window_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003298 else if (exit_code == SVM_EXIT_INTR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003299 return intr_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003300 else if (exit_code == SVM_EXIT_HLT)
Sean Christopherson5ff3a352021-02-04 16:57:47 -08003301 return kvm_emulate_halt(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003302 else if (exit_code == SVM_EXIT_NPF)
Paolo Bonzini63129752021-03-02 14:40:39 -05003303 return npf_interception(vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003304#endif
Paolo Bonzini63129752021-03-02 14:40:39 -05003305 return svm_exit_handlers[exit_code](vcpu);
Tom Lendackye9093fd42020-12-10 11:09:46 -06003306}
3307
Sean Christopherson235ba742020-09-23 13:13:46 -07003308static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
3309 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02003310{
3311 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3312
3313 *info1 = control->exit_info_1;
3314 *info2 = control->exit_info_2;
Sean Christopherson235ba742020-09-23 13:13:46 -07003315 *intr_info = control->exit_int_info;
3316 if ((*intr_info & SVM_EXITINTINFO_VALID) &&
3317 (*intr_info & SVM_EXITINTINFO_VALID_ERR))
3318 *error_code = control->exit_int_info_err;
3319 else
3320 *error_code = 0;
Avi Kivity586f9602010-11-18 13:09:54 +02003321}
3322
Wanpeng Li404d5d72020-04-28 14:23:25 +08003323static int handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003325 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003326 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003327 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003328
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01003329 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
3330
Tom Lendackyf1c63662020-12-14 10:29:50 -05003331 /* SEV-ES guests must use the CR write traps to track CR registers. */
3332 if (!sev_es_guest(vcpu->kvm)) {
3333 if (!svm_is_intercept(svm, INTERCEPT_CR0_WRITE))
3334 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3335 if (npt_enabled)
3336 vcpu->arch.cr3 = svm->vmcb->save.cr3;
3337 }
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003338
Joerg Roedel20307532010-11-29 17:51:48 +01003339 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02003340 int vmexit;
3341
Sean Christophersoncc167bd2020-09-23 13:13:48 -07003342 trace_kvm_nested_vmexit(exit_code, vcpu, KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02003343
Joerg Roedel410e4d52009-08-07 11:49:44 +02003344 vmexit = nested_svm_exit_special(svm);
3345
3346 if (vmexit == NESTED_EXIT_CONTINUE)
3347 vmexit = nested_svm_exit_handled(svm);
3348
3349 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01003350 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01003351 }
3352
Avi Kivity04d2cc72007-09-10 18:10:54 +03003353 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3354 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3355 kvm_run->fail_entry.hardware_entry_failure_reason
3356 = svm->vmcb->control.exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003357 kvm_run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003358 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003359 return 0;
3360 }
3361
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003362 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01003363 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02003364 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3365 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02003366 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003367 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003368 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369 exit_code);
3370
Wanpeng Li404d5d72020-04-28 14:23:25 +08003371 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08003372 return 1;
Wanpeng Li404d5d72020-04-28 14:23:25 +08003373
Paolo Bonzini63129752021-03-02 14:40:39 -05003374 return svm_invoke_exit_handler(vcpu, exit_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003375}
3376
3377static void reload_tss(struct kvm_vcpu *vcpu)
3378{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003379 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003380
Tejun Heo0fe1e002009-10-29 22:34:14 +09003381 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003382 load_TR_desc();
3383}
3384
Paolo Bonzini63129752021-03-02 14:40:39 -05003385static void pre_svm_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003386{
Paolo Bonzini63129752021-03-02 14:40:39 -05003387 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3388 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003389
Cathy Averyaf18fa72021-01-12 11:43:12 -05003390 /*
Sean Christopherson44f1b552021-04-06 10:18:11 -07003391 * If the previous vmrun of the vmcb occurred on a different physical
3392 * cpu, then mark the vmcb dirty and assign a new asid. Hardware's
3393 * vmcb clean bits are per logical CPU, as are KVM's asid assignments.
3394 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003395 if (unlikely(svm->current_vmcb->cpu != vcpu->cpu)) {
Cathy Avery193015a2021-01-12 11:43:13 -05003396 svm->current_vmcb->asid_generation = 0;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003397 vmcb_mark_all_dirty(svm->vmcb);
Paolo Bonzini63129752021-03-02 14:40:39 -05003398 svm->current_vmcb->cpu = vcpu->cpu;
Cathy Averyaf18fa72021-01-12 11:43:12 -05003399 }
3400
Paolo Bonzini63129752021-03-02 14:40:39 -05003401 if (sev_guest(vcpu->kvm))
3402 return pre_sev_run(svm, vcpu->cpu);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003403
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03003404 /* FIXME: handle wraparound of asid_generation */
Cathy Avery193015a2021-01-12 11:43:13 -05003405 if (svm->current_vmcb->asid_generation != sd->asid_generation)
Tejun Heo0fe1e002009-10-29 22:34:14 +09003406 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407}
3408
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003409static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3410{
3411 struct vcpu_svm *svm = to_svm(vcpu);
3412
3413 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3414 vcpu->arch.hflags |= HF_NMI_MASK;
Paolo Bonzini63129752021-03-02 14:40:39 -05003415 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003416 svm_set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003417 ++vcpu->stat.nmi_injections;
3418}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003420static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03003421{
3422 struct vcpu_svm *svm = to_svm(vcpu);
3423
Joerg Roedel2af91942009-08-07 11:49:28 +02003424 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01003425
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03003426 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3427 ++vcpu->stat.irq_injections;
3428
Alexander Graf219b65d2009-06-15 15:21:25 +02003429 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3430 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03003431}
3432
Jason Baronb6a7cc32021-01-14 22:27:54 -05003433static void svm_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003434{
3435 struct vcpu_svm *svm = to_svm(vcpu);
3436
Tom Lendackyf1c63662020-12-14 10:29:50 -05003437 /*
3438 * SEV-ES guests must always keep the CR intercepts cleared. CR
3439 * tracking is done using the CR write traps.
3440 */
3441 if (sev_es_guest(vcpu->kvm))
3442 return;
3443
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003444 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003445 return;
3446
Babu Moger830bd712020-09-11 14:28:50 -05003447 svm_clr_intercept(svm, INTERCEPT_CR8_WRITE);
Radim Krčmář596f3142014-03-11 19:11:18 +01003448
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003449 if (irr == -1)
3450 return;
3451
3452 if (tpr >= irr)
Babu Moger830bd712020-09-11 14:28:50 -05003453 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003454}
3455
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003456bool svm_nmi_blocked(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003457{
3458 struct vcpu_svm *svm = to_svm(vcpu);
3459 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson88c604b2020-04-22 19:25:41 -07003460 bool ret;
Cathy Avery9c3d3702020-04-14 16:11:06 -04003461
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003462 if (!gif_set(svm))
Paolo Bonzinibbdad0b2020-04-23 08:06:43 -04003463 return true;
3464
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003465 if (is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
3466 return false;
3467
3468 ret = (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
Paolo Bonzini63129752021-03-02 14:40:39 -05003469 (vcpu->arch.hflags & HF_NMI_MASK);
Joerg Roedel924584c2010-04-22 12:33:07 +02003470
3471 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003472}
3473
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003474static int svm_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003475{
3476 struct vcpu_svm *svm = to_svm(vcpu);
3477 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003478 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003479
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003480 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
3481 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003482 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003483
3484 return !svm_nmi_blocked(vcpu);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003485}
3486
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003487static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3488{
Paolo Bonzini63129752021-03-02 14:40:39 -05003489 return !!(vcpu->arch.hflags & HF_NMI_MASK);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003490}
3491
3492static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3493{
3494 struct vcpu_svm *svm = to_svm(vcpu);
3495
3496 if (masked) {
Paolo Bonzini63129752021-03-02 14:40:39 -05003497 vcpu->arch.hflags |= HF_NMI_MASK;
3498 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003499 svm_set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003500 } else {
Paolo Bonzini63129752021-03-02 14:40:39 -05003501 vcpu->arch.hflags &= ~HF_NMI_MASK;
3502 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky4444dfe2020-12-14 11:16:03 -05003503 svm_clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003504 }
3505}
3506
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003507bool svm_interrupt_blocked(struct kvm_vcpu *vcpu)
Gleb Natapov78646122009-03-23 12:12:11 +02003508{
3509 struct vcpu_svm *svm = to_svm(vcpu);
3510 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003511
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003512 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003513 return true;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003514
Paolo Bonzini63129752021-03-02 14:40:39 -05003515 if (sev_es_guest(vcpu->kvm)) {
Tom Lendackyf1c63662020-12-14 10:29:50 -05003516 /*
3517 * SEV-ES guests to not expose RFLAGS. Use the VMCB interrupt mask
3518 * bit to determine the state of the IF flag.
3519 */
3520 if (!(vmcb->control.int_state & SVM_GUEST_INTERRUPT_MASK))
3521 return true;
3522 } else if (is_guest_mode(vcpu)) {
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003523 /* As long as interrupts are being delivered... */
Paolo Bonzinie9fd7612020-05-13 13:28:23 -04003524 if ((svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK)
Cathy Avery4995a362021-01-13 07:07:52 -05003525 ? !(svm->vmcb01.ptr->save.rflags & X86_EFLAGS_IF)
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003526 : !(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3527 return true;
3528
3529 /* ... vmexits aren't blocked by the interrupt shadow */
3530 if (nested_exit_on_intr(svm))
3531 return false;
3532 } else {
3533 if (!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3534 return true;
3535 }
3536
3537 return (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003538}
3539
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003540static int svm_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003541{
3542 struct vcpu_svm *svm = to_svm(vcpu);
3543 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003544 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003545
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003546 /*
3547 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
3548 * e.g. if the IRQ arrived asynchronously after checking nested events.
3549 */
3550 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003551 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003552
3553 return !svm_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02003554}
3555
Jason Baronb6a7cc32021-01-14 22:27:54 -05003556static void svm_enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003557{
Alexander Graf219b65d2009-06-15 15:21:25 +02003558 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02003559
Joerg Roedele0231712010-02-24 18:59:10 +01003560 /*
3561 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3562 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3563 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003564 * we'll get the vintr intercept. However, if the vGIF feature is
3565 * enabled, the STGI interception will not occur. Enable the irq
3566 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01003567 */
Paolo Bonzinib518ba92020-03-04 16:46:47 -05003568 if (vgif_enabled(svm) || gif_set(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003569 /*
3570 * IRQ window is not needed when AVIC is enabled,
3571 * unless we have pending ExtINT since it cannot be injected
3572 * via AVIC. In such case, we need to temporarily disable AVIC,
3573 * and fallback to injecting IRQ via V_IRQ.
3574 */
3575 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02003576 svm_set_vintr(svm);
Alexander Graf219b65d2009-06-15 15:21:25 +02003577 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003578}
3579
Jason Baronb6a7cc32021-01-14 22:27:54 -05003580static void svm_enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003581{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003582 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003583
Paolo Bonzini63129752021-03-02 14:40:39 -05003584 if ((vcpu->arch.hflags & (HF_NMI_MASK | HF_IRET_MASK)) == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01003585 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03003586
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003587 if (!gif_set(svm)) {
3588 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02003589 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003590 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003591 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003592
Joerg Roedele0231712010-02-24 18:59:10 +01003593 /*
3594 * Something prevents NMI from been injected. Single step over possible
3595 * problem (IRET or exception injection or interrupt shadow)
3596 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003597 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02003598 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03003599 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03003600}
3601
Izik Eiduscbc94022007-10-25 00:29:55 +02003602static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3603{
3604 return 0;
3605}
3606
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07003607static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
3608{
3609 return 0;
3610}
3611
Sean Christophersonf55ac302020-03-20 14:28:12 -07003612void svm_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivityd9e368d2007-06-07 19:18:30 +03003613{
Joerg Roedel38e5e922010-12-03 15:25:16 +01003614 struct vcpu_svm *svm = to_svm(vcpu);
3615
Sean Christopherson4a41e432020-03-20 14:28:17 -07003616 /*
3617 * Flush only the current ASID even if the TLB flush was invoked via
3618 * kvm_flush_remote_tlbs(). Although flushing remote TLBs requires all
3619 * ASIDs to be flushed, KVM uses a single ASID for L1 and L2, and
3620 * unconditionally does a TLB flush on both nested VM-Enter and nested
3621 * VM-Exit (via kvm_mmu_reset_context()).
3622 */
Joerg Roedel38e5e922010-12-03 15:25:16 +01003623 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3624 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3625 else
Cathy Avery193015a2021-01-12 11:43:13 -05003626 svm->current_vmcb->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03003627}
3628
Junaid Shahidfaff8752018-06-29 13:10:05 -07003629static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
3630{
3631 struct vcpu_svm *svm = to_svm(vcpu);
3632
3633 invlpga(gva, svm->vmcb->control.asid);
3634}
3635
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003636static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3637{
3638 struct vcpu_svm *svm = to_svm(vcpu);
3639
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003640 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003641 return;
3642
Babu Moger830bd712020-09-11 14:28:50 -05003643 if (!svm_is_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003644 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03003645 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003646 }
3647}
3648
Joerg Roedel649d6862008-04-16 16:51:15 +02003649static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3650{
3651 struct vcpu_svm *svm = to_svm(vcpu);
3652 u64 cr8;
3653
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003654 if (nested_svm_virtualize_tpr(vcpu) ||
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05003655 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003656 return;
3657
Joerg Roedel649d6862008-04-16 16:51:15 +02003658 cr8 = kvm_get_cr8(vcpu);
3659 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3660 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3661}
3662
Paolo Bonzini63129752021-03-02 14:40:39 -05003663static void svm_complete_interrupts(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003664{
Paolo Bonzini63129752021-03-02 14:40:39 -05003665 struct vcpu_svm *svm = to_svm(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003666 u8 vector;
3667 int type;
3668 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01003669 unsigned int3_injected = svm->int3_injected;
3670
3671 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03003672
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003673 /*
3674 * If we've made progress since setting HF_IRET_MASK, we've
3675 * executed an IRET and can allow NMI injection.
3676 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003677 if ((vcpu->arch.hflags & HF_IRET_MASK) &&
3678 (sev_es_guest(vcpu->kvm) ||
3679 kvm_rip_read(vcpu) != svm->nmi_iret_rip)) {
3680 vcpu->arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
3681 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003682 }
Gleb Natapov44c11432009-05-11 13:35:52 +03003683
Paolo Bonzini63129752021-03-02 14:40:39 -05003684 vcpu->arch.nmi_injected = false;
3685 kvm_clear_exception_queue(vcpu);
3686 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov9222be12009-04-23 17:14:37 +03003687
3688 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3689 return;
3690
Paolo Bonzini63129752021-03-02 14:40:39 -05003691 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003692
Gleb Natapov9222be12009-04-23 17:14:37 +03003693 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3694 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3695
3696 switch (type) {
3697 case SVM_EXITINTINFO_TYPE_NMI:
Paolo Bonzini63129752021-03-02 14:40:39 -05003698 vcpu->arch.nmi_injected = true;
Gleb Natapov9222be12009-04-23 17:14:37 +03003699 break;
3700 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01003701 /*
Tom Lendackyf1c63662020-12-14 10:29:50 -05003702 * Never re-inject a #VC exception.
3703 */
3704 if (vector == X86_TRAP_VC)
3705 break;
3706
3707 /*
Jan Kiszka66b71382010-02-23 17:47:56 +01003708 * In case of software exceptions, do not reinject the vector,
3709 * but re-execute the instruction instead. Rewind RIP first
3710 * if we emulated INT3 before.
3711 */
3712 if (kvm_exception_is_soft(vector)) {
3713 if (vector == BP_VECTOR && int3_injected &&
Paolo Bonzini63129752021-03-02 14:40:39 -05003714 kvm_is_linear_rip(vcpu, svm->int3_rip))
3715 kvm_rip_write(vcpu,
3716 kvm_rip_read(vcpu) - int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02003717 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01003718 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003719 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3720 u32 err = svm->vmcb->control.exit_int_info_err;
Paolo Bonzini63129752021-03-02 14:40:39 -05003721 kvm_requeue_exception_e(vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03003722
3723 } else
Paolo Bonzini63129752021-03-02 14:40:39 -05003724 kvm_requeue_exception(vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03003725 break;
3726 case SVM_EXITINTINFO_TYPE_INTR:
Paolo Bonzini63129752021-03-02 14:40:39 -05003727 kvm_queue_interrupt(vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03003728 break;
3729 default:
3730 break;
3731 }
3732}
3733
Avi Kivityb463a6f2010-07-20 15:06:17 +03003734static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3735{
3736 struct vcpu_svm *svm = to_svm(vcpu);
3737 struct vmcb_control_area *control = &svm->vmcb->control;
3738
3739 control->exit_int_info = control->event_inj;
3740 control->exit_int_info_err = control->event_inj_err;
3741 control->event_inj = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003742 svm_complete_interrupts(vcpu);
Avi Kivityb463a6f2010-07-20 15:06:17 +03003743}
3744
Wanpeng Li404d5d72020-04-28 14:23:25 +08003745static fastpath_t svm_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003746{
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003747 if (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR &&
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003748 to_svm(vcpu)->vmcb->control.exit_info_1)
3749 return handle_fastpath_set_msr_irqoff(vcpu);
3750
3751 return EXIT_FASTPATH_NONE;
3752}
3753
Paolo Bonzini63129752021-03-02 14:40:39 -05003754static noinstr void svm_vcpu_enter_exit(struct kvm_vcpu *vcpu)
Thomas Gleixner135961e2020-07-08 21:51:58 +02003755{
Paolo Bonzini63129752021-03-02 14:40:39 -05003756 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christophersond1788192021-04-06 10:18:09 -07003757 unsigned long vmcb_pa = svm->current_vmcb->pa;
Paolo Bonzini63129752021-03-02 14:40:39 -05003758
Sean Christophersonbc908e02021-05-04 17:27:35 -07003759 kvm_guest_enter_irqoff();
Thomas Gleixner135961e2020-07-08 21:51:58 +02003760
Paolo Bonzini63129752021-03-02 14:40:39 -05003761 if (sev_es_guest(vcpu->kvm)) {
Sean Christophersond1788192021-04-06 10:18:09 -07003762 __svm_sev_es_vcpu_run(vmcb_pa);
Tom Lendacky16809ec2020-12-10 11:10:08 -06003763 } else {
Michael Rothe79b91b2021-02-02 13:01:24 -06003764 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
3765
Sean Christophersond1788192021-04-06 10:18:09 -07003766 /*
3767 * Use a single vmcb (vmcb01 because it's always valid) for
3768 * context switching guest state via VMLOAD/VMSAVE, that way
3769 * the state doesn't need to be copied between vmcb01 and
3770 * vmcb02 when switching vmcbs for nested virtualization.
3771 */
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003772 vmload(svm->vmcb01.pa);
Sean Christophersond1788192021-04-06 10:18:09 -07003773 __svm_vcpu_run(vmcb_pa, (unsigned long *)&vcpu->arch.regs);
Maxim Levitskycc3ed802021-02-10 18:54:36 +02003774 vmsave(svm->vmcb01.pa);
Thomas Gleixner135961e2020-07-08 21:51:58 +02003775
Michael Rothe79b91b2021-02-02 13:01:24 -06003776 vmload(__sme_page_pa(sd->save_area));
Tom Lendacky16809ec2020-12-10 11:10:08 -06003777 }
Thomas Gleixner135961e2020-07-08 21:51:58 +02003778
Sean Christophersonbc908e02021-05-04 17:27:35 -07003779 kvm_guest_exit_irqoff();
Thomas Gleixner135961e2020-07-08 21:51:58 +02003780}
3781
Qian Caib95273f2020-04-15 11:37:09 -04003782static __no_kcsan fastpath_t svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003783{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003784 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03003785
Lorenzo Bresciad95df952020-12-23 14:45:07 +00003786 trace_kvm_entry(vcpu);
3787
Joerg Roedel2041a062010-04-22 12:33:08 +02003788 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3789 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3790 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3791
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003792 /*
Ladi Proseka12713c2017-06-21 09:07:00 +02003793 * Disable singlestep if we're injecting an interrupt/exception.
3794 * We don't want our modified rflags to be pushed on the stack where
3795 * we might not be able to easily reset them if we disabled NMI
3796 * singlestep later.
3797 */
3798 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
3799 /*
3800 * Event injection happens before external interrupts cause a
3801 * vmexit and interrupts are disabled here, so smp_send_reschedule
3802 * is enough to force an immediate vmexit.
3803 */
3804 disable_nmi_singlestep(svm);
3805 smp_send_reschedule(vcpu->cpu);
3806 }
3807
Paolo Bonzini63129752021-03-02 14:40:39 -05003808 pre_svm_run(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003809
Joerg Roedel649d6862008-04-16 16:51:15 +02003810 sync_lapic_to_cr8(vcpu);
3811
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04003812 if (unlikely(svm->asid != svm->vmcb->control.asid)) {
3813 svm->vmcb->control.asid = svm->asid;
3814 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
3815 }
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02003816 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003817
Vineeth Pillai11836462021-06-03 15:14:40 +00003818 svm_hv_update_vp_id(svm->vmcb, vcpu);
3819
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003820 /*
3821 * Run with all-zero DR6 unless needed, so that we can get the exact cause
3822 * of a #DB.
3823 */
Paolo Bonzini63129752021-03-02 14:40:39 -05003824 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003825 svm_set_dr6(svm, vcpu->arch.dr6);
3826 else
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08003827 svm_set_dr6(svm, DR6_ACTIVE_LOW);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003828
Avi Kivity04d2cc72007-09-10 18:10:54 +03003829 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07003830 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003831
Wanpeng Li010fd372020-09-10 17:50:41 +08003832 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08003833
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003834 /*
3835 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
3836 * it's non-zero. Since vmentry is serialising on affected CPUs, there
3837 * is no need to worry about the conditional branch over the wrmsr
3838 * being speculatively taken.
3839 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003840 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3841 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003842
Paolo Bonzini63129752021-03-02 14:40:39 -05003843 svm_vcpu_enter_exit(vcpu);
Thomas Gleixner15e6c222018-05-11 15:21:01 +02003844
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003845 /*
3846 * We do not use IBRS in the kernel. If this vCPU has used the
3847 * SPEC_CTRL MSR it may have left it on; save the value and
3848 * turn it off. This is much more efficient than blindly adding
3849 * it to the atomic save/restore list. Especially as the former
3850 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
3851 *
3852 * For non-nested case:
3853 * If the L01 MSR bitmap does not intercept the MSR, then we need to
3854 * save it.
3855 *
3856 * For nested case:
3857 * If the L02 MSR bitmap does not intercept the MSR, then we need to
3858 * save it.
3859 */
Babu Mogerd00b99c2021-02-17 10:56:04 -05003860 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL) &&
3861 unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01003862 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003863
Paolo Bonzini63129752021-03-02 14:40:39 -05003864 if (!sev_es_guest(vcpu->kvm))
Tom Lendacky16809ec2020-12-10 11:10:08 -06003865 reload_tss(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003866
Babu Mogerd00b99c2021-02-17 10:56:04 -05003867 if (!static_cpu_has(X86_FEATURE_V_SPEC_CTRL))
3868 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
Thomas Gleixner024d83c2018-08-12 20:41:45 +02003869
Paolo Bonzini63129752021-03-02 14:40:39 -05003870 if (!sev_es_guest(vcpu->kvm)) {
Tom Lendacky16809ec2020-12-10 11:10:08 -06003871 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3872 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3873 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3874 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3875 }
Avi Kivity13c34e02010-10-21 12:20:31 +02003876
Joerg Roedel3781c012011-01-14 16:45:02 +01003877 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003878 kvm_before_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003879
Aaron Lewis139a12c2019-10-21 16:30:25 -07003880 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003881 stgi();
3882
3883 /* Any pending NMI will happen here */
3884
3885 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Paolo Bonzini63129752021-03-02 14:40:39 -05003886 kvm_after_interrupt(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003887
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003888 sync_cr8_to_lapic(vcpu);
3889
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003890 svm->next_rip = 0;
Paolo Bonzini63129752021-03-02 14:40:39 -05003891 if (is_guest_mode(vcpu)) {
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05003892 nested_sync_control_from_vmcb02(svm);
Krish Sadhukhanb93af022021-06-09 14:03:38 -04003893
3894 /* Track VMRUNs that have made past consistency checking */
3895 if (svm->nested.nested_run_pending &&
3896 svm->vmcb->control.exit_code != SVM_EXIT_ERR)
3897 ++vcpu->stat.nested_run;
3898
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -04003899 svm->nested.nested_run_pending = 0;
3900 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003901
Joerg Roedel38e5e922010-12-03 15:25:16 +01003902 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Wanpeng Lie42c6822020-09-12 02:16:39 -04003903 vmcb_mark_all_clean(svm->vmcb);
Joerg Roedel38e5e922010-12-03 15:25:16 +01003904
Gleb Natapov631bc482010-10-14 11:22:52 +02003905 /* if exit due to PF check for async PF */
3906 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Paolo Bonzini63129752021-03-02 14:40:39 -05003907 vcpu->arch.apf.host_apf_flags =
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003908 kvm_read_and_reset_apf_flags();
Gleb Natapov631bc482010-10-14 11:22:52 +02003909
Maxim Levitsky329675d2021-06-07 12:02:01 +03003910 if (npt_enabled)
3911 kvm_register_clear_available(vcpu, VCPU_EXREG_PDPTR);
Joerg Roedelfe5913e2010-05-17 14:43:34 +02003912
3913 /*
3914 * We need to handle MC intercepts here before the vcpu has a chance to
3915 * change the physical cpu
3916 */
3917 if (unlikely(svm->vmcb->control.exit_code ==
3918 SVM_EXIT_EXCP_BASE + MC_VECTOR))
Paolo Bonzini63129752021-03-02 14:40:39 -05003919 svm_handle_mce(vcpu);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003920
Paolo Bonzini63129752021-03-02 14:40:39 -05003921 svm_complete_interrupts(vcpu);
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003922
3923 if (is_guest_mode(vcpu))
3924 return EXIT_FASTPATH_NONE;
3925
3926 return svm_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003927}
3928
Sean Christophersone83bc092021-03-05 10:31:13 -08003929static void svm_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
Sean Christopherson2a40b902020-07-15 20:41:18 -07003930 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003931{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003932 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003933 unsigned long cr3;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003934
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003935 if (npt_enabled) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003936 svm->vmcb->control.nested_cr3 = __sme_set(root_hpa);
Joerg Roedel06e78522020-06-25 10:03:23 +02003937 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938
Vineeth Pillai1e0c7d42021-06-03 15:14:38 +00003939 hv_track_root_tdp(vcpu, root_hpa);
3940
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003941 /* Loading L2's CR3 is handled by enter_svm_guest_mode. */
Paolo Bonzini978ce582020-05-20 08:37:37 -04003942 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3943 return;
3944 cr3 = vcpu->arch.cr3;
Sean Christophersone83bc092021-03-05 10:31:13 -08003945 } else if (vcpu->arch.mmu->shadow_root_level >= PT64_ROOT_4LEVEL) {
Sean Christopherson4a986232021-03-09 14:42:07 -08003946 cr3 = __sme_set(root_hpa) | kvm_get_active_pcid(vcpu);
Sean Christophersone83bc092021-03-05 10:31:13 -08003947 } else {
3948 /* PCID in the guest should be impossible with a 32-bit MMU. */
3949 WARN_ON_ONCE(kvm_get_active_pcid(vcpu));
3950 cr3 = root_hpa;
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003951 }
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003952
Paolo Bonzini978ce582020-05-20 08:37:37 -04003953 svm->vmcb->save.cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003954 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003955}
3956
Avi Kivity6aa8b732006-12-10 02:21:36 -08003957static int is_disabled(void)
3958{
Joerg Roedel6031a612007-06-22 12:29:50 +03003959 u64 vm_cr;
3960
3961 rdmsrl(MSR_VM_CR, vm_cr);
3962 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3963 return 1;
3964
Avi Kivity6aa8b732006-12-10 02:21:36 -08003965 return 0;
3966}
3967
Ingo Molnar102d8322007-02-19 14:37:47 +02003968static void
3969svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3970{
3971 /*
3972 * Patch in the VMMCALL instruction:
3973 */
3974 hypercall[0] = 0x0f;
3975 hypercall[1] = 0x01;
3976 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02003977}
3978
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003979static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003980{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003981 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003982}
3983
Avi Kivity774ead32007-12-26 13:57:04 +02003984static bool svm_cpu_has_accelerated_tpr(void)
3985{
3986 return false;
3987}
3988
Tom Lendacky57194552020-12-10 11:10:00 -06003989/*
3990 * The kvm parameter can be NULL (module initialization, or invocation before
3991 * VM creation). Be sure to check the kvm parameter before using it.
3992 */
3993static bool svm_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003994{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003995 switch (index) {
3996 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02003997 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003998 return false;
Tom Lendacky57194552020-12-10 11:10:00 -06003999 case MSR_IA32_SMBASE:
4000 /* SEV-ES guests do not support SMM, so report false */
4001 if (kvm && sev_es_guest(kvm))
4002 return false;
4003 break;
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01004004 default:
4005 break;
4006 }
4007
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004008 return true;
4009}
4010
Paolo Bonzinifc07e762015-10-01 13:20:22 +02004011static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
4012{
4013 return 0;
4014}
4015
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004016static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08004017{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004018 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger96308b02020-11-12 16:18:03 -06004019 struct kvm_cpuid_entry2 *best;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004020
Aaron Lewis72041602019-10-21 16:30:20 -07004021 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08004022 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07004023 boot_cpu_has(X86_FEATURE_XSAVES);
4024
Joerg Roedel6092d3d2015-10-14 15:10:54 +02004025 /* Update nrips enabled cache */
Sean Christopherson4eb87462020-03-02 15:57:08 -08004026 svm->nrips_enabled = kvm_cpu_cap_has(X86_FEATURE_NRIPS) &&
Paolo Bonzini63129752021-03-02 14:40:39 -05004027 guest_cpuid_has(vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004028
Sean Christopherson3b195ac2021-05-04 10:17:22 -07004029 svm_recalc_instruction_intercepts(vcpu, svm);
Babu Moger4407a792020-09-11 14:29:19 -05004030
Babu Moger96308b02020-11-12 16:18:03 -06004031 /* For sev guests, the memory encryption bit is not reserved in CR3. */
4032 if (sev_guest(vcpu->kvm)) {
4033 best = kvm_find_cpuid_entry(vcpu, 0x8000001F, 0);
4034 if (best)
Sean Christophersonca29e142021-02-03 16:01:12 -08004035 vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f));
Babu Moger96308b02020-11-12 16:18:03 -06004036 }
4037
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004038 if (kvm_vcpu_apicv_active(vcpu)) {
4039 /*
4040 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
4041 * is exposed to the guest, disable AVIC.
4042 */
4043 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
4044 kvm_request_apicv_update(vcpu->kvm, false,
4045 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05004046
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004047 /*
4048 * Currently, AVIC does not work with nested virtualization.
4049 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
4050 */
4051 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4052 kvm_request_apicv_update(vcpu->kvm, false,
4053 APICV_INHIBIT_REASON_NESTED);
4054 }
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06004055
Maxim Levitskyadc2a232021-04-01 14:19:28 +03004056 if (guest_cpuid_is_intel(vcpu)) {
4057 /*
4058 * We must intercept SYSENTER_EIP and SYSENTER_ESP
4059 * accesses because the processor only stores 32 bits.
4060 * For the same reason we cannot use virtual VMLOAD/VMSAVE.
4061 */
4062 svm_set_intercept(svm, INTERCEPT_VMLOAD);
4063 svm_set_intercept(svm, INTERCEPT_VMSAVE);
4064 svm->vmcb->control.virt_ext &= ~VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
4065
4066 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 0, 0);
4067 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 0, 0);
4068 } else {
4069 /*
4070 * If hardware supports Virtual VMLOAD VMSAVE then enable it
4071 * in VMCB and clear intercepts to avoid #VMEXIT.
4072 */
4073 if (vls) {
4074 svm_clr_intercept(svm, INTERCEPT_VMLOAD);
4075 svm_clr_intercept(svm, INTERCEPT_VMSAVE);
4076 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
4077 }
4078 /* No need to intercept these MSRs */
4079 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_EIP, 1, 1);
4080 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SYSENTER_ESP, 1, 1);
4081 }
Sheng Yang0e851882009-12-18 16:48:46 +08004082}
4083
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004084static bool svm_has_wbinvd_exit(void)
4085{
4086 return true;
4087}
4088
Joerg Roedel80612522011-04-04 12:39:33 +02004089#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004090 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004091#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004092 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004093#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03004094 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004095
Mathias Krause09941fb2012-08-30 01:30:20 +02004096static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004097 u32 exit_code;
4098 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004099} x86_intercept_map[] = {
4100 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
4101 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
4102 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
4103 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
4104 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02004105 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
4106 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02004107 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
4108 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
4109 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
4110 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
4111 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
4112 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
4113 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
4114 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02004115 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
4116 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
4117 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
4118 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
4119 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
4120 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
4121 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
4122 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004123 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
4124 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
4125 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02004126 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
4127 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
4128 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
4129 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
4130 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
4131 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
4132 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
4133 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
4134 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02004135 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
4136 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
4137 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
4138 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
4139 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
4140 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
4141 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02004142 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
4143 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
4144 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
4145 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02004146 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004147};
4148
Joerg Roedel80612522011-04-04 12:39:33 +02004149#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004150#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02004151#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004152
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004153static int svm_check_intercept(struct kvm_vcpu *vcpu,
4154 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08004155 enum x86_intercept_stage stage,
4156 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004157{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004158 struct vcpu_svm *svm = to_svm(vcpu);
4159 int vmexit, ret = X86EMUL_CONTINUE;
4160 struct __x86_intercept icpt_info;
4161 struct vmcb *vmcb = svm->vmcb;
4162
4163 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
4164 goto out;
4165
4166 icpt_info = x86_intercept_map[info->intercept];
4167
Avi Kivity40e19b52011-04-21 12:35:41 +03004168 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004169 goto out;
4170
4171 switch (icpt_info.exit_code) {
4172 case SVM_EXIT_READ_CR0:
4173 if (info->intercept == x86_intercept_cr_read)
4174 icpt_info.exit_code += info->modrm_reg;
4175 break;
4176 case SVM_EXIT_WRITE_CR0: {
4177 unsigned long cr0, val;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004178
4179 if (info->intercept == x86_intercept_cr_write)
4180 icpt_info.exit_code += info->modrm_reg;
4181
Jan Kiszka62baf442014-06-29 21:55:53 +02004182 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
4183 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004184 break;
4185
Babu Mogerc62e2e92020-09-11 14:28:28 -05004186 if (!(vmcb_is_intercept(&svm->nested.ctl,
4187 INTERCEPT_SELECTIVE_CR0)))
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004188 break;
4189
4190 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
4191 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
4192
4193 if (info->intercept == x86_intercept_lmsw) {
4194 cr0 &= 0xfUL;
4195 val &= 0xfUL;
4196 /* lmsw can't clear PE - catch this here */
4197 if (cr0 & X86_CR0_PE)
4198 val |= X86_CR0_PE;
4199 }
4200
4201 if (cr0 ^ val)
4202 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4203
4204 break;
4205 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02004206 case SVM_EXIT_READ_DR0:
4207 case SVM_EXIT_WRITE_DR0:
4208 icpt_info.exit_code += info->modrm_reg;
4209 break;
Joerg Roedel80612522011-04-04 12:39:33 +02004210 case SVM_EXIT_MSR:
4211 if (info->intercept == x86_intercept_wrmsr)
4212 vmcb->control.exit_info_1 = 1;
4213 else
4214 vmcb->control.exit_info_1 = 0;
4215 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02004216 case SVM_EXIT_PAUSE:
4217 /*
4218 * We get this for NOP only, but pause
4219 * is rep not, check this here
4220 */
4221 if (info->rep_prefix != REPE_PREFIX)
4222 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02004223 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02004224 case SVM_EXIT_IOIO: {
4225 u64 exit_info;
4226 u32 bytes;
4227
Joerg Roedelf6511932011-04-04 12:39:35 +02004228 if (info->intercept == x86_intercept_in ||
4229 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004230 exit_info = ((info->src_val & 0xffff) << 16) |
4231 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02004232 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02004233 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02004234 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02004235 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02004236 }
4237
4238 if (info->intercept == x86_intercept_outs ||
4239 info->intercept == x86_intercept_ins)
4240 exit_info |= SVM_IOIO_STR_MASK;
4241
4242 if (info->rep_prefix)
4243 exit_info |= SVM_IOIO_REP_MASK;
4244
4245 bytes = min(bytes, 4u);
4246
4247 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4248
4249 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4250
4251 vmcb->control.exit_info_1 = exit_info;
4252 vmcb->control.exit_info_2 = info->next_rip;
4253
4254 break;
4255 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004256 default:
4257 break;
4258 }
4259
Bandan Dasf1047652015-06-11 02:05:33 -04004260 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
4261 if (static_cpu_has(X86_FEATURE_NRIPS))
4262 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004263 vmcb->control.exit_code = icpt_info.exit_code;
4264 vmexit = nested_svm_exit_handled(svm);
4265
4266 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4267 : X86EMUL_CONTINUE;
4268
4269out:
4270 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004271}
4272
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07004273static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08004274{
Yang Zhanga547c6d2013-04-11 19:25:10 +08004275}
4276
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004277static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4278{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004279 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04004280 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004281}
4282
Borislav Petkov74f16902017-03-26 23:51:24 +02004283static void svm_setup_mce(struct kvm_vcpu *vcpu)
4284{
4285 /* [63:9] are reserved. */
4286 vcpu->arch.mcg_cap &= 0x1ff;
4287}
4288
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004289bool svm_smi_blocked(struct kvm_vcpu *vcpu)
Ladi Prosek72d7b372017-10-11 16:54:41 +02004290{
Ladi Prosek05cade72017-10-11 16:54:45 +02004291 struct vcpu_svm *svm = to_svm(vcpu);
4292
4293 /* Per APM Vol.2 15.22.2 "Response to SMI" */
4294 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004295 return true;
4296
4297 return is_smm(vcpu);
4298}
4299
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004300static int svm_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004301{
4302 struct vcpu_svm *svm = to_svm(vcpu);
4303 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004304 return -EBUSY;
Ladi Prosek05cade72017-10-11 16:54:45 +02004305
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004306 /* An SMI must not be injected into L2 if it's supposed to VM-Exit. */
4307 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_smi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004308 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004309
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004310 return !svm_smi_blocked(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02004311}
4312
Sean Christophersonecc513e2021-06-09 11:56:19 -07004313static int svm_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004314{
Ladi Prosek05cade72017-10-11 16:54:45 +02004315 struct vcpu_svm *svm = to_svm(vcpu);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004316 struct kvm_host_map map_save;
Ladi Prosek05cade72017-10-11 16:54:45 +02004317 int ret;
4318
4319 if (is_guest_mode(vcpu)) {
4320 /* FED8h - SVM Guest */
4321 put_smstate(u64, smstate, 0x7ed8, 1);
4322 /* FEE0h - SVM Guest VMCB Physical Address */
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004323 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb12_gpa);
Ladi Prosek05cade72017-10-11 16:54:45 +02004324
4325 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4326 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4327 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4328
4329 ret = nested_svm_vmexit(svm);
4330 if (ret)
4331 return ret;
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004332
4333 /*
4334 * KVM uses VMCB01 to store L1 host state while L2 runs but
4335 * VMCB01 is going to be used during SMM and thus the state will
4336 * be lost. Temporary save non-VMLOAD/VMSAVE state to the host save
4337 * area pointed to by MSR_VM_HSAVE_PA. APM guarantees that the
4338 * format of the area is identical to guest save area offsetted
4339 * by 0x400 (matches the offset of 'struct vmcb_save_area'
4340 * within 'struct vmcb'). Note: HSAVE area may also be used by
4341 * L1 hypervisor to save additional host context (e.g. KVM does
4342 * that, see svm_prepare_guest_switch()) which must be
4343 * preserved.
4344 */
4345 if (kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.hsave_msr),
4346 &map_save) == -EINVAL)
4347 return 1;
4348
4349 BUILD_BUG_ON(offsetof(struct vmcb, save) != 0x400);
4350
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02004351 svm_copy_vmrun_state(map_save.hva + 0x400,
4352 &svm->vmcb01.ptr->save);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004353
4354 kvm_vcpu_unmap(vcpu, &map_save, true);
Ladi Prosek05cade72017-10-11 16:54:45 +02004355 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02004356 return 0;
4357}
4358
Sean Christophersonecc513e2021-06-09 11:56:19 -07004359static int svm_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004360{
Ladi Prosek05cade72017-10-11 16:54:45 +02004361 struct vcpu_svm *svm = to_svm(vcpu);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004362 struct kvm_host_map map, map_save;
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004363 int ret = 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004364
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004365 if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) {
4366 u64 saved_efer = GET_SMSTATE(u64, smstate, 0x7ed0);
4367 u64 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004368 u64 vmcb12_gpa = GET_SMSTATE(u64, smstate, 0x7ee0);
Vitaly Kuznetsovbb00bd92021-06-28 12:44:24 +02004369 struct vmcb *vmcb12;
Ladi Prosek05cade72017-10-11 16:54:45 +02004370
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004371 if (guest) {
4372 if (!guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4373 return 1;
4374
4375 if (!(saved_efer & EFER_SVME))
4376 return 1;
4377
Paolo Bonzini63129752021-03-02 14:40:39 -05004378 if (kvm_vcpu_map(vcpu,
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004379 gpa_to_gfn(vmcb12_gpa), &map) == -EINVAL)
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004380 return 1;
4381
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03004382 if (svm_allocate_nested(svm))
4383 return 1;
4384
Vitaly Kuznetsovbb00bd92021-06-28 12:44:24 +02004385 vmcb12 = map.hva;
4386
4387 nested_load_control_from_vmcb12(svm, &vmcb12->control);
4388
4389 ret = enter_svm_guest_mode(vcpu, vmcb12_gpa, vmcb12);
Paolo Bonzini63129752021-03-02 14:40:39 -05004390 kvm_vcpu_unmap(vcpu, &map, true);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004391
4392 /*
4393 * Restore L1 host state from L1 HSAVE area as VMCB01 was
4394 * used during SMM (see svm_enter_smm())
4395 */
4396 if (kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.hsave_msr),
4397 &map_save) == -EINVAL)
4398 return 1;
4399
Vitaly Kuznetsov2bb16be2021-07-19 11:03:22 +02004400 svm_copy_vmrun_state(&svm->vmcb01.ptr->save,
4401 map_save.hva + 0x400);
Vitaly Kuznetsov37be4072021-06-28 12:44:23 +02004402
4403 kvm_vcpu_unmap(vcpu, &map_save, true);
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004404 }
Ladi Prosek05cade72017-10-11 16:54:45 +02004405 }
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004406
4407 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02004408}
4409
Jason Baronb6a7cc32021-01-14 22:27:54 -05004410static void svm_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004411{
4412 struct vcpu_svm *svm = to_svm(vcpu);
4413
4414 if (!gif_set(svm)) {
4415 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02004416 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004417 /* STGI will cause a vm exit */
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004418 } else {
4419 /* We must be in SMM; RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004420 }
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004421}
4422
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004423static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004424{
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004425 bool smep, smap, is_user;
4426 unsigned long cr4;
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004427
4428 /*
Tom Lendackybc624d92020-12-10 11:09:44 -06004429 * When the guest is an SEV-ES guest, emulation is not possible.
4430 */
4431 if (sev_es_guest(vcpu->kvm))
4432 return false;
4433
4434 /*
Liran Alon118154b2019-07-17 02:56:58 +03004435 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
4436 *
4437 * Errata:
4438 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
4439 * possible that CPU microcode implementing DecodeAssist will fail
4440 * to read bytes of instruction which caused #NPF. In this case,
4441 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
4442 * return 0 instead of the correct guest instruction bytes.
4443 *
4444 * This happens because CPU microcode reading instruction bytes
4445 * uses a special opcode which attempts to read data using CPL=0
Ingo Molnard9f6e122021-03-18 15:28:01 +01004446 * privileges. The microcode reads CS:RIP and if it hits a SMAP
Liran Alon118154b2019-07-17 02:56:58 +03004447 * fault, it gives up and returns no instruction bytes.
4448 *
4449 * Detection:
4450 * We reach here in case CPU supports DecodeAssist, raised #NPF and
4451 * returned 0 in GuestIntrBytes field of the VMCB.
4452 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
4453 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
4454 * in case vCPU CPL==3 (Because otherwise guest would have triggered
4455 * a SMEP fault instead of #NPF).
4456 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
4457 * As most guests enable SMAP if they have also enabled SMEP, use above
4458 * logic in order to attempt minimize false-positive of detecting errata
4459 * while still preserving all cases semantic correctness.
4460 *
4461 * Workaround:
4462 * To determine what instruction the guest was executing, the hypervisor
4463 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004464 *
4465 * In non SEV guest, hypervisor will be able to read the guest
4466 * memory to decode the instruction pointer when insn_len is zero
4467 * so we return true to indicate that decoding is possible.
4468 *
4469 * But in the SEV guest, the guest memory is encrypted with the
4470 * guest specific key and hypervisor will not be able to decode the
4471 * instruction pointer so we will not able to workaround it. Lets
4472 * print the error and request to kill the guest.
4473 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004474 if (likely(!insn || insn_len))
4475 return true;
4476
4477 /*
4478 * If RIP is invalid, go ahead with emulation which will cause an
4479 * internal error exit.
4480 */
4481 if (!kvm_vcpu_gfn_to_memslot(vcpu, kvm_rip_read(vcpu) >> PAGE_SHIFT))
4482 return true;
4483
4484 cr4 = kvm_read_cr4(vcpu);
4485 smep = cr4 & X86_CR4_SMEP;
4486 smap = cr4 & X86_CR4_SMAP;
4487 is_user = svm_get_cpl(vcpu) == 3;
Liran Alon118154b2019-07-17 02:56:58 +03004488 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004489 if (!sev_guest(vcpu->kvm))
4490 return true;
4491
Liran Alon118154b2019-07-17 02:56:58 +03004492 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004493 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4494 }
4495
4496 return false;
4497}
4498
Liran Alon4b9852f2019-08-26 13:24:49 +03004499static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
4500{
4501 struct vcpu_svm *svm = to_svm(vcpu);
4502
4503 /*
4504 * TODO: Last condition latch INIT signals on vCPU when
4505 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
Paolo Bonzini33b22172020-04-17 10:24:18 -04004506 * To properly emulate the INIT intercept,
4507 * svm_check_nested_events() should call nested_svm_vmexit()
4508 * if an INIT signal is pending.
Liran Alon4b9852f2019-08-26 13:24:49 +03004509 */
4510 return !gif_set(svm) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05004511 (vmcb_is_intercept(&svm->vmcb->control, INTERCEPT_INIT));
Liran Alon4b9852f2019-08-26 13:24:49 +03004512}
4513
Tom Lendacky647daca2021-01-04 14:20:01 -06004514static void svm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
4515{
4516 if (!sev_es_guest(vcpu->kvm))
4517 return kvm_vcpu_deliver_sipi_vector(vcpu, vector);
4518
4519 sev_vcpu_deliver_sipi_vector(vcpu, vector);
4520}
4521
Joerg Roedeleaf78262020-03-24 10:41:54 +01004522static void svm_vm_destroy(struct kvm *kvm)
4523{
4524 avic_vm_destroy(kvm);
4525 sev_vm_destroy(kvm);
4526}
4527
4528static int svm_vm_init(struct kvm *kvm)
4529{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004530 if (!pause_filter_count || !pause_filter_thresh)
4531 kvm->arch.pause_in_guest = true;
4532
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +02004533 if (enable_apicv) {
Joerg Roedeleaf78262020-03-24 10:41:54 +01004534 int ret = avic_vm_init(kvm);
4535 if (ret)
4536 return ret;
4537 }
4538
Joerg Roedeleaf78262020-03-24 10:41:54 +01004539 return 0;
4540}
4541
Sean Christopherson9c14ee22020-03-21 13:26:03 -07004542static struct kvm_x86_ops svm_x86_ops __initdata = {
Li RongQingdd58f3c2020-02-23 16:13:12 +08004543 .hardware_unsetup = svm_hardware_teardown,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004544 .hardware_enable = svm_hardware_enable,
4545 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02004546 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02004547 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004548
4549 .vcpu_create = svm_create_vcpu,
4550 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004551 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004552
Sean Christopherson562b6b02020-01-26 16:41:13 -08004553 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06004554 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004555 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004556
Avi Kivity04d2cc72007-09-10 18:10:54 +03004557 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004558 .vcpu_load = svm_vcpu_load,
4559 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05004560 .vcpu_blocking = svm_vcpu_blocking,
4561 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004562
Jason Baronb6a7cc32021-01-14 22:27:54 -05004563 .update_exception_bitmap = svm_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06004564 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004565 .get_msr = svm_get_msr,
4566 .set_msr = svm_set_msr,
4567 .get_segment_base = svm_get_segment_base,
4568 .get_segment = svm_get_segment,
4569 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004570 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10004571 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004572 .set_cr0 = svm_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07004573 .is_valid_cr4 = svm_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004574 .set_cr4 = svm_set_cr4,
4575 .set_efer = svm_set_efer,
4576 .get_idt = svm_get_idt,
4577 .set_idt = svm_set_idt,
4578 .get_gdt = svm_get_gdt,
4579 .set_gdt = svm_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03004580 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004581 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004582 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004583 .get_rflags = svm_get_rflags,
4584 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004585
Sean Christopherson77809382020-03-20 14:28:18 -07004586 .tlb_flush_all = svm_flush_tlb,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004587 .tlb_flush_current = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07004588 .tlb_flush_gva = svm_flush_tlb_gva,
Sean Christopherson72b38322020-03-20 14:28:13 -07004589 .tlb_flush_guest = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004590
Avi Kivity6aa8b732006-12-10 02:21:36 -08004591 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004592 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004593 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08004594 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004595 .set_interrupt_shadow = svm_set_interrupt_shadow,
4596 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004597 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004598 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004599 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004600 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03004601 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02004602 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004603 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004604 .get_nmi_mask = svm_get_nmi_mask,
4605 .set_nmi_mask = svm_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004606 .enable_nmi_window = svm_enable_nmi_window,
4607 .enable_irq_window = svm_enable_irq_window,
4608 .update_cr8_intercept = svm_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04004609 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03004610 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06004611 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06004612 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08004613 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004614 .hwapic_irr_update = svm_hwapic_irr_update,
4615 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02004616 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05004617 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02004618
4619 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004620 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004621 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004622
Avi Kivity586f9602010-11-18 13:09:54 +02004623 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02004624
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004625 .vcpu_after_set_cpuid = svm_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004626
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004627 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10004628
Ilias Stamatis307a94c2021-05-26 19:44:13 +01004629 .get_l2_tsc_offset = svm_get_l2_tsc_offset,
4630 .get_l2_tsc_multiplier = svm_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01004631 .write_tsc_offset = svm_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01004632 .write_tsc_multiplier = svm_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004633
Paolo Bonzini727a7e22020-03-05 03:52:50 -05004634 .load_mmu_pgd = svm_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004635
4636 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07004637 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004638
Sean Christophersond264ee02018-08-27 15:21:12 -07004639 .request_immediate_exit = __kvm_request_immediate_exit,
4640
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004641 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02004642
4643 .pmu_ops = &amd_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04004644 .nested_ops = &svm_nested_ops,
4645
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004646 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08004647 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004648 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02004649 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004650
Ladi Prosek72d7b372017-10-11 16:54:41 +02004651 .smi_allowed = svm_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07004652 .enter_smm = svm_enter_smm,
4653 .leave_smm = svm_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05004654 .enable_smi_window = svm_enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004655
4656 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06004657 .mem_enc_reg_region = svm_register_enc_region,
4658 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004659
Nathan Tempelman54526d12021-04-08 22:32:14 +00004660 .vm_copy_enc_context_from = svm_vm_copy_asid_from,
4661
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004662 .can_emulate_instruction = svm_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03004663
4664 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Alexander Graffd6fa732020-09-25 16:34:19 +02004665
4666 .msr_filter_changed = svm_msr_filter_changed,
Tom Lendackyf1c63662020-12-14 10:29:50 -05004667 .complete_emulated_msr = svm_complete_emulated_msr,
Tom Lendacky647daca2021-01-04 14:20:01 -06004668
4669 .vcpu_deliver_sipi_vector = svm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004670};
4671
Sean Christophersond008dfd2020-03-21 13:25:56 -07004672static struct kvm_x86_init_ops svm_init_ops __initdata = {
4673 .cpu_has_kvm_support = has_svm,
4674 .disabled_by_bios = is_disabled,
4675 .hardware_setup = svm_hardware_setup,
4676 .check_processor_compatibility = svm_check_processor_compat,
4677
4678 .runtime_ops = &svm_x86_ops,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004679};
4680
4681static int __init svm_init(void)
4682{
Tom Lendackyd07f46f2020-09-07 15:15:03 +02004683 __unused_size_checks();
4684
Sean Christophersond008dfd2020-03-21 13:25:56 -07004685 return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03004686 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004687}
4688
4689static void __exit svm_exit(void)
4690{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004691 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004692}
4693
4694module_init(svm_init)
4695module_exit(svm_exit)