blob: db81fb131033df07187057164c0d9ea47cabac7d [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"
44
Avi Kivity4ecac3f2008-05-13 13:23:38 +030045#define __ex(x) __kvm_handle_fault_on_reboot(x)
46
Avi Kivity6aa8b732006-12-10 02:21:36 -080047MODULE_AUTHOR("Qumranet");
48MODULE_LICENSE("GPL");
49
Valdis Klētnieks575b2552020-02-27 21:49:52 -050050#ifdef MODULE
Josh Triplettae759542012-03-28 11:32:28 -070051static const struct x86_cpu_id svm_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010052 X86_MATCH_FEATURE(X86_FEATURE_SVM, NULL),
Josh Triplettae759542012-03-28 11:32:28 -070053 {}
54};
55MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050056#endif
Josh Triplettae759542012-03-28 11:32:28 -070057
Avi Kivity6aa8b732006-12-10 02:21:36 -080058#define IOPM_ALLOC_ORDER 2
59#define MSRPM_ALLOC_ORDER 1
60
Avi Kivity6aa8b732006-12-10 02:21:36 -080061#define SEG_TYPE_LDT 2
62#define SEG_TYPE_BUSY_TSS16 3
63
Andre Przywara6bc31bd2010-04-11 23:07:28 +020064#define SVM_FEATURE_LBRV (1 << 1)
65#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010066#define SVM_FEATURE_TSC_RATE (1 << 4)
67#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
68#define SVM_FEATURE_FLUSH_ASID (1 << 6)
69#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020070#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030071
Joerg Roedel24e09cb2008-02-13 18:58:47 +010072#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
73
Joerg Roedelfbc0db72011-03-25 09:44:46 +010074#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010075#define TSC_RATIO_MIN 0x0000000000000001ULL
76#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010077
Joerg Roedel67ec6602010-05-17 14:43:35 +020078static bool erratum_383_found __read_mostly;
79
Joerg Roedel883b0a92020-03-24 10:41:52 +010080u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
Joerg Roedel323c3d82010-03-01 15:34:37 +010081
Boris Ostrovsky2b036c62012-01-09 14:00:35 -050082/*
83 * Set osvw_len to higher value when updated Revision Guides
84 * are published and we know what the new status bits are
85 */
86static uint64_t osvw_len = 4, osvw_status;
87
Joerg Roedelfbc0db72011-03-25 09:44:46 +010088static DEFINE_PER_CPU(u64, current_tsc_ratio);
89#define TSC_RATIO_DEFAULT 0x0100000000ULL
90
Mathias Krause09941fb2012-08-30 01:30:20 +020091static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +010092 u32 index; /* Index of the MSR */
93 bool always; /* True if intercept is always on */
Alexander Graffd6fa732020-09-25 16:34:19 +020094} direct_access_msrs[MAX_DIRECT_ACCESS_MSRS] = {
Brian Gerst8c065852010-07-17 09:03:26 -040095 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +010096 { .index = MSR_IA32_SYSENTER_CS, .always = true },
97#ifdef CONFIG_X86_64
98 { .index = MSR_GS_BASE, .always = true },
99 { .index = MSR_FS_BASE, .always = true },
100 { .index = MSR_KERNEL_GS_BASE, .always = true },
101 { .index = MSR_LSTAR, .always = true },
102 { .index = MSR_CSTAR, .always = true },
103 { .index = MSR_SYSCALL_MASK, .always = true },
104#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100105 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100106 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100107 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
108 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
109 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
110 { .index = MSR_IA32_LASTINTTOIP, .always = false },
111 { .index = MSR_INVALID, .always = false },
Avi Kivity6c8166a2009-05-31 18:15:37 +0300112};
113
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100114/* enable NPT for AMD64 and X86 with PAE */
115#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Joerg Roedel883b0a92020-03-24 10:41:52 +0100116bool npt_enabled = true;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100117#else
Joerg Roedel883b0a92020-03-24 10:41:52 +0100118bool npt_enabled;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100119#endif
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100120
Babu Moger8566ac82018-03-16 16:37:26 -0400121/*
122 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
123 * pause_filter_count: On processors that support Pause filtering(indicated
124 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
125 * count value. On VMRUN this value is loaded into an internal counter.
126 * Each time a pause instruction is executed, this counter is decremented
127 * until it reaches zero at which time a #VMEXIT is generated if pause
128 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
129 * Intercept Filtering for more details.
130 * This also indicate if ple logic enabled.
131 *
132 * pause_filter_thresh: In addition, some processor families support advanced
133 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
134 * the amount of time a guest is allowed to execute in a pause loop.
135 * In this mode, a 16-bit pause filter threshold field is added in the
136 * VMCB. The threshold value is a cycle count that is used to reset the
137 * pause counter. As with simple pause filtering, VMRUN loads the pause
138 * count value from VMCB into an internal counter. Then, on each pause
139 * instruction the hardware checks the elapsed number of cycles since
140 * the most recent pause instruction against the pause filter threshold.
141 * If the elapsed cycle count is greater than the pause filter threshold,
142 * then the internal pause count is reloaded from the VMCB and execution
143 * continues. If the elapsed cycle count is less than the pause filter
144 * threshold, then the internal pause count is decremented. If the count
145 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
146 * triggered. If advanced pause filtering is supported and pause filter
147 * threshold field is set to zero, the filter will operate in the simpler,
148 * count only mode.
149 */
150
151static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
152module_param(pause_filter_thresh, ushort, 0444);
153
154static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
155module_param(pause_filter_count, ushort, 0444);
156
157/* Default doubles per-vcpu window every exit. */
158static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
159module_param(pause_filter_count_grow, ushort, 0444);
160
161/* Default resets per-vcpu window every exit to pause_filter_count. */
162static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
163module_param(pause_filter_count_shrink, ushort, 0444);
164
165/* Default is to compute the maximum so we can never overflow. */
166static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
167module_param(pause_filter_count_max, ushort, 0444);
168
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100169/* allow nested paging (virtualized MMU) for all guests */
170static int npt = true;
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100171module_param(npt, int, S_IRUGO);
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100172
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100173/* allow nested virtualization in KVM/SVM */
174static int nested = true;
Alexander Graf236de052008-11-25 20:17:10 +0100175module_param(nested, int, S_IRUGO);
176
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200177/* enable/disable Next RIP Save */
178static int nrips = true;
179module_param(nrips, int, 0444);
180
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500181/* enable/disable Virtual VMLOAD VMSAVE */
182static int vls = true;
183module_param(vls, int, 0444);
184
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500185/* enable/disable Virtual GIF */
186static int vgif = true;
187module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500188
Brijesh Singhe9df0942017-12-04 10:57:33 -0600189/* enable/disable SEV support */
Tom Lendacky916391a2020-12-10 11:09:38 -0600190int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
Brijesh Singhe9df0942017-12-04 10:57:33 -0600191module_param(sev, int, 0444);
192
Tom Lendacky916391a2020-12-10 11:09:38 -0600193/* enable/disable SEV-ES support */
194int sev_es = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
195module_param(sev_es, int, 0444);
196
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200197static bool __read_mostly dump_invalid_vmcb = 0;
198module_param(dump_invalid_vmcb, bool, 0644);
199
Brijesh Singh7607b712018-02-19 10:14:44 -0600200static u8 rsm_ins_bytes[] = "\x0f\xaa";
201
Joerg Roedela5c38322009-08-07 11:49:32 +0200202static void svm_complete_interrupts(struct vcpu_svm *svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500203
Harvey Harrison4866d5e2008-02-19 10:32:02 -0800204static unsigned long iopm_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800205
206struct kvm_ldttss_desc {
207 u16 limit0;
208 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100209 unsigned base1:8, type:5, dpl:2, p:1;
210 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211 u32 base3;
212 u32 zero1;
213} __attribute__((packed));
214
Joerg Roedeleaf78262020-03-24 10:41:54 +0100215DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800216
Mathias Krause09941fb2012-08-30 01:30:20 +0200217static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800218
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200219#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800220#define MSRS_RANGE_SIZE 2048
221#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
222
Joerg Roedel883b0a92020-03-24 10:41:52 +0100223u32 svm_msrpm_offset(u32 msr)
Joerg Roedel455716f2010-03-01 15:34:35 +0100224{
225 u32 offset;
226 int i;
227
228 for (i = 0; i < NUM_MSR_MAPS; i++) {
229 if (msr < msrpm_ranges[i] ||
230 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
231 continue;
232
233 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
234 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
235
236 /* Now we have the u8 offset - but need the u32 offset */
237 return offset / 4;
238 }
239
240 /* MSR not in any range */
241 return MSR_INVALID;
242}
243
Avi Kivity6aa8b732006-12-10 02:21:36 -0800244#define MAX_INST_SIZE 15
245
Avi Kivity6aa8b732006-12-10 02:21:36 -0800246static inline void clgi(void)
247{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100248 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800249}
250
251static inline void stgi(void)
252{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100253 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800254}
255
256static inline void invlpga(unsigned long addr, u32 asid)
257{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100258 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800259}
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);
288
289 /*
290 * Free the nested guest state, unless we are in SMM.
291 * In this case we will return to the nested guest
292 * as soon as we leave SMM.
293 */
294 if (!is_smm(&svm->vcpu))
295 svm_free_nested(svm);
296
297 } else {
298 int ret = svm_allocate_nested(svm);
299
300 if (ret) {
301 vcpu->arch.efer = old_efer;
302 return ret;
303 }
304 }
Paolo Bonzinic513f482020-05-18 13:08:37 -0400305 }
306
307 svm->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedel06e78522020-06-25 10:03:23 +0200308 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Maxim Levitsky72f211e2020-10-01 14:29:53 +0300309 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800310}
311
Avi Kivity6aa8b732006-12-10 02:21:36 -0800312static int is_external_interrupt(u32 info)
313{
314 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
315 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
316}
317
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200318static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400319{
320 struct vcpu_svm *svm = to_svm(vcpu);
321 u32 ret = 0;
322
323 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200324 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
325 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400326}
327
328static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
329{
330 struct vcpu_svm *svm = to_svm(vcpu);
331
332 if (mask == 0)
333 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
334 else
335 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
336
337}
338
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200339static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800340{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400341 struct vcpu_svm *svm = to_svm(vcpu);
342
Tom Lendackyf1c63662020-12-14 10:29:50 -0500343 /*
344 * SEV-ES does not expose the next RIP. The RIP update is controlled by
345 * the type of exit and the #VC handler in the guest.
346 */
347 if (sev_es_guest(vcpu->kvm))
348 goto done;
349
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200350 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200351 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200352 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400353 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200354
Sean Christopherson1957aa62019-08-27 14:40:39 -0700355 if (!svm->next_rip) {
356 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
357 return 0;
358 } else {
Sean Christopherson1957aa62019-08-27 14:40:39 -0700359 kvm_rip_write(vcpu, svm->next_rip);
360 }
Tom Lendackyf1c63662020-12-14 10:29:50 -0500361
362done:
Glauber Costa2809f5d2009-05-12 16:21:05 -0400363 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200364
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700365 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800366}
367
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700368static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100369{
370 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700371 unsigned nr = vcpu->arch.exception.nr;
372 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700373 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100374
Jim Mattsonda998b42018-10-16 14:29:22 -0700375 kvm_deliver_exception_payload(&svm->vcpu);
376
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200377 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100378 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
379
380 /*
381 * For guest debugging where we have to reinject #BP if some
382 * INT3 is guest-owned:
383 * Emulate nRIP by moving RIP forward. Will fail if injection
384 * raises a fault that is not intercepted. Still better than
385 * failing in all cases.
386 */
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200387 (void)skip_emulated_instruction(&svm->vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100388 rip = kvm_rip_read(&svm->vcpu);
389 svm->int3_rip = rip + svm->vmcb->save.cs.base;
390 svm->int3_injected = rip - old_rip;
391 }
392
Jan Kiszka116a4752010-02-23 17:47:54 +0100393 svm->vmcb->control.event_inj = nr
394 | SVM_EVTINJ_VALID
395 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
396 | SVM_EVTINJ_TYPE_EXEPT;
397 svm->vmcb->control.event_inj_err = error_code;
398}
399
Joerg Roedel67ec6602010-05-17 14:43:35 +0200400static void svm_init_erratum_383(void)
401{
402 u32 low, high;
403 int err;
404 u64 val;
405
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100406 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200407 return;
408
409 /* Use _safe variants to not break nested virtualization */
410 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
411 if (err)
412 return;
413
414 val |= (1ULL << 47);
415
416 low = lower_32_bits(val);
417 high = upper_32_bits(val);
418
419 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
420
421 erratum_383_found = true;
422}
423
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500424static void svm_init_osvw(struct kvm_vcpu *vcpu)
425{
426 /*
427 * Guests should see errata 400 and 415 as fixed (assuming that
428 * HLT and IO instructions are intercepted).
429 */
430 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
431 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
432
433 /*
434 * By increasing VCPU's osvw.length to 3 we are telling the guest that
435 * all osvw.status bits inside that length, including bit 0 (which is
436 * reserved for erratum 298), are valid. However, if host processor's
437 * osvw_len is 0 then osvw_status[0] carries no information. We need to
438 * be conservative here and therefore we tell the guest that erratum 298
439 * is present (because we really don't know).
440 */
441 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
442 vcpu->arch.osvw.status |= 1;
443}
444
Avi Kivity6aa8b732006-12-10 02:21:36 -0800445static int has_svm(void)
446{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200447 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800448
Eduardo Habkost63d11422008-11-17 19:03:20 -0200449 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800450 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800451 return 0;
452 }
453
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454 return 1;
455}
456
Radim Krčmář13a34e02014-08-28 15:13:03 +0200457static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800458{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100459 /* Make sure we clean up behind us */
460 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
461 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
462
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200463 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100464
465 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466}
467
Radim Krčmář13a34e02014-08-28 15:13:03 +0200468static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469{
470
Tejun Heo0fe1e002009-10-29 22:34:14 +0900471 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800472 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800473 struct desc_struct *gdt;
474 int me = raw_smp_processor_id();
475
Alexander Graf10474ae2009-09-15 11:37:46 +0200476 rdmsrl(MSR_EFER, efer);
477 if (efer & EFER_SVME)
478 return -EBUSY;
479
Avi Kivity6aa8b732006-12-10 02:21:36 -0800480 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200481 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200482 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800483 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900484 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900485 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200486 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200487 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800488 }
489
Tejun Heo0fe1e002009-10-29 22:34:14 +0900490 sd->asid_generation = 1;
491 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
492 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600493 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800494
Thomas Garnier45fc8752017-03-14 10:05:08 -0700495 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900496 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800497
Alexander Graf9962d032008-11-25 20:17:02 +0100498 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800499
Linus Torvaldsd0316552009-12-14 09:58:24 -0800500 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200501
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100502 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
503 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500504 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100505 }
506
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500507
508 /*
509 * Get OSVW bits.
510 *
511 * Note that it is possible to have a system with mixed processor
512 * revisions and therefore different OSVW bits. If bits are not the same
513 * on different processors then choose the worst case (i.e. if erratum
514 * is present on one processor and not on another then assume that the
515 * erratum is present everywhere).
516 */
517 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
518 uint64_t len, status = 0;
519 int err;
520
521 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
522 if (!err)
523 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
524 &err);
525
526 if (err)
527 osvw_status = osvw_len = 0;
528 else {
529 if (len < osvw_len)
530 osvw_len = len;
531 osvw_status |= status;
532 osvw_status &= (1ULL << osvw_len) - 1;
533 }
534 } else
535 osvw_status = osvw_len = 0;
536
Joerg Roedel67ec6602010-05-17 14:43:35 +0200537 svm_init_erratum_383();
538
Joerg Roedel1018faa2012-02-29 14:57:32 +0100539 amd_pmu_enable_virt();
540
Alexander Graf10474ae2009-09-15 11:37:46 +0200541 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800542}
543
Joerg Roedel0da1db752008-07-02 16:02:11 +0200544static void svm_cpu_uninit(int cpu)
545{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900546 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200547
Tejun Heo0fe1e002009-10-29 22:34:14 +0900548 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200549 return;
550
551 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600552 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900553 __free_page(sd->save_area);
554 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200555}
556
Avi Kivity6aa8b732006-12-10 02:21:36 -0800557static int svm_cpu_init(int cpu)
558{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900559 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800560
Tejun Heo0fe1e002009-10-29 22:34:14 +0900561 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
562 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800563 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900564 sd->cpu = cpu;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600565 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900566 if (!sd->save_area)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800567 goto free_cpu_data;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800568
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600569 if (svm_sev_enabled()) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700570 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
571 sizeof(void *),
572 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600573 if (!sd->sev_vmcbs)
Miaohe Lind80b64f2020-01-04 16:56:49 +0800574 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600575 }
576
Tejun Heo0fe1e002009-10-29 22:34:14 +0900577 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800578
579 return 0;
580
Miaohe Lind80b64f2020-01-04 16:56:49 +0800581free_save_area:
582 __free_page(sd->save_area);
583free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +0900584 kfree(sd);
Miaohe Lind80b64f2020-01-04 16:56:49 +0800585 return -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800586
587}
588
Alexander Graffd6fa732020-09-25 16:34:19 +0200589static int direct_access_msr_slot(u32 msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800590{
Alexander Graffd6fa732020-09-25 16:34:19 +0200591 u32 i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800592
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100593 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
Alexander Graffd6fa732020-09-25 16:34:19 +0200594 if (direct_access_msrs[i].index == msr)
595 return i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800596
Alexander Graffd6fa732020-09-25 16:34:19 +0200597 return -ENOENT;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100598}
599
Alexander Graffd6fa732020-09-25 16:34:19 +0200600static void set_shadow_msr_intercept(struct kvm_vcpu *vcpu, u32 msr, int read,
601 int write)
602{
603 struct vcpu_svm *svm = to_svm(vcpu);
604 int slot = direct_access_msr_slot(msr);
605
606 if (slot == -ENOENT)
607 return;
608
609 /* Set the shadow bitmaps to the desired intercept states */
610 if (read)
611 set_bit(slot, svm->shadow_msr_intercept.read);
612 else
613 clear_bit(slot, svm->shadow_msr_intercept.read);
614
615 if (write)
616 set_bit(slot, svm->shadow_msr_intercept.write);
617 else
618 clear_bit(slot, svm->shadow_msr_intercept.write);
619}
620
621static bool valid_msr_intercept(u32 index)
622{
623 return direct_access_msr_slot(index) != -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800624}
625
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200626static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100627{
628 u8 bit_write;
629 unsigned long tmp;
630 u32 offset;
631 u32 *msrpm;
632
633 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
634 to_svm(vcpu)->msrpm;
635
636 offset = svm_msrpm_offset(msr);
637 bit_write = 2 * (msr & 0x0f) + 1;
638 tmp = msrpm[offset];
639
640 BUG_ON(offset == MSR_INVALID);
641
642 return !!test_bit(bit_write, &tmp);
643}
644
Alexander Graffd6fa732020-09-25 16:34:19 +0200645static void set_msr_interception_bitmap(struct kvm_vcpu *vcpu, u32 *msrpm,
646 u32 msr, int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647{
Joerg Roedel455716f2010-03-01 15:34:35 +0100648 u8 bit_read, bit_write;
649 unsigned long tmp;
650 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800651
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100652 /*
653 * If this warning triggers extend the direct_access_msrs list at the
654 * beginning of the file
655 */
656 WARN_ON(!valid_msr_intercept(msr));
657
Alexander Graffd6fa732020-09-25 16:34:19 +0200658 /* Enforce non allowed MSRs to trap */
659 if (read && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ))
660 read = 0;
661
662 if (write && !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE))
663 write = 0;
664
Joerg Roedel455716f2010-03-01 15:34:35 +0100665 offset = svm_msrpm_offset(msr);
666 bit_read = 2 * (msr & 0x0f);
667 bit_write = 2 * (msr & 0x0f) + 1;
668 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800669
Joerg Roedel455716f2010-03-01 15:34:35 +0100670 BUG_ON(offset == MSR_INVALID);
671
672 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
673 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
674
675 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676}
677
Alexander Graffd6fa732020-09-25 16:34:19 +0200678static void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
679 int read, int write)
680{
681 set_shadow_msr_intercept(vcpu, msr, read, write);
682 set_msr_interception_bitmap(vcpu, msrpm, msr, read, write);
683}
684
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300685u32 *svm_vcpu_alloc_msrpm(void)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100686{
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300687 struct page *pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200688 u32 *msrpm;
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100689
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300690 if (!pages)
691 return NULL;
692
693 msrpm = page_address(pages);
Joerg Roedelf65c2292008-02-13 18:58:46 +0100694 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
695
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200696 return msrpm;
697}
698
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300699void svm_vcpu_init_msrpm(struct kvm_vcpu *vcpu, u32 *msrpm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800700{
Joerg Roedelf65c2292008-02-13 18:58:46 +0100701 int i;
702
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100703 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
704 if (!direct_access_msrs[i].always)
705 continue;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200706 set_msr_interception(vcpu, msrpm, direct_access_msrs[i].index, 1, 1);
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100707 }
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300708}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300710
711void svm_vcpu_free_msrpm(u32 *msrpm)
Maxim Levitskyf4c847a2020-08-27 20:11:40 +0300712{
713 __free_pages(virt_to_page(msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800714}
715
Alexander Graffd6fa732020-09-25 16:34:19 +0200716static void svm_msr_filter_changed(struct kvm_vcpu *vcpu)
717{
718 struct vcpu_svm *svm = to_svm(vcpu);
719 u32 i;
720
721 /*
722 * Set intercept permissions for all direct access MSRs again. They
723 * will automatically get filtered through the MSR filter, so we are
724 * back in sync after this.
725 */
726 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
727 u32 msr = direct_access_msrs[i].index;
728 u32 read = test_bit(i, svm->shadow_msr_intercept.read);
729 u32 write = test_bit(i, svm->shadow_msr_intercept.write);
730
731 set_msr_interception_bitmap(vcpu, svm->msrpm, msr, read, write);
Anthony Liguoric8681332007-04-30 09:48:11 +0300732 }
733}
734
Joerg Roedel323c3d82010-03-01 15:34:37 +0100735static void add_msr_offset(u32 offset)
736{
737 int i;
738
739 for (i = 0; i < MSRPM_OFFSETS; ++i) {
740
741 /* Offset already in list? */
742 if (msrpm_offsets[i] == offset)
743 return;
744
745 /* Slot used by another offset? */
746 if (msrpm_offsets[i] != MSR_INVALID)
747 continue;
748
749 /* Add offset to list */
750 msrpm_offsets[i] = offset;
751
752 return;
753 }
754
755 /*
756 * If this BUG triggers the msrpm_offsets table has an overflow. Just
757 * increase MSRPM_OFFSETS in this case.
758 */
759 BUG();
760}
761
762static void init_msrpm_offsets(void)
763{
764 int i;
765
766 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
767
768 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
769 u32 offset;
770
771 offset = svm_msrpm_offset(direct_access_msrs[i].index);
772 BUG_ON(offset == MSR_INVALID);
773
774 add_msr_offset(offset);
775 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776}
777
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200778static void svm_enable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800779{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200780 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500782 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200783 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
784 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
785 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
786 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787}
788
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200789static void svm_disable_lbrv(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790{
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200791 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -0500793 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200794 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
795 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
796 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
797 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800798}
799
Joerg Roedel883b0a92020-03-24 10:41:52 +0100800void disable_nmi_singlestep(struct vcpu_svm *svm)
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200801{
802 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500803
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200804 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
805 /* Clear our flags if they were not set by the guest */
806 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
807 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
808 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
809 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
810 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +0200811}
812
Babu Moger8566ac82018-03-16 16:37:26 -0400813static void grow_ple_window(struct kvm_vcpu *vcpu)
814{
815 struct vcpu_svm *svm = to_svm(vcpu);
816 struct vmcb_control_area *control = &svm->vmcb->control;
817 int old = control->pause_filter_count;
818
819 control->pause_filter_count = __grow_ple_window(old,
820 pause_filter_count,
821 pause_filter_count_grow,
822 pause_filter_count_max);
823
Peter Xu4f75bcc2019-09-06 10:17:22 +0800824 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200825 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800826 trace_kvm_ple_window_update(vcpu->vcpu_id,
827 control->pause_filter_count, old);
828 }
Babu Moger8566ac82018-03-16 16:37:26 -0400829}
830
831static void shrink_ple_window(struct kvm_vcpu *vcpu)
832{
833 struct vcpu_svm *svm = to_svm(vcpu);
834 struct vmcb_control_area *control = &svm->vmcb->control;
835 int old = control->pause_filter_count;
836
837 control->pause_filter_count =
838 __shrink_ple_window(old,
839 pause_filter_count,
840 pause_filter_count_shrink,
841 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800842 if (control->pause_filter_count != old) {
Joerg Roedel06e78522020-06-25 10:03:23 +0200843 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +0800844 trace_kvm_ple_window_update(vcpu->vcpu_id,
845 control->pause_filter_count, old);
846 }
Babu Moger8566ac82018-03-16 16:37:26 -0400847}
848
Tom Lendacky52918ed2020-01-09 17:42:16 -0600849/*
850 * The default MMIO mask is a single bit (excluding the present bit),
851 * which could conflict with the memory encryption bit. Check for
852 * memory encryption support and override the default MMIO mask if
853 * memory encryption is enabled.
854 */
855static __init void svm_adjust_mmio_mask(void)
856{
857 unsigned int enc_bit, mask_bit;
858 u64 msr, mask;
859
860 /* If there is no memory encryption support, use existing mask */
861 if (cpuid_eax(0x80000000) < 0x8000001f)
862 return;
863
864 /* If memory encryption is not enabled, use existing mask */
865 rdmsrl(MSR_K8_SYSCFG, msr);
866 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
867 return;
868
869 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
870 mask_bit = boot_cpu_data.x86_phys_bits;
871
872 /* Increment the mask bit if it is the same as the encryption bit */
873 if (enc_bit == mask_bit)
874 mask_bit++;
875
876 /*
877 * If the mask bit location is below 52, then some bits above the
878 * physical addressing limit will always be reserved, so use the
879 * rsvd_bits() function to generate the mask. This mask, along with
880 * the present bit, will be used to generate a page fault with
881 * PFER.RSV = 1.
882 *
883 * If the mask bit location is 52 (or above), then clear the mask.
884 */
885 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
886
Paolo Bonzinie7581ca2020-05-19 05:04:49 -0400887 kvm_mmu_set_mmio_spte_mask(mask, PT_WRITABLE_MASK | PT_USER_MASK);
Tom Lendacky52918ed2020-01-09 17:42:16 -0600888}
889
Li RongQingdd58f3c2020-02-23 16:13:12 +0800890static void svm_hardware_teardown(void)
891{
892 int cpu;
893
Joerg Roedeleaf78262020-03-24 10:41:54 +0100894 if (svm_sev_enabled())
895 sev_hardware_teardown();
Li RongQingdd58f3c2020-02-23 16:13:12 +0800896
897 for_each_possible_cpu(cpu)
898 svm_cpu_uninit(cpu);
899
900 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
901 iopm_base = 0;
902}
903
Sean Christopherson9b58b982020-03-02 15:56:42 -0800904static __init void svm_set_cpu_caps(void)
905{
906 kvm_set_cpu_caps();
907
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100908 supported_xss = 0;
909
Sean Christophersona50718c2020-03-02 15:57:07 -0800910 /* CPUID 0x80000001 and 0x8000000A (SVM features) */
911 if (nested) {
Sean Christopherson9b58b982020-03-02 15:56:42 -0800912 kvm_cpu_cap_set(X86_FEATURE_SVM);
913
Sean Christopherson4eb87462020-03-02 15:57:08 -0800914 if (nrips)
Sean Christophersona50718c2020-03-02 15:57:07 -0800915 kvm_cpu_cap_set(X86_FEATURE_NRIPS);
916
917 if (npt_enabled)
918 kvm_cpu_cap_set(X86_FEATURE_NPT);
919 }
920
Sean Christopherson93c380e2020-03-02 15:56:54 -0800921 /* CPUID 0x80000008 */
922 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
923 boot_cpu_has(X86_FEATURE_AMD_SSBD))
924 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
Babu Moger4407a792020-09-11 14:29:19 -0500925
926 /* Enable INVPCID feature */
927 kvm_cpu_cap_check_and_set(X86_FEATURE_INVPCID);
Sean Christopherson9b58b982020-03-02 15:56:42 -0800928}
929
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930static __init int svm_hardware_setup(void)
931{
932 int cpu;
933 struct page *iopm_pages;
934 void *iopm_va;
935 int r;
936
937 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
938
939 if (!iopm_pages)
940 return -ENOMEM;
941
942 iopm_va = page_address(iopm_pages);
Anthony Liguoric8681332007-04-30 09:48:11 +0300943 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
945
Joerg Roedel323c3d82010-03-01 15:34:37 +0100946 init_msrpm_offsets();
947
Sean Christophersoncfc48182020-03-02 15:56:23 -0800948 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
949
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100950 if (boot_cpu_has(X86_FEATURE_NX))
951 kvm_enable_efer_bits(EFER_NX);
952
Alexander Graf1b2fd702009-02-02 16:23:51 +0100953 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
954 kvm_enable_efer_bits(EFER_FFXSR);
955
Joerg Roedel92a1f122011-03-25 09:44:51 +0100956 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +0100957 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800958 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
959 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100960 }
961
Babu Moger8566ac82018-03-16 16:37:26 -0400962 /* Check for pause filtering support */
963 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
964 pause_filter_count = 0;
965 pause_filter_thresh = 0;
966 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
967 pause_filter_thresh = 0;
968 }
969
Alexander Graf236de052008-11-25 20:17:10 +0100970 if (nested) {
971 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +0200972 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +0100973 }
974
Tom Lendacky916391a2020-12-10 11:09:38 -0600975 if (IS_ENABLED(CONFIG_KVM_AMD_SEV) && sev) {
976 sev_hardware_setup();
977 } else {
978 sev = false;
979 sev_es = false;
Brijesh Singhe9df0942017-12-04 10:57:33 -0600980 }
981
Tom Lendacky52918ed2020-01-09 17:42:16 -0600982 svm_adjust_mmio_mask();
983
Zachary Amsden3230bb42009-09-29 11:38:37 -1000984 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 r = svm_cpu_init(cpu);
986 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +0100987 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +0100989
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200990 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100991 npt_enabled = false;
992
Sean Christopherson213e0e12020-03-02 15:57:01 -0800993 if (npt_enabled && !npt)
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100994 npt_enabled = false;
Joerg Roedel6c7dac72008-02-07 13:47:40 +0100995
Sean Christopherson83013052020-07-15 20:41:22 -0700996 kvm_configure_mmu(npt_enabled, get_max_npt_level(), PG_LEVEL_1G);
Sean Christopherson213e0e12020-03-02 15:57:01 -0800997 pr_info("kvm: Nested Paging %sabled\n", npt_enabled ? "en" : "dis");
Joerg Roedele3da3ac2008-02-07 13:47:39 +0100998
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200999 if (nrips) {
1000 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1001 nrips = false;
1002 }
1003
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001004 if (avic) {
1005 if (!npt_enabled ||
1006 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001007 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001008 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001009 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001010 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001011
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001012 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1013 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001014 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001015
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001016 if (vls) {
1017 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001018 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001019 !IS_ENABLED(CONFIG_X86_64)) {
1020 vls = false;
1021 } else {
1022 pr_info("Virtual VMLOAD VMSAVE supported\n");
1023 }
1024 }
1025
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001026 if (vgif) {
1027 if (!boot_cpu_has(X86_FEATURE_VGIF))
1028 vgif = false;
1029 else
1030 pr_info("Virtual GIF supported\n");
1031 }
1032
Sean Christopherson9b58b982020-03-02 15:56:42 -08001033 svm_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08001034
Mohammed Gamal3edd6832020-07-10 17:48:11 +02001035 /*
1036 * It seems that on AMD processors PTE's accessed bit is
1037 * being set by the CPU hardware before the NPF vmexit.
1038 * This is not expected behaviour and our tests fail because
1039 * of it.
1040 * A workaround here is to disable support for
1041 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR if NPT is enabled.
1042 * In this case userspace can know if there is support using
1043 * KVM_CAP_SMALLER_MAXPHYADDR extension and decide how to handle
1044 * it
1045 * If future AMD CPU models change the behaviour described above,
1046 * this variable can be changed accordingly
1047 */
1048 allow_smaller_maxphyaddr = !npt_enabled;
1049
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050 return 0;
1051
Joerg Roedelf65c2292008-02-13 18:58:46 +01001052err:
Li RongQingdd58f3c2020-02-23 16:13:12 +08001053 svm_hardware_teardown();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054 return r;
1055}
1056
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057static void init_seg(struct vmcb_seg *seg)
1058{
1059 seg->selector = 0;
1060 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001061 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 seg->limit = 0xffff;
1063 seg->base = 0;
1064}
1065
1066static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1067{
1068 seg->selector = 0;
1069 seg->attrib = SVM_SELECTOR_P_MASK | type;
1070 seg->limit = 0xffff;
1071 seg->base = 0;
1072}
1073
Leonid Shatz326e7422018-11-06 12:14:25 +02001074static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001075{
1076 struct vcpu_svm *svm = to_svm(vcpu);
1077 u64 g_tsc_offset = 0;
1078
Joerg Roedel20307532010-11-29 17:51:48 +01001079 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001080 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001081 g_tsc_offset = svm->vmcb->control.tsc_offset -
1082 svm->nested.hsave->control.tsc_offset;
1083 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001084 }
1085
1086 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1087 svm->vmcb->control.tsc_offset - g_tsc_offset,
1088 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001089
1090 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001091
Joerg Roedel06e78522020-06-25 10:03:23 +02001092 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001093 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001094}
1095
Babu Moger4407a792020-09-11 14:29:19 -05001096static void svm_check_invpcid(struct vcpu_svm *svm)
1097{
1098 /*
1099 * Intercept INVPCID instruction only if shadow page table is
1100 * enabled. Interception is not required with nested page table
1101 * enabled.
1102 */
1103 if (kvm_cpu_cap_has(X86_FEATURE_INVPCID)) {
1104 if (!npt_enabled)
1105 svm_set_intercept(svm, INTERCEPT_INVPCID);
1106 else
1107 svm_clr_intercept(svm, INTERCEPT_INVPCID);
1108 }
1109}
1110
Paolo Bonzini56908912015-10-19 11:30:19 +02001111static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001112{
Joerg Roedele6101a92008-02-13 18:58:45 +01001113 struct vmcb_control_area *control = &svm->vmcb->control;
1114 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001116 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001117
Babu Moger830bd712020-09-11 14:28:50 -05001118 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1119 svm_set_intercept(svm, INTERCEPT_CR3_READ);
1120 svm_set_intercept(svm, INTERCEPT_CR4_READ);
1121 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
1122 svm_set_intercept(svm, INTERCEPT_CR3_WRITE);
1123 svm_set_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001124 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Babu Moger830bd712020-09-11 14:28:50 -05001125 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126
Paolo Bonzini5315c712014-03-03 13:08:29 +01001127 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128
Joerg Roedel18c918c2010-11-30 18:03:59 +01001129 set_exception_intercept(svm, PF_VECTOR);
1130 set_exception_intercept(svm, UD_VECTOR);
1131 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001132 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001133 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001134 /*
1135 * Guest access to VMware backdoor ports could legitimately
1136 * trigger #GP because of TSS I/O permission bitmap.
1137 * We intercept those #GP and allow access to them anyway
1138 * as VMware does.
1139 */
1140 if (enable_vmware_backdoor)
1141 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142
Joerg Roedela284ba52020-06-25 10:03:24 +02001143 svm_set_intercept(svm, INTERCEPT_INTR);
1144 svm_set_intercept(svm, INTERCEPT_NMI);
1145 svm_set_intercept(svm, INTERCEPT_SMI);
1146 svm_set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
1147 svm_set_intercept(svm, INTERCEPT_RDPMC);
1148 svm_set_intercept(svm, INTERCEPT_CPUID);
1149 svm_set_intercept(svm, INTERCEPT_INVD);
1150 svm_set_intercept(svm, INTERCEPT_INVLPG);
1151 svm_set_intercept(svm, INTERCEPT_INVLPGA);
1152 svm_set_intercept(svm, INTERCEPT_IOIO_PROT);
1153 svm_set_intercept(svm, INTERCEPT_MSR_PROT);
1154 svm_set_intercept(svm, INTERCEPT_TASK_SWITCH);
1155 svm_set_intercept(svm, INTERCEPT_SHUTDOWN);
1156 svm_set_intercept(svm, INTERCEPT_VMRUN);
1157 svm_set_intercept(svm, INTERCEPT_VMMCALL);
1158 svm_set_intercept(svm, INTERCEPT_VMLOAD);
1159 svm_set_intercept(svm, INTERCEPT_VMSAVE);
1160 svm_set_intercept(svm, INTERCEPT_STGI);
1161 svm_set_intercept(svm, INTERCEPT_CLGI);
1162 svm_set_intercept(svm, INTERCEPT_SKINIT);
1163 svm_set_intercept(svm, INTERCEPT_WBINVD);
1164 svm_set_intercept(svm, INTERCEPT_XSETBV);
1165 svm_set_intercept(svm, INTERCEPT_RDPRU);
1166 svm_set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001167
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001168 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001169 svm_set_intercept(svm, INTERCEPT_MONITOR);
1170 svm_set_intercept(svm, INTERCEPT_MWAIT);
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001171 }
1172
Wanpeng Licaa057a2018-03-12 04:53:03 -07001173 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
Joerg Roedela284ba52020-06-25 10:03:24 +02001174 svm_set_intercept(svm, INTERCEPT_HLT);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001175
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001176 control->iopm_base_pa = __sme_set(iopm_base);
1177 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001178 control->int_ctl = V_INTR_MASKING_MASK;
1179
1180 init_seg(&save->es);
1181 init_seg(&save->ss);
1182 init_seg(&save->ds);
1183 init_seg(&save->fs);
1184 init_seg(&save->gs);
1185
1186 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001187 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188 /* Executable/Readable Code Segment */
1189 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1190 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1191 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001192
1193 save->gdtr.limit = 0xffff;
1194 save->idtr.limit = 0xffff;
1195
1196 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1197 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1198
Paolo Bonzini56908912015-10-19 11:30:19 +02001199 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001200 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001201 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001202 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001203 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001204
Joerg Roedele0231712010-02-24 18:59:10 +01001205 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001206 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001207 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001208 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001209 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001210 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001211
Rusty Russell66aee912007-07-17 23:34:16 +10001212 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001213 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001214
1215 if (npt_enabled) {
1216 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001217 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedela284ba52020-06-25 10:03:24 +02001218 svm_clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001219 clr_exception_intercept(svm, PF_VECTOR);
Babu Moger830bd712020-09-11 14:28:50 -05001220 svm_clr_intercept(svm, INTERCEPT_CR3_READ);
1221 svm_clr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001222 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001223 save->cr3 = 0;
1224 save->cr4 = 0;
1225 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001226 svm->asid_generation = 0;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001227 svm->asid = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001228
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03001229 svm->nested.vmcb12_gpa = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001230 svm->vcpu.arch.hflags = 0;
1231
Wanpeng Li830f01b2020-07-31 11:12:21 +08001232 if (!kvm_pause_in_guest(svm->vcpu.kvm)) {
Babu Moger8566ac82018-03-16 16:37:26 -04001233 control->pause_filter_count = pause_filter_count;
1234 if (pause_filter_thresh)
1235 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedela284ba52020-06-25 10:03:24 +02001236 svm_set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001237 } else {
Joerg Roedela284ba52020-06-25 10:03:24 +02001238 svm_clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001239 }
1240
Babu Moger4407a792020-09-11 14:29:19 -05001241 svm_check_invpcid(svm);
1242
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001243 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001244 avic_init_vmcb(svm);
1245
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001246 /*
1247 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1248 * in VMCB and clear intercepts to avoid #VMEXIT.
1249 */
1250 if (vls) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001251 svm_clr_intercept(svm, INTERCEPT_VMLOAD);
1252 svm_clr_intercept(svm, INTERCEPT_VMSAVE);
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001253 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1254 }
1255
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001256 if (vgif) {
Joerg Roedela284ba52020-06-25 10:03:24 +02001257 svm_clr_intercept(svm, INTERCEPT_STGI);
1258 svm_clr_intercept(svm, INTERCEPT_CLGI);
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001259 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1260 }
1261
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001262 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001263 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001264 clr_exception_intercept(svm, UD_VECTOR);
1265 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001266
Joerg Roedel06e78522020-06-25 10:03:23 +02001267 vmcb_mark_all_dirty(svm->vmcb);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001268
Joerg Roedel2af91942009-08-07 11:49:28 +02001269 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001270
1271}
1272
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001273static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03001274{
1275 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01001276 u32 dummy;
1277 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001278
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001279 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02001280 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001281
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001282 if (!init_event) {
1283 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
1284 MSR_IA32_APICBASE_ENABLE;
1285 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
1286 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
1287 }
Paolo Bonzini56908912015-10-19 11:30:19 +02001288 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02001289
Sean Christophersonf91af512020-03-04 17:34:37 -08001290 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001291 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001292
1293 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
1294 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03001295}
1296
Sean Christopherson987b2592019-12-18 13:54:55 -08001297static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001299 struct vcpu_svm *svm;
Maxim Levitsky1feaba12020-08-27 20:11:38 +03001300 struct page *vmcb_page;
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001301 struct page *vmsa_page = NULL;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001302 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001303
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001304 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
1305 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001306
Joerg Roedelf65c2292008-02-13 18:58:46 +01001307 err = -ENOMEM;
Maxim Levitsky0681de12020-08-27 20:11:41 +03001308 vmcb_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Maxim Levitsky1feaba12020-08-27 20:11:38 +03001309 if (!vmcb_page)
Sean Christopherson987b2592019-12-18 13:54:55 -08001310 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001311
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001312 if (sev_es_guest(svm->vcpu.kvm)) {
1313 /*
1314 * SEV-ES guests require a separate VMSA page used to contain
1315 * the encrypted register state of the guest.
1316 */
1317 vmsa_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
1318 if (!vmsa_page)
1319 goto error_free_vmcb_page;
1320 }
1321
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05001322 err = avic_init_vcpu(svm);
1323 if (err)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001324 goto error_free_vmsa_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001325
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001326 /* We initialize this flag to true to make sure that the is_running
1327 * bit would be set the first time the vcpu is loaded.
1328 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001329 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
1330 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001331
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001332 svm->msrpm = svm_vcpu_alloc_msrpm();
Maxim Levitskyf4c847a2020-08-27 20:11:40 +03001333 if (!svm->msrpm)
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001334 goto error_free_vmsa_page;
Alexander Grafb286d5d2008-11-25 20:17:05 +01001335
Aaron Lewis476c9bd2020-09-25 16:34:18 +02001336 svm_vcpu_init_msrpm(vcpu, svm->msrpm);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09001337
Maxim Levitsky1feaba12020-08-27 20:11:38 +03001338 svm->vmcb = page_address(vmcb_page);
Maxim Levitsky1feaba12020-08-27 20:11:38 +03001339 svm->vmcb_pa = __sme_set(page_to_pfn(vmcb_page) << PAGE_SHIFT);
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001340
1341 if (vmsa_page)
1342 svm->vmsa = page_address(vmsa_page);
1343
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001344 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02001345 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346
Sean Christopherson7f271792019-12-18 13:54:51 -08001347 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01001348 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05001349
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001350 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08001351
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001352error_free_vmsa_page:
1353 if (vmsa_page)
1354 __free_page(vmsa_page);
Maxim Levitsky8d22b902020-08-27 20:11:42 +03001355error_free_vmcb_page:
Maxim Levitsky1feaba12020-08-27 20:11:38 +03001356 __free_page(vmcb_page);
Sean Christopherson987b2592019-12-18 13:54:55 -08001357out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08001358 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001359}
1360
Jim Mattsonfd65d312018-05-22 09:54:20 -07001361static void svm_clear_current_vmcb(struct vmcb *vmcb)
1362{
1363 int i;
1364
1365 for_each_online_cpu(i)
1366 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
1367}
1368
Avi Kivity6aa8b732006-12-10 02:21:36 -08001369static void svm_free_vcpu(struct kvm_vcpu *vcpu)
1370{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001371 struct vcpu_svm *svm = to_svm(vcpu);
1372
Jim Mattsonfd65d312018-05-22 09:54:20 -07001373 /*
1374 * The vmcb page can be recycled, causing a false negative in
1375 * svm_vcpu_load(). So, ensure that no logical CPU has this
1376 * vmcb page recorded as its current vmcb.
1377 */
1378 svm_clear_current_vmcb(svm->vmcb);
1379
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03001380 svm_free_nested(svm);
1381
Tom Lendackyadd5e2f2020-12-10 11:09:40 -06001382 sev_free_vcpu(vcpu);
1383
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001384 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01001385 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386}
1387
Avi Kivity15ad7142007-07-11 18:17:21 +03001388static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001389{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001390 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01001391 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001392 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02001393
Avi Kivity0cc50642007-03-25 12:07:27 +02001394 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03001395 svm->asid_generation = 0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001396 vmcb_mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02001397 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001398
Avi Kivity82ca2d12010-10-21 12:20:34 +02001399#ifdef CONFIG_X86_64
1400 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
1401#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02001402 savesegment(fs, svm->host.fs);
1403 savesegment(gs, svm->host.gs);
1404 svm->host.ldt = kvm_read_ldt();
1405
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001406 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001407 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001408
Haozhong Zhangad7218832015-10-20 15:39:02 +08001409 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
1410 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
1411 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
1412 __this_cpu_write(current_tsc_ratio, tsc_ratio);
1413 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
1414 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01001415 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01001416 /* This assumes that the kernel never uses MSR_TSC_AUX */
1417 if (static_cpu_has(X86_FEATURE_RDTSCP))
1418 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001419
Ashok Raj15d45072018-02-01 22:59:43 +01001420 if (sd->current_vmcb != svm->vmcb) {
1421 sd->current_vmcb = svm->vmcb;
1422 indirect_branch_prediction_barrier();
1423 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001424 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425}
1426
1427static void svm_vcpu_put(struct kvm_vcpu *vcpu)
1428{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001429 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001430 int i;
1431
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001432 avic_vcpu_put(vcpu);
1433
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001434 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02001435 kvm_load_ldt(svm->host.ldt);
1436#ifdef CONFIG_X86_64
1437 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07001438 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01001439 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02001440#else
Avi Kivity831ca602011-03-08 16:09:51 +02001441#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02001442 loadsegment(gs, svm->host.gs);
1443#endif
Avi Kivity831ca602011-03-08 16:09:51 +02001444#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03001445 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001446 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001447}
1448
Avi Kivity6aa8b732006-12-10 02:21:36 -08001449static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
1450{
Ladi Prosek9b611742017-06-21 09:06:59 +02001451 struct vcpu_svm *svm = to_svm(vcpu);
1452 unsigned long rflags = svm->vmcb->save.rflags;
1453
1454 if (svm->nmi_singlestep) {
1455 /* Hide our flags if they were not set by the guest */
1456 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1457 rflags &= ~X86_EFLAGS_TF;
1458 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1459 rflags &= ~X86_EFLAGS_RF;
1460 }
1461 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462}
1463
1464static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1465{
Ladi Prosek9b611742017-06-21 09:06:59 +02001466 if (to_svm(vcpu)->nmi_singlestep)
1467 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
1468
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001469 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02001470 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001471 * (caused by either a task switch or an inter-privilege IRET),
1472 * so we do not need to update the CPL here.
1473 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001474 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475}
1476
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001477static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
1478{
1479 switch (reg) {
1480 case VCPU_EXREG_PDPTR:
1481 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02001482 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001483 break;
1484 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07001485 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001486 }
1487}
1488
Suravee Suthikulpanite14b7782020-05-06 08:17:55 -05001489static void svm_set_vintr(struct vcpu_svm *svm)
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001490{
1491 struct vmcb_control_area *control;
1492
1493 /* The following fields are ignored when AVIC is enabled */
1494 WARN_ON(kvm_vcpu_apicv_active(&svm->vcpu));
Joerg Roedela284ba52020-06-25 10:03:24 +02001495 svm_set_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001496
1497 /*
1498 * This is just a dummy VINTR to actually cause a vmexit to happen.
1499 * Actual injection of virtual interrupts happens through EVENTINJ.
1500 */
1501 control = &svm->vmcb->control;
1502 control->int_vector = 0x0;
1503 control->int_ctl &= ~V_INTR_PRIO_MASK;
1504 control->int_ctl |= V_IRQ_MASK |
1505 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedel06e78522020-06-25 10:03:23 +02001506 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001507}
1508
Alexander Graff0b85052008-11-25 20:17:01 +01001509static void svm_clear_vintr(struct vcpu_svm *svm)
1510{
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001511 const u32 mask = V_TPR_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK | V_INTR_MASKING_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02001512 svm_clr_intercept(svm, INTERCEPT_VINTR);
Paolo Bonzini64b5bd22020-03-04 13:12:35 -05001513
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001514 /* Drop int_ctl fields related to VINTR injection. */
1515 svm->vmcb->control.int_ctl &= mask;
1516 if (is_guest_mode(&svm->vcpu)) {
Paolo Bonzinifb7333d2020-06-08 07:11:47 -04001517 svm->nested.hsave->control.int_ctl &= mask;
1518
Paolo Bonzinid8e4e582020-05-22 07:38:20 -04001519 WARN_ON((svm->vmcb->control.int_ctl & V_TPR_MASK) !=
1520 (svm->nested.ctl.int_ctl & V_TPR_MASK));
1521 svm->vmcb->control.int_ctl |= svm->nested.ctl.int_ctl & ~mask;
1522 }
1523
Joerg Roedel06e78522020-06-25 10:03:23 +02001524 vmcb_mark_dirty(svm->vmcb, VMCB_INTR);
Alexander Graff0b85052008-11-25 20:17:01 +01001525}
1526
Avi Kivity6aa8b732006-12-10 02:21:36 -08001527static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
1528{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001529 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530
1531 switch (seg) {
1532 case VCPU_SREG_CS: return &save->cs;
1533 case VCPU_SREG_DS: return &save->ds;
1534 case VCPU_SREG_ES: return &save->es;
1535 case VCPU_SREG_FS: return &save->fs;
1536 case VCPU_SREG_GS: return &save->gs;
1537 case VCPU_SREG_SS: return &save->ss;
1538 case VCPU_SREG_TR: return &save->tr;
1539 case VCPU_SREG_LDTR: return &save->ldtr;
1540 }
1541 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00001542 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001543}
1544
1545static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1546{
1547 struct vmcb_seg *s = svm_seg(vcpu, seg);
1548
1549 return s->base;
1550}
1551
1552static void svm_get_segment(struct kvm_vcpu *vcpu,
1553 struct kvm_segment *var, int seg)
1554{
1555 struct vmcb_seg *s = svm_seg(vcpu, seg);
1556
1557 var->base = s->base;
1558 var->limit = s->limit;
1559 var->selector = s->selector;
1560 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
1561 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
1562 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
1563 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
1564 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
1565 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
1566 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05301567
1568 /*
1569 * AMD CPUs circa 2014 track the G bit for all segments except CS.
1570 * However, the SVM spec states that the G bit is not observed by the
1571 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
1572 * So let's synthesize a legal G bit for all segments, this helps
1573 * running KVM nested. It also helps cross-vendor migration, because
1574 * Intel's vmentry has a check on the 'G' bit.
1575 */
1576 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00001577
Joerg Roedele0231712010-02-24 18:59:10 +01001578 /*
1579 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02001580 * for cross vendor migration purposes by "not present"
1581 */
Gioh Kim8eae9572017-05-30 15:24:45 +02001582 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02001583
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001584 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001585 case VCPU_SREG_TR:
1586 /*
1587 * Work around a bug where the busy flag in the tr selector
1588 * isn't exposed
1589 */
Amit Shahc0d09822008-10-27 09:04:18 +00001590 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001591 break;
1592 case VCPU_SREG_DS:
1593 case VCPU_SREG_ES:
1594 case VCPU_SREG_FS:
1595 case VCPU_SREG_GS:
1596 /*
1597 * The accessed bit must always be set in the segment
1598 * descriptor cache, although it can be cleared in the
1599 * descriptor, the cached bit always remains at 1. Since
1600 * Intel has a check on this, set it here to support
1601 * cross-vendor migration.
1602 */
1603 if (!var->unusable)
1604 var->type |= 0x1;
1605 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02001606 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01001607 /*
1608 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02001609 * descriptor is left as 1, although the whole segment has
1610 * been made unusable. Clear it here to pass an Intel VMX
1611 * entry check when cross vendor migrating.
1612 */
1613 if (var->unusable)
1614 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02001615 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02001616 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02001617 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01001618 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001619}
1620
Izik Eidus2e4d2652008-03-24 19:38:34 +02001621static int svm_get_cpl(struct kvm_vcpu *vcpu)
1622{
1623 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
1624
1625 return save->cpl;
1626}
1627
Gleb Natapov89a27f42010-02-16 10:51:48 +02001628static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001629{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001630 struct vcpu_svm *svm = to_svm(vcpu);
1631
Gleb Natapov89a27f42010-02-16 10:51:48 +02001632 dt->size = svm->vmcb->save.idtr.limit;
1633 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001634}
1635
Gleb Natapov89a27f42010-02-16 10:51:48 +02001636static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001638 struct vcpu_svm *svm = to_svm(vcpu);
1639
Gleb Natapov89a27f42010-02-16 10:51:48 +02001640 svm->vmcb->save.idtr.limit = dt->size;
1641 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001642 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001643}
1644
Gleb Natapov89a27f42010-02-16 10:51:48 +02001645static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001647 struct vcpu_svm *svm = to_svm(vcpu);
1648
Gleb Natapov89a27f42010-02-16 10:51:48 +02001649 dt->size = svm->vmcb->save.gdtr.limit;
1650 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651}
1652
Gleb Natapov89a27f42010-02-16 10:51:48 +02001653static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001654{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001655 struct vcpu_svm *svm = to_svm(vcpu);
1656
Gleb Natapov89a27f42010-02-16 10:51:48 +02001657 svm->vmcb->save.gdtr.limit = dt->size;
1658 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel06e78522020-06-25 10:03:23 +02001659 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660}
1661
Avi Kivityd2251572010-01-06 10:55:27 +02001662static void update_cr0_intercept(struct vcpu_svm *svm)
1663{
Tom Lendackyf1c63662020-12-14 10:29:50 -05001664 ulong gcr0;
1665 u64 *hcr0;
Avi Kivityd2251572010-01-06 10:55:27 +02001666
Tom Lendackyf1c63662020-12-14 10:29:50 -05001667 /*
1668 * SEV-ES guests must always keep the CR intercepts cleared. CR
1669 * tracking is done using the CR write traps.
1670 */
1671 if (sev_es_guest(svm->vcpu.kvm))
1672 return;
1673
1674 gcr0 = svm->vcpu.arch.cr0;
1675 hcr0 = &svm->vmcb->save.cr0;
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001676 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
1677 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02001678
Joerg Roedel06e78522020-06-25 10:03:23 +02001679 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02001680
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001681 if (gcr0 == *hcr0) {
Babu Moger830bd712020-09-11 14:28:50 -05001682 svm_clr_intercept(svm, INTERCEPT_CR0_READ);
1683 svm_clr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001684 } else {
Babu Moger830bd712020-09-11 14:28:50 -05001685 svm_set_intercept(svm, INTERCEPT_CR0_READ);
1686 svm_set_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02001687 }
1688}
1689
Joerg Roedel883b0a92020-03-24 10:41:52 +01001690void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001692 struct vcpu_svm *svm = to_svm(vcpu);
1693
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001694#ifdef CONFIG_X86_64
Tom Lendackyf1c63662020-12-14 10:29:50 -05001695 if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001696 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001697 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001698 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001699 }
1700
Mike Dayd77c26f2007-10-08 09:02:08 -04001701 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02001702 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06001703 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001704 }
1705 }
1706#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001707 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02001708
1709 if (!npt_enabled)
1710 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02001711
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02001712 /*
1713 * re-enable caching here because the QEMU bios
1714 * does not do it - this results in some delay at
1715 * reboot
1716 */
1717 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
1718 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001719 svm->vmcb->save.cr0 = cr0;
Joerg Roedel06e78522020-06-25 10:03:23 +02001720 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02001721 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001722}
1723
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07001724static bool svm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1725{
1726 return true;
1727}
1728
1729void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07001731 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Paolo Bonzinidc924b02020-11-15 09:44:18 -05001732 unsigned long old_cr4 = vcpu->arch.cr4;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02001733
1734 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Sean Christophersonf55ac302020-03-20 14:28:12 -07001735 svm_flush_tlb(vcpu);
Joerg Roedel6394b642008-04-09 14:15:29 +02001736
Joerg Roedelec077262008-04-09 14:15:28 +02001737 vcpu->arch.cr4 = cr4;
1738 if (!npt_enabled)
1739 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02001740 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02001741 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedel06e78522020-06-25 10:03:23 +02001742 vmcb_mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Jim Mattson2259c172020-10-29 10:06:48 -07001743
1744 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
1745 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746}
1747
1748static void svm_set_segment(struct kvm_vcpu *vcpu,
1749 struct kvm_segment *var, int seg)
1750{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001751 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001752 struct vmcb_seg *s = svm_seg(vcpu, seg);
1753
1754 s->base = var->base;
1755 s->limit = var->limit;
1756 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02001757 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
1758 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
1759 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
1760 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
1761 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
1762 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
1763 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
1764 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02001765
1766 /*
1767 * This is always accurate, except if SYSRET returned to a segment
1768 * with SS.DPL != 3. Intel does not have this quirk, and always
1769 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
1770 * would entail passing the CPL to userspace and back.
1771 */
1772 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02001773 /* This is symmetric with svm_get_segment() */
1774 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001775
Joerg Roedel06e78522020-06-25 10:03:23 +02001776 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777}
1778
Paolo Bonzini69869822020-07-10 17:48:06 +02001779static void update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001781 struct vcpu_svm *svm = to_svm(vcpu);
1782
Joerg Roedel18c918c2010-11-30 18:03:59 +01001783 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03001784
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001785 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001786 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01001787 set_exception_intercept(svm, BP_VECTOR);
Paolo Bonzini69869822020-07-10 17:48:06 +02001788 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001789}
1790
Tejun Heo0fe1e002009-10-29 22:34:14 +09001791static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001792{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001793 if (sd->next_asid > sd->max_asid) {
1794 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06001795 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001796 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001797 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798 }
1799
Tejun Heo0fe1e002009-10-29 22:34:14 +09001800 svm->asid_generation = sd->asid_generation;
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04001801 svm->asid = sd->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001802}
1803
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001804static void svm_set_dr6(struct vcpu_svm *svm, unsigned long value)
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001805{
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001806 struct vmcb *vmcb = svm->vmcb;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001807
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001808 if (unlikely(value != vmcb->save.dr6)) {
1809 vmcb->save.dr6 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001810 vmcb_mark_dirty(vmcb, VMCB_DR);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001811 }
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01001812}
1813
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001814static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
1815{
1816 struct vcpu_svm *svm = to_svm(vcpu);
1817
1818 get_debugreg(vcpu->arch.db[0], 0);
1819 get_debugreg(vcpu->arch.db[1], 1);
1820 get_debugreg(vcpu->arch.db[2], 2);
1821 get_debugreg(vcpu->arch.db[3], 3);
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001822 /*
1823 * We cannot reset svm->vmcb->save.dr6 to DR6_FIXED_1|DR6_RTM here,
1824 * because db_interception might need it. We can do it before vmentry.
1825 */
Paolo Bonzini5679b802020-05-04 11:28:25 -04001826 vcpu->arch.dr6 = svm->vmcb->save.dr6;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001827 vcpu->arch.dr7 = svm->vmcb->save.dr7;
Paolo Bonzinifacb0132014-02-21 10:32:27 +01001828 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
1829 set_dr_intercepts(svm);
1830}
1831
Gleb Natapov020df072010-04-13 10:05:23 +03001832static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001833{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001834 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01001835
Gleb Natapov020df072010-04-13 10:05:23 +03001836 svm->vmcb->save.dr7 = value;
Joerg Roedel06e78522020-06-25 10:03:23 +02001837 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001838}
1839
Avi Kivity851ba692009-08-24 11:10:17 +03001840static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001841{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06001842 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001843 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001844
Wanpeng Li1261bfa2017-07-13 18:30:40 -07001845 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001846 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1847 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001848 svm->vmcb->control.insn_len);
1849}
1850
1851static int npf_interception(struct vcpu_svm *svm)
1852{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06001853 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02001854 u64 error_code = svm->vmcb->control.exit_info_1;
1855
1856 trace_kvm_page_fault(fault_address, error_code);
1857 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06001858 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
1859 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02001860 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001861}
1862
Avi Kivity851ba692009-08-24 11:10:17 +03001863static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001864{
Avi Kivity851ba692009-08-24 11:10:17 +03001865 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001866 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03001867
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001868 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03001869 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02001870 !svm->nmi_singlestep) {
Paolo Bonzinid67668e2020-05-06 06:40:04 -04001871 u32 payload = (svm->vmcb->save.dr6 ^ DR6_RTM) & ~DR6_FIXED_1;
1872 kvm_queue_exception_p(&svm->vcpu, DB_VECTOR, payload);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001873 return 1;
1874 }
Gleb Natapov44c11432009-05-11 13:35:52 +03001875
Jan Kiszka6be7d302009-10-18 13:24:54 +02001876 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001877 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02001878 /* Make sure we check for pending NMIs upon entry */
1879 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03001880 }
1881
1882 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01001883 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03001884 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Paolo Bonzinidee919d2020-05-04 09:34:10 -04001885 kvm_run->debug.arch.dr6 = svm->vmcb->save.dr6;
1886 kvm_run->debug.arch.dr7 = svm->vmcb->save.dr7;
Gleb Natapov44c11432009-05-11 13:35:52 +03001887 kvm_run->debug.arch.pc =
1888 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1889 kvm_run->debug.arch.exception = DB_VECTOR;
1890 return 0;
1891 }
1892
1893 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001894}
1895
Avi Kivity851ba692009-08-24 11:10:17 +03001896static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001897{
Avi Kivity851ba692009-08-24 11:10:17 +03001898 struct kvm_run *kvm_run = svm->vcpu.run;
1899
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001900 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1901 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
1902 kvm_run->debug.arch.exception = BP_VECTOR;
1903 return 0;
1904}
1905
Avi Kivity851ba692009-08-24 11:10:17 +03001906static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001907{
Wanpeng Li082d06e2018-04-03 16:28:48 -07001908 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001909}
1910
Eric Northup54a20552015-11-03 18:03:53 +01001911static int ac_interception(struct vcpu_svm *svm)
1912{
1913 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
1914 return 1;
1915}
1916
Liran Alon97184202018-03-12 13:12:52 +02001917static int gp_interception(struct vcpu_svm *svm)
1918{
1919 struct kvm_vcpu *vcpu = &svm->vcpu;
1920 u32 error_code = svm->vmcb->control.exit_info_1;
Liran Alon97184202018-03-12 13:12:52 +02001921
1922 WARN_ON_ONCE(!enable_vmware_backdoor);
1923
Sean Christophersona6c6ed12019-08-27 14:40:30 -07001924 /*
1925 * VMware backdoor emulation on #GP interception only handles IN{S},
1926 * OUT{S}, and RDPMC, none of which generate a non-zero error code.
1927 */
1928 if (error_code) {
1929 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
1930 return 1;
1931 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001932 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon97184202018-03-12 13:12:52 +02001933}
1934
Joerg Roedel67ec6602010-05-17 14:43:35 +02001935static bool is_erratum_383(void)
1936{
1937 int err, i;
1938 u64 value;
1939
1940 if (!erratum_383_found)
1941 return false;
1942
1943 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
1944 if (err)
1945 return false;
1946
1947 /* Bit 62 may or may not be set for this mce */
1948 value &= ~(1ULL << 62);
1949
1950 if (value != 0xb600000000010015ULL)
1951 return false;
1952
1953 /* Clear MCi_STATUS registers */
1954 for (i = 0; i < 6; ++i)
1955 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
1956
1957 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
1958 if (!err) {
1959 u32 low, high;
1960
1961 value &= ~(1ULL << 2);
1962 low = lower_32_bits(value);
1963 high = upper_32_bits(value);
1964
1965 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
1966 }
1967
1968 /* Flush tlb to evict multi-match entries */
1969 __flush_tlb_all();
1970
1971 return true;
1972}
1973
Joerg Roedelfe5913e2010-05-17 14:43:34 +02001974static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02001975{
Joerg Roedel67ec6602010-05-17 14:43:35 +02001976 if (is_erratum_383()) {
1977 /*
1978 * Erratum 383 triggered. Guest state is corrupt so kill the
1979 * guest.
1980 */
1981 pr_err("KVM: Guest triggered AMD Erratum 383\n");
1982
Avi Kivitya8eeb042010-05-10 12:34:53 +03001983 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02001984
1985 return;
1986 }
1987
Joerg Roedel53371b52008-04-09 14:15:30 +02001988 /*
1989 * On an #MC intercept the MCE handler is not called automatically in
1990 * the host. So do it by hand here.
1991 */
Uros Bizjak1c164cb2020-04-11 17:36:27 +02001992 kvm_machine_check();
Joerg Roedelfe5913e2010-05-17 14:43:34 +02001993}
1994
1995static int mc_interception(struct vcpu_svm *svm)
1996{
Joerg Roedel53371b52008-04-09 14:15:30 +02001997 return 1;
1998}
1999
Avi Kivity851ba692009-08-24 11:10:17 +03002000static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002001{
Avi Kivity851ba692009-08-24 11:10:17 +03002002 struct kvm_run *kvm_run = svm->vcpu.run;
2003
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002004 /*
2005 * VMCB is undefined after a SHUTDOWN intercept
2006 * so reinitialize it.
2007 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002008 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002009 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002010
2011 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2012 return 0;
2013}
2014
Avi Kivity851ba692009-08-24 11:10:17 +03002015static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002016{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002017 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002018 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002019 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002020 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002021
Rusty Russelle756fc62007-07-30 20:07:08 +10002022 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002023 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002024 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002025 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002026 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002027
Avi Kivity039576c2007-03-20 12:46:50 +02002028 port = io_info >> 16;
2029 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002030 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002031
Sean Christophersondca7f122018-03-08 08:57:27 -08002032 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002033}
2034
Avi Kivity851ba692009-08-24 11:10:17 +03002035static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002036{
2037 return 1;
2038}
2039
Avi Kivity851ba692009-08-24 11:10:17 +03002040static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002041{
2042 ++svm->vcpu.stat.irq_exits;
2043 return 1;
2044}
2045
Avi Kivity851ba692009-08-24 11:10:17 +03002046static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002047{
2048 return 1;
2049}
2050
Avi Kivity851ba692009-08-24 11:10:17 +03002051static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002052{
Rusty Russelle756fc62007-07-30 20:07:08 +10002053 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002054}
2055
Avi Kivity851ba692009-08-24 11:10:17 +03002056static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002057{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002058 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002059}
2060
Avi Kivity851ba692009-08-24 11:10:17 +03002061static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01002062{
Joerg Roedel9966bf62009-08-07 11:49:40 +02002063 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002064 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002065 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002066
Alexander Graf55426752008-11-25 20:17:06 +01002067 if (nested_svm_check_permissions(svm))
2068 return 1;
2069
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002070 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
2071 if (ret) {
2072 if (ret == -EINVAL)
2073 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02002074 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002075 }
2076
2077 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002078
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002079 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02002080
Joerg Roedel9966bf62009-08-07 11:49:40 +02002081 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002082 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002083
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002084 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002085}
2086
Avi Kivity851ba692009-08-24 11:10:17 +03002087static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01002088{
Joerg Roedel9966bf62009-08-07 11:49:40 +02002089 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002090 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002091 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002092
Alexander Graf55426752008-11-25 20:17:06 +01002093 if (nested_svm_check_permissions(svm))
2094 return 1;
2095
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002096 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
2097 if (ret) {
2098 if (ret == -EINVAL)
2099 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02002100 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002101 }
2102
2103 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02002104
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002105 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02002106
Joerg Roedel9966bf62009-08-07 11:49:40 +02002107 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01002108 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01002109
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002110 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01002111}
2112
Avi Kivity851ba692009-08-24 11:10:17 +03002113static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01002114{
Alexander Graf3d6368e2008-11-25 20:17:07 +01002115 if (nested_svm_check_permissions(svm))
2116 return 1;
2117
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02002118 return nested_svm_vmrun(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002119}
2120
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002121void svm_set_gif(struct vcpu_svm *svm, bool value)
2122{
2123 if (value) {
2124 /*
2125 * If VGIF is enabled, the STGI intercept is only added to
2126 * detect the opening of the SMI/NMI window; remove it now.
2127 * Likewise, clear the VINTR intercept, we will set it
2128 * again while processing KVM_REQ_EVENT if needed.
2129 */
2130 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02002131 svm_clr_intercept(svm, INTERCEPT_STGI);
2132 if (svm_is_intercept(svm, INTERCEPT_VINTR))
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002133 svm_clear_vintr(svm);
2134
2135 enable_gif(svm);
2136 if (svm->vcpu.arch.smi_pending ||
2137 svm->vcpu.arch.nmi_pending ||
2138 kvm_cpu_has_injectable_intr(&svm->vcpu))
2139 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
2140 } else {
2141 disable_gif(svm);
2142
2143 /*
2144 * After a CLGI no interrupts should come. But if vGIF is
2145 * in use, we still rely on the VINTR intercept (rather than
2146 * STGI) to detect an open interrupt window.
2147 */
2148 if (!vgif_enabled(svm))
2149 svm_clear_vintr(svm);
2150 }
2151}
2152
Avi Kivity851ba692009-08-24 11:10:17 +03002153static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01002154{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002155 int ret;
2156
Alexander Graf1371d902008-11-25 20:17:04 +01002157 if (nested_svm_check_permissions(svm))
2158 return 1;
2159
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002160 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002161 svm_set_gif(svm, true);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002162 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002163}
2164
Avi Kivity851ba692009-08-24 11:10:17 +03002165static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01002166{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002167 int ret;
2168
Alexander Graf1371d902008-11-25 20:17:04 +01002169 if (nested_svm_check_permissions(svm))
2170 return 1;
2171
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002172 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Paolo Bonziniffdf7f92020-05-22 12:18:27 -04002173 svm_set_gif(svm, false);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002174 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01002175}
2176
Avi Kivity851ba692009-08-24 11:10:17 +03002177static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02002178{
2179 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02002180
Sean Christophersonde3cd112019-04-30 10:36:17 -07002181 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
2182 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02002183
Alexander Grafff092382009-06-15 15:21:24 +02002184 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07002185 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02002186
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002187 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02002188}
2189
Joerg Roedel532a46b2009-10-09 16:08:32 +02002190static int skinit_interception(struct vcpu_svm *svm)
2191{
Sean Christophersonde3cd112019-04-30 10:36:17 -07002192 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02002193
2194 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2195 return 1;
2196}
2197
David Kaplandab429a2015-03-02 13:43:37 -06002198static int wbinvd_interception(struct vcpu_svm *svm)
2199{
Kyle Huey6affcbe2016-11-29 12:40:40 -08002200 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06002201}
2202
Joerg Roedel81dd35d2010-12-07 17:15:06 +01002203static int xsetbv_interception(struct vcpu_svm *svm)
2204{
2205 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002206 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01002207
2208 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002209 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01002210 }
2211
2212 return 1;
2213}
2214
Jim Mattson0cb84102019-09-19 15:59:17 -07002215static int rdpru_interception(struct vcpu_svm *svm)
2216{
2217 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2218 return 1;
2219}
2220
Avi Kivity851ba692009-08-24 11:10:17 +03002221static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222{
Izik Eidus37817f22008-03-24 23:14:53 +02002223 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002224 int reason;
2225 int int_type = svm->vmcb->control.exit_int_info &
2226 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03002227 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002228 uint32_t type =
2229 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
2230 uint32_t idt_v =
2231 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02002232 bool has_error_code = false;
2233 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02002234
2235 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002236
Izik Eidus37817f22008-03-24 23:14:53 +02002237 if (svm->vmcb->control.exit_info_2 &
2238 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002239 reason = TASK_SWITCH_IRET;
2240 else if (svm->vmcb->control.exit_info_2 &
2241 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
2242 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002243 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002244 reason = TASK_SWITCH_GATE;
2245 else
2246 reason = TASK_SWITCH_CALL;
2247
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002248 if (reason == TASK_SWITCH_GATE) {
2249 switch (type) {
2250 case SVM_EXITINTINFO_TYPE_NMI:
2251 svm->vcpu.arch.nmi_injected = false;
2252 break;
2253 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02002254 if (svm->vmcb->control.exit_info_2 &
2255 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
2256 has_error_code = true;
2257 error_code =
2258 (u32)svm->vmcb->control.exit_info_2;
2259 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03002260 kvm_clear_exception_queue(&svm->vcpu);
2261 break;
2262 case SVM_EXITINTINFO_TYPE_INTR:
2263 kvm_clear_interrupt_queue(&svm->vcpu);
2264 break;
2265 default:
2266 break;
2267 }
2268 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002269
Gleb Natapov8317c292009-04-12 13:37:02 +03002270 if (reason != TASK_SWITCH_GATE ||
2271 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
2272 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002273 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002274 if (!skip_emulated_instruction(&svm->vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07002275 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02002276 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03002277
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01002278 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
2279 int_vec = -1;
2280
Sean Christopherson10517782019-08-27 14:40:35 -07002281 return kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002282 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002283}
2284
Avi Kivity851ba692009-08-24 11:10:17 +03002285static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002286{
Kyle Huey6a908b62016-11-29 12:40:37 -08002287 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288}
2289
Avi Kivity851ba692009-08-24 11:10:17 +03002290static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002291{
2292 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedela284ba52020-06-25 10:03:24 +02002293 svm_clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03002294 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02002295 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01002296 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002297 return 1;
2298}
2299
Tom Lendacky4bb05f32020-09-24 13:41:57 -05002300static int invd_interception(struct vcpu_svm *svm)
2301{
2302 /* Treat an INVD instruction as a NOP and just skip it. */
2303 return kvm_skip_emulated_instruction(&svm->vcpu);
2304}
2305
Avi Kivity851ba692009-08-24 11:10:17 +03002306static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03002307{
Andre Przywaradf4f31082010-12-21 11:12:06 +01002308 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002309 return kvm_emulate_instruction(&svm->vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01002310
2311 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002312 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002313}
2314
Avi Kivity851ba692009-08-24 11:10:17 +03002315static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002316{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002317 return kvm_emulate_instruction(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318}
2319
Brijesh Singh7607b712018-02-19 10:14:44 -06002320static int rsm_interception(struct vcpu_svm *svm)
2321{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002322 return kvm_emulate_instruction_from_buffer(&svm->vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06002323}
2324
Avi Kivity332b56e2011-11-10 14:57:24 +02002325static int rdpmc_interception(struct vcpu_svm *svm)
2326{
2327 int err;
2328
Paolo Bonzinid647eb62019-06-20 14:13:33 +02002329 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02002330 return emulate_on_interception(svm);
2331
2332 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08002333 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02002334}
2335
Xiubo Li52eb5a62015-03-13 17:39:45 +08002336static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
2337 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02002338{
2339 unsigned long cr0 = svm->vcpu.arch.cr0;
2340 bool ret = false;
Joerg Roedel628afd22011-04-04 12:39:36 +02002341
2342 if (!is_guest_mode(&svm->vcpu) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05002343 (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_SELECTIVE_CR0))))
Joerg Roedel628afd22011-04-04 12:39:36 +02002344 return false;
2345
2346 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
2347 val &= ~SVM_CR0_SELECTIVE_MASK;
2348
2349 if (cr0 ^ val) {
2350 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
2351 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
2352 }
2353
2354 return ret;
2355}
2356
Andre Przywara7ff76d52010-12-21 11:12:04 +01002357#define CR_VALID (1ULL << 63)
2358
2359static int cr_interception(struct vcpu_svm *svm)
2360{
2361 int reg, cr;
2362 unsigned long val;
2363 int err;
2364
2365 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
2366 return emulate_on_interception(svm);
2367
2368 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
2369 return emulate_on_interception(svm);
2370
2371 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06002372 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
2373 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
2374 else
2375 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01002376
2377 err = 0;
2378 if (cr >= 16) { /* mov to cr */
2379 cr -= 16;
2380 val = kvm_register_read(&svm->vcpu, reg);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002381 trace_kvm_cr_write(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002382 switch (cr) {
2383 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02002384 if (!check_selective_cr0_intercepted(svm, val))
2385 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02002386 else
2387 return 1;
2388
Andre Przywara7ff76d52010-12-21 11:12:04 +01002389 break;
2390 case 3:
2391 err = kvm_set_cr3(&svm->vcpu, val);
2392 break;
2393 case 4:
2394 err = kvm_set_cr4(&svm->vcpu, val);
2395 break;
2396 case 8:
2397 err = kvm_set_cr8(&svm->vcpu, val);
2398 break;
2399 default:
2400 WARN(1, "unhandled write to CR%d", cr);
2401 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2402 return 1;
2403 }
2404 } else { /* mov from cr */
2405 switch (cr) {
2406 case 0:
2407 val = kvm_read_cr0(&svm->vcpu);
2408 break;
2409 case 2:
2410 val = svm->vcpu.arch.cr2;
2411 break;
2412 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02002413 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002414 break;
2415 case 4:
2416 val = kvm_read_cr4(&svm->vcpu);
2417 break;
2418 case 8:
2419 val = kvm_get_cr8(&svm->vcpu);
2420 break;
2421 default:
2422 WARN(1, "unhandled read from CR%d", cr);
2423 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2424 return 1;
2425 }
2426 kvm_register_write(&svm->vcpu, reg, val);
Haiwei Li95b28ac2020-09-04 19:25:29 +08002427 trace_kvm_cr_read(cr, val);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002428 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08002429 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01002430}
2431
Andre Przywaracae37972010-12-21 11:12:05 +01002432static int dr_interception(struct vcpu_svm *svm)
2433{
2434 int reg, dr;
2435 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01002436
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002437 if (svm->vcpu.guest_debug == 0) {
2438 /*
2439 * No more DR vmexits; force a reload of the debug registers
2440 * and reenter on this instruction. The next vmexit will
2441 * retrieve the full state of the debug registers.
2442 */
2443 clr_dr_intercepts(svm);
2444 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
2445 return 1;
2446 }
2447
Andre Przywaracae37972010-12-21 11:12:05 +01002448 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
2449 return emulate_on_interception(svm);
2450
2451 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
2452 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
2453
2454 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03002455 if (!kvm_require_dr(&svm->vcpu, dr - 16))
2456 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01002457 val = kvm_register_read(&svm->vcpu, reg);
2458 kvm_set_dr(&svm->vcpu, dr - 16, val);
2459 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03002460 if (!kvm_require_dr(&svm->vcpu, dr))
2461 return 1;
2462 kvm_get_dr(&svm->vcpu, dr, &val);
2463 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01002464 }
2465
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002466 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01002467}
2468
Avi Kivity851ba692009-08-24 11:10:17 +03002469static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01002470{
Avi Kivity851ba692009-08-24 11:10:17 +03002471 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01002472 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03002473
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002474 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
2475 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01002476 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02002477 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002478 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002479 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01002480 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01002481 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2482 return 0;
2483}
2484
Tom Lendacky801e4592018-02-21 13:39:51 -06002485static int svm_get_msr_feature(struct kvm_msr_entry *msr)
2486{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002487 msr->data = 0;
2488
2489 switch (msr->index) {
2490 case MSR_F10H_DECFG:
2491 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
2492 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
2493 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002494 case MSR_IA32_PERF_CAPABILITIES:
2495 return 0;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002496 default:
Peter Xu12bc2132020-06-22 18:04:42 -04002497 return KVM_MSR_RET_INVALID;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002498 }
2499
2500 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06002501}
2502
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002503static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002505 struct vcpu_svm *svm = to_svm(vcpu);
2506
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002507 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04002508 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002509 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08002511#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002512 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002513 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514 break;
2515 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002516 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002517 break;
2518 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002519 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520 break;
2521 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002522 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523 break;
2524#endif
2525 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002526 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002527 break;
2528 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002529 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530 break;
2531 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002532 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002534 case MSR_TSC_AUX:
2535 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2536 return 1;
2537 msr_info->data = svm->tsc_aux;
2538 break;
Joerg Roedele0231712010-02-24 18:59:10 +01002539 /*
2540 * Nobody will change the following 5 values in the VMCB so we can
2541 * safely return them on rdmsr. They will always be 0 until LBRV is
2542 * implemented.
2543 */
Joerg Roedela2938c82008-02-13 16:30:28 +01002544 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002545 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01002546 break;
2547 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002548 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002549 break;
2550 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002551 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002552 break;
2553 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002554 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01002555 break;
2556 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002557 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01002558 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002559 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002560 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002561 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002562 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002563 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01002564 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002565 case MSR_IA32_SPEC_CTRL:
2566 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002567 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002568 return 1;
2569
2570 msr_info->data = svm->spec_ctrl;
2571 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002572 case MSR_AMD64_VIRT_SPEC_CTRL:
2573 if (!msr_info->host_initiated &&
2574 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2575 return 1;
2576
2577 msr_info->data = svm->virt_spec_ctrl;
2578 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01002579 case MSR_F15H_IC_CFG: {
2580
2581 int family, model;
2582
2583 family = guest_cpuid_family(vcpu);
2584 model = guest_cpuid_model(vcpu);
2585
2586 if (family < 0 || model < 0)
2587 return kvm_get_msr_common(vcpu, msr_info);
2588
2589 msr_info->data = 0;
2590
2591 if (family == 0x15 &&
2592 (model >= 0x2 && model < 0x20))
2593 msr_info->data = 0x1E;
2594 }
2595 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002596 case MSR_F10H_DECFG:
2597 msr_info->data = svm->msr_decfg;
2598 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002599 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002600 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 }
2602 return 0;
2603}
2604
Tom Lendackyf1c63662020-12-14 10:29:50 -05002605static int svm_complete_emulated_msr(struct kvm_vcpu *vcpu, int err)
2606{
2607 struct vcpu_svm *svm = to_svm(vcpu);
2608 if (!sev_es_guest(svm->vcpu.kvm) || !err)
2609 return kvm_complete_insn_gp(&svm->vcpu, err);
2610
2611 ghcb_set_sw_exit_info_1(svm->ghcb, 1);
2612 ghcb_set_sw_exit_info_2(svm->ghcb,
2613 X86_TRAP_GP |
2614 SVM_EVTINJ_TYPE_EXEPT |
2615 SVM_EVTINJ_VALID);
2616 return 1;
2617}
2618
Avi Kivity851ba692009-08-24 11:10:17 +03002619static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002620{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07002621 return kvm_emulate_rdmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002622}
2623
Joerg Roedel4a810182010-02-24 18:59:15 +01002624static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
2625{
2626 struct vcpu_svm *svm = to_svm(vcpu);
2627 int svm_dis, chg_mask;
2628
2629 if (data & ~SVM_VM_CR_VALID_MASK)
2630 return 1;
2631
2632 chg_mask = SVM_VM_CR_VALID_MASK;
2633
2634 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
2635 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
2636
2637 svm->nested.vm_cr_msr &= ~chg_mask;
2638 svm->nested.vm_cr_msr |= (data & chg_mask);
2639
2640 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
2641
2642 /* check for svm_disable while efer.svme is set */
2643 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
2644 return 1;
2645
2646 return 0;
2647}
2648
Will Auld8fe8ab42012-11-29 12:42:12 -08002649static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002651 struct vcpu_svm *svm = to_svm(vcpu);
2652
Will Auld8fe8ab42012-11-29 12:42:12 -08002653 u32 ecx = msr->index;
2654 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02002656 case MSR_IA32_CR_PAT:
2657 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2658 return 1;
2659 vcpu->arch.pat = data;
2660 svm->vmcb->save.g_pat = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002661 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Paolo Bonzini15038e12017-10-26 09:13:27 +02002662 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002663 case MSR_IA32_SPEC_CTRL:
2664 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002665 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002666 return 1;
2667
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002668 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002669 return 1;
2670
2671 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002672 if (!data)
2673 break;
2674
2675 /*
2676 * For non-nested:
2677 * When it's written (to non-zero) for the first time, pass
2678 * it through.
2679 *
2680 * For nested:
2681 * The handling of the MSR bitmap for L2 guests is done in
2682 * nested_svm_vmrun_msrpm.
2683 * We update the L1 MSR bit as well since it will end up
2684 * touching the MSR anyway now.
2685 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002686 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002687 break;
Ashok Raj15d45072018-02-01 22:59:43 +01002688 case MSR_IA32_PRED_CMD:
2689 if (!msr->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002690 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002691 return 1;
2692
2693 if (data & ~PRED_CMD_IBPB)
2694 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002695 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002696 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002697 if (!data)
2698 break;
2699
2700 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002701 set_msr_interception(vcpu, svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
Ashok Raj15d45072018-02-01 22:59:43 +01002702 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02002703 case MSR_AMD64_VIRT_SPEC_CTRL:
2704 if (!msr->host_initiated &&
2705 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
2706 return 1;
2707
2708 if (data & ~SPEC_CTRL_SSBD)
2709 return 1;
2710
2711 svm->virt_spec_ctrl = data;
2712 break;
Brian Gerst8c065852010-07-17 09:03:26 -04002713 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002714 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08002716#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002718 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719 break;
2720 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002721 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002722 break;
2723 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002724 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002725 break;
2726 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002727 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002728 break;
2729#endif
2730 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002731 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732 break;
2733 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02002734 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002735 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736 break;
2737 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02002738 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002739 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002740 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01002741 case MSR_TSC_AUX:
2742 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
2743 return 1;
2744
2745 /*
2746 * This is rare, so we update the MSR here instead of using
2747 * direct_access_msrs. Doing that would require a rdmsr in
2748 * svm_vcpu_put.
2749 */
2750 svm->tsc_aux = data;
2751 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
2752 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01002753 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02002754 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002755 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
2756 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002757 break;
2758 }
2759 if (data & DEBUGCTL_RESERVED_BITS)
2760 return 1;
2761
2762 svm->vmcb->save.dbgctl = data;
Joerg Roedel06e78522020-06-25 10:03:23 +02002763 vmcb_mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002764 if (data & (1ULL<<0))
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002765 svm_enable_lbrv(vcpu);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01002766 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002767 svm_disable_lbrv(vcpu);
Joerg Roedela2938c82008-02-13 16:30:28 +01002768 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002769 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002770 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002771 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002772 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01002773 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002774 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03002775 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02002776 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01002777 case MSR_F10H_DECFG: {
2778 struct kvm_msr_entry msr_entry;
2779
2780 msr_entry.index = msr->index;
2781 if (svm_get_msr_feature(&msr_entry))
2782 return 1;
2783
2784 /* Check the supported bits */
2785 if (data & ~msr_entry.data)
2786 return 1;
2787
2788 /* Don't allow the guest to change a bit, #GP */
2789 if (!msr->host_initiated && (data ^ msr_entry.data))
2790 return 1;
2791
2792 svm->msr_decfg = data;
2793 break;
2794 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002795 case MSR_IA32_APICBASE:
2796 if (kvm_vcpu_apicv_active(vcpu))
2797 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002798 fallthrough;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08002800 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801 }
2802 return 0;
2803}
2804
Avi Kivity851ba692009-08-24 11:10:17 +03002805static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07002807 return kvm_emulate_wrmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808}
2809
Avi Kivity851ba692009-08-24 11:10:17 +03002810static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811{
Rusty Russelle756fc62007-07-30 20:07:08 +10002812 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03002813 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814 else
Avi Kivity851ba692009-08-24 11:10:17 +03002815 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816}
2817
Avi Kivity851ba692009-08-24 11:10:17 +03002818static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08002819{
Avi Kivity3842d132010-07-27 12:30:24 +03002820 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01002821 svm_clear_vintr(svm);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06002822
2823 /*
2824 * For AVIC, the only reason to end up here is ExtINTs.
2825 * In this case AVIC was temporarily disabled for
2826 * requesting the IRQ window and we have to re-enable it.
2827 */
2828 svm_toggle_avic_for_irq_window(&svm->vcpu, true);
2829
Jason Wang675acb72012-03-08 18:07:56 +08002830 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002831 return 1;
2832}
2833
Mark Langsdorf565d0992009-10-06 14:25:02 -05002834static int pause_interception(struct vcpu_svm *svm)
2835{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002836 struct kvm_vcpu *vcpu = &svm->vcpu;
Tom Lendackyf1c63662020-12-14 10:29:50 -05002837 bool in_kernel;
2838
2839 /*
2840 * CPL is not made available for an SEV-ES guest, therefore
2841 * vcpu->arch.preempted_in_kernel can never be true. Just
2842 * set in_kernel to false as well.
2843 */
2844 in_kernel = !sev_es_guest(svm->vcpu.kvm) && svm_get_cpl(vcpu) == 0;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002845
Wanpeng Li830f01b2020-07-31 11:12:21 +08002846 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04002847 grow_ple_window(vcpu);
2848
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08002849 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05002850 return 1;
2851}
2852
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04002853static int nop_interception(struct vcpu_svm *svm)
2854{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02002855 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04002856}
2857
2858static int monitor_interception(struct vcpu_svm *svm)
2859{
2860 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
2861 return nop_interception(svm);
2862}
2863
2864static int mwait_interception(struct vcpu_svm *svm)
2865{
2866 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
2867 return nop_interception(svm);
2868}
2869
Babu Moger4407a792020-09-11 14:29:19 -05002870static int invpcid_interception(struct vcpu_svm *svm)
2871{
2872 struct kvm_vcpu *vcpu = &svm->vcpu;
2873 unsigned long type;
2874 gva_t gva;
2875
2876 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
2877 kvm_queue_exception(vcpu, UD_VECTOR);
2878 return 1;
2879 }
2880
2881 /*
2882 * For an INVPCID intercept:
2883 * EXITINFO1 provides the linear address of the memory operand.
2884 * EXITINFO2 provides the contents of the register operand.
2885 */
2886 type = svm->vmcb->control.exit_info_2;
2887 gva = svm->vmcb->control.exit_info_1;
2888
2889 if (type > 3) {
2890 kvm_inject_gp(vcpu, 0);
2891 return 1;
2892 }
2893
2894 return kvm_handle_invpcid(vcpu, type, gva);
2895}
2896
Mathias Krause09941fb2012-08-30 01:30:20 +02002897static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01002898 [SVM_EXIT_READ_CR0] = cr_interception,
2899 [SVM_EXIT_READ_CR3] = cr_interception,
2900 [SVM_EXIT_READ_CR4] = cr_interception,
2901 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06002902 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02002903 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01002904 [SVM_EXIT_WRITE_CR3] = cr_interception,
2905 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002906 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01002907 [SVM_EXIT_READ_DR0] = dr_interception,
2908 [SVM_EXIT_READ_DR1] = dr_interception,
2909 [SVM_EXIT_READ_DR2] = dr_interception,
2910 [SVM_EXIT_READ_DR3] = dr_interception,
2911 [SVM_EXIT_READ_DR4] = dr_interception,
2912 [SVM_EXIT_READ_DR5] = dr_interception,
2913 [SVM_EXIT_READ_DR6] = dr_interception,
2914 [SVM_EXIT_READ_DR7] = dr_interception,
2915 [SVM_EXIT_WRITE_DR0] = dr_interception,
2916 [SVM_EXIT_WRITE_DR1] = dr_interception,
2917 [SVM_EXIT_WRITE_DR2] = dr_interception,
2918 [SVM_EXIT_WRITE_DR3] = dr_interception,
2919 [SVM_EXIT_WRITE_DR4] = dr_interception,
2920 [SVM_EXIT_WRITE_DR5] = dr_interception,
2921 [SVM_EXIT_WRITE_DR6] = dr_interception,
2922 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002923 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
2924 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002925 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002926 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002927 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01002928 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02002929 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002930 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02002931 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932 [SVM_EXIT_SMI] = nop_on_interception,
2933 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08002934 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02002935 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002936 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002937 [SVM_EXIT_IRET] = iret_interception,
Tom Lendacky4bb05f32020-09-24 13:41:57 -05002938 [SVM_EXIT_INVD] = invd_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05002939 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03002941 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02002942 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01002943 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944 [SVM_EXIT_MSR] = msr_interception,
2945 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002946 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01002947 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02002948 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01002949 [SVM_EXIT_VMLOAD] = vmload_interception,
2950 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01002951 [SVM_EXIT_STGI] = stgi_interception,
2952 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02002953 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06002954 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04002955 [SVM_EXIT_MONITOR] = monitor_interception,
2956 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01002957 [SVM_EXIT_XSETBV] = xsetbv_interception,
Jim Mattson0cb84102019-09-19 15:59:17 -07002958 [SVM_EXIT_RDPRU] = rdpru_interception,
Babu Moger4407a792020-09-11 14:29:19 -05002959 [SVM_EXIT_INVPCID] = invpcid_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002960 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06002961 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05002962 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
2963 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002964};
2965
Joe Perchesae8cc052011-04-24 22:00:50 -07002966static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02002967{
2968 struct vcpu_svm *svm = to_svm(vcpu);
2969 struct vmcb_control_area *control = &svm->vmcb->control;
2970 struct vmcb_save_area *save = &svm->vmcb->save;
2971
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02002972 if (!dump_invalid_vmcb) {
2973 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
2974 return;
2975 }
2976
Joerg Roedel3f10c842010-05-05 16:04:42 +02002977 pr_err("VMCB Control Area:\n");
Babu Moger03bfeeb2020-09-11 14:28:05 -05002978 pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
2979 pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
Babu Moger30abaa882020-09-11 14:28:12 -05002980 pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
2981 pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
Babu Moger9780d512020-09-11 14:28:20 -05002982 pr_err("%-20s%08x\n", "exceptions:", control->intercepts[INTERCEPT_EXCEPTION]);
Babu Mogerc62e2e92020-09-11 14:28:28 -05002983 pr_err("%-20s%08x %08x\n", "intercepts:",
2984 control->intercepts[INTERCEPT_WORD3],
2985 control->intercepts[INTERCEPT_WORD4]);
Joe Perchesae8cc052011-04-24 22:00:50 -07002986 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04002987 pr_err("%-20s%d\n", "pause filter threshold:",
2988 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07002989 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
2990 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
2991 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
2992 pr_err("%-20s%d\n", "asid:", control->asid);
2993 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
2994 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
2995 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
2996 pr_err("%-20s%08x\n", "int_state:", control->int_state);
2997 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
2998 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
2999 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
3000 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
3001 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
3002 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
3003 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003004 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07003005 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
3006 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003007 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07003008 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05003009 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
3010 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
3011 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003012 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07003013 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3014 "es:",
3015 save->es.selector, save->es.attrib,
3016 save->es.limit, save->es.base);
3017 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3018 "cs:",
3019 save->cs.selector, save->cs.attrib,
3020 save->cs.limit, save->cs.base);
3021 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3022 "ss:",
3023 save->ss.selector, save->ss.attrib,
3024 save->ss.limit, save->ss.base);
3025 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3026 "ds:",
3027 save->ds.selector, save->ds.attrib,
3028 save->ds.limit, save->ds.base);
3029 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3030 "fs:",
3031 save->fs.selector, save->fs.attrib,
3032 save->fs.limit, save->fs.base);
3033 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3034 "gs:",
3035 save->gs.selector, save->gs.attrib,
3036 save->gs.limit, save->gs.base);
3037 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3038 "gdtr:",
3039 save->gdtr.selector, save->gdtr.attrib,
3040 save->gdtr.limit, save->gdtr.base);
3041 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3042 "ldtr:",
3043 save->ldtr.selector, save->ldtr.attrib,
3044 save->ldtr.limit, save->ldtr.base);
3045 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3046 "idtr:",
3047 save->idtr.selector, save->idtr.attrib,
3048 save->idtr.limit, save->idtr.base);
3049 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
3050 "tr:",
3051 save->tr.selector, save->tr.attrib,
3052 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003053 pr_err("cpl: %d efer: %016llx\n",
3054 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07003055 pr_err("%-15s %016llx %-13s %016llx\n",
3056 "cr0:", save->cr0, "cr2:", save->cr2);
3057 pr_err("%-15s %016llx %-13s %016llx\n",
3058 "cr3:", save->cr3, "cr4:", save->cr4);
3059 pr_err("%-15s %016llx %-13s %016llx\n",
3060 "dr6:", save->dr6, "dr7:", save->dr7);
3061 pr_err("%-15s %016llx %-13s %016llx\n",
3062 "rip:", save->rip, "rflags:", save->rflags);
3063 pr_err("%-15s %016llx %-13s %016llx\n",
3064 "rsp:", save->rsp, "rax:", save->rax);
3065 pr_err("%-15s %016llx %-13s %016llx\n",
3066 "star:", save->star, "lstar:", save->lstar);
3067 pr_err("%-15s %016llx %-13s %016llx\n",
3068 "cstar:", save->cstar, "sfmask:", save->sfmask);
3069 pr_err("%-15s %016llx %-13s %016llx\n",
3070 "kernel_gs_base:", save->kernel_gs_base,
3071 "sysenter_cs:", save->sysenter_cs);
3072 pr_err("%-15s %016llx %-13s %016llx\n",
3073 "sysenter_esp:", save->sysenter_esp,
3074 "sysenter_eip:", save->sysenter_eip);
3075 pr_err("%-15s %016llx %-13s %016llx\n",
3076 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
3077 pr_err("%-15s %016llx %-13s %016llx\n",
3078 "br_from:", save->br_from, "br_to:", save->br_to);
3079 pr_err("%-15s %016llx %-13s %016llx\n",
3080 "excp_from:", save->last_excp_from,
3081 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02003082}
3083
Sean Christopherson235ba742020-09-23 13:13:46 -07003084static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
3085 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02003086{
3087 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
3088
3089 *info1 = control->exit_info_1;
3090 *info2 = control->exit_info_2;
Sean Christopherson235ba742020-09-23 13:13:46 -07003091 *intr_info = control->exit_int_info;
3092 if ((*intr_info & SVM_EXITINTINFO_VALID) &&
3093 (*intr_info & SVM_EXITINTINFO_VALID_ERR))
3094 *error_code = control->exit_int_info_err;
3095 else
3096 *error_code = 0;
Avi Kivity586f9602010-11-18 13:09:54 +02003097}
3098
Wanpeng Li404d5d72020-04-28 14:23:25 +08003099static int handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003100{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003101 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003102 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003103 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003104
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01003105 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
3106
Tom Lendackyf1c63662020-12-14 10:29:50 -05003107 /* SEV-ES guests must use the CR write traps to track CR registers. */
3108 if (!sev_es_guest(vcpu->kvm)) {
3109 if (!svm_is_intercept(svm, INTERCEPT_CR0_WRITE))
3110 vcpu->arch.cr0 = svm->vmcb->save.cr0;
3111 if (npt_enabled)
3112 vcpu->arch.cr3 = svm->vmcb->save.cr3;
3113 }
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02003114
Joerg Roedel20307532010-11-29 17:51:48 +01003115 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02003116 int vmexit;
3117
Sean Christophersoncc167bd2020-09-23 13:13:48 -07003118 trace_kvm_nested_vmexit(exit_code, vcpu, KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02003119
Joerg Roedel410e4d52009-08-07 11:49:44 +02003120 vmexit = nested_svm_exit_special(svm);
3121
3122 if (vmexit == NESTED_EXIT_CONTINUE)
3123 vmexit = nested_svm_exit_handled(svm);
3124
3125 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01003126 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01003127 }
3128
Avi Kivity04d2cc72007-09-10 18:10:54 +03003129 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
3130 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3131 kvm_run->fail_entry.hardware_entry_failure_reason
3132 = svm->vmcb->control.exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003133 kvm_run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Joerg Roedel3f10c842010-05-05 16:04:42 +02003134 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003135 return 0;
3136 }
3137
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003138 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01003139 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02003140 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
3141 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02003142 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003144 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003145 exit_code);
3146
Wanpeng Li404d5d72020-04-28 14:23:25 +08003147 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08003148 return 1;
Wanpeng Li404d5d72020-04-28 14:23:25 +08003149
3150 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08003151 || !svm_exit_handlers[exit_code]) {
Liran Alon7396d332019-08-26 13:16:43 +03003152 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%x\n", exit_code);
3153 dump_vmcb(vcpu);
3154 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3155 vcpu->run->internal.suberror =
3156 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07003157 vcpu->run->internal.ndata = 2;
Liran Alon7396d332019-08-26 13:16:43 +03003158 vcpu->run->internal.data[0] = exit_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07003159 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Liran Alon7396d332019-08-26 13:16:43 +03003160 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003161 }
3162
Andrea Arcangeli3dcb2a32019-11-04 18:00:00 -05003163#ifdef CONFIG_RETPOLINE
3164 if (exit_code == SVM_EXIT_MSR)
3165 return msr_interception(svm);
3166 else if (exit_code == SVM_EXIT_VINTR)
3167 return interrupt_window_interception(svm);
3168 else if (exit_code == SVM_EXIT_INTR)
3169 return intr_interception(svm);
3170 else if (exit_code == SVM_EXIT_HLT)
3171 return halt_interception(svm);
3172 else if (exit_code == SVM_EXIT_NPF)
3173 return npf_interception(svm);
3174#endif
Avi Kivity851ba692009-08-24 11:10:17 +03003175 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003176}
3177
3178static void reload_tss(struct kvm_vcpu *vcpu)
3179{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003180 struct svm_cpu_data *sd = per_cpu(svm_data, vcpu->cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003181
Tejun Heo0fe1e002009-10-29 22:34:14 +09003182 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003183 load_TR_desc();
3184}
3185
Rusty Russelle756fc62007-07-30 20:07:08 +10003186static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003187{
Jim Mattson73cd6e52020-06-03 16:56:18 -07003188 struct svm_cpu_data *sd = per_cpu(svm_data, svm->vcpu.cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003189
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003190 if (sev_guest(svm->vcpu.kvm))
Jim Mattson73cd6e52020-06-03 16:56:18 -07003191 return pre_sev_run(svm, svm->vcpu.cpu);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06003192
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03003193 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09003194 if (svm->asid_generation != sd->asid_generation)
3195 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196}
3197
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003198static void svm_inject_nmi(struct kvm_vcpu *vcpu)
3199{
3200 struct vcpu_svm *svm = to_svm(vcpu);
3201
3202 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
3203 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02003204 svm_set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003205 ++vcpu->stat.nmi_injections;
3206}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003207
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003208static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03003209{
3210 struct vcpu_svm *svm = to_svm(vcpu);
3211
Joerg Roedel2af91942009-08-07 11:49:28 +02003212 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01003213
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03003214 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
3215 ++vcpu->stat.irq_injections;
3216
Alexander Graf219b65d2009-06-15 15:21:25 +02003217 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
3218 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03003219}
3220
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003221static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
3222{
3223 struct vcpu_svm *svm = to_svm(vcpu);
3224
Tom Lendackyf1c63662020-12-14 10:29:50 -05003225 /*
3226 * SEV-ES guests must always keep the CR intercepts cleared. CR
3227 * tracking is done using the CR write traps.
3228 */
3229 if (sev_es_guest(vcpu->kvm))
3230 return;
3231
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003232 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003233 return;
3234
Babu Moger830bd712020-09-11 14:28:50 -05003235 svm_clr_intercept(svm, INTERCEPT_CR8_WRITE);
Radim Krčmář596f3142014-03-11 19:11:18 +01003236
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003237 if (irr == -1)
3238 return;
3239
3240 if (tpr >= irr)
Babu Moger830bd712020-09-11 14:28:50 -05003241 svm_set_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003242}
3243
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003244bool svm_nmi_blocked(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003245{
3246 struct vcpu_svm *svm = to_svm(vcpu);
3247 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson88c604b2020-04-22 19:25:41 -07003248 bool ret;
Cathy Avery9c3d3702020-04-14 16:11:06 -04003249
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003250 if (!gif_set(svm))
Paolo Bonzinibbdad0b2020-04-23 08:06:43 -04003251 return true;
3252
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003253 if (is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
3254 return false;
3255
3256 ret = (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
3257 (svm->vcpu.arch.hflags & HF_NMI_MASK);
Joerg Roedel924584c2010-04-22 12:33:07 +02003258
3259 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02003260}
3261
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003262static int svm_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003263{
3264 struct vcpu_svm *svm = to_svm(vcpu);
3265 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003266 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003267
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003268 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
3269 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003270 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003271
3272 return !svm_nmi_blocked(vcpu);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003273}
3274
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003275static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
3276{
3277 struct vcpu_svm *svm = to_svm(vcpu);
3278
3279 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
3280}
3281
3282static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3283{
3284 struct vcpu_svm *svm = to_svm(vcpu);
3285
3286 if (masked) {
3287 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02003288 svm_set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003289 } else {
3290 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedela284ba52020-06-25 10:03:24 +02003291 svm_clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003292 }
3293}
3294
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003295bool svm_interrupt_blocked(struct kvm_vcpu *vcpu)
Gleb Natapov78646122009-03-23 12:12:11 +02003296{
3297 struct vcpu_svm *svm = to_svm(vcpu);
3298 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003299
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003300 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003301 return true;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02003302
Tom Lendackyf1c63662020-12-14 10:29:50 -05003303 if (sev_es_guest(svm->vcpu.kvm)) {
3304 /*
3305 * SEV-ES guests to not expose RFLAGS. Use the VMCB interrupt mask
3306 * bit to determine the state of the IF flag.
3307 */
3308 if (!(vmcb->control.int_state & SVM_GUEST_INTERRUPT_MASK))
3309 return true;
3310 } else if (is_guest_mode(vcpu)) {
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003311 /* As long as interrupts are being delivered... */
Paolo Bonzinie9fd7612020-05-13 13:28:23 -04003312 if ((svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK)
Paolo Bonzini08245e62020-05-19 09:21:04 -04003313 ? !(svm->nested.hsave->save.rflags & X86_EFLAGS_IF)
Paolo Bonzinifc6f7c02020-04-23 18:02:45 -04003314 : !(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3315 return true;
3316
3317 /* ... vmexits aren't blocked by the interrupt shadow */
3318 if (nested_exit_on_intr(svm))
3319 return false;
3320 } else {
3321 if (!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF))
3322 return true;
3323 }
3324
3325 return (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK);
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003326}
3327
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003328static int svm_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003329{
3330 struct vcpu_svm *svm = to_svm(vcpu);
3331 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003332 return -EBUSY;
Paolo Bonzinicae96af2020-04-23 14:19:26 -04003333
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003334 /*
3335 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
3336 * e.g. if the IRQ arrived asynchronously after checking nested events.
3337 */
3338 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04003339 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04003340
3341 return !svm_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02003342}
3343
Jan Kiszkac9a79532014-03-07 20:03:15 +01003344static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03003345{
Alexander Graf219b65d2009-06-15 15:21:25 +02003346 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02003347
Joerg Roedele0231712010-02-24 18:59:10 +01003348 /*
3349 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
3350 * 1, because that's a separate STGI/VMRUN intercept. The next time we
3351 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003352 * we'll get the vintr intercept. However, if the vGIF feature is
3353 * enabled, the STGI interception will not occur. Enable the irq
3354 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01003355 */
Paolo Bonzinib518ba92020-03-04 16:46:47 -05003356 if (vgif_enabled(svm) || gif_set(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06003357 /*
3358 * IRQ window is not needed when AVIC is enabled,
3359 * unless we have pending ExtINT since it cannot be injected
3360 * via AVIC. In such case, we need to temporarily disable AVIC,
3361 * and fallback to injecting IRQ via V_IRQ.
3362 */
3363 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02003364 svm_set_vintr(svm);
Alexander Graf219b65d2009-06-15 15:21:25 +02003365 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003366}
3367
Jan Kiszkac9a79532014-03-07 20:03:15 +01003368static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369{
Avi Kivity04d2cc72007-09-10 18:10:54 +03003370 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003371
Gleb Natapov44c11432009-05-11 13:35:52 +03003372 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
3373 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01003374 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03003375
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003376 if (!gif_set(svm)) {
3377 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02003378 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003379 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003380 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02003381
Joerg Roedele0231712010-02-24 18:59:10 +01003382 /*
3383 * Something prevents NMI from been injected. Single step over possible
3384 * problem (IRET or exception injection or interrupt shadow)
3385 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003386 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02003387 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03003388 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03003389}
3390
Izik Eiduscbc94022007-10-25 00:29:55 +02003391static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
3392{
3393 return 0;
3394}
3395
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07003396static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
3397{
3398 return 0;
3399}
3400
Sean Christophersonf55ac302020-03-20 14:28:12 -07003401void svm_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivityd9e368d2007-06-07 19:18:30 +03003402{
Joerg Roedel38e5e922010-12-03 15:25:16 +01003403 struct vcpu_svm *svm = to_svm(vcpu);
3404
Sean Christopherson4a41e432020-03-20 14:28:17 -07003405 /*
3406 * Flush only the current ASID even if the TLB flush was invoked via
3407 * kvm_flush_remote_tlbs(). Although flushing remote TLBs requires all
3408 * ASIDs to be flushed, KVM uses a single ASID for L1 and L2, and
3409 * unconditionally does a TLB flush on both nested VM-Enter and nested
3410 * VM-Exit (via kvm_mmu_reset_context()).
3411 */
Joerg Roedel38e5e922010-12-03 15:25:16 +01003412 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
3413 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
3414 else
3415 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03003416}
3417
Junaid Shahidfaff8752018-06-29 13:10:05 -07003418static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
3419{
3420 struct vcpu_svm *svm = to_svm(vcpu);
3421
3422 invlpga(gva, svm->vmcb->control.asid);
3423}
3424
Avi Kivity04d2cc72007-09-10 18:10:54 +03003425static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
3426{
3427}
3428
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003429static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
3430{
3431 struct vcpu_svm *svm = to_svm(vcpu);
3432
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003433 if (nested_svm_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003434 return;
3435
Babu Moger830bd712020-09-11 14:28:50 -05003436 if (!svm_is_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003437 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03003438 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003439 }
3440}
3441
Joerg Roedel649d6862008-04-16 16:51:15 +02003442static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
3443{
3444 struct vcpu_svm *svm = to_svm(vcpu);
3445 u64 cr8;
3446
Joerg Roedel01c3b2b2020-06-25 10:03:25 +02003447 if (nested_svm_virtualize_tpr(vcpu) ||
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05003448 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003449 return;
3450
Joerg Roedel649d6862008-04-16 16:51:15 +02003451 cr8 = kvm_get_cr8(vcpu);
3452 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
3453 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
3454}
3455
Gleb Natapov9222be12009-04-23 17:14:37 +03003456static void svm_complete_interrupts(struct vcpu_svm *svm)
3457{
3458 u8 vector;
3459 int type;
3460 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01003461 unsigned int3_injected = svm->int3_injected;
3462
3463 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03003464
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003465 /*
3466 * If we've made progress since setting HF_IRET_MASK, we've
3467 * executed an IRET and can allow NMI injection.
3468 */
3469 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
3470 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03003471 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03003472 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3473 }
Gleb Natapov44c11432009-05-11 13:35:52 +03003474
Gleb Natapov9222be12009-04-23 17:14:37 +03003475 svm->vcpu.arch.nmi_injected = false;
3476 kvm_clear_exception_queue(&svm->vcpu);
3477 kvm_clear_interrupt_queue(&svm->vcpu);
3478
3479 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
3480 return;
3481
Avi Kivity3842d132010-07-27 12:30:24 +03003482 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
3483
Gleb Natapov9222be12009-04-23 17:14:37 +03003484 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
3485 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
3486
3487 switch (type) {
3488 case SVM_EXITINTINFO_TYPE_NMI:
3489 svm->vcpu.arch.nmi_injected = true;
3490 break;
3491 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01003492 /*
Tom Lendackyf1c63662020-12-14 10:29:50 -05003493 * Never re-inject a #VC exception.
3494 */
3495 if (vector == X86_TRAP_VC)
3496 break;
3497
3498 /*
Jan Kiszka66b71382010-02-23 17:47:56 +01003499 * In case of software exceptions, do not reinject the vector,
3500 * but re-execute the instruction instead. Rewind RIP first
3501 * if we emulated INT3 before.
3502 */
3503 if (kvm_exception_is_soft(vector)) {
3504 if (vector == BP_VECTOR && int3_injected &&
3505 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
3506 kvm_rip_write(&svm->vcpu,
3507 kvm_rip_read(&svm->vcpu) -
3508 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02003509 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01003510 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003511 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
3512 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02003513 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03003514
3515 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02003516 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03003517 break;
3518 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003519 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03003520 break;
3521 default:
3522 break;
3523 }
3524}
3525
Avi Kivityb463a6f2010-07-20 15:06:17 +03003526static void svm_cancel_injection(struct kvm_vcpu *vcpu)
3527{
3528 struct vcpu_svm *svm = to_svm(vcpu);
3529 struct vmcb_control_area *control = &svm->vmcb->control;
3530
3531 control->exit_int_info = control->event_inj;
3532 control->exit_int_info_err = control->event_inj_err;
3533 control->event_inj = 0;
3534 svm_complete_interrupts(svm);
3535}
3536
Wanpeng Li404d5d72020-04-28 14:23:25 +08003537static fastpath_t svm_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003538{
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003539 if (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR &&
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07003540 to_svm(vcpu)->vmcb->control.exit_info_1)
3541 return handle_fastpath_set_msr_irqoff(vcpu);
3542
3543 return EXIT_FASTPATH_NONE;
3544}
3545
Uros Bizjak56a87e52020-04-09 13:49:26 +02003546void __svm_vcpu_run(unsigned long vmcb_pa, unsigned long *regs);
Uros Bizjak199cd1d2020-03-30 15:02:13 +02003547
Thomas Gleixner135961e2020-07-08 21:51:58 +02003548static noinstr void svm_vcpu_enter_exit(struct kvm_vcpu *vcpu,
3549 struct vcpu_svm *svm)
3550{
3551 /*
3552 * VMENTER enables interrupts (host state), but the kernel state is
3553 * interrupts disabled when this is invoked. Also tell RCU about
3554 * it. This is the same logic as for exit_to_user_mode().
3555 *
3556 * This ensures that e.g. latency analysis on the host observes
3557 * guest mode as interrupt enabled.
3558 *
3559 * guest_enter_irqoff() informs context tracking about the
3560 * transition to guest mode and if enabled adjusts RCU state
3561 * accordingly.
3562 */
3563 instrumentation_begin();
3564 trace_hardirqs_on_prepare();
3565 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
3566 instrumentation_end();
3567
3568 guest_enter_irqoff();
3569 lockdep_hardirqs_on(CALLER_ADDR0);
3570
3571 __svm_vcpu_run(svm->vmcb_pa, (unsigned long *)&svm->vcpu.arch.regs);
3572
3573#ifdef CONFIG_X86_64
Thomas Gleixnerc3f08ed2020-07-08 21:51:59 +02003574 native_wrmsrl(MSR_GS_BASE, svm->host.gs_base);
Thomas Gleixner135961e2020-07-08 21:51:58 +02003575#else
3576 loadsegment(fs, svm->host.fs);
3577#ifndef CONFIG_X86_32_LAZY_GS
3578 loadsegment(gs, svm->host.gs);
3579#endif
3580#endif
3581
3582 /*
3583 * VMEXIT disables interrupts (host state), but tracing and lockdep
3584 * have them in state 'on' as recorded before entering guest mode.
3585 * Same as enter_from_user_mode().
3586 *
3587 * guest_exit_irqoff() restores host context and reinstates RCU if
3588 * enabled and required.
3589 *
3590 * This needs to be done before the below as native_read_msr()
3591 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
3592 * into world and some more.
3593 */
3594 lockdep_hardirqs_off(CALLER_ADDR0);
3595 guest_exit_irqoff();
3596
3597 instrumentation_begin();
3598 trace_hardirqs_off_finish();
3599 instrumentation_end();
3600}
3601
Qian Caib95273f2020-04-15 11:37:09 -04003602static __no_kcsan fastpath_t svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003603{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003604 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03003605
Joerg Roedel2041a062010-04-22 12:33:08 +02003606 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
3607 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
3608 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
3609
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003610 /*
Ladi Proseka12713c2017-06-21 09:07:00 +02003611 * Disable singlestep if we're injecting an interrupt/exception.
3612 * We don't want our modified rflags to be pushed on the stack where
3613 * we might not be able to easily reset them if we disabled NMI
3614 * singlestep later.
3615 */
3616 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
3617 /*
3618 * Event injection happens before external interrupts cause a
3619 * vmexit and interrupts are disabled here, so smp_send_reschedule
3620 * is enough to force an immediate vmexit.
3621 */
3622 disable_nmi_singlestep(svm);
3623 smp_send_reschedule(vcpu->cpu);
3624 }
3625
Rusty Russelle756fc62007-07-30 20:07:08 +10003626 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627
Joerg Roedel649d6862008-04-16 16:51:15 +02003628 sync_lapic_to_cr8(vcpu);
3629
Cathy Avery7e8e6ee2020-10-11 14:48:17 -04003630 if (unlikely(svm->asid != svm->vmcb->control.asid)) {
3631 svm->vmcb->control.asid = svm->asid;
3632 vmcb_mark_dirty(svm->vmcb, VMCB_ASID);
3633 }
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02003634 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635
Paolo Bonzinid67668e2020-05-06 06:40:04 -04003636 /*
3637 * Run with all-zero DR6 unless needed, so that we can get the exact cause
3638 * of a #DB.
3639 */
3640 if (unlikely(svm->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
3641 svm_set_dr6(svm, vcpu->arch.dr6);
3642 else
3643 svm_set_dr6(svm, DR6_FIXED_1 | DR6_RTM);
3644
Avi Kivity04d2cc72007-09-10 18:10:54 +03003645 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07003646 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03003647
Wanpeng Li010fd372020-09-10 17:50:41 +08003648 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08003649
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003650 /*
3651 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
3652 * it's non-zero. Since vmentry is serialising on affected CPUs, there
3653 * is no need to worry about the conditional branch over the wrmsr
3654 * being speculatively taken.
3655 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02003656 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003657
Thomas Gleixner135961e2020-07-08 21:51:58 +02003658 svm_vcpu_enter_exit(vcpu, svm);
Thomas Gleixner15e6c222018-05-11 15:21:01 +02003659
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003660 /*
3661 * We do not use IBRS in the kernel. If this vCPU has used the
3662 * SPEC_CTRL MSR it may have left it on; save the value and
3663 * turn it off. This is much more efficient than blindly adding
3664 * it to the atomic save/restore list. Especially as the former
3665 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
3666 *
3667 * For non-nested case:
3668 * If the L01 MSR bitmap does not intercept the MSR, then we need to
3669 * save it.
3670 *
3671 * For nested case:
3672 * If the L02 MSR bitmap does not intercept the MSR, then we need to
3673 * save it.
3674 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01003675 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01003676 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01003677
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678 reload_tss(vcpu);
3679
Thomas Gleixner024d83c2018-08-12 20:41:45 +02003680 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
3681
Avi Kivity13c34e02010-10-21 12:20:31 +02003682 vcpu->arch.cr2 = svm->vmcb->save.cr2;
3683 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
3684 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
3685 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
3686
Joerg Roedel3781c012011-01-14 16:45:02 +01003687 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07003688 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003689
Aaron Lewis139a12c2019-10-21 16:30:25 -07003690 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003691 stgi();
3692
3693 /* Any pending NMI will happen here */
3694
3695 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07003696 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01003697
Joerg Roedeld7bf8222008-04-16 16:51:17 +02003698 sync_cr8_to_lapic(vcpu);
3699
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003700 svm->next_rip = 0;
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -04003701 if (is_guest_mode(&svm->vcpu)) {
3702 sync_nested_vmcb_control(svm);
3703 svm->nested.nested_run_pending = 0;
3704 }
Gleb Natapov9222be12009-04-23 17:14:37 +03003705
Joerg Roedel38e5e922010-12-03 15:25:16 +01003706 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Wanpeng Lie42c6822020-09-12 02:16:39 -04003707 vmcb_mark_all_clean(svm->vmcb);
Joerg Roedel38e5e922010-12-03 15:25:16 +01003708
Gleb Natapov631bc482010-10-14 11:22:52 +02003709 /* if exit due to PF check for async PF */
3710 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003711 svm->vcpu.arch.apf.host_apf_flags =
3712 kvm_read_and_reset_apf_flags();
Gleb Natapov631bc482010-10-14 11:22:52 +02003713
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003714 if (npt_enabled) {
3715 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
3716 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
3717 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02003718
3719 /*
3720 * We need to handle MC intercepts here before the vcpu has a chance to
3721 * change the physical cpu
3722 */
3723 if (unlikely(svm->vmcb->control.exit_code ==
3724 SVM_EXIT_EXCP_BASE + MC_VECTOR))
3725 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003726
Wanpeng Lie42c6822020-09-12 02:16:39 -04003727 svm_complete_interrupts(svm);
Wanpeng Li4e810ad2020-09-14 14:55:48 +08003728
3729 if (is_guest_mode(vcpu))
3730 return EXIT_FASTPATH_NONE;
3731
3732 return svm_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003733}
3734
Sean Christopherson2a40b902020-07-15 20:41:18 -07003735static void svm_load_mmu_pgd(struct kvm_vcpu *vcpu, unsigned long root,
3736 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003737{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003738 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003739 unsigned long cr3;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003740
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003741 cr3 = __sme_set(root);
3742 if (npt_enabled) {
3743 svm->vmcb->control.nested_cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003744 vmcb_mark_dirty(svm->vmcb, VMCB_NPT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003745
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003746 /* Loading L2's CR3 is handled by enter_svm_guest_mode. */
Paolo Bonzini978ce582020-05-20 08:37:37 -04003747 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3748 return;
3749 cr3 = vcpu->arch.cr3;
Paolo Bonzini689f3bf2020-03-03 10:11:10 +01003750 }
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003751
Paolo Bonzini978ce582020-05-20 08:37:37 -04003752 svm->vmcb->save.cr3 = cr3;
Joerg Roedel06e78522020-06-25 10:03:23 +02003753 vmcb_mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003754}
3755
Avi Kivity6aa8b732006-12-10 02:21:36 -08003756static int is_disabled(void)
3757{
Joerg Roedel6031a612007-06-22 12:29:50 +03003758 u64 vm_cr;
3759
3760 rdmsrl(MSR_VM_CR, vm_cr);
3761 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
3762 return 1;
3763
Avi Kivity6aa8b732006-12-10 02:21:36 -08003764 return 0;
3765}
3766
Ingo Molnar102d8322007-02-19 14:37:47 +02003767static void
3768svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3769{
3770 /*
3771 * Patch in the VMMCALL instruction:
3772 */
3773 hypercall[0] = 0x0f;
3774 hypercall[1] = 0x01;
3775 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02003776}
3777
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003778static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003779{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07003780 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003781}
3782
Avi Kivity774ead32007-12-26 13:57:04 +02003783static bool svm_cpu_has_accelerated_tpr(void)
3784{
3785 return false;
3786}
3787
Sean Christophersoncb97c2d2020-02-18 15:40:11 -08003788static bool svm_has_emulated_msr(u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003789{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003790 switch (index) {
3791 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02003792 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01003793 return false;
3794 default:
3795 break;
3796 }
3797
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003798 return true;
3799}
3800
Paolo Bonzinifc07e762015-10-01 13:20:22 +02003801static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
3802{
3803 return 0;
3804}
3805
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08003806static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08003807{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003808 struct vcpu_svm *svm = to_svm(vcpu);
Babu Moger96308b02020-11-12 16:18:03 -06003809 struct kvm_cpuid_entry2 *best;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003810
Aaron Lewis72041602019-10-21 16:30:20 -07003811 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08003812 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07003813 boot_cpu_has(X86_FEATURE_XSAVES);
3814
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003815 /* Update nrips enabled cache */
Sean Christopherson4eb87462020-03-02 15:57:08 -08003816 svm->nrips_enabled = kvm_cpu_cap_has(X86_FEATURE_NRIPS) &&
3817 guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05003818
Babu Moger4407a792020-09-11 14:29:19 -05003819 /* Check again if INVPCID interception if required */
3820 svm_check_invpcid(svm);
3821
Babu Moger96308b02020-11-12 16:18:03 -06003822 /* For sev guests, the memory encryption bit is not reserved in CR3. */
3823 if (sev_guest(vcpu->kvm)) {
3824 best = kvm_find_cpuid_entry(vcpu, 0x8000001F, 0);
3825 if (best)
3826 vcpu->arch.cr3_lm_rsvd_bits &= ~(1UL << (best->ebx & 0x3f));
3827 }
3828
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05003829 if (!kvm_vcpu_apicv_active(vcpu))
3830 return;
3831
Oliver Uptoncc7f5572020-02-28 00:59:04 -08003832 /*
3833 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
3834 * is exposed to the guest, disable AVIC.
3835 */
3836 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
3837 kvm_request_apicv_update(vcpu->kvm, false,
3838 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06003839
3840 /*
3841 * Currently, AVIC does not work with nested virtualization.
3842 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
3843 */
3844 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
3845 kvm_request_apicv_update(vcpu->kvm, false,
3846 APICV_INHIBIT_REASON_NESTED);
Sheng Yang0e851882009-12-18 16:48:46 +08003847}
3848
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003849static bool svm_has_wbinvd_exit(void)
3850{
3851 return true;
3852}
3853
Joerg Roedel80612522011-04-04 12:39:33 +02003854#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003855 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003856#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003857 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003858#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03003859 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003860
Mathias Krause09941fb2012-08-30 01:30:20 +02003861static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003862 u32 exit_code;
3863 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003864} x86_intercept_map[] = {
3865 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
3866 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
3867 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
3868 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
3869 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02003870 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
3871 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02003872 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
3873 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
3874 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
3875 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
3876 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
3877 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
3878 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
3879 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02003880 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
3881 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
3882 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
3883 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
3884 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
3885 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
3886 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
3887 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003888 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
3889 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
3890 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02003891 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
3892 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
3893 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
3894 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
3895 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
3896 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
3897 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
3898 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
3899 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02003900 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
3901 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
3902 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
3903 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
3904 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
3905 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
3906 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02003907 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
3908 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
3909 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
3910 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02003911 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003912};
3913
Joerg Roedel80612522011-04-04 12:39:33 +02003914#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003915#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02003916#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003917
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02003918static int svm_check_intercept(struct kvm_vcpu *vcpu,
3919 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08003920 enum x86_intercept_stage stage,
3921 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02003922{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003923 struct vcpu_svm *svm = to_svm(vcpu);
3924 int vmexit, ret = X86EMUL_CONTINUE;
3925 struct __x86_intercept icpt_info;
3926 struct vmcb *vmcb = svm->vmcb;
3927
3928 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
3929 goto out;
3930
3931 icpt_info = x86_intercept_map[info->intercept];
3932
Avi Kivity40e19b52011-04-21 12:35:41 +03003933 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003934 goto out;
3935
3936 switch (icpt_info.exit_code) {
3937 case SVM_EXIT_READ_CR0:
3938 if (info->intercept == x86_intercept_cr_read)
3939 icpt_info.exit_code += info->modrm_reg;
3940 break;
3941 case SVM_EXIT_WRITE_CR0: {
3942 unsigned long cr0, val;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003943
3944 if (info->intercept == x86_intercept_cr_write)
3945 icpt_info.exit_code += info->modrm_reg;
3946
Jan Kiszka62baf442014-06-29 21:55:53 +02003947 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
3948 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003949 break;
3950
Babu Mogerc62e2e92020-09-11 14:28:28 -05003951 if (!(vmcb_is_intercept(&svm->nested.ctl,
3952 INTERCEPT_SELECTIVE_CR0)))
Joerg Roedelcfec82c2011-04-04 12:39:28 +02003953 break;
3954
3955 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
3956 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
3957
3958 if (info->intercept == x86_intercept_lmsw) {
3959 cr0 &= 0xfUL;
3960 val &= 0xfUL;
3961 /* lmsw can't clear PE - catch this here */
3962 if (cr0 & X86_CR0_PE)
3963 val |= X86_CR0_PE;
3964 }
3965
3966 if (cr0 ^ val)
3967 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3968
3969 break;
3970 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02003971 case SVM_EXIT_READ_DR0:
3972 case SVM_EXIT_WRITE_DR0:
3973 icpt_info.exit_code += info->modrm_reg;
3974 break;
Joerg Roedel80612522011-04-04 12:39:33 +02003975 case SVM_EXIT_MSR:
3976 if (info->intercept == x86_intercept_wrmsr)
3977 vmcb->control.exit_info_1 = 1;
3978 else
3979 vmcb->control.exit_info_1 = 0;
3980 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02003981 case SVM_EXIT_PAUSE:
3982 /*
3983 * We get this for NOP only, but pause
3984 * is rep not, check this here
3985 */
3986 if (info->rep_prefix != REPE_PREFIX)
3987 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02003988 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02003989 case SVM_EXIT_IOIO: {
3990 u64 exit_info;
3991 u32 bytes;
3992
Joerg Roedelf6511932011-04-04 12:39:35 +02003993 if (info->intercept == x86_intercept_in ||
3994 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02003995 exit_info = ((info->src_val & 0xffff) << 16) |
3996 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02003997 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02003998 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02003999 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02004000 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02004001 }
4002
4003 if (info->intercept == x86_intercept_outs ||
4004 info->intercept == x86_intercept_ins)
4005 exit_info |= SVM_IOIO_STR_MASK;
4006
4007 if (info->rep_prefix)
4008 exit_info |= SVM_IOIO_REP_MASK;
4009
4010 bytes = min(bytes, 4u);
4011
4012 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
4013
4014 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
4015
4016 vmcb->control.exit_info_1 = exit_info;
4017 vmcb->control.exit_info_2 = info->next_rip;
4018
4019 break;
4020 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004021 default:
4022 break;
4023 }
4024
Bandan Dasf1047652015-06-11 02:05:33 -04004025 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
4026 if (static_cpu_has(X86_FEATURE_NRIPS))
4027 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02004028 vmcb->control.exit_code = icpt_info.exit_code;
4029 vmexit = nested_svm_exit_handled(svm);
4030
4031 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
4032 : X86EMUL_CONTINUE;
4033
4034out:
4035 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004036}
4037
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07004038static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08004039{
Yang Zhanga547c6d2013-04-11 19:25:10 +08004040}
4041
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004042static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
4043{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004044 if (!kvm_pause_in_guest(vcpu->kvm))
Babu Moger8566ac82018-03-16 16:37:26 -04004045 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004046}
4047
Borislav Petkov74f16902017-03-26 23:51:24 +02004048static void svm_setup_mce(struct kvm_vcpu *vcpu)
4049{
4050 /* [63:9] are reserved. */
4051 vcpu->arch.mcg_cap &= 0x1ff;
4052}
4053
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004054bool svm_smi_blocked(struct kvm_vcpu *vcpu)
Ladi Prosek72d7b372017-10-11 16:54:41 +02004055{
Ladi Prosek05cade72017-10-11 16:54:45 +02004056 struct vcpu_svm *svm = to_svm(vcpu);
4057
4058 /* Per APM Vol.2 15.22.2 "Response to SMI" */
4059 if (!gif_set(svm))
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004060 return true;
4061
4062 return is_smm(vcpu);
4063}
4064
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004065static int svm_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004066{
4067 struct vcpu_svm *svm = to_svm(vcpu);
4068 if (svm->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004069 return -EBUSY;
Ladi Prosek05cade72017-10-11 16:54:45 +02004070
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004071 /* An SMI must not be injected into L2 if it's supposed to VM-Exit. */
4072 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_smi(svm))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004073 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004074
Paolo Bonzinicae96af2020-04-23 14:19:26 -04004075 return !svm_smi_blocked(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02004076}
4077
Ladi Prosek0234bf82017-10-11 16:54:40 +02004078static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
4079{
Ladi Prosek05cade72017-10-11 16:54:45 +02004080 struct vcpu_svm *svm = to_svm(vcpu);
4081 int ret;
4082
4083 if (is_guest_mode(vcpu)) {
4084 /* FED8h - SVM Guest */
4085 put_smstate(u64, smstate, 0x7ed8, 1);
4086 /* FEE0h - SVM Guest VMCB Physical Address */
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004087 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb12_gpa);
Ladi Prosek05cade72017-10-11 16:54:45 +02004088
4089 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
4090 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
4091 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
4092
4093 ret = nested_svm_vmexit(svm);
4094 if (ret)
4095 return ret;
4096 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02004097 return 0;
4098}
4099
Sean Christophersoned193212019-04-02 08:03:09 -07004100static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02004101{
Ladi Prosek05cade72017-10-11 16:54:45 +02004102 struct vcpu_svm *svm = to_svm(vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01004103 struct kvm_host_map map;
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004104 int ret = 0;
Ladi Prosek05cade72017-10-11 16:54:45 +02004105
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004106 if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) {
4107 u64 saved_efer = GET_SMSTATE(u64, smstate, 0x7ed0);
4108 u64 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004109 u64 vmcb12_gpa = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02004110
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004111 if (guest) {
4112 if (!guest_cpuid_has(vcpu, X86_FEATURE_SVM))
4113 return 1;
4114
4115 if (!(saved_efer & EFER_SVME))
4116 return 1;
4117
4118 if (kvm_vcpu_map(&svm->vcpu,
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004119 gpa_to_gfn(vmcb12_gpa), &map) == -EINVAL)
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004120 return 1;
4121
Maxim Levitsky2fcf4872020-10-01 14:29:54 +03004122 if (svm_allocate_nested(svm))
4123 return 1;
4124
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03004125 ret = enter_svm_guest_mode(svm, vmcb12_gpa, map.hva);
Maxim Levitsky3ebb5d22020-08-27 19:27:20 +03004126 kvm_vcpu_unmap(&svm->vcpu, &map, true);
4127 }
Ladi Prosek05cade72017-10-11 16:54:45 +02004128 }
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +02004129
4130 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02004131}
4132
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004133static void enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004134{
4135 struct vcpu_svm *svm = to_svm(vcpu);
4136
4137 if (!gif_set(svm)) {
4138 if (vgif_enabled(svm))
Joerg Roedela284ba52020-06-25 10:03:24 +02004139 svm_set_intercept(svm, INTERCEPT_STGI);
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004140 /* STGI will cause a vm exit */
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004141 } else {
4142 /* We must be in SMM; RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004143 }
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004144}
4145
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004146static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004147{
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004148 bool smep, smap, is_user;
4149 unsigned long cr4;
Paolo Bonzinie72436b2020-04-17 12:21:06 -04004150
4151 /*
Liran Alon118154b2019-07-17 02:56:58 +03004152 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
4153 *
4154 * Errata:
4155 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
4156 * possible that CPU microcode implementing DecodeAssist will fail
4157 * to read bytes of instruction which caused #NPF. In this case,
4158 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
4159 * return 0 instead of the correct guest instruction bytes.
4160 *
4161 * This happens because CPU microcode reading instruction bytes
4162 * uses a special opcode which attempts to read data using CPL=0
4163 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
4164 * fault, it gives up and returns no instruction bytes.
4165 *
4166 * Detection:
4167 * We reach here in case CPU supports DecodeAssist, raised #NPF and
4168 * returned 0 in GuestIntrBytes field of the VMCB.
4169 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
4170 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
4171 * in case vCPU CPL==3 (Because otherwise guest would have triggered
4172 * a SMEP fault instead of #NPF).
4173 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
4174 * As most guests enable SMAP if they have also enabled SMEP, use above
4175 * logic in order to attempt minimize false-positive of detecting errata
4176 * while still preserving all cases semantic correctness.
4177 *
4178 * Workaround:
4179 * To determine what instruction the guest was executing, the hypervisor
4180 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004181 *
4182 * In non SEV guest, hypervisor will be able to read the guest
4183 * memory to decode the instruction pointer when insn_len is zero
4184 * so we return true to indicate that decoding is possible.
4185 *
4186 * But in the SEV guest, the guest memory is encrypted with the
4187 * guest specific key and hypervisor will not be able to decode the
4188 * instruction pointer so we will not able to workaround it. Lets
4189 * print the error and request to kill the guest.
4190 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004191 if (likely(!insn || insn_len))
4192 return true;
4193
4194 /*
4195 * If RIP is invalid, go ahead with emulation which will cause an
4196 * internal error exit.
4197 */
4198 if (!kvm_vcpu_gfn_to_memslot(vcpu, kvm_rip_read(vcpu) >> PAGE_SHIFT))
4199 return true;
4200
4201 cr4 = kvm_read_cr4(vcpu);
4202 smep = cr4 & X86_CR4_SMEP;
4203 smap = cr4 & X86_CR4_SMAP;
4204 is_user = svm_get_cpl(vcpu) == 3;
Liran Alon118154b2019-07-17 02:56:58 +03004205 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004206 if (!sev_guest(vcpu->kvm))
4207 return true;
4208
Liran Alon118154b2019-07-17 02:56:58 +03004209 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00004210 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4211 }
4212
4213 return false;
4214}
4215
Liran Alon4b9852f2019-08-26 13:24:49 +03004216static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
4217{
4218 struct vcpu_svm *svm = to_svm(vcpu);
4219
4220 /*
4221 * TODO: Last condition latch INIT signals on vCPU when
4222 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
Paolo Bonzini33b22172020-04-17 10:24:18 -04004223 * To properly emulate the INIT intercept,
4224 * svm_check_nested_events() should call nested_svm_vmexit()
4225 * if an INIT signal is pending.
Liran Alon4b9852f2019-08-26 13:24:49 +03004226 */
4227 return !gif_set(svm) ||
Babu Mogerc62e2e92020-09-11 14:28:28 -05004228 (vmcb_is_intercept(&svm->vmcb->control, INTERCEPT_INIT));
Liran Alon4b9852f2019-08-26 13:24:49 +03004229}
4230
Joerg Roedeleaf78262020-03-24 10:41:54 +01004231static void svm_vm_destroy(struct kvm *kvm)
4232{
4233 avic_vm_destroy(kvm);
4234 sev_vm_destroy(kvm);
4235}
4236
4237static int svm_vm_init(struct kvm *kvm)
4238{
Wanpeng Li830f01b2020-07-31 11:12:21 +08004239 if (!pause_filter_count || !pause_filter_thresh)
4240 kvm->arch.pause_in_guest = true;
4241
Joerg Roedeleaf78262020-03-24 10:41:54 +01004242 if (avic) {
4243 int ret = avic_vm_init(kvm);
4244 if (ret)
4245 return ret;
4246 }
4247
4248 kvm_apicv_init(kvm, avic);
4249 return 0;
4250}
4251
Sean Christopherson9c14ee22020-03-21 13:26:03 -07004252static struct kvm_x86_ops svm_x86_ops __initdata = {
Li RongQingdd58f3c2020-02-23 16:13:12 +08004253 .hardware_unsetup = svm_hardware_teardown,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254 .hardware_enable = svm_hardware_enable,
4255 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02004256 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02004257 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004258
4259 .vcpu_create = svm_create_vcpu,
4260 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004261 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262
Sean Christopherson562b6b02020-01-26 16:41:13 -08004263 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06004264 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004265 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004266
Avi Kivity04d2cc72007-09-10 18:10:54 +03004267 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004268 .vcpu_load = svm_vcpu_load,
4269 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05004270 .vcpu_blocking = svm_vcpu_blocking,
4271 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004272
Paolo Bonzini69869822020-07-10 17:48:06 +02004273 .update_exception_bitmap = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06004274 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004275 .get_msr = svm_get_msr,
4276 .set_msr = svm_set_msr,
4277 .get_segment_base = svm_get_segment_base,
4278 .get_segment = svm_get_segment,
4279 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004280 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10004281 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282 .set_cr0 = svm_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07004283 .is_valid_cr4 = svm_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004284 .set_cr4 = svm_set_cr4,
4285 .set_efer = svm_set_efer,
4286 .get_idt = svm_get_idt,
4287 .set_idt = svm_set_idt,
4288 .get_gdt = svm_get_gdt,
4289 .set_gdt = svm_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03004290 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004291 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004292 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004293 .get_rflags = svm_get_rflags,
4294 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004295
Sean Christopherson77809382020-03-20 14:28:18 -07004296 .tlb_flush_all = svm_flush_tlb,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004297 .tlb_flush_current = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07004298 .tlb_flush_gva = svm_flush_tlb_gva,
Sean Christopherson72b38322020-03-20 14:28:13 -07004299 .tlb_flush_guest = svm_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004300
Avi Kivity6aa8b732006-12-10 02:21:36 -08004301 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004302 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08004304 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004305 .set_interrupt_shadow = svm_set_interrupt_shadow,
4306 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004307 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004308 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004309 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004310 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03004311 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02004312 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004313 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004314 .get_nmi_mask = svm_get_nmi_mask,
4315 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004316 .enable_nmi_window = enable_nmi_window,
4317 .enable_irq_window = enable_irq_window,
4318 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04004319 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03004320 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06004321 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06004322 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08004323 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004324 .hwapic_irr_update = svm_hwapic_irr_update,
4325 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02004326 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05004327 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02004328
4329 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004330 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004331 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004332
Avi Kivity586f9602010-11-18 13:09:54 +02004333 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02004334
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08004335 .vcpu_after_set_cpuid = svm_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004336
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004337 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10004338
Leonid Shatz326e7422018-11-06 12:14:25 +02004339 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004340
Paolo Bonzini727a7e22020-03-05 03:52:50 -05004341 .load_mmu_pgd = svm_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004342
4343 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07004344 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004345
Sean Christophersond264ee02018-08-27 15:21:12 -07004346 .request_immediate_exit = __kvm_request_immediate_exit,
4347
Radim Krčmářae97a3b2014-08-21 18:08:06 +02004348 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02004349
4350 .pmu_ops = &amd_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04004351 .nested_ops = &svm_nested_ops,
4352
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05004353 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08004354 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05004355 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02004356 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004357
Ladi Prosek72d7b372017-10-11 16:54:41 +02004358 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02004359 .pre_enter_smm = svm_pre_enter_smm,
4360 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02004361 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06004362
4363 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06004364 .mem_enc_reg_region = svm_register_enc_region,
4365 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004366
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07004367 .can_emulate_instruction = svm_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03004368
4369 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Alexander Graffd6fa732020-09-25 16:34:19 +02004370
4371 .msr_filter_changed = svm_msr_filter_changed,
Tom Lendackyf1c63662020-12-14 10:29:50 -05004372 .complete_emulated_msr = svm_complete_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004373};
4374
Sean Christophersond008dfd2020-03-21 13:25:56 -07004375static struct kvm_x86_init_ops svm_init_ops __initdata = {
4376 .cpu_has_kvm_support = has_svm,
4377 .disabled_by_bios = is_disabled,
4378 .hardware_setup = svm_hardware_setup,
4379 .check_processor_compatibility = svm_check_processor_compat,
4380
4381 .runtime_ops = &svm_x86_ops,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004382};
4383
4384static int __init svm_init(void)
4385{
Tom Lendackyd07f46f2020-09-07 15:15:03 +02004386 __unused_size_checks();
4387
Sean Christophersond008dfd2020-03-21 13:25:56 -07004388 return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03004389 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004390}
4391
4392static void __exit svm_exit(void)
4393{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004394 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004395}
4396
4397module_init(svm_init)
4398module_exit(svm_exit)