blob: aae5e3eff48dcdbf1c46e7964e5a9e24821c6d44 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * AMD SVM support
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Yaniv Kamay <yaniv@qumranet.com>
12 * Avi Kivity <avi@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080013 */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050014
15#define pr_fmt(fmt) "SVM: " fmt
16
Avi Kivityedf88412007-12-16 11:02:48 +020017#include <linux/kvm_host.h>
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030021#include "kvm_cache_regs.h"
Gleb Natapovfe4c7b12009-03-23 11:23:18 +020022#include "x86.h"
Julian Stecklina66f7b722012-12-05 15:26:19 +010023#include "cpuid.h"
Wei Huang25462f72015-06-19 15:45:05 +020024#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040025
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070027#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020028#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/vmalloc.h>
30#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040031#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050034#include <linux/amd-iommu.h>
35#include <linux/hashtable.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060037#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060038#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060039#include <linux/pagemap.h>
40#include <linux/swap.h>
Tom Lendacky33af3a72019-10-03 21:17:48 +000041#include <linux/rwsem.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080042
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050043#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010044#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020045#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040046#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010047#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020048#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050049#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020050#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Eduardo Habkost63d11422008-11-17 19:03:20 -020052#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030053#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020054
Avi Kivity4ecac3f2008-05-13 13:23:38 +030055#define __ex(x) __kvm_handle_fault_on_reboot(x)
56
Avi Kivity6aa8b732006-12-10 02:21:36 -080057MODULE_AUTHOR("Qumranet");
58MODULE_LICENSE("GPL");
59
Josh Triplettae759542012-03-28 11:32:28 -070060static const struct x86_cpu_id svm_cpu_id[] = {
61 X86_FEATURE_MATCH(X86_FEATURE_SVM),
62 {}
63};
64MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
65
Avi Kivity6aa8b732006-12-10 02:21:36 -080066#define IOPM_ALLOC_ORDER 2
67#define MSRPM_ALLOC_ORDER 1
68
Avi Kivity6aa8b732006-12-10 02:21:36 -080069#define SEG_TYPE_LDT 2
70#define SEG_TYPE_BUSY_TSS16 3
71
Andre Przywara6bc31bd2010-04-11 23:07:28 +020072#define SVM_FEATURE_LBRV (1 << 1)
73#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010074#define SVM_FEATURE_TSC_RATE (1 << 4)
75#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
76#define SVM_FEATURE_FLUSH_ASID (1 << 6)
77#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020078#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030079
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050080#define SVM_AVIC_DOORBELL 0xc001011b
81
Joerg Roedel410e4d52009-08-07 11:49:44 +020082#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
83#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
84#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
85
Joerg Roedel24e09cb2008-02-13 18:58:47 +010086#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
87
Joerg Roedelfbc0db72011-03-25 09:44:46 +010088#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010089#define TSC_RATIO_MIN 0x0000000000000001ULL
90#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010091
Dan Carpenter5446a972016-05-23 13:20:10 +030092#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050093
94/*
95 * 0xff is broadcast, so the max index allowed for physical APIC ID
96 * table is 0xfe. APIC IDs above 0xff are reserved.
97 */
98#define AVIC_MAX_PHYSICAL_ID_COUNT 255
99
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500100#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
101#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
102#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
103
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500104/* AVIC GATAG is encoded using VM and VCPU IDs */
105#define AVIC_VCPU_ID_BITS 8
106#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
107
108#define AVIC_VM_ID_BITS 24
109#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
110#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
111
112#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
113 (y & AVIC_VCPU_ID_MASK))
114#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
115#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
116
Joerg Roedel67ec6602010-05-17 14:43:35 +0200117static bool erratum_383_found __read_mostly;
118
Avi Kivity6c8166a2009-05-31 18:15:37 +0300119static const u32 host_save_user_msrs[] = {
120#ifdef CONFIG_X86_64
121 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
122 MSR_FS_BASE,
123#endif
124 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100125 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300126};
127
128#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
129
Sean Christopherson81811c12018-03-20 12:17:21 -0700130struct kvm_sev_info {
131 bool active; /* SEV enabled guest */
132 unsigned int asid; /* ASID used for this guest */
133 unsigned int handle; /* SEV firmware handle */
134 int fd; /* SEV device fd */
135 unsigned long pages_locked; /* Number of pages locked */
136 struct list_head regions_list; /* List of registered regions */
137};
138
139struct kvm_svm {
140 struct kvm kvm;
141
142 /* Struct members for AVIC */
143 u32 avic_vm_id;
Sean Christopherson81811c12018-03-20 12:17:21 -0700144 struct page *avic_logical_id_table_page;
145 struct page *avic_physical_id_table_page;
146 struct hlist_node hnode;
147
148 struct kvm_sev_info sev_info;
149};
150
Avi Kivity6c8166a2009-05-31 18:15:37 +0300151struct kvm_vcpu;
152
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200153struct nested_state {
154 struct vmcb *hsave;
155 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100156 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200157 u64 vmcb;
158
159 /* These are the merged vectors */
160 u32 *msrpm;
161
162 /* gpa pointers to the real vectors */
163 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100164 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200165
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200166 /* A VMEXIT is required but not yet emulated */
167 bool exit_required;
168
Joerg Roedelaad42c62009-08-07 11:49:34 +0200169 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100170 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100171 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200172 u32 intercept_exceptions;
173 u64 intercept;
174
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200175 /* Nested Paging related state */
176 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200177};
178
Joerg Roedel323c3d82010-03-01 15:34:37 +0100179#define MSRPM_OFFSETS 16
180static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
181
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500182/*
183 * Set osvw_len to higher value when updated Revision Guides
184 * are published and we know what the new status bits are
185 */
186static uint64_t osvw_len = 4, osvw_status;
187
Avi Kivity6c8166a2009-05-31 18:15:37 +0300188struct vcpu_svm {
189 struct kvm_vcpu vcpu;
190 struct vmcb *vmcb;
191 unsigned long vmcb_pa;
192 struct svm_cpu_data *svm_data;
193 uint64_t asid_generation;
194 uint64_t sysenter_esp;
195 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100196 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300197
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100198 u64 msr_decfg;
199
Avi Kivity6c8166a2009-05-31 18:15:37 +0300200 u64 next_rip;
201
202 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200203 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200204 u16 fs;
205 u16 gs;
206 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200207 u64 gs_base;
208 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300209
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100210 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200211 /*
212 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
213 * translated into the appropriate L2_CFG bits on the host to
214 * perform speculative control.
215 */
216 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100217
Avi Kivity6c8166a2009-05-31 18:15:37 +0300218 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300219
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200220 ulong nmi_iret_rip;
221
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200222 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200223
224 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200225 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100226
227 unsigned int3_injected;
228 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100229
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200230 /* cached guest cpuid flags for faster access */
231 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500232
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500233 u32 ldr_reg;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +0000234 u32 dfr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500235 struct page *avic_backing_page;
236 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500237 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500238
239 /*
240 * Per-vcpu list of struct amd_svm_iommu_ir:
241 * This is used mainly to store interrupt remapping information used
242 * when update the vcpu affinity. This avoids the need to scan for
243 * IRTE and try to match ga_tag in the IOMMU driver.
244 */
245 struct list_head ir_list;
246 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600247
248 /* which host CPU was used for running this vcpu */
249 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500250};
251
252/*
253 * This is a wrapper of struct amd_iommu_ir_data.
254 */
255struct amd_svm_iommu_ir {
256 struct list_head node; /* Used by SVM for per-vcpu ir_list */
257 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300258};
259
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500260#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +0000261#define AVIC_LOGICAL_ID_ENTRY_VALID_BIT 31
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500262#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
263
264#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
265#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
266#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
267#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
268
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100269static DEFINE_PER_CPU(u64, current_tsc_ratio);
270#define TSC_RATIO_DEFAULT 0x0100000000ULL
271
Joerg Roedel455716f2010-03-01 15:34:35 +0100272#define MSR_INVALID 0xffffffffU
273
Mathias Krause09941fb2012-08-30 01:30:20 +0200274static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100275 u32 index; /* Index of the MSR */
276 bool always; /* True if intercept is always on */
277} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400278 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100279 { .index = MSR_IA32_SYSENTER_CS, .always = true },
280#ifdef CONFIG_X86_64
281 { .index = MSR_GS_BASE, .always = true },
282 { .index = MSR_FS_BASE, .always = true },
283 { .index = MSR_KERNEL_GS_BASE, .always = true },
284 { .index = MSR_LSTAR, .always = true },
285 { .index = MSR_CSTAR, .always = true },
286 { .index = MSR_SYSCALL_MASK, .always = true },
287#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100288 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100289 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100290 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
291 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
292 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
293 { .index = MSR_IA32_LASTINTTOIP, .always = false },
294 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800295};
296
297/* enable NPT for AMD64 and X86 with PAE */
298#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
299static bool npt_enabled = true;
300#else
Joerg Roedele0231712010-02-24 18:59:10 +0100301static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800302#endif
303
Babu Moger8566ac82018-03-16 16:37:26 -0400304/*
305 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
306 * pause_filter_count: On processors that support Pause filtering(indicated
307 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
308 * count value. On VMRUN this value is loaded into an internal counter.
309 * Each time a pause instruction is executed, this counter is decremented
310 * until it reaches zero at which time a #VMEXIT is generated if pause
311 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
312 * Intercept Filtering for more details.
313 * This also indicate if ple logic enabled.
314 *
315 * pause_filter_thresh: In addition, some processor families support advanced
316 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
317 * the amount of time a guest is allowed to execute in a pause loop.
318 * In this mode, a 16-bit pause filter threshold field is added in the
319 * VMCB. The threshold value is a cycle count that is used to reset the
320 * pause counter. As with simple pause filtering, VMRUN loads the pause
321 * count value from VMCB into an internal counter. Then, on each pause
322 * instruction the hardware checks the elapsed number of cycles since
323 * the most recent pause instruction against the pause filter threshold.
324 * If the elapsed cycle count is greater than the pause filter threshold,
325 * then the internal pause count is reloaded from the VMCB and execution
326 * continues. If the elapsed cycle count is less than the pause filter
327 * threshold, then the internal pause count is decremented. If the count
328 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
329 * triggered. If advanced pause filtering is supported and pause filter
330 * threshold field is set to zero, the filter will operate in the simpler,
331 * count only mode.
332 */
333
334static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
335module_param(pause_filter_thresh, ushort, 0444);
336
337static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
338module_param(pause_filter_count, ushort, 0444);
339
340/* Default doubles per-vcpu window every exit. */
341static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
342module_param(pause_filter_count_grow, ushort, 0444);
343
344/* Default resets per-vcpu window every exit to pause_filter_count. */
345static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
346module_param(pause_filter_count_shrink, ushort, 0444);
347
348/* Default is to compute the maximum so we can never overflow. */
349static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
350module_param(pause_filter_count_max, ushort, 0444);
351
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100352/* allow nested paging (virtualized MMU) for all guests */
353static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800354module_param(npt, int, S_IRUGO);
355
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100356/* allow nested virtualization in KVM/SVM */
357static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800358module_param(nested, int, S_IRUGO);
359
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500360/* enable / disable AVIC */
361static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500362#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500363module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500364#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500365
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200366/* enable/disable Next RIP Save */
367static int nrips = true;
368module_param(nrips, int, 0444);
369
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500370/* enable/disable Virtual VMLOAD VMSAVE */
371static int vls = true;
372module_param(vls, int, 0444);
373
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500374/* enable/disable Virtual GIF */
375static int vgif = true;
376module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500377
Brijesh Singhe9df0942017-12-04 10:57:33 -0600378/* enable/disable SEV support */
379static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
380module_param(sev, int, 0444);
381
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200382static bool __read_mostly dump_invalid_vmcb = 0;
383module_param(dump_invalid_vmcb, bool, 0644);
384
Brijesh Singh7607b712018-02-19 10:14:44 -0600385static u8 rsm_ins_bytes[] = "\x0f\xaa";
386
Paolo Bonzini79a80592015-09-21 07:46:55 +0200387static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800388static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200389static void svm_complete_interrupts(struct vcpu_svm *svm);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -0600390static void svm_toggle_avic_for_irq_window(struct kvm_vcpu *vcpu, bool activate);
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -0600391static inline void avic_post_state_restore(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800392
Joerg Roedel410e4d52009-08-07 11:49:44 +0200393static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100394static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800395static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
397 bool has_error_code, u32 error_code);
398
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100399enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100400 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
401 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100402 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100403 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100404 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100405 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100406 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100407 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100408 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100409 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100410 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100411 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500412 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
413 * AVIC PHYSICAL_TABLE pointer,
414 * AVIC LOGICAL_TABLE pointer
415 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100416 VMCB_DIRTY_MAX,
417};
418
Joerg Roedel0574dec2010-12-03 11:45:58 +0100419/* TPR and CR2 are always written before VMRUN */
420#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100421
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500422#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
423
Tom Lendacky33af3a72019-10-03 21:17:48 +0000424static int sev_flush_asids(void);
425static DECLARE_RWSEM(sev_deactivate_lock);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +0000426static DEFINE_MUTEX(sev_bitmap_lock);
Brijesh Singhed3cd232017-12-04 10:57:32 -0600427static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600428static unsigned int min_sev_asid;
429static unsigned long *sev_asid_bitmap;
Tom Lendacky33af3a72019-10-03 21:17:48 +0000430static unsigned long *sev_reclaim_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600431#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600432
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600433struct enc_region {
434 struct list_head list;
435 unsigned long npages;
436 struct page **pages;
437 unsigned long uaddr;
438 unsigned long size;
439};
440
Sean Christopherson81811c12018-03-20 12:17:21 -0700441
442static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
443{
444 return container_of(kvm, struct kvm_svm, kvm);
445}
446
Brijesh Singh1654efc2017-12-04 10:57:34 -0600447static inline bool svm_sev_enabled(void)
448{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200449 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600450}
451
452static inline bool sev_guest(struct kvm *kvm)
453{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200454#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700455 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600456
457 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200458#else
459 return false;
460#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600461}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600462
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600463static inline int sev_get_asid(struct kvm *kvm)
464{
Sean Christopherson81811c12018-03-20 12:17:21 -0700465 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600466
467 return sev->asid;
468}
469
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100470static inline void mark_all_dirty(struct vmcb *vmcb)
471{
472 vmcb->control.clean = 0;
473}
474
475static inline void mark_all_clean(struct vmcb *vmcb)
476{
477 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
478 & ~VMCB_ALWAYS_DIRTY_MASK;
479}
480
481static inline void mark_dirty(struct vmcb *vmcb, int bit)
482{
483 vmcb->control.clean &= ~(1 << bit);
484}
485
Avi Kivity6aa8b732006-12-10 02:21:36 -0800486static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
487{
488 return container_of(vcpu, struct vcpu_svm, vcpu);
489}
490
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500491static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
492{
493 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
494 mark_dirty(svm->vmcb, VMCB_AVIC);
495}
496
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500497static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
498{
499 struct vcpu_svm *svm = to_svm(vcpu);
500 u64 *entry = svm->avic_physical_id_cache;
501
502 if (!entry)
503 return false;
504
505 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
506}
507
Joerg Roedel384c6362010-11-30 18:03:56 +0100508static void recalc_intercepts(struct vcpu_svm *svm)
509{
510 struct vmcb_control_area *c, *h;
511 struct nested_state *g;
512
Joerg Roedel116a0a22010-12-03 11:45:49 +0100513 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
514
Joerg Roedel384c6362010-11-30 18:03:56 +0100515 if (!is_guest_mode(&svm->vcpu))
516 return;
517
518 c = &svm->vmcb->control;
519 h = &svm->nested.hsave->control;
520 g = &svm->nested;
521
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100522 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100523 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100524 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100525 c->intercept = h->intercept | g->intercept;
526}
527
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100528static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
529{
530 if (is_guest_mode(&svm->vcpu))
531 return svm->nested.hsave;
532 else
533 return svm->vmcb;
534}
535
536static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
537{
538 struct vmcb *vmcb = get_host_vmcb(svm);
539
540 vmcb->control.intercept_cr |= (1U << bit);
541
542 recalc_intercepts(svm);
543}
544
545static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
546{
547 struct vmcb *vmcb = get_host_vmcb(svm);
548
549 vmcb->control.intercept_cr &= ~(1U << bit);
550
551 recalc_intercepts(svm);
552}
553
554static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
555{
556 struct vmcb *vmcb = get_host_vmcb(svm);
557
558 return vmcb->control.intercept_cr & (1U << bit);
559}
560
Paolo Bonzini5315c712014-03-03 13:08:29 +0100561static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100562{
563 struct vmcb *vmcb = get_host_vmcb(svm);
564
Paolo Bonzini5315c712014-03-03 13:08:29 +0100565 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
566 | (1 << INTERCEPT_DR1_READ)
567 | (1 << INTERCEPT_DR2_READ)
568 | (1 << INTERCEPT_DR3_READ)
569 | (1 << INTERCEPT_DR4_READ)
570 | (1 << INTERCEPT_DR5_READ)
571 | (1 << INTERCEPT_DR6_READ)
572 | (1 << INTERCEPT_DR7_READ)
573 | (1 << INTERCEPT_DR0_WRITE)
574 | (1 << INTERCEPT_DR1_WRITE)
575 | (1 << INTERCEPT_DR2_WRITE)
576 | (1 << INTERCEPT_DR3_WRITE)
577 | (1 << INTERCEPT_DR4_WRITE)
578 | (1 << INTERCEPT_DR5_WRITE)
579 | (1 << INTERCEPT_DR6_WRITE)
580 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100581
582 recalc_intercepts(svm);
583}
584
Paolo Bonzini5315c712014-03-03 13:08:29 +0100585static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100586{
587 struct vmcb *vmcb = get_host_vmcb(svm);
588
Paolo Bonzini5315c712014-03-03 13:08:29 +0100589 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100590
591 recalc_intercepts(svm);
592}
593
Joerg Roedel18c918c2010-11-30 18:03:59 +0100594static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
595{
596 struct vmcb *vmcb = get_host_vmcb(svm);
597
598 vmcb->control.intercept_exceptions |= (1U << bit);
599
600 recalc_intercepts(svm);
601}
602
603static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
604{
605 struct vmcb *vmcb = get_host_vmcb(svm);
606
607 vmcb->control.intercept_exceptions &= ~(1U << bit);
608
609 recalc_intercepts(svm);
610}
611
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100612static inline void set_intercept(struct vcpu_svm *svm, int bit)
613{
614 struct vmcb *vmcb = get_host_vmcb(svm);
615
616 vmcb->control.intercept |= (1ULL << bit);
617
618 recalc_intercepts(svm);
619}
620
621static inline void clr_intercept(struct vcpu_svm *svm, int bit)
622{
623 struct vmcb *vmcb = get_host_vmcb(svm);
624
625 vmcb->control.intercept &= ~(1ULL << bit);
626
627 recalc_intercepts(svm);
628}
629
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500630static inline bool vgif_enabled(struct vcpu_svm *svm)
631{
632 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
633}
634
Joerg Roedel2af91942009-08-07 11:49:28 +0200635static inline void enable_gif(struct vcpu_svm *svm)
636{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500637 if (vgif_enabled(svm))
638 svm->vmcb->control.int_ctl |= V_GIF_MASK;
639 else
640 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200641}
642
643static inline void disable_gif(struct vcpu_svm *svm)
644{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500645 if (vgif_enabled(svm))
646 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
647 else
648 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200649}
650
651static inline bool gif_set(struct vcpu_svm *svm)
652{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500653 if (vgif_enabled(svm))
654 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
655 else
656 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200657}
658
Avi Kivity6aa8b732006-12-10 02:21:36 -0800659static unsigned long iopm_base;
660
661struct kvm_ldttss_desc {
662 u16 limit0;
663 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100664 unsigned base1:8, type:5, dpl:2, p:1;
665 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666 u32 base3;
667 u32 zero1;
668} __attribute__((packed));
669
670struct svm_cpu_data {
671 int cpu;
672
Avi Kivity5008fdf2007-04-02 13:05:50 +0300673 u64 asid_generation;
674 u32 max_asid;
675 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600676 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677 struct kvm_ldttss_desc *tss_desc;
678
679 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100680 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600681
682 /* index = sev_asid, value = vmcb pointer */
683 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684};
685
686static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
687
Mathias Krause09941fb2012-08-30 01:30:20 +0200688static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800689
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200690#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800691#define MSRS_RANGE_SIZE 2048
692#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
693
Joerg Roedel455716f2010-03-01 15:34:35 +0100694static u32 svm_msrpm_offset(u32 msr)
695{
696 u32 offset;
697 int i;
698
699 for (i = 0; i < NUM_MSR_MAPS; i++) {
700 if (msr < msrpm_ranges[i] ||
701 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
702 continue;
703
704 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
705 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
706
707 /* Now we have the u8 offset - but need the u32 offset */
708 return offset / 4;
709 }
710
711 /* MSR not in any range */
712 return MSR_INVALID;
713}
714
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715#define MAX_INST_SIZE 15
716
Avi Kivity6aa8b732006-12-10 02:21:36 -0800717static inline void clgi(void)
718{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100719 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720}
721
722static inline void stgi(void)
723{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100724 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725}
726
727static inline void invlpga(unsigned long addr, u32 asid)
728{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100729 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800730}
731
Yu Zhang855feb62017-08-24 20:27:55 +0800732static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200733{
734#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800735 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200736#else
737 return PT32E_ROOT_LEVEL;
738#endif
739}
740
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
742{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000743 vcpu->arch.efer = efer;
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100744
745 if (!npt_enabled) {
746 /* Shadow paging assumes NX to be available. */
747 efer |= EFER_NX;
748
749 if (!(efer & EFER_LMA))
750 efer &= ~EFER_LME;
751 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752
Alexander Graf9962d032008-11-25 20:17:02 +0100753 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100754 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755}
756
Avi Kivity6aa8b732006-12-10 02:21:36 -0800757static int is_external_interrupt(u32 info)
758{
759 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
760 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
761}
762
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200763static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400764{
765 struct vcpu_svm *svm = to_svm(vcpu);
766 u32 ret = 0;
767
768 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200769 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
770 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400771}
772
773static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
774{
775 struct vcpu_svm *svm = to_svm(vcpu);
776
777 if (mask == 0)
778 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
779 else
780 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
781
782}
783
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200784static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400786 struct vcpu_svm *svm = to_svm(vcpu);
787
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200788 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200789 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200790 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400791 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200792
Sean Christopherson1957aa62019-08-27 14:40:39 -0700793 if (!svm->next_rip) {
794 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
795 return 0;
796 } else {
797 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
798 pr_err("%s: ip 0x%lx next 0x%llx\n",
799 __func__, kvm_rip_read(vcpu), svm->next_rip);
800 kvm_rip_write(vcpu, svm->next_rip);
801 }
Glauber Costa2809f5d2009-05-12 16:21:05 -0400802 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200803
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700804 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800805}
806
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700807static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100808{
809 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700810 unsigned nr = vcpu->arch.exception.nr;
811 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700812 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700813 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100814
Joerg Roedele0231712010-02-24 18:59:10 +0100815 /*
816 * If we are within a nested VM we'd better #VMEXIT and let the guest
817 * handle the exception
818 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200819 if (!reinject &&
820 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100821 return;
822
Jim Mattsonda998b42018-10-16 14:29:22 -0700823 kvm_deliver_exception_payload(&svm->vcpu);
824
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200825 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100826 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
827
828 /*
829 * For guest debugging where we have to reinject #BP if some
830 * INT3 is guest-owned:
831 * Emulate nRIP by moving RIP forward. Will fail if injection
832 * raises a fault that is not intercepted. Still better than
833 * failing in all cases.
834 */
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200835 (void)skip_emulated_instruction(&svm->vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100836 rip = kvm_rip_read(&svm->vcpu);
837 svm->int3_rip = rip + svm->vmcb->save.cs.base;
838 svm->int3_injected = rip - old_rip;
839 }
840
Jan Kiszka116a4752010-02-23 17:47:54 +0100841 svm->vmcb->control.event_inj = nr
842 | SVM_EVTINJ_VALID
843 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
844 | SVM_EVTINJ_TYPE_EXEPT;
845 svm->vmcb->control.event_inj_err = error_code;
846}
847
Joerg Roedel67ec6602010-05-17 14:43:35 +0200848static void svm_init_erratum_383(void)
849{
850 u32 low, high;
851 int err;
852 u64 val;
853
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100854 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200855 return;
856
857 /* Use _safe variants to not break nested virtualization */
858 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
859 if (err)
860 return;
861
862 val |= (1ULL << 47);
863
864 low = lower_32_bits(val);
865 high = upper_32_bits(val);
866
867 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
868
869 erratum_383_found = true;
870}
871
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500872static void svm_init_osvw(struct kvm_vcpu *vcpu)
873{
874 /*
875 * Guests should see errata 400 and 415 as fixed (assuming that
876 * HLT and IO instructions are intercepted).
877 */
878 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
879 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
880
881 /*
882 * By increasing VCPU's osvw.length to 3 we are telling the guest that
883 * all osvw.status bits inside that length, including bit 0 (which is
884 * reserved for erratum 298), are valid. However, if host processor's
885 * osvw_len is 0 then osvw_status[0] carries no information. We need to
886 * be conservative here and therefore we tell the guest that erratum 298
887 * is present (because we really don't know).
888 */
889 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
890 vcpu->arch.osvw.status |= 1;
891}
892
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893static int has_svm(void)
894{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200895 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896
Eduardo Habkost63d11422008-11-17 19:03:20 -0200897 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800898 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899 return 0;
900 }
901
Avi Kivity6aa8b732006-12-10 02:21:36 -0800902 return 1;
903}
904
Radim Krčmář13a34e02014-08-28 15:13:03 +0200905static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100907 /* Make sure we clean up behind us */
908 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
909 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
910
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200911 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100912
913 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914}
915
Radim Krčmář13a34e02014-08-28 15:13:03 +0200916static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917{
918
Tejun Heo0fe1e002009-10-29 22:34:14 +0900919 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 struct desc_struct *gdt;
922 int me = raw_smp_processor_id();
923
Alexander Graf10474ae2009-09-15 11:37:46 +0200924 rdmsrl(MSR_EFER, efer);
925 if (efer & EFER_SVME)
926 return -EBUSY;
927
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200929 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200930 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900932 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900933 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200934 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200935 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800936 }
937
Tejun Heo0fe1e002009-10-29 22:34:14 +0900938 sd->asid_generation = 1;
939 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
940 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600941 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942
Thomas Garnier45fc8752017-03-14 10:05:08 -0700943 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900944 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945
Alexander Graf9962d032008-11-25 20:17:02 +0100946 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947
Linus Torvaldsd0316552009-12-14 09:58:24 -0800948 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200949
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100950 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
951 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500952 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100953 }
954
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500955
956 /*
957 * Get OSVW bits.
958 *
959 * Note that it is possible to have a system with mixed processor
960 * revisions and therefore different OSVW bits. If bits are not the same
961 * on different processors then choose the worst case (i.e. if erratum
962 * is present on one processor and not on another then assume that the
963 * erratum is present everywhere).
964 */
965 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
966 uint64_t len, status = 0;
967 int err;
968
969 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
970 if (!err)
971 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
972 &err);
973
974 if (err)
975 osvw_status = osvw_len = 0;
976 else {
977 if (len < osvw_len)
978 osvw_len = len;
979 osvw_status |= status;
980 osvw_status &= (1ULL << osvw_len) - 1;
981 }
982 } else
983 osvw_status = osvw_len = 0;
984
Joerg Roedel67ec6602010-05-17 14:43:35 +0200985 svm_init_erratum_383();
986
Joerg Roedel1018faa2012-02-29 14:57:32 +0100987 amd_pmu_enable_virt();
988
Alexander Graf10474ae2009-09-15 11:37:46 +0200989 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990}
991
Joerg Roedel0da1db752008-07-02 16:02:11 +0200992static void svm_cpu_uninit(int cpu)
993{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200995
Tejun Heo0fe1e002009-10-29 22:34:14 +0900996 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200997 return;
998
999 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001000 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001001 __free_page(sd->save_area);
1002 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +02001003}
1004
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005static int svm_cpu_init(int cpu)
1006{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001007 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
Tejun Heo0fe1e002009-10-29 22:34:14 +09001009 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1010 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001012 sd->cpu = cpu;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001013 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001014 if (!sd->save_area)
Miaohe Lind80b64f2020-01-04 16:56:49 +08001015 goto free_cpu_data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001017 if (svm_sev_enabled()) {
Kees Cook6da2ec52018-06-12 13:55:00 -07001018 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1019 sizeof(void *),
1020 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001021 if (!sd->sev_vmcbs)
Miaohe Lind80b64f2020-01-04 16:56:49 +08001022 goto free_save_area;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001023 }
1024
Tejun Heo0fe1e002009-10-29 22:34:14 +09001025 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026
1027 return 0;
1028
Miaohe Lind80b64f2020-01-04 16:56:49 +08001029free_save_area:
1030 __free_page(sd->save_area);
1031free_cpu_data:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001032 kfree(sd);
Miaohe Lind80b64f2020-01-04 16:56:49 +08001033 return -ENOMEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034
1035}
1036
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001037static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038{
1039 int i;
1040
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001041 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1042 if (direct_access_msrs[i].index == index)
1043 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001045 return false;
1046}
1047
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001048static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1049{
1050 u8 bit_write;
1051 unsigned long tmp;
1052 u32 offset;
1053 u32 *msrpm;
1054
1055 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1056 to_svm(vcpu)->msrpm;
1057
1058 offset = svm_msrpm_offset(msr);
1059 bit_write = 2 * (msr & 0x0f) + 1;
1060 tmp = msrpm[offset];
1061
1062 BUG_ON(offset == MSR_INVALID);
1063
1064 return !!test_bit(bit_write, &tmp);
1065}
1066
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067static void set_msr_interception(u32 *msrpm, unsigned msr,
1068 int read, int write)
1069{
Joerg Roedel455716f2010-03-01 15:34:35 +01001070 u8 bit_read, bit_write;
1071 unsigned long tmp;
1072 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001074 /*
1075 * If this warning triggers extend the direct_access_msrs list at the
1076 * beginning of the file
1077 */
1078 WARN_ON(!valid_msr_intercept(msr));
1079
Joerg Roedel455716f2010-03-01 15:34:35 +01001080 offset = svm_msrpm_offset(msr);
1081 bit_read = 2 * (msr & 0x0f);
1082 bit_write = 2 * (msr & 0x0f) + 1;
1083 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084
Joerg Roedel455716f2010-03-01 15:34:35 +01001085 BUG_ON(offset == MSR_INVALID);
1086
1087 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1088 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1089
1090 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091}
1092
Joerg Roedelf65c2292008-02-13 18:58:46 +01001093static void svm_vcpu_init_msrpm(u32 *msrpm)
1094{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001095 int i;
1096
Joerg Roedelf65c2292008-02-13 18:58:46 +01001097 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1098
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001099 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1100 if (!direct_access_msrs[i].always)
1101 continue;
1102
1103 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1104 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001105}
1106
Joerg Roedel323c3d82010-03-01 15:34:37 +01001107static void add_msr_offset(u32 offset)
1108{
1109 int i;
1110
1111 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1112
1113 /* Offset already in list? */
1114 if (msrpm_offsets[i] == offset)
1115 return;
1116
1117 /* Slot used by another offset? */
1118 if (msrpm_offsets[i] != MSR_INVALID)
1119 continue;
1120
1121 /* Add offset to list */
1122 msrpm_offsets[i] = offset;
1123
1124 return;
1125 }
1126
1127 /*
1128 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1129 * increase MSRPM_OFFSETS in this case.
1130 */
1131 BUG();
1132}
1133
1134static void init_msrpm_offsets(void)
1135{
1136 int i;
1137
1138 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1139
1140 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1141 u32 offset;
1142
1143 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1144 BUG_ON(offset == MSR_INVALID);
1145
1146 add_msr_offset(offset);
1147 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001148}
1149
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001150static void svm_enable_lbrv(struct vcpu_svm *svm)
1151{
1152 u32 *msrpm = svm->msrpm;
1153
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001154 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001155 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1156 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1157 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1158 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1159}
1160
1161static void svm_disable_lbrv(struct vcpu_svm *svm)
1162{
1163 u32 *msrpm = svm->msrpm;
1164
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001165 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001166 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1167 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1168 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1169 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1170}
1171
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001172static void disable_nmi_singlestep(struct vcpu_svm *svm)
1173{
1174 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001175
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001176 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1177 /* Clear our flags if they were not set by the guest */
1178 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1179 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1180 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1181 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1182 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001183}
1184
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001185/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001186 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001187 * when handling AMD IOMMU GALOG notification to schedule in
1188 * a particular vCPU.
1189 */
1190#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001191static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001192static u32 next_vm_id = 0;
1193static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001194static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001195
1196/* Note:
1197 * This function is called from IOMMU driver to notify
1198 * SVM to schedule in a particular vCPU of a particular VM.
1199 */
1200static int avic_ga_log_notifier(u32 ga_tag)
1201{
1202 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001203 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001204 struct kvm_vcpu *vcpu = NULL;
1205 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1206 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1207
1208 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1209
1210 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001211 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1212 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001213 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001214 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001215 break;
1216 }
1217 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1218
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001219 /* Note:
1220 * At this point, the IOMMU should have already set the pending
1221 * bit in the vAPIC backing page. So, we just need to schedule
1222 * in the vcpu.
1223 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001224 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001225 kvm_vcpu_wake_up(vcpu);
1226
1227 return 0;
1228}
1229
Brijesh Singhe9df0942017-12-04 10:57:33 -06001230static __init int sev_hardware_setup(void)
1231{
1232 struct sev_user_data_status *status;
1233 int rc;
1234
1235 /* Maximum number of encrypted guests supported simultaneously */
1236 max_sev_asid = cpuid_ecx(0x8000001F);
1237
1238 if (!max_sev_asid)
1239 return 1;
1240
Brijesh Singh1654efc2017-12-04 10:57:34 -06001241 /* Minimum ASID value that should be used for SEV guest */
1242 min_sev_asid = cpuid_edx(0x8000001F);
1243
Tom Lendacky33af3a72019-10-03 21:17:48 +00001244 /* Initialize SEV ASID bitmaps */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001245 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001246 if (!sev_asid_bitmap)
1247 return 1;
1248
Tom Lendacky33af3a72019-10-03 21:17:48 +00001249 sev_reclaim_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
1250 if (!sev_reclaim_asid_bitmap)
1251 return 1;
1252
Brijesh Singhe9df0942017-12-04 10:57:33 -06001253 status = kmalloc(sizeof(*status), GFP_KERNEL);
1254 if (!status)
1255 return 1;
1256
1257 /*
1258 * Check SEV platform status.
1259 *
1260 * PLATFORM_STATUS can be called in any state, if we failed to query
1261 * the PLATFORM status then either PSP firmware does not support SEV
1262 * feature or SEV firmware is dead.
1263 */
1264 rc = sev_platform_status(status, NULL);
1265 if (rc)
1266 goto err;
1267
1268 pr_info("SEV supported\n");
1269
1270err:
1271 kfree(status);
1272 return rc;
1273}
1274
Babu Moger8566ac82018-03-16 16:37:26 -04001275static void grow_ple_window(struct kvm_vcpu *vcpu)
1276{
1277 struct vcpu_svm *svm = to_svm(vcpu);
1278 struct vmcb_control_area *control = &svm->vmcb->control;
1279 int old = control->pause_filter_count;
1280
1281 control->pause_filter_count = __grow_ple_window(old,
1282 pause_filter_count,
1283 pause_filter_count_grow,
1284 pause_filter_count_max);
1285
Peter Xu4f75bcc2019-09-06 10:17:22 +08001286 if (control->pause_filter_count != old) {
Babu Moger8566ac82018-03-16 16:37:26 -04001287 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001288 trace_kvm_ple_window_update(vcpu->vcpu_id,
1289 control->pause_filter_count, old);
1290 }
Babu Moger8566ac82018-03-16 16:37:26 -04001291}
1292
1293static void shrink_ple_window(struct kvm_vcpu *vcpu)
1294{
1295 struct vcpu_svm *svm = to_svm(vcpu);
1296 struct vmcb_control_area *control = &svm->vmcb->control;
1297 int old = control->pause_filter_count;
1298
1299 control->pause_filter_count =
1300 __shrink_ple_window(old,
1301 pause_filter_count,
1302 pause_filter_count_shrink,
1303 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001304 if (control->pause_filter_count != old) {
Babu Moger8566ac82018-03-16 16:37:26 -04001305 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001306 trace_kvm_ple_window_update(vcpu->vcpu_id,
1307 control->pause_filter_count, old);
1308 }
Babu Moger8566ac82018-03-16 16:37:26 -04001309}
1310
Tom Lendacky52918ed2020-01-09 17:42:16 -06001311/*
1312 * The default MMIO mask is a single bit (excluding the present bit),
1313 * which could conflict with the memory encryption bit. Check for
1314 * memory encryption support and override the default MMIO mask if
1315 * memory encryption is enabled.
1316 */
1317static __init void svm_adjust_mmio_mask(void)
1318{
1319 unsigned int enc_bit, mask_bit;
1320 u64 msr, mask;
1321
1322 /* If there is no memory encryption support, use existing mask */
1323 if (cpuid_eax(0x80000000) < 0x8000001f)
1324 return;
1325
1326 /* If memory encryption is not enabled, use existing mask */
1327 rdmsrl(MSR_K8_SYSCFG, msr);
1328 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
1329 return;
1330
1331 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
1332 mask_bit = boot_cpu_data.x86_phys_bits;
1333
1334 /* Increment the mask bit if it is the same as the encryption bit */
1335 if (enc_bit == mask_bit)
1336 mask_bit++;
1337
1338 /*
1339 * If the mask bit location is below 52, then some bits above the
1340 * physical addressing limit will always be reserved, so use the
1341 * rsvd_bits() function to generate the mask. This mask, along with
1342 * the present bit, will be used to generate a page fault with
1343 * PFER.RSV = 1.
1344 *
1345 * If the mask bit location is 52 (or above), then clear the mask.
1346 */
1347 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
1348
1349 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
1350}
1351
Li RongQingdd58f3c2020-02-23 16:13:12 +08001352static void svm_hardware_teardown(void)
1353{
1354 int cpu;
1355
1356 if (svm_sev_enabled()) {
1357 bitmap_free(sev_asid_bitmap);
1358 bitmap_free(sev_reclaim_asid_bitmap);
1359
1360 sev_flush_asids();
1361 }
1362
1363 for_each_possible_cpu(cpu)
1364 svm_cpu_uninit(cpu);
1365
1366 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
1367 iopm_base = 0;
1368}
1369
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370static __init int svm_hardware_setup(void)
1371{
1372 int cpu;
1373 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001374 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001375 int r;
1376
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1378
1379 if (!iopm_pages)
1380 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001381
1382 iopm_va = page_address(iopm_pages);
1383 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1385
Joerg Roedel323c3d82010-03-01 15:34:37 +01001386 init_msrpm_offsets();
1387
Sean Christophersoncfc48182020-03-02 15:56:23 -08001388 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
1389
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001390 if (boot_cpu_has(X86_FEATURE_NX))
1391 kvm_enable_efer_bits(EFER_NX);
1392
Alexander Graf1b2fd702009-02-02 16:23:51 +01001393 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1394 kvm_enable_efer_bits(EFER_FFXSR);
1395
Joerg Roedel92a1f122011-03-25 09:44:51 +01001396 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001397 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001398 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1399 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001400 }
1401
Babu Moger8566ac82018-03-16 16:37:26 -04001402 /* Check for pause filtering support */
1403 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1404 pause_filter_count = 0;
1405 pause_filter_thresh = 0;
1406 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1407 pause_filter_thresh = 0;
1408 }
1409
Alexander Graf236de052008-11-25 20:17:10 +01001410 if (nested) {
1411 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001412 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001413 }
1414
Brijesh Singhe9df0942017-12-04 10:57:33 -06001415 if (sev) {
1416 if (boot_cpu_has(X86_FEATURE_SEV) &&
1417 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1418 r = sev_hardware_setup();
1419 if (r)
1420 sev = false;
1421 } else {
1422 sev = false;
1423 }
1424 }
1425
Tom Lendacky52918ed2020-01-09 17:42:16 -06001426 svm_adjust_mmio_mask();
1427
Zachary Amsden3230bb42009-09-29 11:38:37 -10001428 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001429 r = svm_cpu_init(cpu);
1430 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001431 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001433
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001434 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001435 npt_enabled = false;
1436
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001437 if (npt_enabled && !npt) {
1438 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1439 npt_enabled = false;
1440 }
1441
Joerg Roedel18552672008-02-07 13:47:41 +01001442 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001443 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001444 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001445 } else
1446 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001447
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001448 if (nrips) {
1449 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1450 nrips = false;
1451 }
1452
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001453 if (avic) {
1454 if (!npt_enabled ||
1455 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001456 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001457 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001458 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001459 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001460
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001461 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1462 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001463 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001464
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001465 if (vls) {
1466 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001467 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001468 !IS_ENABLED(CONFIG_X86_64)) {
1469 vls = false;
1470 } else {
1471 pr_info("Virtual VMLOAD VMSAVE supported\n");
1472 }
1473 }
1474
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001475 if (vgif) {
1476 if (!boot_cpu_has(X86_FEATURE_VGIF))
1477 vgif = false;
1478 else
1479 pr_info("Virtual GIF supported\n");
1480 }
1481
Sean Christopherson66a69502020-03-02 15:56:41 -08001482 kvm_set_cpu_caps();
1483
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484 return 0;
1485
Joerg Roedelf65c2292008-02-13 18:58:46 +01001486err:
Li RongQingdd58f3c2020-02-23 16:13:12 +08001487 svm_hardware_teardown();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488 return r;
1489}
1490
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491static void init_seg(struct vmcb_seg *seg)
1492{
1493 seg->selector = 0;
1494 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001495 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496 seg->limit = 0xffff;
1497 seg->base = 0;
1498}
1499
1500static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1501{
1502 seg->selector = 0;
1503 seg->attrib = SVM_SELECTOR_P_MASK | type;
1504 seg->limit = 0xffff;
1505 seg->base = 0;
1506}
1507
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001508static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1509{
1510 struct vcpu_svm *svm = to_svm(vcpu);
1511
1512 if (is_guest_mode(vcpu))
1513 return svm->nested.hsave->control.tsc_offset;
1514
1515 return vcpu->arch.tsc_offset;
1516}
1517
Leonid Shatz326e7422018-11-06 12:14:25 +02001518static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001519{
1520 struct vcpu_svm *svm = to_svm(vcpu);
1521 u64 g_tsc_offset = 0;
1522
Joerg Roedel20307532010-11-29 17:51:48 +01001523 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001524 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001525 g_tsc_offset = svm->vmcb->control.tsc_offset -
1526 svm->nested.hsave->control.tsc_offset;
1527 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001528 }
1529
1530 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1531 svm->vmcb->control.tsc_offset - g_tsc_offset,
1532 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001533
1534 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001535
1536 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001537 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001538}
1539
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001540static void avic_init_vmcb(struct vcpu_svm *svm)
1541{
1542 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001543 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001544 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001545 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1546 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001547
1548 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1549 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1550 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1551 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001552 if (kvm_apicv_activated(svm->vcpu.kvm))
1553 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1554 else
1555 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001556}
1557
Paolo Bonzini56908912015-10-19 11:30:19 +02001558static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559{
Joerg Roedele6101a92008-02-13 18:58:45 +01001560 struct vmcb_control_area *control = &svm->vmcb->control;
1561 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001563 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001564
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001565 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1566 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1567 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1568 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1569 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1570 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001571 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1572 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573
Paolo Bonzini5315c712014-03-03 13:08:29 +01001574 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575
Joerg Roedel18c918c2010-11-30 18:03:59 +01001576 set_exception_intercept(svm, PF_VECTOR);
1577 set_exception_intercept(svm, UD_VECTOR);
1578 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001579 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001580 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001581 /*
1582 * Guest access to VMware backdoor ports could legitimately
1583 * trigger #GP because of TSS I/O permission bitmap.
1584 * We intercept those #GP and allow access to them anyway
1585 * as VMware does.
1586 */
1587 if (enable_vmware_backdoor)
1588 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001589
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001590 set_intercept(svm, INTERCEPT_INTR);
1591 set_intercept(svm, INTERCEPT_NMI);
1592 set_intercept(svm, INTERCEPT_SMI);
1593 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001594 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001595 set_intercept(svm, INTERCEPT_CPUID);
1596 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001597 set_intercept(svm, INTERCEPT_INVLPG);
1598 set_intercept(svm, INTERCEPT_INVLPGA);
1599 set_intercept(svm, INTERCEPT_IOIO_PROT);
1600 set_intercept(svm, INTERCEPT_MSR_PROT);
1601 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1602 set_intercept(svm, INTERCEPT_SHUTDOWN);
1603 set_intercept(svm, INTERCEPT_VMRUN);
1604 set_intercept(svm, INTERCEPT_VMMCALL);
1605 set_intercept(svm, INTERCEPT_VMLOAD);
1606 set_intercept(svm, INTERCEPT_VMSAVE);
1607 set_intercept(svm, INTERCEPT_STGI);
1608 set_intercept(svm, INTERCEPT_CLGI);
1609 set_intercept(svm, INTERCEPT_SKINIT);
1610 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001611 set_intercept(svm, INTERCEPT_XSETBV);
Jim Mattson0cb84102019-09-19 15:59:17 -07001612 set_intercept(svm, INTERCEPT_RDPRU);
Brijesh Singh7607b712018-02-19 10:14:44 -06001613 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001614
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001615 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001616 set_intercept(svm, INTERCEPT_MONITOR);
1617 set_intercept(svm, INTERCEPT_MWAIT);
1618 }
1619
Wanpeng Licaa057a2018-03-12 04:53:03 -07001620 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1621 set_intercept(svm, INTERCEPT_HLT);
1622
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001623 control->iopm_base_pa = __sme_set(iopm_base);
1624 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625 control->int_ctl = V_INTR_MASKING_MASK;
1626
1627 init_seg(&save->es);
1628 init_seg(&save->ss);
1629 init_seg(&save->ds);
1630 init_seg(&save->fs);
1631 init_seg(&save->gs);
1632
1633 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001634 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001635 /* Executable/Readable Code Segment */
1636 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1637 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1638 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639
1640 save->gdtr.limit = 0xffff;
1641 save->idtr.limit = 0xffff;
1642
1643 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1644 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1645
Paolo Bonzini56908912015-10-19 11:30:19 +02001646 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001647 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001648 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001650 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651
Joerg Roedele0231712010-02-24 18:59:10 +01001652 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001653 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001654 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001656 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001657 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001658
Rusty Russell66aee912007-07-17 23:34:16 +10001659 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001661
1662 if (npt_enabled) {
1663 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001664 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001665 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001666 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001667 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1668 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001669 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001670 save->cr3 = 0;
1671 save->cr4 = 0;
1672 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001673 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001674
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001675 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001676 svm->vcpu.arch.hflags = 0;
1677
Babu Moger8566ac82018-03-16 16:37:26 -04001678 if (pause_filter_count) {
1679 control->pause_filter_count = pause_filter_count;
1680 if (pause_filter_thresh)
1681 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001682 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001683 } else {
1684 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001685 }
1686
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001687 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001688 avic_init_vmcb(svm);
1689
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001690 /*
1691 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1692 * in VMCB and clear intercepts to avoid #VMEXIT.
1693 */
1694 if (vls) {
1695 clr_intercept(svm, INTERCEPT_VMLOAD);
1696 clr_intercept(svm, INTERCEPT_VMSAVE);
1697 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1698 }
1699
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001700 if (vgif) {
1701 clr_intercept(svm, INTERCEPT_STGI);
1702 clr_intercept(svm, INTERCEPT_CLGI);
1703 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1704 }
1705
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001706 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001707 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001708 clr_exception_intercept(svm, UD_VECTOR);
1709 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001710
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001711 mark_all_dirty(svm->vmcb);
1712
Joerg Roedel2af91942009-08-07 11:49:28 +02001713 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001714
1715}
1716
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001717static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1718 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001719{
1720 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001721 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001722
1723 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1724 return NULL;
1725
Sean Christopherson81811c12018-03-20 12:17:21 -07001726 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001727
1728 return &avic_physical_id_table[index];
1729}
1730
1731/**
1732 * Note:
1733 * AVIC hardware walks the nested page table to check permissions,
1734 * but does not use the SPA address specified in the leaf page
1735 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1736 * field of the VMCB. Therefore, we set up the
1737 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1738 */
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001739static int avic_update_access_page(struct kvm *kvm, bool activate)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001740{
Wei Wang30510382018-11-12 12:23:14 +00001741 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001742
Wei Wang30510382018-11-12 12:23:14 +00001743 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanite2ed4072019-11-14 14:15:16 -06001744 /*
1745 * During kvm_destroy_vm(), kvm_pit_set_reinject() could trigger
1746 * APICv mode change, which update APIC_ACCESS_PAGE_PRIVATE_MEMSLOT
1747 * memory region. So, we need to ensure that kvm->mm == current->mm.
1748 */
1749 if ((kvm->arch.apic_access_page_done == activate) ||
1750 (kvm->mm != current->mm))
Wei Wang30510382018-11-12 12:23:14 +00001751 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001752
Wei Wang30510382018-11-12 12:23:14 +00001753 ret = __x86_set_memory_region(kvm,
1754 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1755 APIC_DEFAULT_PHYS_BASE,
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001756 activate ? PAGE_SIZE : 0);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001757 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001758 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001759
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001760 kvm->arch.apic_access_page_done = activate;
Wei Wang30510382018-11-12 12:23:14 +00001761out:
1762 mutex_unlock(&kvm->slots_lock);
1763 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001764}
1765
1766static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1767{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001768 u64 *entry, new_entry;
1769 int id = vcpu->vcpu_id;
1770 struct vcpu_svm *svm = to_svm(vcpu);
1771
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001772 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1773 return -EINVAL;
1774
1775 if (!svm->vcpu.arch.apic->regs)
1776 return -EINVAL;
1777
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001778 if (kvm_apicv_activated(vcpu->kvm)) {
1779 int ret;
1780
1781 ret = avic_update_access_page(vcpu->kvm, true);
1782 if (ret)
1783 return ret;
1784 }
1785
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001786 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1787
1788 /* Setting AVIC backing page address in the phy APIC ID table */
1789 entry = avic_get_physical_id_entry(vcpu, id);
1790 if (!entry)
1791 return -EINVAL;
1792
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001793 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1794 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1795 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001796 WRITE_ONCE(*entry, new_entry);
1797
1798 svm->avic_physical_id_cache = entry;
1799
1800 return 0;
1801}
1802
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001803static void sev_asid_free(int asid)
Brijesh Singh1654efc2017-12-04 10:57:34 -06001804{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001805 struct svm_cpu_data *sd;
1806 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001807
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001808 mutex_lock(&sev_bitmap_lock);
1809
Brijesh Singh1654efc2017-12-04 10:57:34 -06001810 pos = asid - 1;
Tom Lendacky33af3a72019-10-03 21:17:48 +00001811 __set_bit(pos, sev_reclaim_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001812
1813 for_each_possible_cpu(cpu) {
1814 sd = per_cpu(svm_data, cpu);
1815 sd->sev_vmcbs[pos] = NULL;
1816 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001817
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001818 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001819}
1820
Brijesh Singh59414c92017-12-04 10:57:35 -06001821static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1822{
1823 struct sev_data_decommission *decommission;
1824 struct sev_data_deactivate *data;
1825
1826 if (!handle)
1827 return;
1828
1829 data = kzalloc(sizeof(*data), GFP_KERNEL);
1830 if (!data)
1831 return;
1832
1833 /* deactivate handle */
1834 data->handle = handle;
Tom Lendacky83af5e62019-10-03 21:17:45 +00001835
Tom Lendacky33af3a72019-10-03 21:17:48 +00001836 /* Guard DEACTIVATE against WBINVD/DF_FLUSH used in ASID recycling */
1837 down_read(&sev_deactivate_lock);
Brijesh Singh59414c92017-12-04 10:57:35 -06001838 sev_guest_deactivate(data, NULL);
Tom Lendacky33af3a72019-10-03 21:17:48 +00001839 up_read(&sev_deactivate_lock);
Tom Lendacky83af5e62019-10-03 21:17:45 +00001840
Brijesh Singh59414c92017-12-04 10:57:35 -06001841 kfree(data);
1842
1843 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1844 if (!decommission)
1845 return;
1846
1847 /* decommission handle */
1848 decommission->handle = handle;
1849 sev_guest_decommission(decommission, NULL);
1850
1851 kfree(decommission);
1852}
1853
Brijesh Singh89c50582017-12-04 10:57:35 -06001854static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1855 unsigned long ulen, unsigned long *n,
1856 int write)
1857{
Sean Christopherson81811c12018-03-20 12:17:21 -07001858 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001859 unsigned long npages, npinned, size;
1860 unsigned long locked, lock_limit;
1861 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001862 unsigned long first, last;
1863
1864 if (ulen == 0 || uaddr + ulen < uaddr)
1865 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001866
1867 /* Calculate number of pages. */
1868 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1869 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1870 npages = (last - first + 1);
1871
1872 locked = sev->pages_locked + npages;
1873 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1874 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1875 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1876 return NULL;
1877 }
1878
1879 /* Avoid using vmalloc for smaller buffers. */
1880 size = npages * sizeof(struct page *);
1881 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001882 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1883 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001884 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001885 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001886
1887 if (!pages)
1888 return NULL;
1889
1890 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001891 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001892 if (npinned != npages) {
1893 pr_err("SEV: Failure locking %lu pages.\n", npages);
1894 goto err;
1895 }
1896
1897 *n = npages;
1898 sev->pages_locked = locked;
1899
1900 return pages;
1901
1902err:
1903 if (npinned > 0)
1904 release_pages(pages, npinned);
1905
1906 kvfree(pages);
1907 return NULL;
1908}
1909
1910static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1911 unsigned long npages)
1912{
Sean Christopherson81811c12018-03-20 12:17:21 -07001913 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001914
1915 release_pages(pages, npages);
1916 kvfree(pages);
1917 sev->pages_locked -= npages;
1918}
1919
1920static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1921{
1922 uint8_t *page_virtual;
1923 unsigned long i;
1924
1925 if (npages == 0 || pages == NULL)
1926 return;
1927
1928 for (i = 0; i < npages; i++) {
1929 page_virtual = kmap_atomic(pages[i]);
1930 clflush_cache_range(page_virtual, PAGE_SIZE);
1931 kunmap_atomic(page_virtual);
1932 }
1933}
1934
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001935static void __unregister_enc_region_locked(struct kvm *kvm,
1936 struct enc_region *region)
1937{
1938 /*
1939 * The guest may change the memory encryption attribute from C=0 -> C=1
1940 * or vice versa for this memory range. Lets make sure caches are
1941 * flushed to ensure that guest data gets written into memory with
1942 * correct C-bit.
1943 */
1944 sev_clflush_pages(region->pages, region->npages);
1945
1946 sev_unpin_memory(kvm, region->pages, region->npages);
1947 list_del(&region->list);
1948 kfree(region);
1949}
1950
Brijesh Singh1654efc2017-12-04 10:57:34 -06001951static void sev_vm_destroy(struct kvm *kvm)
1952{
Sean Christopherson81811c12018-03-20 12:17:21 -07001953 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001954 struct list_head *head = &sev->regions_list;
1955 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001956
Brijesh Singh1654efc2017-12-04 10:57:34 -06001957 if (!sev_guest(kvm))
1958 return;
1959
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001960 mutex_lock(&kvm->lock);
1961
1962 /*
1963 * if userspace was terminated before unregistering the memory regions
1964 * then lets unpin all the registered memory.
1965 */
1966 if (!list_empty(head)) {
1967 list_for_each_safe(pos, q, head) {
1968 __unregister_enc_region_locked(kvm,
1969 list_entry(pos, struct enc_region, list));
1970 }
1971 }
1972
1973 mutex_unlock(&kvm->lock);
1974
Brijesh Singh59414c92017-12-04 10:57:35 -06001975 sev_unbind_asid(kvm, sev->handle);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001976 sev_asid_free(sev->asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001977}
1978
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001979static void avic_vm_destroy(struct kvm *kvm)
1980{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001981 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001982 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001983
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001984 if (!avic)
1985 return;
1986
Sean Christopherson81811c12018-03-20 12:17:21 -07001987 if (kvm_svm->avic_logical_id_table_page)
1988 __free_page(kvm_svm->avic_logical_id_table_page);
1989 if (kvm_svm->avic_physical_id_table_page)
1990 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001991
1992 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001993 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001994 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001995}
1996
Brijesh Singh1654efc2017-12-04 10:57:34 -06001997static void svm_vm_destroy(struct kvm *kvm)
1998{
1999 avic_vm_destroy(kvm);
2000 sev_vm_destroy(kvm);
2001}
2002
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002003static int avic_vm_init(struct kvm *kvm)
2004{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002005 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002006 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07002007 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
2008 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002009 struct page *p_page;
2010 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002011 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002012
2013 if (!avic)
2014 return 0;
2015
2016 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002017 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002018 if (!p_page)
2019 goto free_avic;
2020
Sean Christopherson81811c12018-03-20 12:17:21 -07002021 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002022 clear_page(page_address(p_page));
2023
2024 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002025 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002026 if (!l_page)
2027 goto free_avic;
2028
Sean Christopherson81811c12018-03-20 12:17:21 -07002029 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002030 clear_page(page_address(l_page));
2031
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002032 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002033 again:
2034 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
2035 if (vm_id == 0) { /* id is 1-based, zero is not okay */
2036 next_vm_id_wrapped = 1;
2037 goto again;
2038 }
2039 /* Is it still in use? Only possible if wrapped at least once */
2040 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07002041 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
2042 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002043 goto again;
2044 }
2045 }
Sean Christopherson81811c12018-03-20 12:17:21 -07002046 kvm_svm->avic_vm_id = vm_id;
2047 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002048 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
2049
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002050 return 0;
2051
2052free_avic:
2053 avic_vm_destroy(kvm);
2054 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002055}
2056
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06002057static int svm_vm_init(struct kvm *kvm)
2058{
2059 if (avic) {
2060 int ret = avic_vm_init(kvm);
2061 if (ret)
2062 return ret;
2063 }
2064
Paolo Bonzinie8ef2a12020-01-22 17:02:36 +01002065 kvm_apicv_init(kvm, avic);
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06002066 return 0;
2067}
2068
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002069static inline int
2070avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002071{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002072 int ret = 0;
2073 unsigned long flags;
2074 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002075 struct vcpu_svm *svm = to_svm(vcpu);
2076
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002077 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2078 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002079
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002080 /*
2081 * Here, we go through the per-vcpu ir_list to update all existing
2082 * interrupt remapping table entry targeting this vcpu.
2083 */
2084 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002085
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002086 if (list_empty(&svm->ir_list))
2087 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002088
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002089 list_for_each_entry(ir, &svm->ir_list, node) {
2090 ret = amd_iommu_update_ga(cpu, r, ir->data);
2091 if (ret)
2092 break;
2093 }
2094out:
2095 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2096 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002097}
2098
2099static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2100{
2101 u64 entry;
2102 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002103 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002104 struct vcpu_svm *svm = to_svm(vcpu);
2105
2106 if (!kvm_vcpu_apicv_active(vcpu))
2107 return;
2108
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002109 /*
2110 * Since the host physical APIC id is 8 bits,
2111 * we can support host APIC ID upto 255.
2112 */
2113 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002114 return;
2115
2116 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2117 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2118
2119 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2120 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2121
2122 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2123 if (svm->avic_is_running)
2124 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2125
2126 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002127 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2128 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002129}
2130
2131static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2132{
2133 u64 entry;
2134 struct vcpu_svm *svm = to_svm(vcpu);
2135
2136 if (!kvm_vcpu_apicv_active(vcpu))
2137 return;
2138
2139 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002140 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2141 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2142
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002143 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2144 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145}
2146
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002147/**
2148 * This function is called during VCPU halt/unhalt.
2149 */
2150static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2151{
2152 struct vcpu_svm *svm = to_svm(vcpu);
2153
2154 svm->avic_is_running = is_run;
2155 if (is_run)
2156 avic_vcpu_load(vcpu, vcpu->cpu);
2157 else
2158 avic_vcpu_put(vcpu);
2159}
2160
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002161static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002162{
2163 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002164 u32 dummy;
2165 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002166
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002167 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002168 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002169
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002170 if (!init_event) {
2171 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2172 MSR_IA32_APICBASE_ENABLE;
2173 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2174 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2175 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002176 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002177
Yu Zhange911eb32017-08-24 20:27:52 +08002178 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002179 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002180
2181 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2182 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002183}
2184
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002185static int avic_init_vcpu(struct vcpu_svm *svm)
2186{
2187 int ret;
2188
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002189 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002190 return 0;
2191
2192 ret = avic_init_backing_page(&svm->vcpu);
2193 if (ret)
2194 return ret;
2195
2196 INIT_LIST_HEAD(&svm->ir_list);
2197 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002198 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002199
2200 return ret;
2201}
2202
Sean Christopherson987b2592019-12-18 13:54:55 -08002203static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002204{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002205 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002207 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002208 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002209 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002210 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002211
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002212 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
2213 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002214
Joerg Roedelf65c2292008-02-13 18:58:46 +01002215 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002216 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002217 if (!page)
Sean Christopherson987b2592019-12-18 13:54:55 -08002218 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002219
Ben Gardon1ec69642019-02-11 11:02:51 -08002220 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002221 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002222 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002223
Ben Gardon1ec69642019-02-11 11:02:51 -08002224 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002225 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002226 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002227
Ben Gardon1ec69642019-02-11 11:02:51 -08002228 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002229 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002230 goto free_page3;
2231
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002232 err = avic_init_vcpu(svm);
2233 if (err)
2234 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002235
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002236 /* We initialize this flag to true to make sure that the is_running
2237 * bit would be set the first time the vcpu is loaded.
2238 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06002239 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
2240 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002241
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002242 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002243
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002244 svm->msrpm = page_address(msrpm_pages);
2245 svm_vcpu_init_msrpm(svm->msrpm);
2246
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002247 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002248 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002249
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002250 svm->vmcb = page_address(page);
2251 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002252 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002253 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002254 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255
Sean Christopherson7f271792019-12-18 13:54:51 -08002256 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01002257 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002258
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002259 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08002260
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002261free_page4:
2262 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002263free_page3:
2264 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2265free_page2:
2266 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2267free_page1:
2268 __free_page(page);
Sean Christopherson987b2592019-12-18 13:54:55 -08002269out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002270 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002271}
2272
Jim Mattsonfd65d312018-05-22 09:54:20 -07002273static void svm_clear_current_vmcb(struct vmcb *vmcb)
2274{
2275 int i;
2276
2277 for_each_online_cpu(i)
2278 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2279}
2280
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2282{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002283 struct vcpu_svm *svm = to_svm(vcpu);
2284
Jim Mattsonfd65d312018-05-22 09:54:20 -07002285 /*
2286 * The vmcb page can be recycled, causing a false negative in
2287 * svm_vcpu_load(). So, ensure that no logical CPU has this
2288 * vmcb page recorded as its current vmcb.
2289 */
2290 svm_clear_current_vmcb(svm->vmcb);
2291
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002292 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002293 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002294 __free_page(virt_to_page(svm->nested.hsave));
2295 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296}
2297
Avi Kivity15ad7142007-07-11 18:17:21 +03002298static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002299{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002300 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002301 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002302 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002303
Avi Kivity0cc50642007-03-25 12:07:27 +02002304 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002305 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002306 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002307 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002308
Avi Kivity82ca2d12010-10-21 12:20:34 +02002309#ifdef CONFIG_X86_64
2310 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2311#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002312 savesegment(fs, svm->host.fs);
2313 savesegment(gs, svm->host.gs);
2314 svm->host.ldt = kvm_read_ldt();
2315
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002316 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002317 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002318
Haozhong Zhangad7218832015-10-20 15:39:02 +08002319 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2320 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2321 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2322 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2323 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2324 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002325 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002326 /* This assumes that the kernel never uses MSR_TSC_AUX */
2327 if (static_cpu_has(X86_FEATURE_RDTSCP))
2328 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002329
Ashok Raj15d45072018-02-01 22:59:43 +01002330 if (sd->current_vmcb != svm->vmcb) {
2331 sd->current_vmcb = svm->vmcb;
2332 indirect_branch_prediction_barrier();
2333 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002334 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335}
2336
2337static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2338{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002339 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002340 int i;
2341
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002342 avic_vcpu_put(vcpu);
2343
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002344 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002345 kvm_load_ldt(svm->host.ldt);
2346#ifdef CONFIG_X86_64
2347 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002348 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002349 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002350#else
Avi Kivity831ca602011-03-08 16:09:51 +02002351#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002352 loadsegment(gs, svm->host.gs);
2353#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002354#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002355 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002356 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002357}
2358
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002359static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2360{
2361 avic_set_running(vcpu, false);
2362}
2363
2364static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2365{
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06002366 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
2367 kvm_vcpu_update_apicv(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002368 avic_set_running(vcpu, true);
2369}
2370
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2372{
Ladi Prosek9b611742017-06-21 09:06:59 +02002373 struct vcpu_svm *svm = to_svm(vcpu);
2374 unsigned long rflags = svm->vmcb->save.rflags;
2375
2376 if (svm->nmi_singlestep) {
2377 /* Hide our flags if they were not set by the guest */
2378 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2379 rflags &= ~X86_EFLAGS_TF;
2380 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2381 rflags &= ~X86_EFLAGS_RF;
2382 }
2383 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384}
2385
2386static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2387{
Ladi Prosek9b611742017-06-21 09:06:59 +02002388 if (to_svm(vcpu)->nmi_singlestep)
2389 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2390
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002391 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002392 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002393 * (caused by either a task switch or an inter-privilege IRET),
2394 * so we do not need to update the CPL here.
2395 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002396 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002397}
2398
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002399static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2400{
2401 switch (reg) {
2402 case VCPU_EXREG_PDPTR:
2403 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002404 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002405 break;
2406 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002407 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002408 }
2409}
2410
Alexander Graff0b85052008-11-25 20:17:01 +01002411static void svm_set_vintr(struct vcpu_svm *svm)
2412{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002413 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002414}
2415
2416static void svm_clear_vintr(struct vcpu_svm *svm)
2417{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002418 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002419}
2420
Avi Kivity6aa8b732006-12-10 02:21:36 -08002421static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2422{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002423 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424
2425 switch (seg) {
2426 case VCPU_SREG_CS: return &save->cs;
2427 case VCPU_SREG_DS: return &save->ds;
2428 case VCPU_SREG_ES: return &save->es;
2429 case VCPU_SREG_FS: return &save->fs;
2430 case VCPU_SREG_GS: return &save->gs;
2431 case VCPU_SREG_SS: return &save->ss;
2432 case VCPU_SREG_TR: return &save->tr;
2433 case VCPU_SREG_LDTR: return &save->ldtr;
2434 }
2435 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002436 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002437}
2438
2439static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2440{
2441 struct vmcb_seg *s = svm_seg(vcpu, seg);
2442
2443 return s->base;
2444}
2445
2446static void svm_get_segment(struct kvm_vcpu *vcpu,
2447 struct kvm_segment *var, int seg)
2448{
2449 struct vmcb_seg *s = svm_seg(vcpu, seg);
2450
2451 var->base = s->base;
2452 var->limit = s->limit;
2453 var->selector = s->selector;
2454 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2455 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2456 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2457 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2458 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2459 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2460 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302461
2462 /*
2463 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2464 * However, the SVM spec states that the G bit is not observed by the
2465 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2466 * So let's synthesize a legal G bit for all segments, this helps
2467 * running KVM nested. It also helps cross-vendor migration, because
2468 * Intel's vmentry has a check on the 'G' bit.
2469 */
2470 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002471
Joerg Roedele0231712010-02-24 18:59:10 +01002472 /*
2473 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002474 * for cross vendor migration purposes by "not present"
2475 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002476 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002477
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002478 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002479 case VCPU_SREG_TR:
2480 /*
2481 * Work around a bug where the busy flag in the tr selector
2482 * isn't exposed
2483 */
Amit Shahc0d09822008-10-27 09:04:18 +00002484 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002485 break;
2486 case VCPU_SREG_DS:
2487 case VCPU_SREG_ES:
2488 case VCPU_SREG_FS:
2489 case VCPU_SREG_GS:
2490 /*
2491 * The accessed bit must always be set in the segment
2492 * descriptor cache, although it can be cleared in the
2493 * descriptor, the cached bit always remains at 1. Since
2494 * Intel has a check on this, set it here to support
2495 * cross-vendor migration.
2496 */
2497 if (!var->unusable)
2498 var->type |= 0x1;
2499 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002500 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002501 /*
2502 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002503 * descriptor is left as 1, although the whole segment has
2504 * been made unusable. Clear it here to pass an Intel VMX
2505 * entry check when cross vendor migrating.
2506 */
2507 if (var->unusable)
2508 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002509 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002510 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002511 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002512 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002513}
2514
Izik Eidus2e4d2652008-03-24 19:38:34 +02002515static int svm_get_cpl(struct kvm_vcpu *vcpu)
2516{
2517 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2518
2519 return save->cpl;
2520}
2521
Gleb Natapov89a27f42010-02-16 10:51:48 +02002522static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002524 struct vcpu_svm *svm = to_svm(vcpu);
2525
Gleb Natapov89a27f42010-02-16 10:51:48 +02002526 dt->size = svm->vmcb->save.idtr.limit;
2527 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002528}
2529
Gleb Natapov89a27f42010-02-16 10:51:48 +02002530static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002531{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002532 struct vcpu_svm *svm = to_svm(vcpu);
2533
Gleb Natapov89a27f42010-02-16 10:51:48 +02002534 svm->vmcb->save.idtr.limit = dt->size;
2535 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002536 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537}
2538
Gleb Natapov89a27f42010-02-16 10:51:48 +02002539static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002540{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002541 struct vcpu_svm *svm = to_svm(vcpu);
2542
Gleb Natapov89a27f42010-02-16 10:51:48 +02002543 dt->size = svm->vmcb->save.gdtr.limit;
2544 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002545}
2546
Gleb Natapov89a27f42010-02-16 10:51:48 +02002547static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002548{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002549 struct vcpu_svm *svm = to_svm(vcpu);
2550
Gleb Natapov89a27f42010-02-16 10:51:48 +02002551 svm->vmcb->save.gdtr.limit = dt->size;
2552 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002553 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554}
2555
Avi Kivitye8467fd2009-12-29 18:43:06 +02002556static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2557{
2558}
2559
Anthony Liguori25c4c272007-04-27 09:29:21 +03002560static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002561{
2562}
2563
Avi Kivityd2251572010-01-06 10:55:27 +02002564static void update_cr0_intercept(struct vcpu_svm *svm)
2565{
2566 ulong gcr0 = svm->vcpu.arch.cr0;
2567 u64 *hcr0 = &svm->vmcb->save.cr0;
2568
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002569 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2570 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002571
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002572 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002573
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002574 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002575 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2576 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002577 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002578 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2579 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002580 }
2581}
2582
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2584{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002585 struct vcpu_svm *svm = to_svm(vcpu);
2586
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002587#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002588 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002589 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002590 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002591 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592 }
2593
Mike Dayd77c26f2007-10-08 09:02:08 -04002594 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002595 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002596 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597 }
2598 }
2599#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002600 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002601
2602 if (!npt_enabled)
2603 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002604
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002605 /*
2606 * re-enable caching here because the QEMU bios
2607 * does not do it - this results in some delay at
2608 * reboot
2609 */
2610 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2611 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002612 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002613 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002614 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002615}
2616
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002617static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002619 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002620 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2621
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002622 if (cr4 & X86_CR4_VMXE)
2623 return 1;
2624
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002625 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002626 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002627
Joerg Roedelec077262008-04-09 14:15:28 +02002628 vcpu->arch.cr4 = cr4;
2629 if (!npt_enabled)
2630 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002631 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002632 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002633 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002634 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002635}
2636
2637static void svm_set_segment(struct kvm_vcpu *vcpu,
2638 struct kvm_segment *var, int seg)
2639{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002640 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641 struct vmcb_seg *s = svm_seg(vcpu, seg);
2642
2643 s->base = var->base;
2644 s->limit = var->limit;
2645 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002646 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2647 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2648 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2649 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2650 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2651 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2652 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2653 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002654
2655 /*
2656 * This is always accurate, except if SYSRET returned to a segment
2657 * with SS.DPL != 3. Intel does not have this quirk, and always
2658 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2659 * would entail passing the CPL to userspace and back.
2660 */
2661 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002662 /* This is symmetric with svm_get_segment() */
2663 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664
Joerg Roedel060d0c92010-12-03 11:45:57 +01002665 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666}
2667
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002668static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002669{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002670 struct vcpu_svm *svm = to_svm(vcpu);
2671
Joerg Roedel18c918c2010-11-30 18:03:59 +01002672 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002673
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002674 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002675 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002676 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002677 } else
2678 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002679}
2680
Tejun Heo0fe1e002009-10-29 22:34:14 +09002681static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002682{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002683 if (sd->next_asid > sd->max_asid) {
2684 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002685 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002686 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002687 }
2688
Tejun Heo0fe1e002009-10-29 22:34:14 +09002689 svm->asid_generation = sd->asid_generation;
2690 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002691
2692 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002693}
2694
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002695static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2696{
2697 return to_svm(vcpu)->vmcb->save.dr6;
2698}
2699
2700static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2701{
2702 struct vcpu_svm *svm = to_svm(vcpu);
2703
2704 svm->vmcb->save.dr6 = value;
2705 mark_dirty(svm->vmcb, VMCB_DR);
2706}
2707
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002708static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2709{
2710 struct vcpu_svm *svm = to_svm(vcpu);
2711
2712 get_debugreg(vcpu->arch.db[0], 0);
2713 get_debugreg(vcpu->arch.db[1], 1);
2714 get_debugreg(vcpu->arch.db[2], 2);
2715 get_debugreg(vcpu->arch.db[3], 3);
2716 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2717 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2718
2719 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2720 set_dr_intercepts(svm);
2721}
2722
Gleb Natapov020df072010-04-13 10:05:23 +03002723static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002725 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002726
Gleb Natapov020df072010-04-13 10:05:23 +03002727 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002728 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729}
2730
Avi Kivity851ba692009-08-24 11:10:17 +03002731static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002733 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002734 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002736 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002737 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2738 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002739 svm->vmcb->control.insn_len);
2740}
2741
2742static int npf_interception(struct vcpu_svm *svm)
2743{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002744 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002745 u64 error_code = svm->vmcb->control.exit_info_1;
2746
2747 trace_kvm_page_fault(fault_address, error_code);
2748 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002749 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2750 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002751 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752}
2753
Avi Kivity851ba692009-08-24 11:10:17 +03002754static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002755{
Avi Kivity851ba692009-08-24 11:10:17 +03002756 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002757 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002758
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002759 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002760 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002761 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002762 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2763 return 1;
2764 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002765
Jan Kiszka6be7d302009-10-18 13:24:54 +02002766 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002767 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002768 /* Make sure we check for pending NMIs upon entry */
2769 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002770 }
2771
2772 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002773 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002774 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2775 kvm_run->debug.arch.pc =
2776 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2777 kvm_run->debug.arch.exception = DB_VECTOR;
2778 return 0;
2779 }
2780
2781 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002782}
2783
Avi Kivity851ba692009-08-24 11:10:17 +03002784static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002785{
Avi Kivity851ba692009-08-24 11:10:17 +03002786 struct kvm_run *kvm_run = svm->vcpu.run;
2787
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002788 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2789 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2790 kvm_run->debug.arch.exception = BP_VECTOR;
2791 return 0;
2792}
2793
Avi Kivity851ba692009-08-24 11:10:17 +03002794static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002795{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002796 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002797}
2798
Eric Northup54a20552015-11-03 18:03:53 +01002799static int ac_interception(struct vcpu_svm *svm)
2800{
2801 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2802 return 1;
2803}
2804
Liran Alon97184202018-03-12 13:12:52 +02002805static int gp_interception(struct vcpu_svm *svm)
2806{
2807 struct kvm_vcpu *vcpu = &svm->vcpu;
2808 u32 error_code = svm->vmcb->control.exit_info_1;
Liran Alon97184202018-03-12 13:12:52 +02002809
2810 WARN_ON_ONCE(!enable_vmware_backdoor);
2811
Sean Christophersona6c6ed12019-08-27 14:40:30 -07002812 /*
2813 * VMware backdoor emulation on #GP interception only handles IN{S},
2814 * OUT{S}, and RDPMC, none of which generate a non-zero error code.
2815 */
2816 if (error_code) {
2817 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2818 return 1;
2819 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002820 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon97184202018-03-12 13:12:52 +02002821}
2822
Joerg Roedel67ec6602010-05-17 14:43:35 +02002823static bool is_erratum_383(void)
2824{
2825 int err, i;
2826 u64 value;
2827
2828 if (!erratum_383_found)
2829 return false;
2830
2831 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2832 if (err)
2833 return false;
2834
2835 /* Bit 62 may or may not be set for this mce */
2836 value &= ~(1ULL << 62);
2837
2838 if (value != 0xb600000000010015ULL)
2839 return false;
2840
2841 /* Clear MCi_STATUS registers */
2842 for (i = 0; i < 6; ++i)
2843 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2844
2845 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2846 if (!err) {
2847 u32 low, high;
2848
2849 value &= ~(1ULL << 2);
2850 low = lower_32_bits(value);
2851 high = upper_32_bits(value);
2852
2853 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2854 }
2855
2856 /* Flush tlb to evict multi-match entries */
2857 __flush_tlb_all();
2858
2859 return true;
2860}
2861
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002862static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002863{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002864 if (is_erratum_383()) {
2865 /*
2866 * Erratum 383 triggered. Guest state is corrupt so kill the
2867 * guest.
2868 */
2869 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2870
Avi Kivitya8eeb042010-05-10 12:34:53 +03002871 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002872
2873 return;
2874 }
2875
Joerg Roedel53371b52008-04-09 14:15:30 +02002876 /*
2877 * On an #MC intercept the MCE handler is not called automatically in
2878 * the host. So do it by hand here.
2879 */
2880 asm volatile (
2881 "int $0x12\n");
2882 /* not sure if we ever come back to this point */
2883
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002884 return;
2885}
2886
2887static int mc_interception(struct vcpu_svm *svm)
2888{
Joerg Roedel53371b52008-04-09 14:15:30 +02002889 return 1;
2890}
2891
Avi Kivity851ba692009-08-24 11:10:17 +03002892static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002893{
Avi Kivity851ba692009-08-24 11:10:17 +03002894 struct kvm_run *kvm_run = svm->vcpu.run;
2895
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002896 /*
2897 * VMCB is undefined after a SHUTDOWN intercept
2898 * so reinitialize it.
2899 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002900 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002901 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002902
2903 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2904 return 0;
2905}
2906
Avi Kivity851ba692009-08-24 11:10:17 +03002907static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002909 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002910 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002911 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002912 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002913
Rusty Russelle756fc62007-07-30 20:07:08 +10002914 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002915 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002916 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002917 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002918 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002919
Avi Kivity039576c2007-03-20 12:46:50 +02002920 port = io_info >> 16;
2921 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002922 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002923
Sean Christophersondca7f122018-03-08 08:57:27 -08002924 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925}
2926
Avi Kivity851ba692009-08-24 11:10:17 +03002927static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002928{
2929 return 1;
2930}
2931
Avi Kivity851ba692009-08-24 11:10:17 +03002932static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002933{
2934 ++svm->vcpu.stat.irq_exits;
2935 return 1;
2936}
2937
Avi Kivity851ba692009-08-24 11:10:17 +03002938static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939{
2940 return 1;
2941}
2942
Avi Kivity851ba692009-08-24 11:10:17 +03002943static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944{
Rusty Russelle756fc62007-07-30 20:07:08 +10002945 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946}
2947
Avi Kivity851ba692009-08-24 11:10:17 +03002948static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002949{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002950 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002951}
2952
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002953static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2954{
2955 struct vcpu_svm *svm = to_svm(vcpu);
2956
2957 return svm->nested.nested_cr3;
2958}
2959
Avi Kivitye4e517b2011-07-28 11:36:17 +03002960static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2961{
2962 struct vcpu_svm *svm = to_svm(vcpu);
2963 u64 cr3 = svm->nested.nested_cr3;
2964 u64 pdpte;
2965 int ret;
2966
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002967 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002968 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002969 if (ret)
2970 return 0;
2971 return pdpte;
2972}
2973
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002974static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2975 unsigned long root)
2976{
2977 struct vcpu_svm *svm = to_svm(vcpu);
2978
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002979 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002980 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002981}
2982
Avi Kivity6389ee92010-11-29 16:12:30 +02002983static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2984 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002985{
2986 struct vcpu_svm *svm = to_svm(vcpu);
2987
Paolo Bonzini5e352512014-09-02 13:18:37 +02002988 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2989 /*
2990 * TODO: track the cause of the nested page fault, and
2991 * correctly fill in the high bits of exit_info_1.
2992 */
2993 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2994 svm->vmcb->control.exit_code_hi = 0;
2995 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2996 svm->vmcb->control.exit_info_2 = fault->address;
2997 }
2998
2999 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
3000 svm->vmcb->control.exit_info_1 |= fault->error_code;
3001
3002 /*
3003 * The present bit is always zero for page structure faults on real
3004 * hardware.
3005 */
3006 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
3007 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02003008
3009 nested_svm_vmexit(svm);
3010}
3011
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003012static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02003013{
Paolo Bonziniad896af2013-10-02 16:56:14 +02003014 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003015
3016 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02003017 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003018 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
Sean Christophersond8dd54e2020-03-02 18:02:39 -08003019 vcpu->arch.mmu->get_guest_pgd = nested_svm_get_tdp_cr3;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003020 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
3021 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
3022 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
3023 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02003024 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003025}
3026
3027static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
3028{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003029 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003030 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003031}
3032
Alexander Grafc0725422008-11-25 20:17:03 +01003033static int nested_svm_check_permissions(struct vcpu_svm *svm)
3034{
Dan Carpentere9196ce2017-05-18 10:39:53 +03003035 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3036 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01003037 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3038 return 1;
3039 }
3040
3041 if (svm->vmcb->save.cpl) {
3042 kvm_inject_gp(&svm->vcpu, 0);
3043 return 1;
3044 }
3045
Dan Carpentere9196ce2017-05-18 10:39:53 +03003046 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003047}
3048
Alexander Grafcf74a782008-11-25 20:17:08 +01003049static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3050 bool has_error_code, u32 error_code)
3051{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003052 int vmexit;
3053
Joerg Roedel20307532010-11-29 17:51:48 +01003054 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003055 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003056
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003057 vmexit = nested_svm_intercept(svm);
3058 if (vmexit != NESTED_EXIT_DONE)
3059 return 0;
3060
Joerg Roedel0295ad72009-08-07 11:49:37 +02003061 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3062 svm->vmcb->control.exit_code_hi = 0;
3063 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003064
3065 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003066 * EXITINFO2 is undefined for all exception intercepts other
3067 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003068 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003069 if (svm->vcpu.arch.exception.nested_apf)
3070 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003071 else if (svm->vcpu.arch.exception.has_payload)
3072 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003073 else
3074 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003075
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003076 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003077 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003078}
3079
Joerg Roedel8fe54652010-02-19 16:23:01 +01003080/* This function returns true if it is save to enable the irq window */
3081static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003082{
Joerg Roedel20307532010-11-29 17:51:48 +01003083 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003084 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003085
Joerg Roedel26666952009-08-07 11:49:46 +02003086 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003087 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003088
Joerg Roedel26666952009-08-07 11:49:46 +02003089 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003090 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003091
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003092 /*
3093 * if vmexit was already requested (by intercepted exception
3094 * for instance) do not overwrite it with "external interrupt"
3095 * vmexit.
3096 */
3097 if (svm->nested.exit_required)
3098 return false;
3099
Joerg Roedel197717d2010-02-24 18:59:19 +01003100 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3101 svm->vmcb->control.exit_info_1 = 0;
3102 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003103
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003104 if (svm->nested.intercept & 1ULL) {
3105 /*
3106 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003107 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003108 * #vmexit emulation might sleep. Only signal request for
3109 * the #vmexit here.
3110 */
3111 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003112 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003113 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003114 }
3115
Joerg Roedel8fe54652010-02-19 16:23:01 +01003116 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003117}
3118
Joerg Roedel887f5002010-02-24 18:59:12 +01003119/* This function returns true if it is save to enable the nmi window */
3120static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3121{
Joerg Roedel20307532010-11-29 17:51:48 +01003122 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003123 return true;
3124
3125 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3126 return true;
3127
3128 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3129 svm->nested.exit_required = true;
3130
3131 return false;
3132}
3133
Joerg Roedelce2ac082010-03-01 15:34:39 +01003134static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003135{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003136 unsigned port, size, iopm_len;
3137 u16 val, mask;
3138 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003139 u64 gpa;
3140
3141 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3142 return NESTED_EXIT_HOST;
3143
3144 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003145 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3146 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003147 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003148 start_bit = port % 8;
3149 iopm_len = (start_bit + size > 8) ? 2 : 1;
3150 mask = (0xf >> (4 - size)) << start_bit;
3151 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003152
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003153 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003154 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003155
Jan Kiszka9bf41832014-06-30 10:54:17 +02003156 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003157}
3158
Joerg Roedeld2477822010-03-01 15:34:34 +01003159static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003160{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003161 u32 offset, msr, value;
3162 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003163
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003164 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003165 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003166
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003167 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3168 offset = svm_msrpm_offset(msr);
3169 write = svm->vmcb->control.exit_info_1 & 1;
3170 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003171
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003172 if (offset == MSR_INVALID)
3173 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003174
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003175 /* Offset is in 32 bit units but need in 8 bit units */
3176 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003177
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003178 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003179 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003180
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003181 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003182}
3183
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003184/* DB exceptions for our internal use must not cause vmexit */
3185static int nested_svm_intercept_db(struct vcpu_svm *svm)
3186{
3187 unsigned long dr6;
3188
3189 /* if we're not singlestepping, it's not ours */
3190 if (!svm->nmi_singlestep)
3191 return NESTED_EXIT_DONE;
3192
3193 /* if it's not a singlestep exception, it's not ours */
3194 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3195 return NESTED_EXIT_DONE;
3196 if (!(dr6 & DR6_BS))
3197 return NESTED_EXIT_DONE;
3198
3199 /* if the guest is singlestepping, it should get the vmexit */
3200 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3201 disable_nmi_singlestep(svm);
3202 return NESTED_EXIT_DONE;
3203 }
3204
3205 /* it's ours, the nested hypervisor must not see this one */
3206 return NESTED_EXIT_HOST;
3207}
3208
Joerg Roedel410e4d52009-08-07 11:49:44 +02003209static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003210{
Alexander Grafcf74a782008-11-25 20:17:08 +01003211 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003212
Joerg Roedel410e4d52009-08-07 11:49:44 +02003213 switch (exit_code) {
3214 case SVM_EXIT_INTR:
3215 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003216 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003217 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003218 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003219 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003220 if (npt_enabled)
3221 return NESTED_EXIT_HOST;
3222 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003223 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003224 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003225 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003226 return NESTED_EXIT_HOST;
3227 break;
3228 default:
3229 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003230 }
3231
Joerg Roedel410e4d52009-08-07 11:49:44 +02003232 return NESTED_EXIT_CONTINUE;
3233}
3234
3235/*
3236 * If this function returns true, this #vmexit was already handled
3237 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003238static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003239{
3240 u32 exit_code = svm->vmcb->control.exit_code;
3241 int vmexit = NESTED_EXIT_HOST;
3242
Alexander Grafcf74a782008-11-25 20:17:08 +01003243 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003244 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003245 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003246 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003247 case SVM_EXIT_IOIO:
3248 vmexit = nested_svm_intercept_ioio(svm);
3249 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003250 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3251 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3252 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003253 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003254 break;
3255 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003256 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3257 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3258 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003259 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003260 break;
3261 }
3262 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3263 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003264 if (svm->nested.intercept_exceptions & excp_bits) {
3265 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3266 vmexit = nested_svm_intercept_db(svm);
3267 else
3268 vmexit = NESTED_EXIT_DONE;
3269 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003270 /* async page fault always cause vmexit */
3271 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003272 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003273 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003274 break;
3275 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003276 case SVM_EXIT_ERR: {
3277 vmexit = NESTED_EXIT_DONE;
3278 break;
3279 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003280 default: {
3281 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003282 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003283 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003284 }
3285 }
3286
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003287 return vmexit;
3288}
3289
3290static int nested_svm_exit_handled(struct vcpu_svm *svm)
3291{
3292 int vmexit;
3293
3294 vmexit = nested_svm_intercept(svm);
3295
3296 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003297 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003298
3299 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003300}
3301
Joerg Roedel0460a972009-08-07 11:49:31 +02003302static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3303{
3304 struct vmcb_control_area *dst = &dst_vmcb->control;
3305 struct vmcb_control_area *from = &from_vmcb->control;
3306
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003307 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003308 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003309 dst->intercept_exceptions = from->intercept_exceptions;
3310 dst->intercept = from->intercept;
3311 dst->iopm_base_pa = from->iopm_base_pa;
3312 dst->msrpm_base_pa = from->msrpm_base_pa;
3313 dst->tsc_offset = from->tsc_offset;
3314 dst->asid = from->asid;
3315 dst->tlb_ctl = from->tlb_ctl;
3316 dst->int_ctl = from->int_ctl;
3317 dst->int_vector = from->int_vector;
3318 dst->int_state = from->int_state;
3319 dst->exit_code = from->exit_code;
3320 dst->exit_code_hi = from->exit_code_hi;
3321 dst->exit_info_1 = from->exit_info_1;
3322 dst->exit_info_2 = from->exit_info_2;
3323 dst->exit_int_info = from->exit_int_info;
3324 dst->exit_int_info_err = from->exit_int_info_err;
3325 dst->nested_ctl = from->nested_ctl;
3326 dst->event_inj = from->event_inj;
3327 dst->event_inj_err = from->event_inj_err;
3328 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003329 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003330 dst->pause_filter_count = from->pause_filter_count;
3331 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003332}
3333
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003334static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003335{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003336 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003337 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003338 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003339 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003340 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003341
Joerg Roedel17897f32009-10-09 16:08:29 +02003342 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3343 vmcb->control.exit_info_1,
3344 vmcb->control.exit_info_2,
3345 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003346 vmcb->control.exit_int_info_err,
3347 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003348
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003349 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003350 if (rc) {
3351 if (rc == -EINVAL)
3352 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003353 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003354 }
3355
3356 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003357
Joerg Roedel20307532010-11-29 17:51:48 +01003358 /* Exit Guest-Mode */
3359 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003360 svm->nested.vmcb = 0;
3361
Alexander Grafcf74a782008-11-25 20:17:08 +01003362 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003363 disable_gif(svm);
3364
3365 nested_vmcb->save.es = vmcb->save.es;
3366 nested_vmcb->save.cs = vmcb->save.cs;
3367 nested_vmcb->save.ss = vmcb->save.ss;
3368 nested_vmcb->save.ds = vmcb->save.ds;
3369 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3370 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003371 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003372 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003373 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003374 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003375 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003376 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003377 nested_vmcb->save.rip = vmcb->save.rip;
3378 nested_vmcb->save.rsp = vmcb->save.rsp;
3379 nested_vmcb->save.rax = vmcb->save.rax;
3380 nested_vmcb->save.dr7 = vmcb->save.dr7;
3381 nested_vmcb->save.dr6 = vmcb->save.dr6;
3382 nested_vmcb->save.cpl = vmcb->save.cpl;
3383
3384 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3385 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3386 nested_vmcb->control.int_state = vmcb->control.int_state;
3387 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3388 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3389 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3390 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3391 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3392 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003393
3394 if (svm->nrips_enabled)
3395 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003396
3397 /*
3398 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3399 * to make sure that we do not lose injected events. So check event_inj
3400 * here and copy it to exit_int_info if it is valid.
3401 * Exit_int_info and event_inj can't be both valid because the case
3402 * below only happens on a VMRUN instruction intercept which has
3403 * no valid exit_int_info set.
3404 */
3405 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3406 struct vmcb_control_area *nc = &nested_vmcb->control;
3407
3408 nc->exit_int_info = vmcb->control.event_inj;
3409 nc->exit_int_info_err = vmcb->control.event_inj_err;
3410 }
3411
Joerg Roedel33740e42009-08-07 11:49:29 +02003412 nested_vmcb->control.tlb_ctl = 0;
3413 nested_vmcb->control.event_inj = 0;
3414 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003415
Tambe, Williame0813542018-11-13 16:51:20 +00003416 nested_vmcb->control.pause_filter_count =
3417 svm->vmcb->control.pause_filter_count;
3418 nested_vmcb->control.pause_filter_thresh =
3419 svm->vmcb->control.pause_filter_thresh;
3420
Alexander Grafcf74a782008-11-25 20:17:08 +01003421 /* We always set V_INTR_MASKING and remember the old value in hflags */
3422 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3423 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3424
Alexander Grafcf74a782008-11-25 20:17:08 +01003425 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003426 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003427
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003428 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003429 kvm_clear_exception_queue(&svm->vcpu);
3430 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003431
Joerg Roedel4b161842010-09-10 17:31:03 +02003432 svm->nested.nested_cr3 = 0;
3433
Alexander Grafcf74a782008-11-25 20:17:08 +01003434 /* Restore selected save entries */
3435 svm->vmcb->save.es = hsave->save.es;
3436 svm->vmcb->save.cs = hsave->save.cs;
3437 svm->vmcb->save.ss = hsave->save.ss;
3438 svm->vmcb->save.ds = hsave->save.ds;
3439 svm->vmcb->save.gdtr = hsave->save.gdtr;
3440 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003441 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003442 svm_set_efer(&svm->vcpu, hsave->save.efer);
3443 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3444 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3445 if (npt_enabled) {
3446 svm->vmcb->save.cr3 = hsave->save.cr3;
3447 svm->vcpu.arch.cr3 = hsave->save.cr3;
3448 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003449 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003450 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003451 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003452 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3453 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003454 svm->vmcb->save.dr7 = 0;
3455 svm->vmcb->save.cpl = 0;
3456 svm->vmcb->control.exit_int_info = 0;
3457
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003458 mark_all_dirty(svm->vmcb);
3459
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003460 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003461
Joerg Roedel4b161842010-09-10 17:31:03 +02003462 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003463 kvm_mmu_reset_context(&svm->vcpu);
3464 kvm_mmu_load(&svm->vcpu);
3465
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003466 /*
3467 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3468 * doesn't end up in L1.
3469 */
3470 svm->vcpu.arch.nmi_injected = false;
3471 kvm_clear_exception_queue(&svm->vcpu);
3472 kvm_clear_interrupt_queue(&svm->vcpu);
3473
Alexander Grafcf74a782008-11-25 20:17:08 +01003474 return 0;
3475}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003476
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003477static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003478{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003479 /*
3480 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003481 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003482 * the kvm msr permission bitmap may contain zero bits
3483 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003484 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003485
Joerg Roedel323c3d82010-03-01 15:34:37 +01003486 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3487 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003488
Joerg Roedel323c3d82010-03-01 15:34:37 +01003489 for (i = 0; i < MSRPM_OFFSETS; i++) {
3490 u32 value, p;
3491 u64 offset;
3492
3493 if (msrpm_offsets[i] == 0xffffffff)
3494 break;
3495
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003496 p = msrpm_offsets[i];
3497 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003498
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003499 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003500 return false;
3501
3502 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3503 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003504
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003505 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003506
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003507 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003508}
3509
Joerg Roedel52c65a302010-08-02 16:46:44 +02003510static bool nested_vmcb_checks(struct vmcb *vmcb)
3511{
3512 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3513 return false;
3514
Joerg Roedeldbe77582010-08-02 16:46:45 +02003515 if (vmcb->control.asid == 0)
3516 return false;
3517
Tom Lendackycea3a192017-12-04 10:57:24 -06003518 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3519 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003520 return false;
3521
Joerg Roedel52c65a302010-08-02 16:46:44 +02003522 return true;
3523}
3524
Ladi Prosekc2634062017-10-11 16:54:44 +02003525static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003526 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003527{
Avi Kivityf6e78472010-08-02 15:30:20 +03003528 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003529 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3530 else
3531 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3532
Tom Lendackycea3a192017-12-04 10:57:24 -06003533 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003534 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3535 nested_svm_init_mmu_context(&svm->vcpu);
3536 }
3537
Alexander Graf3d6368e2008-11-25 20:17:07 +01003538 /* Load the nested guest state */
3539 svm->vmcb->save.es = nested_vmcb->save.es;
3540 svm->vmcb->save.cs = nested_vmcb->save.cs;
3541 svm->vmcb->save.ss = nested_vmcb->save.ss;
3542 svm->vmcb->save.ds = nested_vmcb->save.ds;
3543 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3544 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003545 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003546 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3547 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3548 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3549 if (npt_enabled) {
3550 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3551 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003552 } else
Avi Kivity23902182010-06-10 17:02:16 +03003553 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003554
3555 /* Guest paging mode is active - reset mmu */
3556 kvm_mmu_reset_context(&svm->vcpu);
3557
Joerg Roedeldefbba52009-08-07 11:49:30 +02003558 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003559 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003560 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3561 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003562
Alexander Graf3d6368e2008-11-25 20:17:07 +01003563 /* In case we don't even reach vcpu_run, the fields are not updated */
3564 svm->vmcb->save.rax = nested_vmcb->save.rax;
3565 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3566 svm->vmcb->save.rip = nested_vmcb->save.rip;
3567 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3568 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3569 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3570
Joerg Roedelf7138532010-03-01 15:34:40 +01003571 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003572 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003573
Joerg Roedelaad42c62009-08-07 11:49:34 +02003574 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003575 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003576 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003577 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3578 svm->nested.intercept = nested_vmcb->control.intercept;
3579
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003580 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003581 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003582 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3583 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3584 else
3585 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3586
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003587 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3588 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003589 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3590 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003591 }
3592
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003593 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003594 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003595
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003596 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3597 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3598
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003599 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003600 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3601 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003602 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3603 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3604
Tambe, Williame0813542018-11-13 16:51:20 +00003605 svm->vmcb->control.pause_filter_count =
3606 nested_vmcb->control.pause_filter_count;
3607 svm->vmcb->control.pause_filter_thresh =
3608 nested_vmcb->control.pause_filter_thresh;
3609
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003610 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003611
Joerg Roedel20307532010-11-29 17:51:48 +01003612 /* Enter Guest-Mode */
3613 enter_guest_mode(&svm->vcpu);
3614
Joerg Roedel384c6362010-11-30 18:03:56 +01003615 /*
3616 * Merge guest and host intercepts - must be called with vcpu in
3617 * guest-mode to take affect here
3618 */
3619 recalc_intercepts(svm);
3620
Joerg Roedel06fc77722010-02-19 16:23:07 +01003621 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003622
Joerg Roedel2af91942009-08-07 11:49:28 +02003623 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003624
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003625 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003626}
3627
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003628static int nested_svm_vmrun(struct vcpu_svm *svm)
Ladi Prosekc2634062017-10-11 16:54:44 +02003629{
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003630 int ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003631 struct vmcb *nested_vmcb;
3632 struct vmcb *hsave = svm->nested.hsave;
3633 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003634 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003635 u64 vmcb_gpa;
3636
3637 vmcb_gpa = svm->vmcb->save.rax;
3638
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003639 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
Dan Carpentera0619852019-08-27 12:38:52 +03003640 if (ret == -EINVAL) {
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003641 kvm_inject_gp(&svm->vcpu, 0);
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003642 return 1;
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003643 } else if (ret) {
3644 return kvm_skip_emulated_instruction(&svm->vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003645 }
3646
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003647 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3648
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003649 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003650
3651 if (!nested_vmcb_checks(nested_vmcb)) {
3652 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3653 nested_vmcb->control.exit_code_hi = 0;
3654 nested_vmcb->control.exit_info_1 = 0;
3655 nested_vmcb->control.exit_info_2 = 0;
3656
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003657 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003658
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003659 return ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003660 }
3661
3662 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3663 nested_vmcb->save.rip,
3664 nested_vmcb->control.int_ctl,
3665 nested_vmcb->control.event_inj,
3666 nested_vmcb->control.nested_ctl);
3667
3668 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3669 nested_vmcb->control.intercept_cr >> 16,
3670 nested_vmcb->control.intercept_exceptions,
3671 nested_vmcb->control.intercept);
3672
3673 /* Clear internal status */
3674 kvm_clear_exception_queue(&svm->vcpu);
3675 kvm_clear_interrupt_queue(&svm->vcpu);
3676
3677 /*
3678 * Save the old vmcb, so we don't need to pick what we save, but can
3679 * restore everything when a VMEXIT occurs
3680 */
3681 hsave->save.es = vmcb->save.es;
3682 hsave->save.cs = vmcb->save.cs;
3683 hsave->save.ss = vmcb->save.ss;
3684 hsave->save.ds = vmcb->save.ds;
3685 hsave->save.gdtr = vmcb->save.gdtr;
3686 hsave->save.idtr = vmcb->save.idtr;
3687 hsave->save.efer = svm->vcpu.arch.efer;
3688 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3689 hsave->save.cr4 = svm->vcpu.arch.cr4;
3690 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3691 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3692 hsave->save.rsp = vmcb->save.rsp;
3693 hsave->save.rax = vmcb->save.rax;
3694 if (npt_enabled)
3695 hsave->save.cr3 = vmcb->save.cr3;
3696 else
3697 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3698
3699 copy_vmcb_control_area(hsave, vmcb);
3700
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003701 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003702
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003703 if (!nested_svm_vmrun_msrpm(svm)) {
3704 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3705 svm->vmcb->control.exit_code_hi = 0;
3706 svm->vmcb->control.exit_info_1 = 0;
3707 svm->vmcb->control.exit_info_2 = 0;
3708
3709 nested_svm_vmexit(svm);
3710 }
3711
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003712 return ret;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003713}
3714
Joerg Roedel9966bf62009-08-07 11:49:40 +02003715static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003716{
3717 to_vmcb->save.fs = from_vmcb->save.fs;
3718 to_vmcb->save.gs = from_vmcb->save.gs;
3719 to_vmcb->save.tr = from_vmcb->save.tr;
3720 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3721 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3722 to_vmcb->save.star = from_vmcb->save.star;
3723 to_vmcb->save.lstar = from_vmcb->save.lstar;
3724 to_vmcb->save.cstar = from_vmcb->save.cstar;
3725 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3726 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3727 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3728 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003729}
3730
Avi Kivity851ba692009-08-24 11:10:17 +03003731static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003732{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003733 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003734 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003735 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003736
Alexander Graf55426752008-11-25 20:17:06 +01003737 if (nested_svm_check_permissions(svm))
3738 return 1;
3739
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003740 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3741 if (ret) {
3742 if (ret == -EINVAL)
3743 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003744 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003745 }
3746
3747 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003748
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003749 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003750
Joerg Roedel9966bf62009-08-07 11:49:40 +02003751 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003752 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003753
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003754 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003755}
3756
Avi Kivity851ba692009-08-24 11:10:17 +03003757static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003758{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003759 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003760 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003761 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003762
Alexander Graf55426752008-11-25 20:17:06 +01003763 if (nested_svm_check_permissions(svm))
3764 return 1;
3765
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003766 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3767 if (ret) {
3768 if (ret == -EINVAL)
3769 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003770 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003771 }
3772
3773 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003774
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003775 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003776
Joerg Roedel9966bf62009-08-07 11:49:40 +02003777 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003778 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003779
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003780 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003781}
3782
Avi Kivity851ba692009-08-24 11:10:17 +03003783static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003784{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003785 if (nested_svm_check_permissions(svm))
3786 return 1;
3787
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003788 return nested_svm_vmrun(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003789}
3790
Avi Kivity851ba692009-08-24 11:10:17 +03003791static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003792{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003793 int ret;
3794
Alexander Graf1371d902008-11-25 20:17:04 +01003795 if (nested_svm_check_permissions(svm))
3796 return 1;
3797
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003798 /*
3799 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003800 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003801 */
3802 if (vgif_enabled(svm))
3803 clr_intercept(svm, INTERCEPT_STGI);
3804
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003805 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003806 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003807
Joerg Roedel2af91942009-08-07 11:49:28 +02003808 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003809
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003810 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003811}
3812
Avi Kivity851ba692009-08-24 11:10:17 +03003813static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003814{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003815 int ret;
3816
Alexander Graf1371d902008-11-25 20:17:04 +01003817 if (nested_svm_check_permissions(svm))
3818 return 1;
3819
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003820 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003821
Joerg Roedel2af91942009-08-07 11:49:28 +02003822 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003823
3824 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003825 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3826 svm_clear_vintr(svm);
3827 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3828 mark_dirty(svm->vmcb, VMCB_INTR);
3829 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003830
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003831 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003832}
3833
Avi Kivity851ba692009-08-24 11:10:17 +03003834static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003835{
3836 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003837
Sean Christophersonde3cd112019-04-30 10:36:17 -07003838 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3839 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003840
Alexander Grafff092382009-06-15 15:21:24 +02003841 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003842 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003843
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003844 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003845}
3846
Joerg Roedel532a46b2009-10-09 16:08:32 +02003847static int skinit_interception(struct vcpu_svm *svm)
3848{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003849 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003850
3851 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3852 return 1;
3853}
3854
David Kaplandab429a2015-03-02 13:43:37 -06003855static int wbinvd_interception(struct vcpu_svm *svm)
3856{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003857 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003858}
3859
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003860static int xsetbv_interception(struct vcpu_svm *svm)
3861{
3862 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003863 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003864
3865 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003866 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003867 }
3868
3869 return 1;
3870}
3871
Jim Mattson0cb84102019-09-19 15:59:17 -07003872static int rdpru_interception(struct vcpu_svm *svm)
3873{
3874 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3875 return 1;
3876}
3877
Avi Kivity851ba692009-08-24 11:10:17 +03003878static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003879{
Izik Eidus37817f22008-03-24 23:14:53 +02003880 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003881 int reason;
3882 int int_type = svm->vmcb->control.exit_int_info &
3883 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003884 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003885 uint32_t type =
3886 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3887 uint32_t idt_v =
3888 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003889 bool has_error_code = false;
3890 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003891
3892 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003893
Izik Eidus37817f22008-03-24 23:14:53 +02003894 if (svm->vmcb->control.exit_info_2 &
3895 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003896 reason = TASK_SWITCH_IRET;
3897 else if (svm->vmcb->control.exit_info_2 &
3898 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3899 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003900 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003901 reason = TASK_SWITCH_GATE;
3902 else
3903 reason = TASK_SWITCH_CALL;
3904
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003905 if (reason == TASK_SWITCH_GATE) {
3906 switch (type) {
3907 case SVM_EXITINTINFO_TYPE_NMI:
3908 svm->vcpu.arch.nmi_injected = false;
3909 break;
3910 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003911 if (svm->vmcb->control.exit_info_2 &
3912 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3913 has_error_code = true;
3914 error_code =
3915 (u32)svm->vmcb->control.exit_info_2;
3916 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003917 kvm_clear_exception_queue(&svm->vcpu);
3918 break;
3919 case SVM_EXITINTINFO_TYPE_INTR:
3920 kvm_clear_interrupt_queue(&svm->vcpu);
3921 break;
3922 default:
3923 break;
3924 }
3925 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003926
Gleb Natapov8317c292009-04-12 13:37:02 +03003927 if (reason != TASK_SWITCH_GATE ||
3928 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3929 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003930 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003931 if (!skip_emulated_instruction(&svm->vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07003932 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003933 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003934
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003935 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3936 int_vec = -1;
3937
Sean Christopherson10517782019-08-27 14:40:35 -07003938 return kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003939 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940}
3941
Avi Kivity851ba692009-08-24 11:10:17 +03003942static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943{
Kyle Huey6a908b62016-11-29 12:40:37 -08003944 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945}
3946
Avi Kivity851ba692009-08-24 11:10:17 +03003947static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003948{
3949 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003950 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003951 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003952 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003953 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003954 return 1;
3955}
3956
Avi Kivity851ba692009-08-24 11:10:17 +03003957static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003958{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003959 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003960 return kvm_emulate_instruction(&svm->vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01003961
3962 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003963 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003964}
3965
Avi Kivity851ba692009-08-24 11:10:17 +03003966static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003968 return kvm_emulate_instruction(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003969}
3970
Brijesh Singh7607b712018-02-19 10:14:44 -06003971static int rsm_interception(struct vcpu_svm *svm)
3972{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003973 return kvm_emulate_instruction_from_buffer(&svm->vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06003974}
3975
Avi Kivity332b56e2011-11-10 14:57:24 +02003976static int rdpmc_interception(struct vcpu_svm *svm)
3977{
3978 int err;
3979
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003980 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003981 return emulate_on_interception(svm);
3982
3983 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003984 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003985}
3986
Xiubo Li52eb5a62015-03-13 17:39:45 +08003987static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3988 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003989{
3990 unsigned long cr0 = svm->vcpu.arch.cr0;
3991 bool ret = false;
3992 u64 intercept;
3993
3994 intercept = svm->nested.intercept;
3995
3996 if (!is_guest_mode(&svm->vcpu) ||
3997 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3998 return false;
3999
4000 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
4001 val &= ~SVM_CR0_SELECTIVE_MASK;
4002
4003 if (cr0 ^ val) {
4004 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4005 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
4006 }
4007
4008 return ret;
4009}
4010
Andre Przywara7ff76d52010-12-21 11:12:04 +01004011#define CR_VALID (1ULL << 63)
4012
4013static int cr_interception(struct vcpu_svm *svm)
4014{
4015 int reg, cr;
4016 unsigned long val;
4017 int err;
4018
4019 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
4020 return emulate_on_interception(svm);
4021
4022 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4023 return emulate_on_interception(svm);
4024
4025 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004026 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4027 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4028 else
4029 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004030
4031 err = 0;
4032 if (cr >= 16) { /* mov to cr */
4033 cr -= 16;
4034 val = kvm_register_read(&svm->vcpu, reg);
4035 switch (cr) {
4036 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004037 if (!check_selective_cr0_intercepted(svm, val))
4038 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004039 else
4040 return 1;
4041
Andre Przywara7ff76d52010-12-21 11:12:04 +01004042 break;
4043 case 3:
4044 err = kvm_set_cr3(&svm->vcpu, val);
4045 break;
4046 case 4:
4047 err = kvm_set_cr4(&svm->vcpu, val);
4048 break;
4049 case 8:
4050 err = kvm_set_cr8(&svm->vcpu, val);
4051 break;
4052 default:
4053 WARN(1, "unhandled write to CR%d", cr);
4054 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4055 return 1;
4056 }
4057 } else { /* mov from cr */
4058 switch (cr) {
4059 case 0:
4060 val = kvm_read_cr0(&svm->vcpu);
4061 break;
4062 case 2:
4063 val = svm->vcpu.arch.cr2;
4064 break;
4065 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004066 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004067 break;
4068 case 4:
4069 val = kvm_read_cr4(&svm->vcpu);
4070 break;
4071 case 8:
4072 val = kvm_get_cr8(&svm->vcpu);
4073 break;
4074 default:
4075 WARN(1, "unhandled read from CR%d", cr);
4076 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4077 return 1;
4078 }
4079 kvm_register_write(&svm->vcpu, reg, val);
4080 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004081 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004082}
4083
Andre Przywaracae37972010-12-21 11:12:05 +01004084static int dr_interception(struct vcpu_svm *svm)
4085{
4086 int reg, dr;
4087 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004088
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004089 if (svm->vcpu.guest_debug == 0) {
4090 /*
4091 * No more DR vmexits; force a reload of the debug registers
4092 * and reenter on this instruction. The next vmexit will
4093 * retrieve the full state of the debug registers.
4094 */
4095 clr_dr_intercepts(svm);
4096 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4097 return 1;
4098 }
4099
Andre Przywaracae37972010-12-21 11:12:05 +01004100 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4101 return emulate_on_interception(svm);
4102
4103 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4104 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4105
4106 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004107 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4108 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004109 val = kvm_register_read(&svm->vcpu, reg);
4110 kvm_set_dr(&svm->vcpu, dr - 16, val);
4111 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004112 if (!kvm_require_dr(&svm->vcpu, dr))
4113 return 1;
4114 kvm_get_dr(&svm->vcpu, dr, &val);
4115 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004116 }
4117
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004118 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004119}
4120
Avi Kivity851ba692009-08-24 11:10:17 +03004121static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004122{
Avi Kivity851ba692009-08-24 11:10:17 +03004123 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004124 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004125
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004126 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4127 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004128 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004129 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004130 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004131 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004132 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004133 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4134 return 0;
4135}
4136
Tom Lendacky801e4592018-02-21 13:39:51 -06004137static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4138{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004139 msr->data = 0;
4140
4141 switch (msr->index) {
4142 case MSR_F10H_DECFG:
4143 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4144 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4145 break;
4146 default:
4147 return 1;
4148 }
4149
4150 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004151}
4152
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004153static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004154{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004155 struct vcpu_svm *svm = to_svm(vcpu);
4156
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004157 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004158 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004159 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004160 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004161#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004163 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004164 break;
4165 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004166 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004167 break;
4168 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004169 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004170 break;
4171 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004172 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004173 break;
4174#endif
4175 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004176 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004177 break;
4178 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004179 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180 break;
4181 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004182 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004183 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004184 case MSR_TSC_AUX:
4185 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4186 return 1;
4187 msr_info->data = svm->tsc_aux;
4188 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004189 /*
4190 * Nobody will change the following 5 values in the VMCB so we can
4191 * safely return them on rdmsr. They will always be 0 until LBRV is
4192 * implemented.
4193 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004194 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004195 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004196 break;
4197 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004198 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004199 break;
4200 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004201 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004202 break;
4203 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004204 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004205 break;
4206 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004207 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004208 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004209 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004210 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004211 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004212 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004213 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004214 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004215 case MSR_IA32_SPEC_CTRL:
4216 if (!msr_info->host_initiated &&
Paolo Bonzinidf7e8812020-02-05 16:10:52 +01004217 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4218 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004219 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4220 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004221 return 1;
4222
4223 msr_info->data = svm->spec_ctrl;
4224 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004225 case MSR_AMD64_VIRT_SPEC_CTRL:
4226 if (!msr_info->host_initiated &&
4227 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4228 return 1;
4229
4230 msr_info->data = svm->virt_spec_ctrl;
4231 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004232 case MSR_F15H_IC_CFG: {
4233
4234 int family, model;
4235
4236 family = guest_cpuid_family(vcpu);
4237 model = guest_cpuid_model(vcpu);
4238
4239 if (family < 0 || model < 0)
4240 return kvm_get_msr_common(vcpu, msr_info);
4241
4242 msr_info->data = 0;
4243
4244 if (family == 0x15 &&
4245 (model >= 0x2 && model < 0x20))
4246 msr_info->data = 0x1E;
4247 }
4248 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004249 case MSR_F10H_DECFG:
4250 msr_info->data = svm->msr_decfg;
4251 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004253 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254 }
4255 return 0;
4256}
4257
Avi Kivity851ba692009-08-24 11:10:17 +03004258static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004260 return kvm_emulate_rdmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004261}
4262
Joerg Roedel4a810182010-02-24 18:59:15 +01004263static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4264{
4265 struct vcpu_svm *svm = to_svm(vcpu);
4266 int svm_dis, chg_mask;
4267
4268 if (data & ~SVM_VM_CR_VALID_MASK)
4269 return 1;
4270
4271 chg_mask = SVM_VM_CR_VALID_MASK;
4272
4273 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4274 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4275
4276 svm->nested.vm_cr_msr &= ~chg_mask;
4277 svm->nested.vm_cr_msr |= (data & chg_mask);
4278
4279 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4280
4281 /* check for svm_disable while efer.svme is set */
4282 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4283 return 1;
4284
4285 return 0;
4286}
4287
Will Auld8fe8ab42012-11-29 12:42:12 -08004288static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004289{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004290 struct vcpu_svm *svm = to_svm(vcpu);
4291
Will Auld8fe8ab42012-11-29 12:42:12 -08004292 u32 ecx = msr->index;
4293 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004294 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004295 case MSR_IA32_CR_PAT:
4296 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4297 return 1;
4298 vcpu->arch.pat = data;
4299 svm->vmcb->save.g_pat = data;
4300 mark_dirty(svm->vmcb, VMCB_NPT);
4301 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004302 case MSR_IA32_SPEC_CTRL:
4303 if (!msr->host_initiated &&
Paolo Bonzinidf7e8812020-02-05 16:10:52 +01004304 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4305 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004306 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4307 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004308 return 1;
4309
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004310 if (data & ~kvm_spec_ctrl_valid_bits(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004311 return 1;
4312
4313 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004314 if (!data)
4315 break;
4316
4317 /*
4318 * For non-nested:
4319 * When it's written (to non-zero) for the first time, pass
4320 * it through.
4321 *
4322 * For nested:
4323 * The handling of the MSR bitmap for L2 guests is done in
4324 * nested_svm_vmrun_msrpm.
4325 * We update the L1 MSR bit as well since it will end up
4326 * touching the MSR anyway now.
4327 */
4328 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4329 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004330 case MSR_IA32_PRED_CMD:
4331 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004332 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004333 return 1;
4334
4335 if (data & ~PRED_CMD_IBPB)
4336 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004337 if (!boot_cpu_has(X86_FEATURE_AMD_IBPB))
4338 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01004339 if (!data)
4340 break;
4341
4342 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Ashok Raj15d45072018-02-01 22:59:43 +01004343 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4344 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004345 case MSR_AMD64_VIRT_SPEC_CTRL:
4346 if (!msr->host_initiated &&
4347 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4348 return 1;
4349
4350 if (data & ~SPEC_CTRL_SSBD)
4351 return 1;
4352
4353 svm->virt_spec_ctrl = data;
4354 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004355 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004356 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004357 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004358#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004359 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004360 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004361 break;
4362 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004363 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 break;
4365 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004366 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 break;
4368 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004369 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370 break;
4371#endif
4372 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004373 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004374 break;
4375 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004376 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004377 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004378 break;
4379 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004380 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004381 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004382 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004383 case MSR_TSC_AUX:
4384 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4385 return 1;
4386
4387 /*
4388 * This is rare, so we update the MSR here instead of using
4389 * direct_access_msrs. Doing that would require a rdmsr in
4390 * svm_vcpu_put.
4391 */
4392 svm->tsc_aux = data;
4393 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4394 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004395 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004396 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004397 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4398 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004399 break;
4400 }
4401 if (data & DEBUGCTL_RESERVED_BITS)
4402 return 1;
4403
4404 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004405 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004406 if (data & (1ULL<<0))
4407 svm_enable_lbrv(svm);
4408 else
4409 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004410 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004411 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004412 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004413 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004414 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004415 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004416 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004417 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004418 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004419 case MSR_F10H_DECFG: {
4420 struct kvm_msr_entry msr_entry;
4421
4422 msr_entry.index = msr->index;
4423 if (svm_get_msr_feature(&msr_entry))
4424 return 1;
4425
4426 /* Check the supported bits */
4427 if (data & ~msr_entry.data)
4428 return 1;
4429
4430 /* Don't allow the guest to change a bit, #GP */
4431 if (!msr->host_initiated && (data ^ msr_entry.data))
4432 return 1;
4433
4434 svm->msr_decfg = data;
4435 break;
4436 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004437 case MSR_IA32_APICBASE:
4438 if (kvm_vcpu_apicv_active(vcpu))
4439 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004440 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004442 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004443 }
4444 return 0;
4445}
4446
Avi Kivity851ba692009-08-24 11:10:17 +03004447static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004448{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004449 return kvm_emulate_wrmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004450}
4451
Avi Kivity851ba692009-08-24 11:10:17 +03004452static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453{
Rusty Russelle756fc62007-07-30 20:07:08 +10004454 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004455 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456 else
Avi Kivity851ba692009-08-24 11:10:17 +03004457 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458}
4459
Avi Kivity851ba692009-08-24 11:10:17 +03004460static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004461{
Avi Kivity3842d132010-07-27 12:30:24 +03004462 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004463 svm_clear_vintr(svm);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06004464
4465 /*
4466 * For AVIC, the only reason to end up here is ExtINTs.
4467 * In this case AVIC was temporarily disabled for
4468 * requesting the IRQ window and we have to re-enable it.
4469 */
4470 svm_toggle_avic_for_irq_window(&svm->vcpu, true);
4471
Eddie Dong85f455f2007-07-06 12:20:49 +03004472 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004473 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004474 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004475 return 1;
4476}
4477
Mark Langsdorf565d0992009-10-06 14:25:02 -05004478static int pause_interception(struct vcpu_svm *svm)
4479{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004480 struct kvm_vcpu *vcpu = &svm->vcpu;
4481 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4482
Babu Moger8566ac82018-03-16 16:37:26 -04004483 if (pause_filter_thresh)
4484 grow_ple_window(vcpu);
4485
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004486 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004487 return 1;
4488}
4489
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004490static int nop_interception(struct vcpu_svm *svm)
4491{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004492 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004493}
4494
4495static int monitor_interception(struct vcpu_svm *svm)
4496{
4497 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4498 return nop_interception(svm);
4499}
4500
4501static int mwait_interception(struct vcpu_svm *svm)
4502{
4503 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4504 return nop_interception(svm);
4505}
4506
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004507enum avic_ipi_failure_cause {
4508 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4509 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4510 AVIC_IPI_FAILURE_INVALID_TARGET,
4511 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4512};
4513
4514static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4515{
4516 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4517 u32 icrl = svm->vmcb->control.exit_info_1;
4518 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004519 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004520 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4521
4522 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4523
4524 switch (id) {
4525 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4526 /*
4527 * AVIC hardware handles the generation of
4528 * IPIs when the specified Message Type is Fixed
4529 * (also known as fixed delivery mode) and
4530 * the Trigger Mode is edge-triggered. The hardware
4531 * also supports self and broadcast delivery modes
4532 * specified via the Destination Shorthand(DSH)
4533 * field of the ICRL. Logical and physical APIC ID
4534 * formats are supported. All other IPI types cause
4535 * a #VMEXIT, which needs to emulated.
4536 */
4537 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4538 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4539 break;
4540 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004541 int i;
4542 struct kvm_vcpu *vcpu;
4543 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004544 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4545
4546 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004547 * At this point, we expect that the AVIC HW has already
4548 * set the appropriate IRR bits on the valid target
4549 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004550 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004551 kvm_for_each_vcpu(i, vcpu, kvm) {
4552 bool m = kvm_apic_match_dest(vcpu, apic,
Peter Xuac8ef992019-12-04 20:07:19 +01004553 icrl & APIC_SHORT_MASK,
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004554 GET_APIC_DEST_FIELD(icrh),
Peter Xuac8ef992019-12-04 20:07:19 +01004555 icrl & APIC_DEST_MASK);
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004556
4557 if (m && !avic_vcpu_is_running(vcpu))
4558 kvm_vcpu_wake_up(vcpu);
4559 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004560 break;
4561 }
4562 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004563 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4564 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004565 break;
4566 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4567 WARN_ONCE(1, "Invalid backing page\n");
4568 break;
4569 default:
4570 pr_err("Unknown IPI interception\n");
4571 }
4572
4573 return 1;
4574}
4575
4576static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4577{
Sean Christopherson81811c12018-03-20 12:17:21 -07004578 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004579 int index;
4580 u32 *logical_apic_id_table;
4581 int dlid = GET_APIC_LOGICAL_ID(ldr);
4582
4583 if (!dlid)
4584 return NULL;
4585
4586 if (flat) { /* flat */
4587 index = ffs(dlid) - 1;
4588 if (index > 7)
4589 return NULL;
4590 } else { /* cluster */
4591 int cluster = (dlid & 0xf0) >> 4;
4592 int apic = ffs(dlid & 0x0f) - 1;
4593
4594 if ((apic < 0) || (apic > 7) ||
4595 (cluster >= 0xf))
4596 return NULL;
4597 index = (cluster << 2) + apic;
4598 }
4599
Sean Christopherson81811c12018-03-20 12:17:21 -07004600 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004601
4602 return &logical_apic_id_table[index];
4603}
4604
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004605static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004606{
4607 bool flat;
4608 u32 *entry, new_entry;
4609
4610 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4611 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4612 if (!entry)
4613 return -EINVAL;
4614
4615 new_entry = READ_ONCE(*entry);
4616 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4617 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004618 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004619 WRITE_ONCE(*entry, new_entry);
4620
4621 return 0;
4622}
4623
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004624static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4625{
4626 struct vcpu_svm *svm = to_svm(vcpu);
4627 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4628 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4629
4630 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004631 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004632}
4633
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004634static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4635{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004636 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004637 struct vcpu_svm *svm = to_svm(vcpu);
4638 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004639 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004640
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004641 if (ldr == svm->ldr_reg)
4642 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004643
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004644 avic_invalidate_logical_id_entry(vcpu);
4645
4646 if (ldr)
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004647 ret = avic_ldr_write(vcpu, id, ldr);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004648
4649 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004650 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004651
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004652 return ret;
4653}
4654
4655static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4656{
4657 u64 *old, *new;
4658 struct vcpu_svm *svm = to_svm(vcpu);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004659 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004660
4661 if (vcpu->vcpu_id == id)
4662 return 0;
4663
4664 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4665 new = avic_get_physical_id_entry(vcpu, id);
4666 if (!new || !old)
4667 return 1;
4668
4669 /* We need to move physical_id_entry to new offset */
4670 *new = *old;
4671 *old = 0ULL;
4672 to_svm(vcpu)->avic_physical_id_cache = new;
4673
4674 /*
4675 * Also update the guest physical APIC ID in the logical
4676 * APIC ID table entry if already setup the LDR.
4677 */
4678 if (svm->ldr_reg)
4679 avic_handle_ldr_update(vcpu);
4680
4681 return 0;
4682}
4683
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004684static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004685{
4686 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004687 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004688
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004689 if (svm->dfr_reg == dfr)
4690 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004691
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004692 avic_invalidate_logical_id_entry(vcpu);
4693 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004694}
4695
4696static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4697{
4698 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4699 u32 offset = svm->vmcb->control.exit_info_1 &
4700 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4701
4702 switch (offset) {
4703 case APIC_ID:
4704 if (avic_handle_apic_id_update(&svm->vcpu))
4705 return 0;
4706 break;
4707 case APIC_LDR:
4708 if (avic_handle_ldr_update(&svm->vcpu))
4709 return 0;
4710 break;
4711 case APIC_DFR:
4712 avic_handle_dfr_update(&svm->vcpu);
4713 break;
4714 default:
4715 break;
4716 }
4717
4718 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4719
4720 return 1;
4721}
4722
4723static bool is_avic_unaccelerated_access_trap(u32 offset)
4724{
4725 bool ret = false;
4726
4727 switch (offset) {
4728 case APIC_ID:
4729 case APIC_EOI:
4730 case APIC_RRR:
4731 case APIC_LDR:
4732 case APIC_DFR:
4733 case APIC_SPIV:
4734 case APIC_ESR:
4735 case APIC_ICR:
4736 case APIC_LVTT:
4737 case APIC_LVTTHMR:
4738 case APIC_LVTPC:
4739 case APIC_LVT0:
4740 case APIC_LVT1:
4741 case APIC_LVTERR:
4742 case APIC_TMICT:
4743 case APIC_TDCR:
4744 ret = true;
4745 break;
4746 default:
4747 break;
4748 }
4749 return ret;
4750}
4751
4752static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4753{
4754 int ret = 0;
4755 u32 offset = svm->vmcb->control.exit_info_1 &
4756 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4757 u32 vector = svm->vmcb->control.exit_info_2 &
4758 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4759 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4760 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4761 bool trap = is_avic_unaccelerated_access_trap(offset);
4762
4763 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4764 trap, write, vector);
4765 if (trap) {
4766 /* Handling Trap */
4767 WARN_ONCE(!write, "svm: Handling trap read.\n");
4768 ret = avic_unaccel_trap_write(svm);
4769 } else {
4770 /* Handling Fault */
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004771 ret = kvm_emulate_instruction(&svm->vcpu, 0);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004772 }
4773
4774 return ret;
4775}
4776
Mathias Krause09941fb2012-08-30 01:30:20 +02004777static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004778 [SVM_EXIT_READ_CR0] = cr_interception,
4779 [SVM_EXIT_READ_CR3] = cr_interception,
4780 [SVM_EXIT_READ_CR4] = cr_interception,
4781 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004782 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004783 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004784 [SVM_EXIT_WRITE_CR3] = cr_interception,
4785 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004786 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004787 [SVM_EXIT_READ_DR0] = dr_interception,
4788 [SVM_EXIT_READ_DR1] = dr_interception,
4789 [SVM_EXIT_READ_DR2] = dr_interception,
4790 [SVM_EXIT_READ_DR3] = dr_interception,
4791 [SVM_EXIT_READ_DR4] = dr_interception,
4792 [SVM_EXIT_READ_DR5] = dr_interception,
4793 [SVM_EXIT_READ_DR6] = dr_interception,
4794 [SVM_EXIT_READ_DR7] = dr_interception,
4795 [SVM_EXIT_WRITE_DR0] = dr_interception,
4796 [SVM_EXIT_WRITE_DR1] = dr_interception,
4797 [SVM_EXIT_WRITE_DR2] = dr_interception,
4798 [SVM_EXIT_WRITE_DR3] = dr_interception,
4799 [SVM_EXIT_WRITE_DR4] = dr_interception,
4800 [SVM_EXIT_WRITE_DR5] = dr_interception,
4801 [SVM_EXIT_WRITE_DR6] = dr_interception,
4802 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004803 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4804 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004805 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004806 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004807 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004808 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004809 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004810 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004811 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004812 [SVM_EXIT_SMI] = nop_on_interception,
4813 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004814 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004815 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004816 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004817 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004818 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004819 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004820 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004821 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004822 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004823 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824 [SVM_EXIT_MSR] = msr_interception,
4825 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004826 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004827 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004828 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004829 [SVM_EXIT_VMLOAD] = vmload_interception,
4830 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004831 [SVM_EXIT_STGI] = stgi_interception,
4832 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004833 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004834 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004835 [SVM_EXIT_MONITOR] = monitor_interception,
4836 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004837 [SVM_EXIT_XSETBV] = xsetbv_interception,
Jim Mattson0cb84102019-09-19 15:59:17 -07004838 [SVM_EXIT_RDPRU] = rdpru_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004839 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004840 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004841 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4842 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004843};
4844
Joe Perchesae8cc052011-04-24 22:00:50 -07004845static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004846{
4847 struct vcpu_svm *svm = to_svm(vcpu);
4848 struct vmcb_control_area *control = &svm->vmcb->control;
4849 struct vmcb_save_area *save = &svm->vmcb->save;
4850
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004851 if (!dump_invalid_vmcb) {
4852 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4853 return;
4854 }
4855
Joerg Roedel3f10c842010-05-05 16:04:42 +02004856 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004857 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4858 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4859 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4860 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4861 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4862 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4863 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004864 pr_err("%-20s%d\n", "pause filter threshold:",
4865 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004866 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4867 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4868 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4869 pr_err("%-20s%d\n", "asid:", control->asid);
4870 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4871 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4872 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4873 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4874 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4875 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4876 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4877 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4878 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4879 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4880 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004881 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004882 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4883 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004884 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004885 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004886 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4887 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4888 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004889 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004890 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4891 "es:",
4892 save->es.selector, save->es.attrib,
4893 save->es.limit, save->es.base);
4894 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4895 "cs:",
4896 save->cs.selector, save->cs.attrib,
4897 save->cs.limit, save->cs.base);
4898 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4899 "ss:",
4900 save->ss.selector, save->ss.attrib,
4901 save->ss.limit, save->ss.base);
4902 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4903 "ds:",
4904 save->ds.selector, save->ds.attrib,
4905 save->ds.limit, save->ds.base);
4906 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4907 "fs:",
4908 save->fs.selector, save->fs.attrib,
4909 save->fs.limit, save->fs.base);
4910 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4911 "gs:",
4912 save->gs.selector, save->gs.attrib,
4913 save->gs.limit, save->gs.base);
4914 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4915 "gdtr:",
4916 save->gdtr.selector, save->gdtr.attrib,
4917 save->gdtr.limit, save->gdtr.base);
4918 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4919 "ldtr:",
4920 save->ldtr.selector, save->ldtr.attrib,
4921 save->ldtr.limit, save->ldtr.base);
4922 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4923 "idtr:",
4924 save->idtr.selector, save->idtr.attrib,
4925 save->idtr.limit, save->idtr.base);
4926 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4927 "tr:",
4928 save->tr.selector, save->tr.attrib,
4929 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004930 pr_err("cpl: %d efer: %016llx\n",
4931 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004932 pr_err("%-15s %016llx %-13s %016llx\n",
4933 "cr0:", save->cr0, "cr2:", save->cr2);
4934 pr_err("%-15s %016llx %-13s %016llx\n",
4935 "cr3:", save->cr3, "cr4:", save->cr4);
4936 pr_err("%-15s %016llx %-13s %016llx\n",
4937 "dr6:", save->dr6, "dr7:", save->dr7);
4938 pr_err("%-15s %016llx %-13s %016llx\n",
4939 "rip:", save->rip, "rflags:", save->rflags);
4940 pr_err("%-15s %016llx %-13s %016llx\n",
4941 "rsp:", save->rsp, "rax:", save->rax);
4942 pr_err("%-15s %016llx %-13s %016llx\n",
4943 "star:", save->star, "lstar:", save->lstar);
4944 pr_err("%-15s %016llx %-13s %016llx\n",
4945 "cstar:", save->cstar, "sfmask:", save->sfmask);
4946 pr_err("%-15s %016llx %-13s %016llx\n",
4947 "kernel_gs_base:", save->kernel_gs_base,
4948 "sysenter_cs:", save->sysenter_cs);
4949 pr_err("%-15s %016llx %-13s %016llx\n",
4950 "sysenter_esp:", save->sysenter_esp,
4951 "sysenter_eip:", save->sysenter_eip);
4952 pr_err("%-15s %016llx %-13s %016llx\n",
4953 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4954 pr_err("%-15s %016llx %-13s %016llx\n",
4955 "br_from:", save->br_from, "br_to:", save->br_to);
4956 pr_err("%-15s %016llx %-13s %016llx\n",
4957 "excp_from:", save->last_excp_from,
4958 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004959}
4960
Avi Kivity586f9602010-11-18 13:09:54 +02004961static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4962{
4963 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4964
4965 *info1 = control->exit_info_1;
4966 *info2 = control->exit_info_2;
4967}
4968
Wanpeng Li1e9e2622019-11-21 11:17:11 +08004969static int handle_exit(struct kvm_vcpu *vcpu,
4970 enum exit_fastpath_completion exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004971{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004972 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004973 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004974 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004975
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004976 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4977
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004978 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004979 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4980 if (npt_enabled)
4981 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004982
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004983 if (unlikely(svm->nested.exit_required)) {
4984 nested_svm_vmexit(svm);
4985 svm->nested.exit_required = false;
4986
4987 return 1;
4988 }
4989
Joerg Roedel20307532010-11-29 17:51:48 +01004990 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004991 int vmexit;
4992
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004993 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4994 svm->vmcb->control.exit_info_1,
4995 svm->vmcb->control.exit_info_2,
4996 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004997 svm->vmcb->control.exit_int_info_err,
4998 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004999
Joerg Roedel410e4d52009-08-07 11:49:44 +02005000 vmexit = nested_svm_exit_special(svm);
5001
5002 if (vmexit == NESTED_EXIT_CONTINUE)
5003 vmexit = nested_svm_exit_handled(svm);
5004
5005 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01005006 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01005007 }
5008
Joerg Roedela5c38322009-08-07 11:49:32 +02005009 svm_complete_interrupts(svm);
5010
Avi Kivity04d2cc72007-09-10 18:10:54 +03005011 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5012 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5013 kvm_run->fail_entry.hardware_entry_failure_reason
5014 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005015 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005016 return 0;
5017 }
5018
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005019 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005020 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005021 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5022 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005023 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005024 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005025 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005026 exit_code);
5027
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005028 if (exit_fastpath == EXIT_FASTPATH_SKIP_EMUL_INS) {
5029 kvm_skip_emulated_instruction(vcpu);
5030 return 1;
5031 } else if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005032 || !svm_exit_handlers[exit_code]) {
Liran Alon7396d332019-08-26 13:16:43 +03005033 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%x\n", exit_code);
5034 dump_vmcb(vcpu);
5035 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5036 vcpu->run->internal.suberror =
5037 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
5038 vcpu->run->internal.ndata = 1;
5039 vcpu->run->internal.data[0] = exit_code;
5040 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005041 }
5042
Andrea Arcangeli3dcb2a32019-11-04 18:00:00 -05005043#ifdef CONFIG_RETPOLINE
5044 if (exit_code == SVM_EXIT_MSR)
5045 return msr_interception(svm);
5046 else if (exit_code == SVM_EXIT_VINTR)
5047 return interrupt_window_interception(svm);
5048 else if (exit_code == SVM_EXIT_INTR)
5049 return intr_interception(svm);
5050 else if (exit_code == SVM_EXIT_HLT)
5051 return halt_interception(svm);
5052 else if (exit_code == SVM_EXIT_NPF)
5053 return npf_interception(svm);
5054#endif
Avi Kivity851ba692009-08-24 11:10:17 +03005055 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005056}
5057
5058static void reload_tss(struct kvm_vcpu *vcpu)
5059{
5060 int cpu = raw_smp_processor_id();
5061
Tejun Heo0fe1e002009-10-29 22:34:14 +09005062 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5063 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005064 load_TR_desc();
5065}
5066
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005067static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5068{
5069 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5070 int asid = sev_get_asid(svm->vcpu.kvm);
5071
5072 /* Assign the asid allocated with this SEV guest */
5073 svm->vmcb->control.asid = asid;
5074
5075 /*
5076 * Flush guest TLB:
5077 *
5078 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5079 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5080 */
5081 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5082 svm->last_cpu == cpu)
5083 return;
5084
5085 svm->last_cpu = cpu;
5086 sd->sev_vmcbs[asid] = svm->vmcb;
5087 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5088 mark_dirty(svm->vmcb, VMCB_ASID);
5089}
5090
Rusty Russelle756fc62007-07-30 20:07:08 +10005091static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005092{
5093 int cpu = raw_smp_processor_id();
5094
Tejun Heo0fe1e002009-10-29 22:34:14 +09005095 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005096
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005097 if (sev_guest(svm->vcpu.kvm))
5098 return pre_sev_run(svm, cpu);
5099
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005100 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005101 if (svm->asid_generation != sd->asid_generation)
5102 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005103}
5104
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005105static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5106{
5107 struct vcpu_svm *svm = to_svm(vcpu);
5108
5109 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5110 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005111 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005112 ++vcpu->stat.nmi_injections;
5113}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005114
Eddie Dong85f455f2007-07-06 12:20:49 +03005115static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005116{
5117 struct vmcb_control_area *control;
5118
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005119 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005120 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005121 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005122 control->int_ctl &= ~V_INTR_PRIO_MASK;
5123 control->int_ctl |= V_IRQ_MASK |
5124 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005125 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005126}
5127
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005128static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005129{
5130 struct vcpu_svm *svm = to_svm(vcpu);
5131
Joerg Roedel2af91942009-08-07 11:49:28 +02005132 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005133
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005134 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5135 ++vcpu->stat.irq_injections;
5136
Alexander Graf219b65d2009-06-15 15:21:25 +02005137 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5138 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005139}
5140
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005141static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5142{
5143 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5144}
5145
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005146static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5147{
5148 struct vcpu_svm *svm = to_svm(vcpu);
5149
Liran Alon49d654d2019-11-11 14:26:21 +02005150 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005151 return;
5152
Radim Krčmář596f3142014-03-11 19:11:18 +01005153 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5154
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005155 if (irr == -1)
5156 return;
5157
5158 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005159 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005160}
5161
Jim Mattson8d860bb2018-05-09 16:56:05 -04005162static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005163{
5164 return;
5165}
5166
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005167static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5168{
5169}
5170
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005171static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005172{
5173}
5174
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06005175static void svm_toggle_avic_for_irq_window(struct kvm_vcpu *vcpu, bool activate)
5176{
5177 if (!avic || !lapic_in_kernel(vcpu))
5178 return;
5179
5180 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
5181 kvm_request_apicv_update(vcpu->kvm, activate,
5182 APICV_INHIBIT_REASON_IRQWIN);
5183 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
5184}
5185
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005186static int svm_set_pi_irte_mode(struct kvm_vcpu *vcpu, bool activate)
5187{
5188 int ret = 0;
5189 unsigned long flags;
5190 struct amd_svm_iommu_ir *ir;
5191 struct vcpu_svm *svm = to_svm(vcpu);
5192
5193 if (!kvm_arch_has_assigned_device(vcpu->kvm))
5194 return 0;
5195
5196 /*
5197 * Here, we go through the per-vcpu ir_list to update all existing
5198 * interrupt remapping table entry targeting this vcpu.
5199 */
5200 spin_lock_irqsave(&svm->ir_list_lock, flags);
5201
5202 if (list_empty(&svm->ir_list))
5203 goto out;
5204
5205 list_for_each_entry(ir, &svm->ir_list, node) {
5206 if (activate)
5207 ret = amd_iommu_activate_guest_mode(ir->data);
5208 else
5209 ret = amd_iommu_deactivate_guest_mode(ir->data);
5210 if (ret)
5211 break;
5212 }
5213out:
5214 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5215 return ret;
5216}
5217
Andrey Smetanind62caab2015-11-10 15:36:33 +03005218static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5219{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005220 struct vcpu_svm *svm = to_svm(vcpu);
5221 struct vmcb *vmcb = svm->vmcb;
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005222 bool activated = kvm_vcpu_apicv_active(vcpu);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005223
Suravee Suthikulpanit93fd9662020-02-21 08:52:17 -06005224 if (!avic)
5225 return;
5226
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005227 if (activated) {
5228 /**
5229 * During AVIC temporary deactivation, guest could update
5230 * APIC ID, DFR and LDR registers, which would not be trapped
5231 * by avic_unaccelerated_access_interception(). In this case,
5232 * we need to check and update the AVIC logical APIC ID table
5233 * accordingly before re-activating.
5234 */
5235 avic_post_state_restore(vcpu);
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005236 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005237 } else {
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005238 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005239 }
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005240 mark_dirty(vmcb, VMCB_AVIC);
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005241
5242 svm_set_pi_irte_mode(vcpu, activated);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005243}
5244
Andrey Smetanin63086302015-11-10 15:36:32 +03005245static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005246{
5247 return;
5248}
5249
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005250static int svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005251{
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005252 if (!vcpu->arch.apicv_active)
5253 return -1;
5254
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005255 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5256 smp_mb__after_atomic();
5257
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005258 if (avic_vcpu_is_running(vcpu)) {
5259 int cpuid = vcpu->cpu;
5260
5261 if (cpuid != get_cpu())
5262 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5263 put_cpu();
5264 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005265 kvm_vcpu_wake_up(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005266
5267 return 0;
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005268}
5269
Wanpeng Li17e433b2019-08-05 10:03:19 +08005270static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5271{
5272 return false;
5273}
5274
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005275static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5276{
5277 unsigned long flags;
5278 struct amd_svm_iommu_ir *cur;
5279
5280 spin_lock_irqsave(&svm->ir_list_lock, flags);
5281 list_for_each_entry(cur, &svm->ir_list, node) {
5282 if (cur->data != pi->ir_data)
5283 continue;
5284 list_del(&cur->node);
5285 kfree(cur);
5286 break;
5287 }
5288 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5289}
5290
5291static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5292{
5293 int ret = 0;
5294 unsigned long flags;
5295 struct amd_svm_iommu_ir *ir;
5296
5297 /**
5298 * In some cases, the existing irte is updaed and re-set,
5299 * so we need to check here if it's already been * added
5300 * to the ir_list.
5301 */
5302 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5303 struct kvm *kvm = svm->vcpu.kvm;
5304 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5305 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5306 struct vcpu_svm *prev_svm;
5307
5308 if (!prev_vcpu) {
5309 ret = -EINVAL;
5310 goto out;
5311 }
5312
5313 prev_svm = to_svm(prev_vcpu);
5314 svm_ir_list_del(prev_svm, pi);
5315 }
5316
5317 /**
5318 * Allocating new amd_iommu_pi_data, which will get
5319 * add to the per-vcpu ir_list.
5320 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005321 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005322 if (!ir) {
5323 ret = -ENOMEM;
5324 goto out;
5325 }
5326 ir->data = pi->ir_data;
5327
5328 spin_lock_irqsave(&svm->ir_list_lock, flags);
5329 list_add(&ir->node, &svm->ir_list);
5330 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5331out:
5332 return ret;
5333}
5334
5335/**
5336 * Note:
5337 * The HW cannot support posting multicast/broadcast
5338 * interrupts to a vCPU. So, we still use legacy interrupt
5339 * remapping for these kind of interrupts.
5340 *
5341 * For lowest-priority interrupts, we only support
5342 * those with single CPU as the destination, e.g. user
5343 * configures the interrupts via /proc/irq or uses
5344 * irqbalance to make the interrupts single-CPU.
5345 */
5346static int
5347get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5348 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5349{
5350 struct kvm_lapic_irq irq;
5351 struct kvm_vcpu *vcpu = NULL;
5352
5353 kvm_set_msi_irq(kvm, e, &irq);
5354
Alexander Graffdcf7562019-09-05 14:58:18 +02005355 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu) ||
5356 !kvm_irq_is_postable(&irq)) {
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005357 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5358 __func__, irq.vector);
5359 return -1;
5360 }
5361
5362 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5363 irq.vector);
5364 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005365 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005366 vcpu_info->vector = irq.vector;
5367
5368 return 0;
5369}
5370
5371/*
5372 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5373 *
5374 * @kvm: kvm
5375 * @host_irq: host irq of the interrupt
5376 * @guest_irq: gsi of the interrupt
5377 * @set: set or unset PI
5378 * returns 0 on success, < 0 on failure
5379 */
5380static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5381 uint32_t guest_irq, bool set)
5382{
5383 struct kvm_kernel_irq_routing_entry *e;
5384 struct kvm_irq_routing_table *irq_rt;
5385 int idx, ret = -EINVAL;
5386
5387 if (!kvm_arch_has_assigned_device(kvm) ||
5388 !irq_remapping_cap(IRQ_POSTING_CAP))
5389 return 0;
5390
5391 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5392 __func__, host_irq, guest_irq, set);
5393
5394 idx = srcu_read_lock(&kvm->irq_srcu);
5395 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5396 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5397
5398 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5399 struct vcpu_data vcpu_info;
5400 struct vcpu_svm *svm = NULL;
5401
5402 if (e->type != KVM_IRQ_ROUTING_MSI)
5403 continue;
5404
5405 /**
5406 * Here, we setup with legacy mode in the following cases:
5407 * 1. When cannot target interrupt to a specific vcpu.
5408 * 2. Unsetting posted interrupt.
5409 * 3. APIC virtialization is disabled for the vcpu.
Alexander Graffdcf7562019-09-05 14:58:18 +02005410 * 4. IRQ has incompatible delivery mode (SMI, INIT, etc)
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005411 */
5412 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5413 kvm_vcpu_apicv_active(&svm->vcpu)) {
5414 struct amd_iommu_pi_data pi;
5415
5416 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005417 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5418 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005419 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005420 svm->vcpu.vcpu_id);
5421 pi.is_guest_mode = true;
5422 pi.vcpu_data = &vcpu_info;
5423 ret = irq_set_vcpu_affinity(host_irq, &pi);
5424
5425 /**
5426 * Here, we successfully setting up vcpu affinity in
5427 * IOMMU guest mode. Now, we need to store the posted
5428 * interrupt information in a per-vcpu ir_list so that
5429 * we can reference to them directly when we update vcpu
5430 * scheduling information in IOMMU irte.
5431 */
5432 if (!ret && pi.is_guest_mode)
5433 svm_ir_list_add(svm, &pi);
5434 } else {
5435 /* Use legacy mode in IRTE */
5436 struct amd_iommu_pi_data pi;
5437
5438 /**
5439 * Here, pi is used to:
5440 * - Tell IOMMU to use legacy mode for this interrupt.
5441 * - Retrieve ga_tag of prior interrupt remapping data.
5442 */
5443 pi.is_guest_mode = false;
5444 ret = irq_set_vcpu_affinity(host_irq, &pi);
5445
5446 /**
5447 * Check if the posted interrupt was previously
5448 * setup with the guest_mode by checking if the ga_tag
5449 * was cached. If so, we need to clean up the per-vcpu
5450 * ir_list.
5451 */
5452 if (!ret && pi.prev_ga_tag) {
5453 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5454 struct kvm_vcpu *vcpu;
5455
5456 vcpu = kvm_get_vcpu_by_id(kvm, id);
5457 if (vcpu)
5458 svm_ir_list_del(to_svm(vcpu), &pi);
5459 }
5460 }
5461
5462 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005463 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5464 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005465 vcpu_info.pi_desc_addr, set);
5466 }
5467
5468 if (ret < 0) {
5469 pr_err("%s: failed to update PI IRTE\n", __func__);
5470 goto out;
5471 }
5472 }
5473
5474 ret = 0;
5475out:
5476 srcu_read_unlock(&kvm->irq_srcu, idx);
5477 return ret;
5478}
5479
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005480static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005481{
5482 struct vcpu_svm *svm = to_svm(vcpu);
5483 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005484 int ret;
5485 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5486 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5487 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5488
5489 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005490}
5491
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005492static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5493{
5494 struct vcpu_svm *svm = to_svm(vcpu);
5495
5496 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5497}
5498
5499static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5500{
5501 struct vcpu_svm *svm = to_svm(vcpu);
5502
5503 if (masked) {
5504 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005505 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005506 } else {
5507 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005508 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005509 }
5510}
5511
Gleb Natapov78646122009-03-23 12:12:11 +02005512static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5513{
5514 struct vcpu_svm *svm = to_svm(vcpu);
5515 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005516 int ret;
5517
5518 if (!gif_set(svm) ||
5519 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5520 return 0;
5521
Avi Kivityf6e78472010-08-02 15:30:20 +03005522 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005523
Joerg Roedel20307532010-11-29 17:51:48 +01005524 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005525 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5526
5527 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005528}
5529
Jan Kiszkac9a79532014-03-07 20:03:15 +01005530static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005531{
Alexander Graf219b65d2009-06-15 15:21:25 +02005532 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005533
Joerg Roedele0231712010-02-24 18:59:10 +01005534 /*
5535 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5536 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5537 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005538 * we'll get the vintr intercept. However, if the vGIF feature is
5539 * enabled, the STGI interception will not occur. Enable the irq
5540 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005541 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005542 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06005543 /*
5544 * IRQ window is not needed when AVIC is enabled,
5545 * unless we have pending ExtINT since it cannot be injected
5546 * via AVIC. In such case, we need to temporarily disable AVIC,
5547 * and fallback to injecting IRQ via V_IRQ.
5548 */
5549 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02005550 svm_set_vintr(svm);
5551 svm_inject_irq(svm, 0x0);
5552 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005553}
5554
Jan Kiszkac9a79532014-03-07 20:03:15 +01005555static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005556{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005557 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005558
Gleb Natapov44c11432009-05-11 13:35:52 +03005559 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5560 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005561 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005562
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005563 if (!gif_set(svm)) {
5564 if (vgif_enabled(svm))
5565 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005566 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005567 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005568
5569 if (svm->nested.exit_required)
5570 return; /* we're not going to run the guest yet */
5571
Joerg Roedele0231712010-02-24 18:59:10 +01005572 /*
5573 * Something prevents NMI from been injected. Single step over possible
5574 * problem (IRET or exception injection or interrupt shadow)
5575 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005576 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005577 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005578 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005579}
5580
Izik Eiduscbc94022007-10-25 00:29:55 +02005581static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5582{
5583 return 0;
5584}
5585
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005586static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5587{
5588 return 0;
5589}
5590
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005591static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005592{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005593 struct vcpu_svm *svm = to_svm(vcpu);
5594
5595 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5596 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5597 else
5598 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005599}
5600
Junaid Shahidfaff8752018-06-29 13:10:05 -07005601static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5602{
5603 struct vcpu_svm *svm = to_svm(vcpu);
5604
5605 invlpga(gva, svm->vmcb->control.asid);
5606}
5607
Avi Kivity04d2cc72007-09-10 18:10:54 +03005608static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5609{
5610}
5611
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005612static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5613{
5614 struct vcpu_svm *svm = to_svm(vcpu);
5615
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005616 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005617 return;
5618
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005619 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005620 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005621 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005622 }
5623}
5624
Joerg Roedel649d6862008-04-16 16:51:15 +02005625static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5626{
5627 struct vcpu_svm *svm = to_svm(vcpu);
5628 u64 cr8;
5629
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005630 if (svm_nested_virtualize_tpr(vcpu) ||
5631 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005632 return;
5633
Joerg Roedel649d6862008-04-16 16:51:15 +02005634 cr8 = kvm_get_cr8(vcpu);
5635 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5636 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5637}
5638
Gleb Natapov9222be12009-04-23 17:14:37 +03005639static void svm_complete_interrupts(struct vcpu_svm *svm)
5640{
5641 u8 vector;
5642 int type;
5643 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005644 unsigned int3_injected = svm->int3_injected;
5645
5646 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005647
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005648 /*
5649 * If we've made progress since setting HF_IRET_MASK, we've
5650 * executed an IRET and can allow NMI injection.
5651 */
5652 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5653 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005654 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005655 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5656 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005657
Gleb Natapov9222be12009-04-23 17:14:37 +03005658 svm->vcpu.arch.nmi_injected = false;
5659 kvm_clear_exception_queue(&svm->vcpu);
5660 kvm_clear_interrupt_queue(&svm->vcpu);
5661
5662 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5663 return;
5664
Avi Kivity3842d132010-07-27 12:30:24 +03005665 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5666
Gleb Natapov9222be12009-04-23 17:14:37 +03005667 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5668 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5669
5670 switch (type) {
5671 case SVM_EXITINTINFO_TYPE_NMI:
5672 svm->vcpu.arch.nmi_injected = true;
5673 break;
5674 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005675 /*
5676 * In case of software exceptions, do not reinject the vector,
5677 * but re-execute the instruction instead. Rewind RIP first
5678 * if we emulated INT3 before.
5679 */
5680 if (kvm_exception_is_soft(vector)) {
5681 if (vector == BP_VECTOR && int3_injected &&
5682 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5683 kvm_rip_write(&svm->vcpu,
5684 kvm_rip_read(&svm->vcpu) -
5685 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005686 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005687 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005688 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5689 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005690 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005691
5692 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005693 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005694 break;
5695 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005696 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005697 break;
5698 default:
5699 break;
5700 }
5701}
5702
Avi Kivityb463a6f2010-07-20 15:06:17 +03005703static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5704{
5705 struct vcpu_svm *svm = to_svm(vcpu);
5706 struct vmcb_control_area *control = &svm->vmcb->control;
5707
5708 control->exit_int_info = control->event_inj;
5709 control->exit_int_info_err = control->event_inj_err;
5710 control->event_inj = 0;
5711 svm_complete_interrupts(svm);
5712}
5713
Avi Kivity851ba692009-08-24 11:10:17 +03005714static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005715{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005716 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005717
Joerg Roedel2041a062010-04-22 12:33:08 +02005718 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5719 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5720 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5721
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005722 /*
5723 * A vmexit emulation is required before the vcpu can be executed
5724 * again.
5725 */
5726 if (unlikely(svm->nested.exit_required))
5727 return;
5728
Ladi Proseka12713c2017-06-21 09:07:00 +02005729 /*
5730 * Disable singlestep if we're injecting an interrupt/exception.
5731 * We don't want our modified rflags to be pushed on the stack where
5732 * we might not be able to easily reset them if we disabled NMI
5733 * singlestep later.
5734 */
5735 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5736 /*
5737 * Event injection happens before external interrupts cause a
5738 * vmexit and interrupts are disabled here, so smp_send_reschedule
5739 * is enough to force an immediate vmexit.
5740 */
5741 disable_nmi_singlestep(svm);
5742 smp_send_reschedule(vcpu->cpu);
5743 }
5744
Rusty Russelle756fc62007-07-30 20:07:08 +10005745 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005746
Joerg Roedel649d6862008-04-16 16:51:15 +02005747 sync_lapic_to_cr8(vcpu);
5748
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005749 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005750
Avi Kivity04d2cc72007-09-10 18:10:54 +03005751 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07005752 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005753
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005754 if (lapic_in_kernel(vcpu) &&
5755 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5756 kvm_wait_lapic_expire(vcpu);
5757
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005758 /*
5759 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5760 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5761 * is no need to worry about the conditional branch over the wrmsr
5762 * being speculatively taken.
5763 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005764 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005765
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005766 local_irq_enable();
5767
Avi Kivity6aa8b732006-12-10 02:21:36 -08005768 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005769 "push %%" _ASM_BP "; \n\t"
5770 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5771 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5772 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5773 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5774 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5775 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005776#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005777 "mov %c[r8](%[svm]), %%r8 \n\t"
5778 "mov %c[r9](%[svm]), %%r9 \n\t"
5779 "mov %c[r10](%[svm]), %%r10 \n\t"
5780 "mov %c[r11](%[svm]), %%r11 \n\t"
5781 "mov %c[r12](%[svm]), %%r12 \n\t"
5782 "mov %c[r13](%[svm]), %%r13 \n\t"
5783 "mov %c[r14](%[svm]), %%r14 \n\t"
5784 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005785#endif
5786
Avi Kivity6aa8b732006-12-10 02:21:36 -08005787 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005788 "push %%" _ASM_AX " \n\t"
5789 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005790 __ex("vmload %%" _ASM_AX) "\n\t"
5791 __ex("vmrun %%" _ASM_AX) "\n\t"
5792 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005793 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005794
5795 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005796 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5797 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5798 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5799 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5800 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5801 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005802#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005803 "mov %%r8, %c[r8](%[svm]) \n\t"
5804 "mov %%r9, %c[r9](%[svm]) \n\t"
5805 "mov %%r10, %c[r10](%[svm]) \n\t"
5806 "mov %%r11, %c[r11](%[svm]) \n\t"
5807 "mov %%r12, %c[r12](%[svm]) \n\t"
5808 "mov %%r13, %c[r13](%[svm]) \n\t"
5809 "mov %%r14, %c[r14](%[svm]) \n\t"
5810 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005811 /*
5812 * Clear host registers marked as clobbered to prevent
5813 * speculative use.
5814 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005815 "xor %%r8d, %%r8d \n\t"
5816 "xor %%r9d, %%r9d \n\t"
5817 "xor %%r10d, %%r10d \n\t"
5818 "xor %%r11d, %%r11d \n\t"
5819 "xor %%r12d, %%r12d \n\t"
5820 "xor %%r13d, %%r13d \n\t"
5821 "xor %%r14d, %%r14d \n\t"
5822 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005823#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005824 "xor %%ebx, %%ebx \n\t"
5825 "xor %%ecx, %%ecx \n\t"
5826 "xor %%edx, %%edx \n\t"
5827 "xor %%esi, %%esi \n\t"
5828 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005829 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005830 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005831 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005832 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005833 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5834 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5835 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5836 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5837 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5838 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005839#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005840 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5841 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5842 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5843 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5844 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5845 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5846 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5847 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005848#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005849 : "cc", "memory"
5850#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005851 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005852 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005853#else
5854 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005855#endif
5856 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005858 /* Eliminate branch target predictions from guest mode */
5859 vmexit_fill_RSB();
5860
5861#ifdef CONFIG_X86_64
5862 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5863#else
5864 loadsegment(fs, svm->host.fs);
5865#ifndef CONFIG_X86_32_LAZY_GS
5866 loadsegment(gs, svm->host.gs);
5867#endif
5868#endif
5869
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005870 /*
5871 * We do not use IBRS in the kernel. If this vCPU has used the
5872 * SPEC_CTRL MSR it may have left it on; save the value and
5873 * turn it off. This is much more efficient than blindly adding
5874 * it to the atomic save/restore list. Especially as the former
5875 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5876 *
5877 * For non-nested case:
5878 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5879 * save it.
5880 *
5881 * For nested case:
5882 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5883 * save it.
5884 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005885 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005886 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005887
Avi Kivity6aa8b732006-12-10 02:21:36 -08005888 reload_tss(vcpu);
5889
Avi Kivity56ba47d2007-11-07 17:14:18 +02005890 local_irq_disable();
5891
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005892 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5893
Avi Kivity13c34e02010-10-21 12:20:31 +02005894 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5895 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5896 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5897 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5898
Joerg Roedel3781c012011-01-14 16:45:02 +01005899 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005900 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005901
Aaron Lewis139a12c2019-10-21 16:30:25 -07005902 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005903 stgi();
5904
5905 /* Any pending NMI will happen here */
5906
5907 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005908 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005909
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005910 sync_cr8_to_lapic(vcpu);
5911
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005912 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005913
Joerg Roedel38e5e922010-12-03 15:25:16 +01005914 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5915
Gleb Natapov631bc482010-10-14 11:22:52 +02005916 /* if exit due to PF check for async PF */
5917 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005918 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005919
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005920 if (npt_enabled) {
5921 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5922 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5923 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005924
5925 /*
5926 * We need to handle MC intercepts here before the vcpu has a chance to
5927 * change the physical cpu
5928 */
5929 if (unlikely(svm->vmcb->control.exit_code ==
5930 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5931 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005932
5933 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005934}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005935STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005936
Avi Kivity6aa8b732006-12-10 02:21:36 -08005937static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5938{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005939 struct vcpu_svm *svm = to_svm(vcpu);
5940
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005941 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005942 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005943}
5944
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005945static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5946{
5947 struct vcpu_svm *svm = to_svm(vcpu);
5948
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005949 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005950 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005951
5952 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005953 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005954 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005955}
5956
Avi Kivity6aa8b732006-12-10 02:21:36 -08005957static int is_disabled(void)
5958{
Joerg Roedel6031a612007-06-22 12:29:50 +03005959 u64 vm_cr;
5960
5961 rdmsrl(MSR_VM_CR, vm_cr);
5962 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5963 return 1;
5964
Avi Kivity6aa8b732006-12-10 02:21:36 -08005965 return 0;
5966}
5967
Ingo Molnar102d8322007-02-19 14:37:47 +02005968static void
5969svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5970{
5971 /*
5972 * Patch in the VMMCALL instruction:
5973 */
5974 hypercall[0] = 0x0f;
5975 hypercall[1] = 0x01;
5976 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005977}
5978
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005979static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005980{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005981 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005982}
5983
Avi Kivity774ead32007-12-26 13:57:04 +02005984static bool svm_cpu_has_accelerated_tpr(void)
5985{
5986 return false;
5987}
5988
Tom Lendackybc226f02018-05-10 22:06:39 +02005989static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005990{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005991 switch (index) {
5992 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02005993 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005994 return false;
5995 default:
5996 break;
5997 }
5998
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005999 return true;
6000}
6001
Paolo Bonzinifc07e762015-10-01 13:20:22 +02006002static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
6003{
6004 return 0;
6005}
6006
Sheng Yang0e851882009-12-18 16:48:46 +08006007static void svm_cpuid_update(struct kvm_vcpu *vcpu)
6008{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02006009 struct vcpu_svm *svm = to_svm(vcpu);
6010
Aaron Lewis72041602019-10-21 16:30:20 -07006011 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08006012 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07006013 boot_cpu_has(X86_FEATURE_XSAVES);
6014
Joerg Roedel6092d3d2015-10-14 15:10:54 +02006015 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02006016 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05006017
6018 if (!kvm_vcpu_apicv_active(vcpu))
6019 return;
6020
Oliver Uptoncc7f5572020-02-28 00:59:04 -08006021 /*
6022 * AVIC does not work with an x2APIC mode guest. If the X2APIC feature
6023 * is exposed to the guest, disable AVIC.
6024 */
6025 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC))
6026 kvm_request_apicv_update(vcpu->kvm, false,
6027 APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06006028
6029 /*
6030 * Currently, AVIC does not work with nested virtualization.
6031 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
6032 */
6033 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
6034 kvm_request_apicv_update(vcpu->kvm, false,
6035 APICV_INHIBIT_REASON_NESTED);
Sheng Yang0e851882009-12-18 16:48:46 +08006036}
6037
Sean Christopherson160b486f2020-03-02 15:56:27 -08006038static void svm_set_supported_cpuid(struct kvm_cpuid_entry2 *entry)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006039{
Sean Christopherson160b486f2020-03-02 15:56:27 -08006040 switch (entry->function) {
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02006041 case 0x80000001:
6042 if (nested)
Sean Christophersonb32666b2020-03-02 15:56:31 -08006043 cpuid_entry_set(entry, X86_FEATURE_SVM);
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02006044 break;
Paolo Bonzini50896de2019-08-15 09:17:31 +02006045 case 0x80000008:
6046 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
6047 boot_cpu_has(X86_FEATURE_AMD_SSBD))
Sean Christophersonb32666b2020-03-02 15:56:31 -08006048 cpuid_entry_set(entry, X86_FEATURE_VIRT_SSBD);
Paolo Bonzini50896de2019-08-15 09:17:31 +02006049 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006050 case 0x8000000A:
6051 entry->eax = 1; /* SVM revision 1 */
6052 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
6053 ASID emulation to nested SVM */
6054 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02006055 entry->edx = 0; /* Per default do not support any
6056 additional features */
6057
6058 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02006059 if (boot_cpu_has(X86_FEATURE_NRIPS))
Sean Christophersonb32666b2020-03-02 15:56:31 -08006060 cpuid_entry_set(entry, X86_FEATURE_NRIPS);
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006061
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02006062 /* Support NPT for the guest if enabled */
6063 if (npt_enabled)
Sean Christophersonb32666b2020-03-02 15:56:31 -08006064 cpuid_entry_set(entry, X86_FEATURE_NPT);
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006065 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006066}
6067
Sheng Yang17cc3932010-01-05 19:02:27 +08006068static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006069{
Sheng Yang17cc3932010-01-05 19:02:27 +08006070 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006071}
6072
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006073static bool svm_rdtscp_supported(void)
6074{
Paolo Bonzini46896c72015-11-12 14:49:16 +01006075 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006076}
6077
Wanpeng Li55412b22014-12-02 19:21:30 +08006078static bool svm_xsaves_supported(void)
6079{
Aaron Lewis52297432019-10-21 16:30:27 -07006080 return boot_cpu_has(X86_FEATURE_XSAVES);
Wanpeng Li55412b22014-12-02 19:21:30 +08006081}
6082
Paolo Bonzini66336ca2016-07-12 10:36:41 +02006083static bool svm_umip_emulated(void)
6084{
6085 return false;
6086}
6087
Chao Peng86f52012018-10-24 16:05:11 +08006088static bool svm_pt_supported(void)
6089{
6090 return false;
6091}
6092
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006093static bool svm_has_wbinvd_exit(void)
6094{
6095 return true;
6096}
6097
Joerg Roedel80612522011-04-04 12:39:33 +02006098#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006099 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006100#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006101 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006102#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006103 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006104
Mathias Krause09941fb2012-08-30 01:30:20 +02006105static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006106 u32 exit_code;
6107 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006108} x86_intercept_map[] = {
6109 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6110 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6111 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6112 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6113 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006114 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6115 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006116 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6117 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6118 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6119 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6120 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6121 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6122 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6123 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006124 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6125 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6126 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6127 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6128 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6129 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6130 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6131 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006132 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6133 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6134 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006135 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6136 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6137 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6138 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6139 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6140 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6141 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6142 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6143 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006144 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6145 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6146 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6147 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6148 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6149 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6150 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006151 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6152 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6153 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6154 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006155 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006156};
6157
Joerg Roedel80612522011-04-04 12:39:33 +02006158#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006159#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006160#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006161
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006162static int svm_check_intercept(struct kvm_vcpu *vcpu,
6163 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08006164 enum x86_intercept_stage stage,
6165 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006166{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006167 struct vcpu_svm *svm = to_svm(vcpu);
6168 int vmexit, ret = X86EMUL_CONTINUE;
6169 struct __x86_intercept icpt_info;
6170 struct vmcb *vmcb = svm->vmcb;
6171
6172 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6173 goto out;
6174
6175 icpt_info = x86_intercept_map[info->intercept];
6176
Avi Kivity40e19b52011-04-21 12:35:41 +03006177 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006178 goto out;
6179
6180 switch (icpt_info.exit_code) {
6181 case SVM_EXIT_READ_CR0:
6182 if (info->intercept == x86_intercept_cr_read)
6183 icpt_info.exit_code += info->modrm_reg;
6184 break;
6185 case SVM_EXIT_WRITE_CR0: {
6186 unsigned long cr0, val;
6187 u64 intercept;
6188
6189 if (info->intercept == x86_intercept_cr_write)
6190 icpt_info.exit_code += info->modrm_reg;
6191
Jan Kiszka62baf442014-06-29 21:55:53 +02006192 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6193 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006194 break;
6195
6196 intercept = svm->nested.intercept;
6197
6198 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6199 break;
6200
6201 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6202 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6203
6204 if (info->intercept == x86_intercept_lmsw) {
6205 cr0 &= 0xfUL;
6206 val &= 0xfUL;
6207 /* lmsw can't clear PE - catch this here */
6208 if (cr0 & X86_CR0_PE)
6209 val |= X86_CR0_PE;
6210 }
6211
6212 if (cr0 ^ val)
6213 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6214
6215 break;
6216 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006217 case SVM_EXIT_READ_DR0:
6218 case SVM_EXIT_WRITE_DR0:
6219 icpt_info.exit_code += info->modrm_reg;
6220 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006221 case SVM_EXIT_MSR:
6222 if (info->intercept == x86_intercept_wrmsr)
6223 vmcb->control.exit_info_1 = 1;
6224 else
6225 vmcb->control.exit_info_1 = 0;
6226 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006227 case SVM_EXIT_PAUSE:
6228 /*
6229 * We get this for NOP only, but pause
6230 * is rep not, check this here
6231 */
6232 if (info->rep_prefix != REPE_PREFIX)
6233 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006234 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006235 case SVM_EXIT_IOIO: {
6236 u64 exit_info;
6237 u32 bytes;
6238
Joerg Roedelf6511932011-04-04 12:39:35 +02006239 if (info->intercept == x86_intercept_in ||
6240 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006241 exit_info = ((info->src_val & 0xffff) << 16) |
6242 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006243 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006244 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006245 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006246 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006247 }
6248
6249 if (info->intercept == x86_intercept_outs ||
6250 info->intercept == x86_intercept_ins)
6251 exit_info |= SVM_IOIO_STR_MASK;
6252
6253 if (info->rep_prefix)
6254 exit_info |= SVM_IOIO_REP_MASK;
6255
6256 bytes = min(bytes, 4u);
6257
6258 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6259
6260 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6261
6262 vmcb->control.exit_info_1 = exit_info;
6263 vmcb->control.exit_info_2 = info->next_rip;
6264
6265 break;
6266 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006267 default:
6268 break;
6269 }
6270
Bandan Dasf1047652015-06-11 02:05:33 -04006271 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6272 if (static_cpu_has(X86_FEATURE_NRIPS))
6273 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006274 vmcb->control.exit_code = icpt_info.exit_code;
6275 vmexit = nested_svm_exit_handled(svm);
6276
6277 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6278 : X86EMUL_CONTINUE;
6279
6280out:
6281 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006282}
6283
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006284static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu,
6285 enum exit_fastpath_completion *exit_fastpath)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006286{
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006287 if (!is_guest_mode(vcpu) &&
6288 to_svm(vcpu)->vmcb->control.exit_code == EXIT_REASON_MSR_WRITE)
6289 *exit_fastpath = handle_fastpath_set_msr_irqoff(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006290}
6291
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006292static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6293{
Babu Moger8566ac82018-03-16 16:37:26 -04006294 if (pause_filter_thresh)
6295 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006296}
6297
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006298static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6299{
6300 if (avic_handle_apic_id_update(vcpu) != 0)
6301 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006302 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006303 avic_handle_ldr_update(vcpu);
6304}
6305
Borislav Petkov74f16902017-03-26 23:51:24 +02006306static void svm_setup_mce(struct kvm_vcpu *vcpu)
6307{
6308 /* [63:9] are reserved. */
6309 vcpu->arch.mcg_cap &= 0x1ff;
6310}
6311
Ladi Prosek72d7b372017-10-11 16:54:41 +02006312static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6313{
Ladi Prosek05cade72017-10-11 16:54:45 +02006314 struct vcpu_svm *svm = to_svm(vcpu);
6315
6316 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6317 if (!gif_set(svm))
6318 return 0;
6319
6320 if (is_guest_mode(&svm->vcpu) &&
6321 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6322 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6323 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6324 svm->nested.exit_required = true;
6325 return 0;
6326 }
6327
Ladi Prosek72d7b372017-10-11 16:54:41 +02006328 return 1;
6329}
6330
Ladi Prosek0234bf82017-10-11 16:54:40 +02006331static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6332{
Ladi Prosek05cade72017-10-11 16:54:45 +02006333 struct vcpu_svm *svm = to_svm(vcpu);
6334 int ret;
6335
6336 if (is_guest_mode(vcpu)) {
6337 /* FED8h - SVM Guest */
6338 put_smstate(u64, smstate, 0x7ed8, 1);
6339 /* FEE0h - SVM Guest VMCB Physical Address */
6340 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6341
6342 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6343 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6344 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6345
6346 ret = nested_svm_vmexit(svm);
6347 if (ret)
6348 return ret;
6349 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006350 return 0;
6351}
6352
Sean Christophersoned193212019-04-02 08:03:09 -07006353static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006354{
Ladi Prosek05cade72017-10-11 16:54:45 +02006355 struct vcpu_svm *svm = to_svm(vcpu);
6356 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006357 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006358 u64 guest;
6359 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006360
Sean Christophersoned193212019-04-02 08:03:09 -07006361 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6362 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006363
Sean Christophersoned193212019-04-02 08:03:09 -07006364 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006365 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006366 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006367 nested_vmcb = map.hva;
6368 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006369 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006370 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006371}
6372
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006373static int enable_smi_window(struct kvm_vcpu *vcpu)
6374{
6375 struct vcpu_svm *svm = to_svm(vcpu);
6376
6377 if (!gif_set(svm)) {
6378 if (vgif_enabled(svm))
6379 set_intercept(svm, INTERCEPT_STGI);
6380 /* STGI will cause a vm exit */
6381 return 1;
6382 }
6383 return 0;
6384}
6385
Tom Lendacky33af3a72019-10-03 21:17:48 +00006386static int sev_flush_asids(void)
6387{
6388 int ret, error;
6389
6390 /*
6391 * DEACTIVATE will clear the WBINVD indicator causing DF_FLUSH to fail,
6392 * so it must be guarded.
6393 */
6394 down_write(&sev_deactivate_lock);
6395
6396 wbinvd_on_all_cpus();
6397 ret = sev_guest_df_flush(&error);
6398
6399 up_write(&sev_deactivate_lock);
6400
6401 if (ret)
6402 pr_err("SEV: DF_FLUSH failed, ret=%d, error=%#x\n", ret, error);
6403
6404 return ret;
6405}
6406
6407/* Must be called with the sev_bitmap_lock held */
6408static bool __sev_recycle_asids(void)
6409{
6410 int pos;
6411
6412 /* Check if there are any ASIDs to reclaim before performing a flush */
6413 pos = find_next_bit(sev_reclaim_asid_bitmap,
6414 max_sev_asid, min_sev_asid - 1);
6415 if (pos >= max_sev_asid)
6416 return false;
6417
6418 if (sev_flush_asids())
6419 return false;
6420
6421 bitmap_xor(sev_asid_bitmap, sev_asid_bitmap, sev_reclaim_asid_bitmap,
6422 max_sev_asid);
6423 bitmap_zero(sev_reclaim_asid_bitmap, max_sev_asid);
6424
6425 return true;
6426}
6427
Brijesh Singh1654efc2017-12-04 10:57:34 -06006428static int sev_asid_new(void)
6429{
Tom Lendacky33af3a72019-10-03 21:17:48 +00006430 bool retry = true;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006431 int pos;
6432
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006433 mutex_lock(&sev_bitmap_lock);
6434
Brijesh Singh1654efc2017-12-04 10:57:34 -06006435 /*
6436 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6437 */
Tom Lendacky33af3a72019-10-03 21:17:48 +00006438again:
Brijesh Singh1654efc2017-12-04 10:57:34 -06006439 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006440 if (pos >= max_sev_asid) {
Tom Lendacky33af3a72019-10-03 21:17:48 +00006441 if (retry && __sev_recycle_asids()) {
6442 retry = false;
6443 goto again;
6444 }
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006445 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006446 return -EBUSY;
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006447 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06006448
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006449 __set_bit(pos, sev_asid_bitmap);
6450
6451 mutex_unlock(&sev_bitmap_lock);
6452
Brijesh Singh1654efc2017-12-04 10:57:34 -06006453 return pos + 1;
6454}
6455
6456static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6457{
Sean Christopherson81811c12018-03-20 12:17:21 -07006458 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006459 int asid, ret;
6460
6461 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006462 if (unlikely(sev->active))
6463 return ret;
6464
Brijesh Singh1654efc2017-12-04 10:57:34 -06006465 asid = sev_asid_new();
6466 if (asid < 0)
6467 return ret;
6468
6469 ret = sev_platform_init(&argp->error);
6470 if (ret)
6471 goto e_free;
6472
6473 sev->active = true;
6474 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006475 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006476
6477 return 0;
6478
6479e_free:
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006480 sev_asid_free(asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006481 return ret;
6482}
6483
Brijesh Singh59414c92017-12-04 10:57:35 -06006484static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6485{
6486 struct sev_data_activate *data;
6487 int asid = sev_get_asid(kvm);
6488 int ret;
6489
Ben Gardon1ec69642019-02-11 11:02:51 -08006490 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006491 if (!data)
6492 return -ENOMEM;
6493
6494 /* activate ASID on the given handle */
6495 data->handle = handle;
6496 data->asid = asid;
6497 ret = sev_guest_activate(data, error);
6498 kfree(data);
6499
6500 return ret;
6501}
6502
Brijesh Singh89c50582017-12-04 10:57:35 -06006503static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006504{
6505 struct fd f;
6506 int ret;
6507
6508 f = fdget(fd);
6509 if (!f.file)
6510 return -EBADF;
6511
6512 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6513
6514 fdput(f);
6515 return ret;
6516}
6517
Brijesh Singh89c50582017-12-04 10:57:35 -06006518static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6519{
Sean Christopherson81811c12018-03-20 12:17:21 -07006520 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006521
6522 return __sev_issue_cmd(sev->fd, id, data, error);
6523}
6524
Brijesh Singh59414c92017-12-04 10:57:35 -06006525static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6526{
Sean Christopherson81811c12018-03-20 12:17:21 -07006527 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006528 struct sev_data_launch_start *start;
6529 struct kvm_sev_launch_start params;
6530 void *dh_blob, *session_blob;
6531 int *error = &argp->error;
6532 int ret;
6533
6534 if (!sev_guest(kvm))
6535 return -ENOTTY;
6536
6537 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6538 return -EFAULT;
6539
Ben Gardon1ec69642019-02-11 11:02:51 -08006540 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006541 if (!start)
6542 return -ENOMEM;
6543
6544 dh_blob = NULL;
6545 if (params.dh_uaddr) {
6546 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6547 if (IS_ERR(dh_blob)) {
6548 ret = PTR_ERR(dh_blob);
6549 goto e_free;
6550 }
6551
6552 start->dh_cert_address = __sme_set(__pa(dh_blob));
6553 start->dh_cert_len = params.dh_len;
6554 }
6555
6556 session_blob = NULL;
6557 if (params.session_uaddr) {
6558 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6559 if (IS_ERR(session_blob)) {
6560 ret = PTR_ERR(session_blob);
6561 goto e_free_dh;
6562 }
6563
6564 start->session_address = __sme_set(__pa(session_blob));
6565 start->session_len = params.session_len;
6566 }
6567
6568 start->handle = params.handle;
6569 start->policy = params.policy;
6570
6571 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006572 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006573 if (ret)
6574 goto e_free_session;
6575
6576 /* Bind ASID to this guest */
6577 ret = sev_bind_asid(kvm, start->handle, error);
6578 if (ret)
6579 goto e_free_session;
6580
6581 /* return handle to userspace */
6582 params.handle = start->handle;
6583 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6584 sev_unbind_asid(kvm, start->handle);
6585 ret = -EFAULT;
6586 goto e_free_session;
6587 }
6588
6589 sev->handle = start->handle;
6590 sev->fd = argp->sev_fd;
6591
6592e_free_session:
6593 kfree(session_blob);
6594e_free_dh:
6595 kfree(dh_blob);
6596e_free:
6597 kfree(start);
6598 return ret;
6599}
6600
David Rientjesede885e2019-03-19 15:19:56 -07006601static unsigned long get_num_contig_pages(unsigned long idx,
6602 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006603{
6604 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006605 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006606
6607 /* find the number of contiguous pages starting from idx */
6608 paddr = __sme_page_pa(inpages[idx]);
6609 while (i < npages) {
6610 next_paddr = __sme_page_pa(inpages[i++]);
6611 if ((paddr + PAGE_SIZE) == next_paddr) {
6612 pages++;
6613 paddr = next_paddr;
6614 continue;
6615 }
6616 break;
6617 }
6618
6619 return pages;
6620}
6621
6622static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6623{
David Rientjesede885e2019-03-19 15:19:56 -07006624 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006625 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006626 struct kvm_sev_launch_update_data params;
6627 struct sev_data_launch_update_data *data;
6628 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006629 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006630
6631 if (!sev_guest(kvm))
6632 return -ENOTTY;
6633
6634 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6635 return -EFAULT;
6636
Ben Gardon1ec69642019-02-11 11:02:51 -08006637 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006638 if (!data)
6639 return -ENOMEM;
6640
6641 vaddr = params.uaddr;
6642 size = params.len;
6643 vaddr_end = vaddr + size;
6644
6645 /* Lock the user memory. */
6646 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6647 if (!inpages) {
6648 ret = -ENOMEM;
6649 goto e_free;
6650 }
6651
6652 /*
6653 * The LAUNCH_UPDATE command will perform in-place encryption of the
6654 * memory content (i.e it will write the same memory region with C=1).
6655 * It's possible that the cache may contain the data with C=0, i.e.,
6656 * unencrypted so invalidate it first.
6657 */
6658 sev_clflush_pages(inpages, npages);
6659
6660 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6661 int offset, len;
6662
6663 /*
6664 * If the user buffer is not page-aligned, calculate the offset
6665 * within the page.
6666 */
6667 offset = vaddr & (PAGE_SIZE - 1);
6668
6669 /* Calculate the number of pages that can be encrypted in one go. */
6670 pages = get_num_contig_pages(i, inpages, npages);
6671
6672 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6673
6674 data->handle = sev->handle;
6675 data->len = len;
6676 data->address = __sme_page_pa(inpages[i]) + offset;
6677 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6678 if (ret)
6679 goto e_unpin;
6680
6681 size -= len;
6682 next_vaddr = vaddr + len;
6683 }
6684
6685e_unpin:
6686 /* content of memory is updated, mark pages dirty */
6687 for (i = 0; i < npages; i++) {
6688 set_page_dirty_lock(inpages[i]);
6689 mark_page_accessed(inpages[i]);
6690 }
6691 /* unlock the user pages */
6692 sev_unpin_memory(kvm, inpages, npages);
6693e_free:
6694 kfree(data);
6695 return ret;
6696}
6697
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006698static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6699{
Brijesh Singh3e233382018-02-23 12:36:50 -06006700 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006701 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006702 struct sev_data_launch_measure *data;
6703 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006704 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006705 void *blob = NULL;
6706 int ret;
6707
6708 if (!sev_guest(kvm))
6709 return -ENOTTY;
6710
Brijesh Singh3e233382018-02-23 12:36:50 -06006711 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006712 return -EFAULT;
6713
Ben Gardon1ec69642019-02-11 11:02:51 -08006714 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006715 if (!data)
6716 return -ENOMEM;
6717
6718 /* User wants to query the blob length */
6719 if (!params.len)
6720 goto cmd;
6721
Brijesh Singh3e233382018-02-23 12:36:50 -06006722 p = (void __user *)(uintptr_t)params.uaddr;
6723 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006724 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6725 ret = -EINVAL;
6726 goto e_free;
6727 }
6728
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006729 ret = -ENOMEM;
6730 blob = kmalloc(params.len, GFP_KERNEL);
6731 if (!blob)
6732 goto e_free;
6733
6734 data->address = __psp_pa(blob);
6735 data->len = params.len;
6736 }
6737
6738cmd:
6739 data->handle = sev->handle;
6740 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6741
6742 /*
6743 * If we query the session length, FW responded with expected data.
6744 */
6745 if (!params.len)
6746 goto done;
6747
6748 if (ret)
6749 goto e_free_blob;
6750
6751 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006752 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006753 ret = -EFAULT;
6754 }
6755
6756done:
6757 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006758 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006759 ret = -EFAULT;
6760e_free_blob:
6761 kfree(blob);
6762e_free:
6763 kfree(data);
6764 return ret;
6765}
6766
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006767static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6768{
Sean Christopherson81811c12018-03-20 12:17:21 -07006769 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006770 struct sev_data_launch_finish *data;
6771 int ret;
6772
6773 if (!sev_guest(kvm))
6774 return -ENOTTY;
6775
Ben Gardon1ec69642019-02-11 11:02:51 -08006776 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006777 if (!data)
6778 return -ENOMEM;
6779
6780 data->handle = sev->handle;
6781 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6782
6783 kfree(data);
6784 return ret;
6785}
6786
Brijesh Singh255d9e72017-12-04 10:57:37 -06006787static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6788{
Sean Christopherson81811c12018-03-20 12:17:21 -07006789 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006790 struct kvm_sev_guest_status params;
6791 struct sev_data_guest_status *data;
6792 int ret;
6793
6794 if (!sev_guest(kvm))
6795 return -ENOTTY;
6796
Ben Gardon1ec69642019-02-11 11:02:51 -08006797 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006798 if (!data)
6799 return -ENOMEM;
6800
6801 data->handle = sev->handle;
6802 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6803 if (ret)
6804 goto e_free;
6805
6806 params.policy = data->policy;
6807 params.state = data->state;
6808 params.handle = data->handle;
6809
6810 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6811 ret = -EFAULT;
6812e_free:
6813 kfree(data);
6814 return ret;
6815}
6816
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006817static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6818 unsigned long dst, int size,
6819 int *error, bool enc)
6820{
Sean Christopherson81811c12018-03-20 12:17:21 -07006821 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006822 struct sev_data_dbg *data;
6823 int ret;
6824
Ben Gardon1ec69642019-02-11 11:02:51 -08006825 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006826 if (!data)
6827 return -ENOMEM;
6828
6829 data->handle = sev->handle;
6830 data->dst_addr = dst;
6831 data->src_addr = src;
6832 data->len = size;
6833
6834 ret = sev_issue_cmd(kvm,
6835 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6836 data, error);
6837 kfree(data);
6838 return ret;
6839}
6840
6841static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6842 unsigned long dst_paddr, int sz, int *err)
6843{
6844 int offset;
6845
6846 /*
6847 * Its safe to read more than we are asked, caller should ensure that
6848 * destination has enough space.
6849 */
6850 src_paddr = round_down(src_paddr, 16);
6851 offset = src_paddr & 15;
6852 sz = round_up(sz + offset, 16);
6853
6854 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6855}
6856
6857static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6858 unsigned long __user dst_uaddr,
6859 unsigned long dst_paddr,
6860 int size, int *err)
6861{
6862 struct page *tpage = NULL;
6863 int ret, offset;
6864
6865 /* if inputs are not 16-byte then use intermediate buffer */
6866 if (!IS_ALIGNED(dst_paddr, 16) ||
6867 !IS_ALIGNED(paddr, 16) ||
6868 !IS_ALIGNED(size, 16)) {
6869 tpage = (void *)alloc_page(GFP_KERNEL);
6870 if (!tpage)
6871 return -ENOMEM;
6872
6873 dst_paddr = __sme_page_pa(tpage);
6874 }
6875
6876 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6877 if (ret)
6878 goto e_free;
6879
6880 if (tpage) {
6881 offset = paddr & 15;
6882 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6883 page_address(tpage) + offset, size))
6884 ret = -EFAULT;
6885 }
6886
6887e_free:
6888 if (tpage)
6889 __free_page(tpage);
6890
6891 return ret;
6892}
6893
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006894static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6895 unsigned long __user vaddr,
6896 unsigned long dst_paddr,
6897 unsigned long __user dst_vaddr,
6898 int size, int *error)
6899{
6900 struct page *src_tpage = NULL;
6901 struct page *dst_tpage = NULL;
6902 int ret, len = size;
6903
6904 /* If source buffer is not aligned then use an intermediate buffer */
6905 if (!IS_ALIGNED(vaddr, 16)) {
6906 src_tpage = alloc_page(GFP_KERNEL);
6907 if (!src_tpage)
6908 return -ENOMEM;
6909
6910 if (copy_from_user(page_address(src_tpage),
6911 (void __user *)(uintptr_t)vaddr, size)) {
6912 __free_page(src_tpage);
6913 return -EFAULT;
6914 }
6915
6916 paddr = __sme_page_pa(src_tpage);
6917 }
6918
6919 /*
6920 * If destination buffer or length is not aligned then do read-modify-write:
6921 * - decrypt destination in an intermediate buffer
6922 * - copy the source buffer in an intermediate buffer
6923 * - use the intermediate buffer as source buffer
6924 */
6925 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6926 int dst_offset;
6927
6928 dst_tpage = alloc_page(GFP_KERNEL);
6929 if (!dst_tpage) {
6930 ret = -ENOMEM;
6931 goto e_free;
6932 }
6933
6934 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6935 __sme_page_pa(dst_tpage), size, error);
6936 if (ret)
6937 goto e_free;
6938
6939 /*
6940 * If source is kernel buffer then use memcpy() otherwise
6941 * copy_from_user().
6942 */
6943 dst_offset = dst_paddr & 15;
6944
6945 if (src_tpage)
6946 memcpy(page_address(dst_tpage) + dst_offset,
6947 page_address(src_tpage), size);
6948 else {
6949 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6950 (void __user *)(uintptr_t)vaddr, size)) {
6951 ret = -EFAULT;
6952 goto e_free;
6953 }
6954 }
6955
6956 paddr = __sme_page_pa(dst_tpage);
6957 dst_paddr = round_down(dst_paddr, 16);
6958 len = round_up(size, 16);
6959 }
6960
6961 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6962
6963e_free:
6964 if (src_tpage)
6965 __free_page(src_tpage);
6966 if (dst_tpage)
6967 __free_page(dst_tpage);
6968 return ret;
6969}
6970
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006971static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6972{
6973 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006974 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006975 struct page **src_p, **dst_p;
6976 struct kvm_sev_dbg debug;
6977 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006978 unsigned int size;
6979 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006980
6981 if (!sev_guest(kvm))
6982 return -ENOTTY;
6983
6984 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6985 return -EFAULT;
6986
David Rientjesb86bc282019-03-25 11:47:31 -07006987 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6988 return -EINVAL;
6989 if (!debug.dst_uaddr)
6990 return -EINVAL;
6991
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006992 vaddr = debug.src_uaddr;
6993 size = debug.len;
6994 vaddr_end = vaddr + size;
6995 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006996
6997 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6998 int len, s_off, d_off;
6999
7000 /* lock userspace source and destination page */
7001 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
7002 if (!src_p)
7003 return -EFAULT;
7004
7005 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
7006 if (!dst_p) {
7007 sev_unpin_memory(kvm, src_p, n);
7008 return -EFAULT;
7009 }
7010
7011 /*
7012 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
7013 * memory content (i.e it will write the same memory region with C=1).
7014 * It's possible that the cache may contain the data with C=0, i.e.,
7015 * unencrypted so invalidate it first.
7016 */
7017 sev_clflush_pages(src_p, 1);
7018 sev_clflush_pages(dst_p, 1);
7019
7020 /*
7021 * Since user buffer may not be page aligned, calculate the
7022 * offset within the page.
7023 */
7024 s_off = vaddr & ~PAGE_MASK;
7025 d_off = dst_vaddr & ~PAGE_MASK;
7026 len = min_t(size_t, (PAGE_SIZE - s_off), size);
7027
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007028 if (dec)
7029 ret = __sev_dbg_decrypt_user(kvm,
7030 __sme_page_pa(src_p[0]) + s_off,
7031 dst_vaddr,
7032 __sme_page_pa(dst_p[0]) + d_off,
7033 len, &argp->error);
7034 else
7035 ret = __sev_dbg_encrypt_user(kvm,
7036 __sme_page_pa(src_p[0]) + s_off,
7037 vaddr,
7038 __sme_page_pa(dst_p[0]) + d_off,
7039 dst_vaddr,
7040 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007041
David Rientjesb86bc282019-03-25 11:47:31 -07007042 sev_unpin_memory(kvm, src_p, n);
7043 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007044
7045 if (ret)
7046 goto err;
7047
7048 next_vaddr = vaddr + len;
7049 dst_vaddr = dst_vaddr + len;
7050 size -= len;
7051 }
7052err:
7053 return ret;
7054}
7055
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007056static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
7057{
Sean Christopherson81811c12018-03-20 12:17:21 -07007058 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007059 struct sev_data_launch_secret *data;
7060 struct kvm_sev_launch_secret params;
7061 struct page **pages;
7062 void *blob, *hdr;
7063 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007064 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007065
7066 if (!sev_guest(kvm))
7067 return -ENOTTY;
7068
7069 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
7070 return -EFAULT;
7071
7072 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
7073 if (!pages)
7074 return -ENOMEM;
7075
7076 /*
7077 * The secret must be copied into contiguous memory region, lets verify
7078 * that userspace memory pages are contiguous before we issue command.
7079 */
7080 if (get_num_contig_pages(0, pages, n) != n) {
7081 ret = -EINVAL;
7082 goto e_unpin_memory;
7083 }
7084
7085 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08007086 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007087 if (!data)
7088 goto e_unpin_memory;
7089
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007090 offset = params.guest_uaddr & (PAGE_SIZE - 1);
7091 data->guest_address = __sme_page_pa(pages[0]) + offset;
7092 data->guest_len = params.guest_len;
7093
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007094 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
7095 if (IS_ERR(blob)) {
7096 ret = PTR_ERR(blob);
7097 goto e_free;
7098 }
7099
7100 data->trans_address = __psp_pa(blob);
7101 data->trans_len = params.trans_len;
7102
7103 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
7104 if (IS_ERR(hdr)) {
7105 ret = PTR_ERR(hdr);
7106 goto e_free_blob;
7107 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007108 data->hdr_address = __psp_pa(hdr);
7109 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007110
7111 data->handle = sev->handle;
7112 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
7113
7114 kfree(hdr);
7115
7116e_free_blob:
7117 kfree(blob);
7118e_free:
7119 kfree(data);
7120e_unpin_memory:
7121 sev_unpin_memory(kvm, pages, n);
7122 return ret;
7123}
7124
Brijesh Singh1654efc2017-12-04 10:57:34 -06007125static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
7126{
7127 struct kvm_sev_cmd sev_cmd;
7128 int r;
7129
7130 if (!svm_sev_enabled())
7131 return -ENOTTY;
7132
7133 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7134 return -EFAULT;
7135
7136 mutex_lock(&kvm->lock);
7137
7138 switch (sev_cmd.id) {
7139 case KVM_SEV_INIT:
7140 r = sev_guest_init(kvm, &sev_cmd);
7141 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007142 case KVM_SEV_LAUNCH_START:
7143 r = sev_launch_start(kvm, &sev_cmd);
7144 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007145 case KVM_SEV_LAUNCH_UPDATE_DATA:
7146 r = sev_launch_update_data(kvm, &sev_cmd);
7147 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007148 case KVM_SEV_LAUNCH_MEASURE:
7149 r = sev_launch_measure(kvm, &sev_cmd);
7150 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007151 case KVM_SEV_LAUNCH_FINISH:
7152 r = sev_launch_finish(kvm, &sev_cmd);
7153 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007154 case KVM_SEV_GUEST_STATUS:
7155 r = sev_guest_status(kvm, &sev_cmd);
7156 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007157 case KVM_SEV_DBG_DECRYPT:
7158 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7159 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007160 case KVM_SEV_DBG_ENCRYPT:
7161 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7162 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007163 case KVM_SEV_LAUNCH_SECRET:
7164 r = sev_launch_secret(kvm, &sev_cmd);
7165 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007166 default:
7167 r = -EINVAL;
7168 goto out;
7169 }
7170
7171 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7172 r = -EFAULT;
7173
7174out:
7175 mutex_unlock(&kvm->lock);
7176 return r;
7177}
7178
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007179static int svm_register_enc_region(struct kvm *kvm,
7180 struct kvm_enc_region *range)
7181{
Sean Christopherson81811c12018-03-20 12:17:21 -07007182 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007183 struct enc_region *region;
7184 int ret = 0;
7185
7186 if (!sev_guest(kvm))
7187 return -ENOTTY;
7188
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007189 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7190 return -EINVAL;
7191
Ben Gardon1ec69642019-02-11 11:02:51 -08007192 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007193 if (!region)
7194 return -ENOMEM;
7195
7196 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7197 if (!region->pages) {
7198 ret = -ENOMEM;
7199 goto e_free;
7200 }
7201
7202 /*
7203 * The guest may change the memory encryption attribute from C=0 -> C=1
7204 * or vice versa for this memory range. Lets make sure caches are
7205 * flushed to ensure that guest data gets written into memory with
7206 * correct C-bit.
7207 */
7208 sev_clflush_pages(region->pages, region->npages);
7209
7210 region->uaddr = range->addr;
7211 region->size = range->size;
7212
7213 mutex_lock(&kvm->lock);
7214 list_add_tail(&region->list, &sev->regions_list);
7215 mutex_unlock(&kvm->lock);
7216
7217 return ret;
7218
7219e_free:
7220 kfree(region);
7221 return ret;
7222}
7223
7224static struct enc_region *
7225find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7226{
Sean Christopherson81811c12018-03-20 12:17:21 -07007227 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007228 struct list_head *head = &sev->regions_list;
7229 struct enc_region *i;
7230
7231 list_for_each_entry(i, head, list) {
7232 if (i->uaddr == range->addr &&
7233 i->size == range->size)
7234 return i;
7235 }
7236
7237 return NULL;
7238}
7239
7240
7241static int svm_unregister_enc_region(struct kvm *kvm,
7242 struct kvm_enc_region *range)
7243{
7244 struct enc_region *region;
7245 int ret;
7246
7247 mutex_lock(&kvm->lock);
7248
7249 if (!sev_guest(kvm)) {
7250 ret = -ENOTTY;
7251 goto failed;
7252 }
7253
7254 region = find_enc_region(kvm, range);
7255 if (!region) {
7256 ret = -EINVAL;
7257 goto failed;
7258 }
7259
7260 __unregister_enc_region_locked(kvm, region);
7261
7262 mutex_unlock(&kvm->lock);
7263 return 0;
7264
7265failed:
7266 mutex_unlock(&kvm->lock);
7267 return ret;
7268}
7269
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007270static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7271{
Liran Alon118154b2019-07-17 02:56:58 +03007272 unsigned long cr4 = kvm_read_cr4(vcpu);
7273 bool smep = cr4 & X86_CR4_SMEP;
7274 bool smap = cr4 & X86_CR4_SMAP;
7275 bool is_user = svm_get_cpl(vcpu) == 3;
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007276
7277 /*
Liran Alon118154b2019-07-17 02:56:58 +03007278 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7279 *
7280 * Errata:
7281 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7282 * possible that CPU microcode implementing DecodeAssist will fail
7283 * to read bytes of instruction which caused #NPF. In this case,
7284 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7285 * return 0 instead of the correct guest instruction bytes.
7286 *
7287 * This happens because CPU microcode reading instruction bytes
7288 * uses a special opcode which attempts to read data using CPL=0
7289 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7290 * fault, it gives up and returns no instruction bytes.
7291 *
7292 * Detection:
7293 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7294 * returned 0 in GuestIntrBytes field of the VMCB.
7295 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7296 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7297 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7298 * a SMEP fault instead of #NPF).
7299 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7300 * As most guests enable SMAP if they have also enabled SMEP, use above
7301 * logic in order to attempt minimize false-positive of detecting errata
7302 * while still preserving all cases semantic correctness.
7303 *
7304 * Workaround:
7305 * To determine what instruction the guest was executing, the hypervisor
7306 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007307 *
7308 * In non SEV guest, hypervisor will be able to read the guest
7309 * memory to decode the instruction pointer when insn_len is zero
7310 * so we return true to indicate that decoding is possible.
7311 *
7312 * But in the SEV guest, the guest memory is encrypted with the
7313 * guest specific key and hypervisor will not be able to decode the
7314 * instruction pointer so we will not able to workaround it. Lets
7315 * print the error and request to kill the guest.
7316 */
Liran Alon118154b2019-07-17 02:56:58 +03007317 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007318 if (!sev_guest(vcpu->kvm))
7319 return true;
7320
Liran Alon118154b2019-07-17 02:56:58 +03007321 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007322 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7323 }
7324
7325 return false;
7326}
7327
Liran Alon4b9852f2019-08-26 13:24:49 +03007328static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7329{
7330 struct vcpu_svm *svm = to_svm(vcpu);
7331
7332 /*
7333 * TODO: Last condition latch INIT signals on vCPU when
7334 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
7335 * To properly emulate the INIT intercept, SVM should implement
7336 * kvm_x86_ops->check_nested_events() and call nested_svm_vmexit()
7337 * there if an INIT signal is pending.
7338 */
7339 return !gif_set(svm) ||
7340 (svm->vmcb->control.intercept & (1ULL << INTERCEPT_INIT));
7341}
7342
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007343static bool svm_check_apicv_inhibit_reasons(ulong bit)
7344{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007345 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06007346 BIT(APICV_INHIBIT_REASON_HYPERV) |
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06007347 BIT(APICV_INHIBIT_REASON_NESTED) |
Suravee Suthikulpanite2ed4072019-11-14 14:15:16 -06007348 BIT(APICV_INHIBIT_REASON_IRQWIN) |
Oliver Uptoncc7f5572020-02-28 00:59:04 -08007349 BIT(APICV_INHIBIT_REASON_PIT_REINJ) |
7350 BIT(APICV_INHIBIT_REASON_X2APIC);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007351
7352 return supported & BIT(bit);
7353}
7354
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06007355static void svm_pre_update_apicv_exec_ctrl(struct kvm *kvm, bool activate)
7356{
7357 avic_update_access_page(kvm, activate);
7358}
7359
Kees Cook404f6aa2016-08-08 16:29:06 -07007360static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007361 .cpu_has_kvm_support = has_svm,
7362 .disabled_by_bios = is_disabled,
7363 .hardware_setup = svm_hardware_setup,
Li RongQingdd58f3c2020-02-23 16:13:12 +08007364 .hardware_unsetup = svm_hardware_teardown,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007365 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007366 .hardware_enable = svm_hardware_enable,
7367 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007368 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007369 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007370
7371 .vcpu_create = svm_create_vcpu,
7372 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007373 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007374
Sean Christopherson562b6b02020-01-26 16:41:13 -08007375 .vm_size = sizeof(struct kvm_svm),
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007376 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007377 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007378
Avi Kivity04d2cc72007-09-10 18:10:54 +03007379 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007380 .vcpu_load = svm_vcpu_load,
7381 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007382 .vcpu_blocking = svm_vcpu_blocking,
7383 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007384
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007385 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007386 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007387 .get_msr = svm_get_msr,
7388 .set_msr = svm_set_msr,
7389 .get_segment_base = svm_get_segment_base,
7390 .get_segment = svm_get_segment,
7391 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007392 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007393 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007394 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007395 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007396 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007397 .set_cr3 = svm_set_cr3,
7398 .set_cr4 = svm_set_cr4,
7399 .set_efer = svm_set_efer,
7400 .get_idt = svm_get_idt,
7401 .set_idt = svm_set_idt,
7402 .get_gdt = svm_get_gdt,
7403 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007404 .get_dr6 = svm_get_dr6,
7405 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007406 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007407 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007408 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007409 .get_rflags = svm_get_rflags,
7410 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007411
Avi Kivity6aa8b732006-12-10 02:21:36 -08007412 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007413 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007414
Avi Kivity6aa8b732006-12-10 02:21:36 -08007415 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007416 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007417 .skip_emulated_instruction = skip_emulated_instruction,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007418 .update_emulated_instruction = NULL,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007419 .set_interrupt_shadow = svm_set_interrupt_shadow,
7420 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007421 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007422 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007423 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007424 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007425 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007426 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007427 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007428 .get_nmi_mask = svm_get_nmi_mask,
7429 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007430 .enable_nmi_window = enable_nmi_window,
7431 .enable_irq_window = enable_irq_window,
7432 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007433 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007434 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007435 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06007436 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007437 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007438 .hwapic_irr_update = svm_hwapic_irr_update,
7439 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007440 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007441 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007442
7443 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007444 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007445 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007446 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007447
Avi Kivity586f9602010-11-18 13:09:54 +02007448 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007449
Sheng Yang17cc3932010-01-05 19:02:27 +08007450 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007451
7452 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007453
7454 .rdtscp_supported = svm_rdtscp_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007455 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007456 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007457 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007458
7459 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007460
7461 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007462
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007463 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007464 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007465
7466 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007467
7468 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007469 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007470
Sean Christophersond264ee02018-08-27 15:21:12 -07007471 .request_immediate_exit = __kvm_request_immediate_exit,
7472
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007473 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007474
7475 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007476 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08007477 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007478 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007479 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007480
Ladi Prosek72d7b372017-10-11 16:54:41 +02007481 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007482 .pre_enter_smm = svm_pre_enter_smm,
7483 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007484 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007485
7486 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007487 .mem_enc_reg_region = svm_register_enc_region,
7488 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007489
Vitaly Kuznetsov956e2552019-08-28 09:59:04 +02007490 .nested_enable_evmcs = NULL,
Vitaly Kuznetsovea152982019-08-27 18:04:02 +02007491 .nested_get_evmcs_version = NULL,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007492
7493 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Liran Alon4b9852f2019-08-26 13:24:49 +03007494
7495 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007496};
7497
7498static int __init svm_init(void)
7499{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007500 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007501 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007502}
7503
7504static void __exit svm_exit(void)
7505{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007506 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007507}
7508
7509module_init(svm_init)
7510module_exit(svm_exit)