blob: ff02aeb236164d2d8007ee61900422210170dad0 [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
Avi Kivity6aa8b732006-12-10 02:21:36 -08001352static __init int svm_hardware_setup(void)
1353{
1354 int cpu;
1355 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001356 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001357 int r;
1358
Avi Kivity6aa8b732006-12-10 02:21:36 -08001359 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1360
1361 if (!iopm_pages)
1362 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001363
1364 iopm_va = page_address(iopm_pages);
1365 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001366 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1367
Joerg Roedel323c3d82010-03-01 15:34:37 +01001368 init_msrpm_offsets();
1369
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001370 if (boot_cpu_has(X86_FEATURE_NX))
1371 kvm_enable_efer_bits(EFER_NX);
1372
Alexander Graf1b2fd702009-02-02 16:23:51 +01001373 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1374 kvm_enable_efer_bits(EFER_FFXSR);
1375
Joerg Roedel92a1f122011-03-25 09:44:51 +01001376 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001377 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001378 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1379 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001380 }
1381
Babu Moger8566ac82018-03-16 16:37:26 -04001382 /* Check for pause filtering support */
1383 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1384 pause_filter_count = 0;
1385 pause_filter_thresh = 0;
1386 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1387 pause_filter_thresh = 0;
1388 }
1389
Alexander Graf236de052008-11-25 20:17:10 +01001390 if (nested) {
1391 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001392 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001393 }
1394
Brijesh Singhe9df0942017-12-04 10:57:33 -06001395 if (sev) {
1396 if (boot_cpu_has(X86_FEATURE_SEV) &&
1397 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1398 r = sev_hardware_setup();
1399 if (r)
1400 sev = false;
1401 } else {
1402 sev = false;
1403 }
1404 }
1405
Tom Lendacky52918ed2020-01-09 17:42:16 -06001406 svm_adjust_mmio_mask();
1407
Zachary Amsden3230bb42009-09-29 11:38:37 -10001408 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001409 r = svm_cpu_init(cpu);
1410 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001411 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001413
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001414 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001415 npt_enabled = false;
1416
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001417 if (npt_enabled && !npt) {
1418 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1419 npt_enabled = false;
1420 }
1421
Joerg Roedel18552672008-02-07 13:47:41 +01001422 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001423 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001424 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001425 } else
1426 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001427
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001428 if (nrips) {
1429 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1430 nrips = false;
1431 }
1432
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001433 if (avic) {
1434 if (!npt_enabled ||
1435 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001436 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001437 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001438 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001439 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001440
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001441 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1442 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001443 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001444
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001445 if (vls) {
1446 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001447 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001448 !IS_ENABLED(CONFIG_X86_64)) {
1449 vls = false;
1450 } else {
1451 pr_info("Virtual VMLOAD VMSAVE supported\n");
1452 }
1453 }
1454
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001455 if (vgif) {
1456 if (!boot_cpu_has(X86_FEATURE_VGIF))
1457 vgif = false;
1458 else
1459 pr_info("Virtual GIF supported\n");
1460 }
1461
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462 return 0;
1463
Joerg Roedelf65c2292008-02-13 18:58:46 +01001464err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1466 iopm_base = 0;
1467 return r;
1468}
1469
1470static __exit void svm_hardware_unsetup(void)
1471{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001472 int cpu;
1473
Tom Lendacky33af3a72019-10-03 21:17:48 +00001474 if (svm_sev_enabled()) {
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001475 bitmap_free(sev_asid_bitmap);
Tom Lendacky33af3a72019-10-03 21:17:48 +00001476 bitmap_free(sev_reclaim_asid_bitmap);
1477
1478 sev_flush_asids();
1479 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001480
Zachary Amsden3230bb42009-09-29 11:38:37 -10001481 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001482 svm_cpu_uninit(cpu);
1483
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001485 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486}
1487
1488static void init_seg(struct vmcb_seg *seg)
1489{
1490 seg->selector = 0;
1491 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001492 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493 seg->limit = 0xffff;
1494 seg->base = 0;
1495}
1496
1497static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1498{
1499 seg->selector = 0;
1500 seg->attrib = SVM_SELECTOR_P_MASK | type;
1501 seg->limit = 0xffff;
1502 seg->base = 0;
1503}
1504
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001505static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1506{
1507 struct vcpu_svm *svm = to_svm(vcpu);
1508
1509 if (is_guest_mode(vcpu))
1510 return svm->nested.hsave->control.tsc_offset;
1511
1512 return vcpu->arch.tsc_offset;
1513}
1514
Leonid Shatz326e7422018-11-06 12:14:25 +02001515static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001516{
1517 struct vcpu_svm *svm = to_svm(vcpu);
1518 u64 g_tsc_offset = 0;
1519
Joerg Roedel20307532010-11-29 17:51:48 +01001520 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001521 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001522 g_tsc_offset = svm->vmcb->control.tsc_offset -
1523 svm->nested.hsave->control.tsc_offset;
1524 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001525 }
1526
1527 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1528 svm->vmcb->control.tsc_offset - g_tsc_offset,
1529 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001530
1531 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001532
1533 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001534 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001535}
1536
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001537static void avic_init_vmcb(struct vcpu_svm *svm)
1538{
1539 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001540 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001541 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001542 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1543 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001544
1545 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1546 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1547 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1548 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001549 if (kvm_apicv_activated(svm->vcpu.kvm))
1550 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
1551 else
1552 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001553}
1554
Paolo Bonzini56908912015-10-19 11:30:19 +02001555static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556{
Joerg Roedele6101a92008-02-13 18:58:45 +01001557 struct vmcb_control_area *control = &svm->vmcb->control;
1558 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001560 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001561
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001562 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1563 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1564 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1565 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1566 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1567 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001568 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1569 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
Paolo Bonzini5315c712014-03-03 13:08:29 +01001571 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572
Joerg Roedel18c918c2010-11-30 18:03:59 +01001573 set_exception_intercept(svm, PF_VECTOR);
1574 set_exception_intercept(svm, UD_VECTOR);
1575 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001576 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001577 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001578 /*
1579 * Guest access to VMware backdoor ports could legitimately
1580 * trigger #GP because of TSS I/O permission bitmap.
1581 * We intercept those #GP and allow access to them anyway
1582 * as VMware does.
1583 */
1584 if (enable_vmware_backdoor)
1585 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001587 set_intercept(svm, INTERCEPT_INTR);
1588 set_intercept(svm, INTERCEPT_NMI);
1589 set_intercept(svm, INTERCEPT_SMI);
1590 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001591 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001592 set_intercept(svm, INTERCEPT_CPUID);
1593 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001594 set_intercept(svm, INTERCEPT_INVLPG);
1595 set_intercept(svm, INTERCEPT_INVLPGA);
1596 set_intercept(svm, INTERCEPT_IOIO_PROT);
1597 set_intercept(svm, INTERCEPT_MSR_PROT);
1598 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1599 set_intercept(svm, INTERCEPT_SHUTDOWN);
1600 set_intercept(svm, INTERCEPT_VMRUN);
1601 set_intercept(svm, INTERCEPT_VMMCALL);
1602 set_intercept(svm, INTERCEPT_VMLOAD);
1603 set_intercept(svm, INTERCEPT_VMSAVE);
1604 set_intercept(svm, INTERCEPT_STGI);
1605 set_intercept(svm, INTERCEPT_CLGI);
1606 set_intercept(svm, INTERCEPT_SKINIT);
1607 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001608 set_intercept(svm, INTERCEPT_XSETBV);
Jim Mattson0cb84102019-09-19 15:59:17 -07001609 set_intercept(svm, INTERCEPT_RDPRU);
Brijesh Singh7607b712018-02-19 10:14:44 -06001610 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001612 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001613 set_intercept(svm, INTERCEPT_MONITOR);
1614 set_intercept(svm, INTERCEPT_MWAIT);
1615 }
1616
Wanpeng Licaa057a2018-03-12 04:53:03 -07001617 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1618 set_intercept(svm, INTERCEPT_HLT);
1619
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001620 control->iopm_base_pa = __sme_set(iopm_base);
1621 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001622 control->int_ctl = V_INTR_MASKING_MASK;
1623
1624 init_seg(&save->es);
1625 init_seg(&save->ss);
1626 init_seg(&save->ds);
1627 init_seg(&save->fs);
1628 init_seg(&save->gs);
1629
1630 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001631 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001632 /* Executable/Readable Code Segment */
1633 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1634 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1635 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001636
1637 save->gdtr.limit = 0xffff;
1638 save->idtr.limit = 0xffff;
1639
1640 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1641 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1642
Paolo Bonzini56908912015-10-19 11:30:19 +02001643 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001644 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001645 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001647 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648
Joerg Roedele0231712010-02-24 18:59:10 +01001649 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001650 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001651 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001653 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001654 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001655
Rusty Russell66aee912007-07-17 23:34:16 +10001656 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001657 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001658
1659 if (npt_enabled) {
1660 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001661 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001662 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001663 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001664 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1665 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001666 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001667 save->cr3 = 0;
1668 save->cr4 = 0;
1669 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001670 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001671
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001672 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001673 svm->vcpu.arch.hflags = 0;
1674
Babu Moger8566ac82018-03-16 16:37:26 -04001675 if (pause_filter_count) {
1676 control->pause_filter_count = pause_filter_count;
1677 if (pause_filter_thresh)
1678 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001679 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001680 } else {
1681 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001682 }
1683
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001684 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001685 avic_init_vmcb(svm);
1686
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001687 /*
1688 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1689 * in VMCB and clear intercepts to avoid #VMEXIT.
1690 */
1691 if (vls) {
1692 clr_intercept(svm, INTERCEPT_VMLOAD);
1693 clr_intercept(svm, INTERCEPT_VMSAVE);
1694 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1695 }
1696
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001697 if (vgif) {
1698 clr_intercept(svm, INTERCEPT_STGI);
1699 clr_intercept(svm, INTERCEPT_CLGI);
1700 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1701 }
1702
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001703 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001704 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001705 clr_exception_intercept(svm, UD_VECTOR);
1706 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001707
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001708 mark_all_dirty(svm->vmcb);
1709
Joerg Roedel2af91942009-08-07 11:49:28 +02001710 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001711
1712}
1713
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001714static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1715 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001716{
1717 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001718 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001719
1720 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1721 return NULL;
1722
Sean Christopherson81811c12018-03-20 12:17:21 -07001723 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001724
1725 return &avic_physical_id_table[index];
1726}
1727
1728/**
1729 * Note:
1730 * AVIC hardware walks the nested page table to check permissions,
1731 * but does not use the SPA address specified in the leaf page
1732 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1733 * field of the VMCB. Therefore, we set up the
1734 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1735 */
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001736static int avic_update_access_page(struct kvm *kvm, bool activate)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001737{
Wei Wang30510382018-11-12 12:23:14 +00001738 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001739
Wei Wang30510382018-11-12 12:23:14 +00001740 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanite2ed4072019-11-14 14:15:16 -06001741 /*
1742 * During kvm_destroy_vm(), kvm_pit_set_reinject() could trigger
1743 * APICv mode change, which update APIC_ACCESS_PAGE_PRIVATE_MEMSLOT
1744 * memory region. So, we need to ensure that kvm->mm == current->mm.
1745 */
1746 if ((kvm->arch.apic_access_page_done == activate) ||
1747 (kvm->mm != current->mm))
Wei Wang30510382018-11-12 12:23:14 +00001748 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001749
Wei Wang30510382018-11-12 12:23:14 +00001750 ret = __x86_set_memory_region(kvm,
1751 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1752 APIC_DEFAULT_PHYS_BASE,
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001753 activate ? PAGE_SIZE : 0);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001754 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001755 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001756
Suravee Suthikulpanitdcbcfa22019-11-14 14:15:09 -06001757 kvm->arch.apic_access_page_done = activate;
Wei Wang30510382018-11-12 12:23:14 +00001758out:
1759 mutex_unlock(&kvm->slots_lock);
1760 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001761}
1762
1763static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1764{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001765 u64 *entry, new_entry;
1766 int id = vcpu->vcpu_id;
1767 struct vcpu_svm *svm = to_svm(vcpu);
1768
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001769 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1770 return -EINVAL;
1771
1772 if (!svm->vcpu.arch.apic->regs)
1773 return -EINVAL;
1774
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06001775 if (kvm_apicv_activated(vcpu->kvm)) {
1776 int ret;
1777
1778 ret = avic_update_access_page(vcpu->kvm, true);
1779 if (ret)
1780 return ret;
1781 }
1782
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001783 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1784
1785 /* Setting AVIC backing page address in the phy APIC ID table */
1786 entry = avic_get_physical_id_entry(vcpu, id);
1787 if (!entry)
1788 return -EINVAL;
1789
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001790 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1791 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1792 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001793 WRITE_ONCE(*entry, new_entry);
1794
1795 svm->avic_physical_id_cache = entry;
1796
1797 return 0;
1798}
1799
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001800static void sev_asid_free(int asid)
Brijesh Singh1654efc2017-12-04 10:57:34 -06001801{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001802 struct svm_cpu_data *sd;
1803 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001804
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001805 mutex_lock(&sev_bitmap_lock);
1806
Brijesh Singh1654efc2017-12-04 10:57:34 -06001807 pos = asid - 1;
Tom Lendacky33af3a72019-10-03 21:17:48 +00001808 __set_bit(pos, sev_reclaim_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001809
1810 for_each_possible_cpu(cpu) {
1811 sd = per_cpu(svm_data, cpu);
1812 sd->sev_vmcbs[pos] = NULL;
1813 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001814
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001815 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001816}
1817
Brijesh Singh59414c92017-12-04 10:57:35 -06001818static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1819{
1820 struct sev_data_decommission *decommission;
1821 struct sev_data_deactivate *data;
1822
1823 if (!handle)
1824 return;
1825
1826 data = kzalloc(sizeof(*data), GFP_KERNEL);
1827 if (!data)
1828 return;
1829
1830 /* deactivate handle */
1831 data->handle = handle;
Tom Lendacky83af5e62019-10-03 21:17:45 +00001832
Tom Lendacky33af3a72019-10-03 21:17:48 +00001833 /* Guard DEACTIVATE against WBINVD/DF_FLUSH used in ASID recycling */
1834 down_read(&sev_deactivate_lock);
Brijesh Singh59414c92017-12-04 10:57:35 -06001835 sev_guest_deactivate(data, NULL);
Tom Lendacky33af3a72019-10-03 21:17:48 +00001836 up_read(&sev_deactivate_lock);
Tom Lendacky83af5e62019-10-03 21:17:45 +00001837
Brijesh Singh59414c92017-12-04 10:57:35 -06001838 kfree(data);
1839
1840 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1841 if (!decommission)
1842 return;
1843
1844 /* decommission handle */
1845 decommission->handle = handle;
1846 sev_guest_decommission(decommission, NULL);
1847
1848 kfree(decommission);
1849}
1850
Brijesh Singh89c50582017-12-04 10:57:35 -06001851static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1852 unsigned long ulen, unsigned long *n,
1853 int write)
1854{
Sean Christopherson81811c12018-03-20 12:17:21 -07001855 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001856 unsigned long npages, npinned, size;
1857 unsigned long locked, lock_limit;
1858 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001859 unsigned long first, last;
1860
1861 if (ulen == 0 || uaddr + ulen < uaddr)
1862 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001863
1864 /* Calculate number of pages. */
1865 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1866 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1867 npages = (last - first + 1);
1868
1869 locked = sev->pages_locked + npages;
1870 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1871 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1872 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1873 return NULL;
1874 }
1875
1876 /* Avoid using vmalloc for smaller buffers. */
1877 size = npages * sizeof(struct page *);
1878 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001879 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1880 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001881 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001882 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001883
1884 if (!pages)
1885 return NULL;
1886
1887 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001888 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001889 if (npinned != npages) {
1890 pr_err("SEV: Failure locking %lu pages.\n", npages);
1891 goto err;
1892 }
1893
1894 *n = npages;
1895 sev->pages_locked = locked;
1896
1897 return pages;
1898
1899err:
1900 if (npinned > 0)
1901 release_pages(pages, npinned);
1902
1903 kvfree(pages);
1904 return NULL;
1905}
1906
1907static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1908 unsigned long npages)
1909{
Sean Christopherson81811c12018-03-20 12:17:21 -07001910 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001911
1912 release_pages(pages, npages);
1913 kvfree(pages);
1914 sev->pages_locked -= npages;
1915}
1916
1917static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1918{
1919 uint8_t *page_virtual;
1920 unsigned long i;
1921
1922 if (npages == 0 || pages == NULL)
1923 return;
1924
1925 for (i = 0; i < npages; i++) {
1926 page_virtual = kmap_atomic(pages[i]);
1927 clflush_cache_range(page_virtual, PAGE_SIZE);
1928 kunmap_atomic(page_virtual);
1929 }
1930}
1931
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001932static void __unregister_enc_region_locked(struct kvm *kvm,
1933 struct enc_region *region)
1934{
1935 /*
1936 * The guest may change the memory encryption attribute from C=0 -> C=1
1937 * or vice versa for this memory range. Lets make sure caches are
1938 * flushed to ensure that guest data gets written into memory with
1939 * correct C-bit.
1940 */
1941 sev_clflush_pages(region->pages, region->npages);
1942
1943 sev_unpin_memory(kvm, region->pages, region->npages);
1944 list_del(&region->list);
1945 kfree(region);
1946}
1947
Sean Christopherson434a1e92018-03-20 12:17:18 -07001948static struct kvm *svm_vm_alloc(void)
1949{
Ben Gardon1ec69642019-02-11 11:02:51 -08001950 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1951 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1952 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001953 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001954}
1955
1956static void svm_vm_free(struct kvm *kvm)
1957{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001958 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001959}
1960
Brijesh Singh1654efc2017-12-04 10:57:34 -06001961static void sev_vm_destroy(struct kvm *kvm)
1962{
Sean Christopherson81811c12018-03-20 12:17:21 -07001963 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001964 struct list_head *head = &sev->regions_list;
1965 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001966
Brijesh Singh1654efc2017-12-04 10:57:34 -06001967 if (!sev_guest(kvm))
1968 return;
1969
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001970 mutex_lock(&kvm->lock);
1971
1972 /*
1973 * if userspace was terminated before unregistering the memory regions
1974 * then lets unpin all the registered memory.
1975 */
1976 if (!list_empty(head)) {
1977 list_for_each_safe(pos, q, head) {
1978 __unregister_enc_region_locked(kvm,
1979 list_entry(pos, struct enc_region, list));
1980 }
1981 }
1982
1983 mutex_unlock(&kvm->lock);
1984
Brijesh Singh59414c92017-12-04 10:57:35 -06001985 sev_unbind_asid(kvm, sev->handle);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001986 sev_asid_free(sev->asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001987}
1988
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001989static void avic_vm_destroy(struct kvm *kvm)
1990{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001991 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001992 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001993
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001994 if (!avic)
1995 return;
1996
Sean Christopherson81811c12018-03-20 12:17:21 -07001997 if (kvm_svm->avic_logical_id_table_page)
1998 __free_page(kvm_svm->avic_logical_id_table_page);
1999 if (kvm_svm->avic_physical_id_table_page)
2000 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002001
2002 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07002003 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002004 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002005}
2006
Brijesh Singh1654efc2017-12-04 10:57:34 -06002007static void svm_vm_destroy(struct kvm *kvm)
2008{
2009 avic_vm_destroy(kvm);
2010 sev_vm_destroy(kvm);
2011}
2012
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002013static int avic_vm_init(struct kvm *kvm)
2014{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002015 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002016 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07002017 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
2018 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002019 struct page *p_page;
2020 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002021 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002022
2023 if (!avic)
2024 return 0;
2025
2026 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002027 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002028 if (!p_page)
2029 goto free_avic;
2030
Sean Christopherson81811c12018-03-20 12:17:21 -07002031 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002032 clear_page(page_address(p_page));
2033
2034 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002035 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002036 if (!l_page)
2037 goto free_avic;
2038
Sean Christopherson81811c12018-03-20 12:17:21 -07002039 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002040 clear_page(page_address(l_page));
2041
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002042 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002043 again:
2044 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
2045 if (vm_id == 0) { /* id is 1-based, zero is not okay */
2046 next_vm_id_wrapped = 1;
2047 goto again;
2048 }
2049 /* Is it still in use? Only possible if wrapped at least once */
2050 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07002051 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
2052 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002053 goto again;
2054 }
2055 }
Sean Christopherson81811c12018-03-20 12:17:21 -07002056 kvm_svm->avic_vm_id = vm_id;
2057 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002058 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
2059
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002060 return 0;
2061
2062free_avic:
2063 avic_vm_destroy(kvm);
2064 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002065}
2066
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06002067static int svm_vm_init(struct kvm *kvm)
2068{
2069 if (avic) {
2070 int ret = avic_vm_init(kvm);
2071 if (ret)
2072 return ret;
2073 }
2074
Paolo Bonzinie8ef2a12020-01-22 17:02:36 +01002075 kvm_apicv_init(kvm, avic);
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06002076 return 0;
2077}
2078
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002079static inline int
2080avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002081{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002082 int ret = 0;
2083 unsigned long flags;
2084 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002085 struct vcpu_svm *svm = to_svm(vcpu);
2086
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002087 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2088 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002089
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002090 /*
2091 * Here, we go through the per-vcpu ir_list to update all existing
2092 * interrupt remapping table entry targeting this vcpu.
2093 */
2094 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002095
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002096 if (list_empty(&svm->ir_list))
2097 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002098
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002099 list_for_each_entry(ir, &svm->ir_list, node) {
2100 ret = amd_iommu_update_ga(cpu, r, ir->data);
2101 if (ret)
2102 break;
2103 }
2104out:
2105 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2106 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002107}
2108
2109static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2110{
2111 u64 entry;
2112 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002113 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002114 struct vcpu_svm *svm = to_svm(vcpu);
2115
2116 if (!kvm_vcpu_apicv_active(vcpu))
2117 return;
2118
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002119 /*
2120 * Since the host physical APIC id is 8 bits,
2121 * we can support host APIC ID upto 255.
2122 */
2123 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002124 return;
2125
2126 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2127 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2128
2129 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2130 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2131
2132 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2133 if (svm->avic_is_running)
2134 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2135
2136 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002137 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2138 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002139}
2140
2141static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2142{
2143 u64 entry;
2144 struct vcpu_svm *svm = to_svm(vcpu);
2145
2146 if (!kvm_vcpu_apicv_active(vcpu))
2147 return;
2148
2149 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002150 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2151 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2152
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002153 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2154 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002155}
2156
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002157/**
2158 * This function is called during VCPU halt/unhalt.
2159 */
2160static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2161{
2162 struct vcpu_svm *svm = to_svm(vcpu);
2163
2164 svm->avic_is_running = is_run;
2165 if (is_run)
2166 avic_vcpu_load(vcpu, vcpu->cpu);
2167 else
2168 avic_vcpu_put(vcpu);
2169}
2170
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002171static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002172{
2173 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002174 u32 dummy;
2175 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002176
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002177 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002178 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002179
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002180 if (!init_event) {
2181 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2182 MSR_IA32_APICBASE_ENABLE;
2183 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2184 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2185 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002186 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002187
Yu Zhange911eb32017-08-24 20:27:52 +08002188 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002189 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002190
2191 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2192 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002193}
2194
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002195static int avic_init_vcpu(struct vcpu_svm *svm)
2196{
2197 int ret;
2198
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002199 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002200 return 0;
2201
2202 ret = avic_init_backing_page(&svm->vcpu);
2203 if (ret)
2204 return ret;
2205
2206 INIT_LIST_HEAD(&svm->ir_list);
2207 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002208 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002209
2210 return ret;
2211}
2212
Sean Christopherson987b2592019-12-18 13:54:55 -08002213static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002215 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002216 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002217 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002218 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002219 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002220 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002222 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
2223 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002224
Joerg Roedelf65c2292008-02-13 18:58:46 +01002225 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002226 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002227 if (!page)
Sean Christopherson987b2592019-12-18 13:54:55 -08002228 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002229
Ben Gardon1ec69642019-02-11 11:02:51 -08002230 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002231 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002232 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002233
Ben Gardon1ec69642019-02-11 11:02:51 -08002234 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002235 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002236 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002237
Ben Gardon1ec69642019-02-11 11:02:51 -08002238 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002239 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002240 goto free_page3;
2241
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002242 err = avic_init_vcpu(svm);
2243 if (err)
2244 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002245
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002246 /* We initialize this flag to true to make sure that the is_running
2247 * bit would be set the first time the vcpu is loaded.
2248 */
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06002249 if (irqchip_in_kernel(vcpu->kvm) && kvm_apicv_activated(vcpu->kvm))
2250 svm->avic_is_running = true;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002251
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002252 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002253
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002254 svm->msrpm = page_address(msrpm_pages);
2255 svm_vcpu_init_msrpm(svm->msrpm);
2256
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002257 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002258 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002259
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002260 svm->vmcb = page_address(page);
2261 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002262 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002263 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002264 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002265
Sean Christopherson7f271792019-12-18 13:54:51 -08002266 svm_init_osvw(vcpu);
Paolo Bonzinibab0c312020-02-11 18:40:58 +01002267 vcpu->arch.microcode_version = 0x01000065;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002268
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002269 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08002270
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002271free_page4:
2272 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002273free_page3:
2274 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2275free_page2:
2276 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2277free_page1:
2278 __free_page(page);
Sean Christopherson987b2592019-12-18 13:54:55 -08002279out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002280 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281}
2282
Jim Mattsonfd65d312018-05-22 09:54:20 -07002283static void svm_clear_current_vmcb(struct vmcb *vmcb)
2284{
2285 int i;
2286
2287 for_each_online_cpu(i)
2288 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2289}
2290
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2292{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002293 struct vcpu_svm *svm = to_svm(vcpu);
2294
Jim Mattsonfd65d312018-05-22 09:54:20 -07002295 /*
2296 * The vmcb page can be recycled, causing a false negative in
2297 * svm_vcpu_load(). So, ensure that no logical CPU has this
2298 * vmcb page recorded as its current vmcb.
2299 */
2300 svm_clear_current_vmcb(svm->vmcb);
2301
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002302 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002303 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002304 __free_page(virt_to_page(svm->nested.hsave));
2305 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306}
2307
Avi Kivity15ad7142007-07-11 18:17:21 +03002308static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002310 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002311 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002312 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002313
Avi Kivity0cc50642007-03-25 12:07:27 +02002314 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002315 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002316 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002317 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002318
Avi Kivity82ca2d12010-10-21 12:20:34 +02002319#ifdef CONFIG_X86_64
2320 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2321#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002322 savesegment(fs, svm->host.fs);
2323 savesegment(gs, svm->host.gs);
2324 svm->host.ldt = kvm_read_ldt();
2325
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002326 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002327 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002328
Haozhong Zhangad7218832015-10-20 15:39:02 +08002329 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2330 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2331 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2332 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2333 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2334 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002335 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002336 /* This assumes that the kernel never uses MSR_TSC_AUX */
2337 if (static_cpu_has(X86_FEATURE_RDTSCP))
2338 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002339
Ashok Raj15d45072018-02-01 22:59:43 +01002340 if (sd->current_vmcb != svm->vmcb) {
2341 sd->current_vmcb = svm->vmcb;
2342 indirect_branch_prediction_barrier();
2343 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002344 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345}
2346
2347static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2348{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002349 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002350 int i;
2351
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002352 avic_vcpu_put(vcpu);
2353
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002354 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002355 kvm_load_ldt(svm->host.ldt);
2356#ifdef CONFIG_X86_64
2357 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002358 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002359 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002360#else
Avi Kivity831ca602011-03-08 16:09:51 +02002361#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002362 loadsegment(gs, svm->host.gs);
2363#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002364#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002365 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002366 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002367}
2368
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002369static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2370{
2371 avic_set_running(vcpu, false);
2372}
2373
2374static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2375{
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06002376 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
2377 kvm_vcpu_update_apicv(vcpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002378 avic_set_running(vcpu, true);
2379}
2380
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2382{
Ladi Prosek9b611742017-06-21 09:06:59 +02002383 struct vcpu_svm *svm = to_svm(vcpu);
2384 unsigned long rflags = svm->vmcb->save.rflags;
2385
2386 if (svm->nmi_singlestep) {
2387 /* Hide our flags if they were not set by the guest */
2388 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2389 rflags &= ~X86_EFLAGS_TF;
2390 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2391 rflags &= ~X86_EFLAGS_RF;
2392 }
2393 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394}
2395
2396static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2397{
Ladi Prosek9b611742017-06-21 09:06:59 +02002398 if (to_svm(vcpu)->nmi_singlestep)
2399 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2400
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002401 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002402 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002403 * (caused by either a task switch or an inter-privilege IRET),
2404 * so we do not need to update the CPL here.
2405 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002406 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407}
2408
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002409static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2410{
2411 switch (reg) {
2412 case VCPU_EXREG_PDPTR:
2413 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002414 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002415 break;
2416 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002417 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002418 }
2419}
2420
Alexander Graff0b85052008-11-25 20:17:01 +01002421static void svm_set_vintr(struct vcpu_svm *svm)
2422{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002423 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002424}
2425
2426static void svm_clear_vintr(struct vcpu_svm *svm)
2427{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002428 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002429}
2430
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2432{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002433 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434
2435 switch (seg) {
2436 case VCPU_SREG_CS: return &save->cs;
2437 case VCPU_SREG_DS: return &save->ds;
2438 case VCPU_SREG_ES: return &save->es;
2439 case VCPU_SREG_FS: return &save->fs;
2440 case VCPU_SREG_GS: return &save->gs;
2441 case VCPU_SREG_SS: return &save->ss;
2442 case VCPU_SREG_TR: return &save->tr;
2443 case VCPU_SREG_LDTR: return &save->ldtr;
2444 }
2445 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002446 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447}
2448
2449static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2450{
2451 struct vmcb_seg *s = svm_seg(vcpu, seg);
2452
2453 return s->base;
2454}
2455
2456static void svm_get_segment(struct kvm_vcpu *vcpu,
2457 struct kvm_segment *var, int seg)
2458{
2459 struct vmcb_seg *s = svm_seg(vcpu, seg);
2460
2461 var->base = s->base;
2462 var->limit = s->limit;
2463 var->selector = s->selector;
2464 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2465 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2466 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2467 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2468 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2469 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2470 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302471
2472 /*
2473 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2474 * However, the SVM spec states that the G bit is not observed by the
2475 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2476 * So let's synthesize a legal G bit for all segments, this helps
2477 * running KVM nested. It also helps cross-vendor migration, because
2478 * Intel's vmentry has a check on the 'G' bit.
2479 */
2480 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002481
Joerg Roedele0231712010-02-24 18:59:10 +01002482 /*
2483 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002484 * for cross vendor migration purposes by "not present"
2485 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002486 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002487
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002488 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002489 case VCPU_SREG_TR:
2490 /*
2491 * Work around a bug where the busy flag in the tr selector
2492 * isn't exposed
2493 */
Amit Shahc0d09822008-10-27 09:04:18 +00002494 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002495 break;
2496 case VCPU_SREG_DS:
2497 case VCPU_SREG_ES:
2498 case VCPU_SREG_FS:
2499 case VCPU_SREG_GS:
2500 /*
2501 * The accessed bit must always be set in the segment
2502 * descriptor cache, although it can be cleared in the
2503 * descriptor, the cached bit always remains at 1. Since
2504 * Intel has a check on this, set it here to support
2505 * cross-vendor migration.
2506 */
2507 if (!var->unusable)
2508 var->type |= 0x1;
2509 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002510 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002511 /*
2512 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002513 * descriptor is left as 1, although the whole segment has
2514 * been made unusable. Clear it here to pass an Intel VMX
2515 * entry check when cross vendor migrating.
2516 */
2517 if (var->unusable)
2518 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002519 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002520 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002521 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002522 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523}
2524
Izik Eidus2e4d2652008-03-24 19:38:34 +02002525static int svm_get_cpl(struct kvm_vcpu *vcpu)
2526{
2527 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2528
2529 return save->cpl;
2530}
2531
Gleb Natapov89a27f42010-02-16 10:51:48 +02002532static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002534 struct vcpu_svm *svm = to_svm(vcpu);
2535
Gleb Natapov89a27f42010-02-16 10:51:48 +02002536 dt->size = svm->vmcb->save.idtr.limit;
2537 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002538}
2539
Gleb Natapov89a27f42010-02-16 10:51:48 +02002540static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002541{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002542 struct vcpu_svm *svm = to_svm(vcpu);
2543
Gleb Natapov89a27f42010-02-16 10:51:48 +02002544 svm->vmcb->save.idtr.limit = dt->size;
2545 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002546 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547}
2548
Gleb Natapov89a27f42010-02-16 10:51:48 +02002549static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002550{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002551 struct vcpu_svm *svm = to_svm(vcpu);
2552
Gleb Natapov89a27f42010-02-16 10:51:48 +02002553 dt->size = svm->vmcb->save.gdtr.limit;
2554 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555}
2556
Gleb Natapov89a27f42010-02-16 10:51:48 +02002557static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002558{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002559 struct vcpu_svm *svm = to_svm(vcpu);
2560
Gleb Natapov89a27f42010-02-16 10:51:48 +02002561 svm->vmcb->save.gdtr.limit = dt->size;
2562 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002563 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564}
2565
Avi Kivitye8467fd2009-12-29 18:43:06 +02002566static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2567{
2568}
2569
Anthony Liguori25c4c272007-04-27 09:29:21 +03002570static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002571{
2572}
2573
Avi Kivityd2251572010-01-06 10:55:27 +02002574static void update_cr0_intercept(struct vcpu_svm *svm)
2575{
2576 ulong gcr0 = svm->vcpu.arch.cr0;
2577 u64 *hcr0 = &svm->vmcb->save.cr0;
2578
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002579 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2580 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002581
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002582 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002583
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002584 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002585 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2586 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002587 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002588 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2589 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002590 }
2591}
2592
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2594{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002595 struct vcpu_svm *svm = to_svm(vcpu);
2596
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002597#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002598 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002599 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002600 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002601 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 }
2603
Mike Dayd77c26f2007-10-08 09:02:08 -04002604 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002605 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002606 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002607 }
2608 }
2609#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002610 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002611
2612 if (!npt_enabled)
2613 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002614
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002615 /*
2616 * re-enable caching here because the QEMU bios
2617 * does not do it - this results in some delay at
2618 * reboot
2619 */
2620 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2621 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002622 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002623 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002624 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002625}
2626
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002627static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002629 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002630 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2631
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002632 if (cr4 & X86_CR4_VMXE)
2633 return 1;
2634
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002635 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002636 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002637
Joerg Roedelec077262008-04-09 14:15:28 +02002638 vcpu->arch.cr4 = cr4;
2639 if (!npt_enabled)
2640 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002641 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002642 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002643 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002644 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645}
2646
2647static void svm_set_segment(struct kvm_vcpu *vcpu,
2648 struct kvm_segment *var, int seg)
2649{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002650 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651 struct vmcb_seg *s = svm_seg(vcpu, seg);
2652
2653 s->base = var->base;
2654 s->limit = var->limit;
2655 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002656 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2657 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2658 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2659 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2660 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2661 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2662 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2663 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002664
2665 /*
2666 * This is always accurate, except if SYSRET returned to a segment
2667 * with SS.DPL != 3. Intel does not have this quirk, and always
2668 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2669 * would entail passing the CPL to userspace and back.
2670 */
2671 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002672 /* This is symmetric with svm_get_segment() */
2673 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674
Joerg Roedel060d0c92010-12-03 11:45:57 +01002675 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676}
2677
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002678static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002680 struct vcpu_svm *svm = to_svm(vcpu);
2681
Joerg Roedel18c918c2010-11-30 18:03:59 +01002682 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002683
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002684 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002685 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002686 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002687 } else
2688 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002689}
2690
Tejun Heo0fe1e002009-10-29 22:34:14 +09002691static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002693 if (sd->next_asid > sd->max_asid) {
2694 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002695 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002696 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697 }
2698
Tejun Heo0fe1e002009-10-29 22:34:14 +09002699 svm->asid_generation = sd->asid_generation;
2700 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002701
2702 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703}
2704
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002705static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2706{
2707 return to_svm(vcpu)->vmcb->save.dr6;
2708}
2709
2710static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2711{
2712 struct vcpu_svm *svm = to_svm(vcpu);
2713
2714 svm->vmcb->save.dr6 = value;
2715 mark_dirty(svm->vmcb, VMCB_DR);
2716}
2717
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002718static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2719{
2720 struct vcpu_svm *svm = to_svm(vcpu);
2721
2722 get_debugreg(vcpu->arch.db[0], 0);
2723 get_debugreg(vcpu->arch.db[1], 1);
2724 get_debugreg(vcpu->arch.db[2], 2);
2725 get_debugreg(vcpu->arch.db[3], 3);
2726 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2727 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2728
2729 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2730 set_dr_intercepts(svm);
2731}
2732
Gleb Natapov020df072010-04-13 10:05:23 +03002733static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002734{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002735 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002736
Gleb Natapov020df072010-04-13 10:05:23 +03002737 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002738 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002739}
2740
Avi Kivity851ba692009-08-24 11:10:17 +03002741static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002742{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002743 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002744 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002746 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002747 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2748 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002749 svm->vmcb->control.insn_len);
2750}
2751
2752static int npf_interception(struct vcpu_svm *svm)
2753{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002754 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002755 u64 error_code = svm->vmcb->control.exit_info_1;
2756
2757 trace_kvm_page_fault(fault_address, error_code);
2758 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002759 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2760 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002761 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762}
2763
Avi Kivity851ba692009-08-24 11:10:17 +03002764static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002765{
Avi Kivity851ba692009-08-24 11:10:17 +03002766 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002767 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002768
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002769 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002770 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002771 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002772 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2773 return 1;
2774 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002775
Jan Kiszka6be7d302009-10-18 13:24:54 +02002776 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002777 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002778 /* Make sure we check for pending NMIs upon entry */
2779 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002780 }
2781
2782 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002783 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002784 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2785 kvm_run->debug.arch.pc =
2786 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2787 kvm_run->debug.arch.exception = DB_VECTOR;
2788 return 0;
2789 }
2790
2791 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002792}
2793
Avi Kivity851ba692009-08-24 11:10:17 +03002794static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002795{
Avi Kivity851ba692009-08-24 11:10:17 +03002796 struct kvm_run *kvm_run = svm->vcpu.run;
2797
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002798 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2799 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2800 kvm_run->debug.arch.exception = BP_VECTOR;
2801 return 0;
2802}
2803
Avi Kivity851ba692009-08-24 11:10:17 +03002804static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002805{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002806 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002807}
2808
Eric Northup54a20552015-11-03 18:03:53 +01002809static int ac_interception(struct vcpu_svm *svm)
2810{
2811 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2812 return 1;
2813}
2814
Liran Alon97184202018-03-12 13:12:52 +02002815static int gp_interception(struct vcpu_svm *svm)
2816{
2817 struct kvm_vcpu *vcpu = &svm->vcpu;
2818 u32 error_code = svm->vmcb->control.exit_info_1;
Liran Alon97184202018-03-12 13:12:52 +02002819
2820 WARN_ON_ONCE(!enable_vmware_backdoor);
2821
Sean Christophersona6c6ed12019-08-27 14:40:30 -07002822 /*
2823 * VMware backdoor emulation on #GP interception only handles IN{S},
2824 * OUT{S}, and RDPMC, none of which generate a non-zero error code.
2825 */
2826 if (error_code) {
2827 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2828 return 1;
2829 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002830 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon97184202018-03-12 13:12:52 +02002831}
2832
Joerg Roedel67ec6602010-05-17 14:43:35 +02002833static bool is_erratum_383(void)
2834{
2835 int err, i;
2836 u64 value;
2837
2838 if (!erratum_383_found)
2839 return false;
2840
2841 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2842 if (err)
2843 return false;
2844
2845 /* Bit 62 may or may not be set for this mce */
2846 value &= ~(1ULL << 62);
2847
2848 if (value != 0xb600000000010015ULL)
2849 return false;
2850
2851 /* Clear MCi_STATUS registers */
2852 for (i = 0; i < 6; ++i)
2853 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2854
2855 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2856 if (!err) {
2857 u32 low, high;
2858
2859 value &= ~(1ULL << 2);
2860 low = lower_32_bits(value);
2861 high = upper_32_bits(value);
2862
2863 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2864 }
2865
2866 /* Flush tlb to evict multi-match entries */
2867 __flush_tlb_all();
2868
2869 return true;
2870}
2871
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002872static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002873{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002874 if (is_erratum_383()) {
2875 /*
2876 * Erratum 383 triggered. Guest state is corrupt so kill the
2877 * guest.
2878 */
2879 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2880
Avi Kivitya8eeb042010-05-10 12:34:53 +03002881 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002882
2883 return;
2884 }
2885
Joerg Roedel53371b52008-04-09 14:15:30 +02002886 /*
2887 * On an #MC intercept the MCE handler is not called automatically in
2888 * the host. So do it by hand here.
2889 */
2890 asm volatile (
2891 "int $0x12\n");
2892 /* not sure if we ever come back to this point */
2893
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002894 return;
2895}
2896
2897static int mc_interception(struct vcpu_svm *svm)
2898{
Joerg Roedel53371b52008-04-09 14:15:30 +02002899 return 1;
2900}
2901
Avi Kivity851ba692009-08-24 11:10:17 +03002902static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002903{
Avi Kivity851ba692009-08-24 11:10:17 +03002904 struct kvm_run *kvm_run = svm->vcpu.run;
2905
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002906 /*
2907 * VMCB is undefined after a SHUTDOWN intercept
2908 * so reinitialize it.
2909 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002910 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002911 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002912
2913 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2914 return 0;
2915}
2916
Avi Kivity851ba692009-08-24 11:10:17 +03002917static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002919 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002920 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002921 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002922 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923
Rusty Russelle756fc62007-07-30 20:07:08 +10002924 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002925 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002926 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002927 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002928 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002929
Avi Kivity039576c2007-03-20 12:46:50 +02002930 port = io_info >> 16;
2931 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002932 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002933
Sean Christophersondca7f122018-03-08 08:57:27 -08002934 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935}
2936
Avi Kivity851ba692009-08-24 11:10:17 +03002937static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002938{
2939 return 1;
2940}
2941
Avi Kivity851ba692009-08-24 11:10:17 +03002942static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002943{
2944 ++svm->vcpu.stat.irq_exits;
2945 return 1;
2946}
2947
Avi Kivity851ba692009-08-24 11:10:17 +03002948static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002949{
2950 return 1;
2951}
2952
Avi Kivity851ba692009-08-24 11:10:17 +03002953static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002954{
Rusty Russelle756fc62007-07-30 20:07:08 +10002955 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002956}
2957
Avi Kivity851ba692009-08-24 11:10:17 +03002958static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002959{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002960 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002961}
2962
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002963static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2964{
2965 struct vcpu_svm *svm = to_svm(vcpu);
2966
2967 return svm->nested.nested_cr3;
2968}
2969
Avi Kivitye4e517b2011-07-28 11:36:17 +03002970static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2971{
2972 struct vcpu_svm *svm = to_svm(vcpu);
2973 u64 cr3 = svm->nested.nested_cr3;
2974 u64 pdpte;
2975 int ret;
2976
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002977 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002978 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002979 if (ret)
2980 return 0;
2981 return pdpte;
2982}
2983
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002984static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2985 unsigned long root)
2986{
2987 struct vcpu_svm *svm = to_svm(vcpu);
2988
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002989 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002990 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002991}
2992
Avi Kivity6389ee92010-11-29 16:12:30 +02002993static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2994 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002995{
2996 struct vcpu_svm *svm = to_svm(vcpu);
2997
Paolo Bonzini5e352512014-09-02 13:18:37 +02002998 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2999 /*
3000 * TODO: track the cause of the nested page fault, and
3001 * correctly fill in the high bits of exit_info_1.
3002 */
3003 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
3004 svm->vmcb->control.exit_code_hi = 0;
3005 svm->vmcb->control.exit_info_1 = (1ULL << 32);
3006 svm->vmcb->control.exit_info_2 = fault->address;
3007 }
3008
3009 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
3010 svm->vmcb->control.exit_info_1 |= fault->error_code;
3011
3012 /*
3013 * The present bit is always zero for page structure faults on real
3014 * hardware.
3015 */
3016 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
3017 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02003018
3019 nested_svm_vmexit(svm);
3020}
3021
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003022static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02003023{
Paolo Bonziniad896af2013-10-02 16:56:14 +02003024 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003025
3026 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02003027 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003028 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
3029 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
3030 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
3031 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
3032 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
3033 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02003034 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003035}
3036
3037static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
3038{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003039 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003040 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003041}
3042
Alexander Grafc0725422008-11-25 20:17:03 +01003043static int nested_svm_check_permissions(struct vcpu_svm *svm)
3044{
Dan Carpentere9196ce2017-05-18 10:39:53 +03003045 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3046 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01003047 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3048 return 1;
3049 }
3050
3051 if (svm->vmcb->save.cpl) {
3052 kvm_inject_gp(&svm->vcpu, 0);
3053 return 1;
3054 }
3055
Dan Carpentere9196ce2017-05-18 10:39:53 +03003056 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003057}
3058
Alexander Grafcf74a782008-11-25 20:17:08 +01003059static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3060 bool has_error_code, u32 error_code)
3061{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003062 int vmexit;
3063
Joerg Roedel20307532010-11-29 17:51:48 +01003064 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003065 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003066
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003067 vmexit = nested_svm_intercept(svm);
3068 if (vmexit != NESTED_EXIT_DONE)
3069 return 0;
3070
Joerg Roedel0295ad72009-08-07 11:49:37 +02003071 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3072 svm->vmcb->control.exit_code_hi = 0;
3073 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003074
3075 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003076 * EXITINFO2 is undefined for all exception intercepts other
3077 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003078 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003079 if (svm->vcpu.arch.exception.nested_apf)
3080 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003081 else if (svm->vcpu.arch.exception.has_payload)
3082 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003083 else
3084 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003085
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003086 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003087 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003088}
3089
Joerg Roedel8fe54652010-02-19 16:23:01 +01003090/* This function returns true if it is save to enable the irq window */
3091static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003092{
Joerg Roedel20307532010-11-29 17:51:48 +01003093 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003094 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003095
Joerg Roedel26666952009-08-07 11:49:46 +02003096 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003097 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003098
Joerg Roedel26666952009-08-07 11:49:46 +02003099 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003100 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003101
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003102 /*
3103 * if vmexit was already requested (by intercepted exception
3104 * for instance) do not overwrite it with "external interrupt"
3105 * vmexit.
3106 */
3107 if (svm->nested.exit_required)
3108 return false;
3109
Joerg Roedel197717d2010-02-24 18:59:19 +01003110 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3111 svm->vmcb->control.exit_info_1 = 0;
3112 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003113
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003114 if (svm->nested.intercept & 1ULL) {
3115 /*
3116 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003117 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003118 * #vmexit emulation might sleep. Only signal request for
3119 * the #vmexit here.
3120 */
3121 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003122 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003123 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003124 }
3125
Joerg Roedel8fe54652010-02-19 16:23:01 +01003126 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003127}
3128
Joerg Roedel887f5002010-02-24 18:59:12 +01003129/* This function returns true if it is save to enable the nmi window */
3130static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3131{
Joerg Roedel20307532010-11-29 17:51:48 +01003132 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003133 return true;
3134
3135 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3136 return true;
3137
3138 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3139 svm->nested.exit_required = true;
3140
3141 return false;
3142}
3143
Joerg Roedelce2ac082010-03-01 15:34:39 +01003144static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003145{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003146 unsigned port, size, iopm_len;
3147 u16 val, mask;
3148 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003149 u64 gpa;
3150
3151 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3152 return NESTED_EXIT_HOST;
3153
3154 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003155 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3156 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003157 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003158 start_bit = port % 8;
3159 iopm_len = (start_bit + size > 8) ? 2 : 1;
3160 mask = (0xf >> (4 - size)) << start_bit;
3161 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003162
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003163 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003164 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003165
Jan Kiszka9bf41832014-06-30 10:54:17 +02003166 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003167}
3168
Joerg Roedeld2477822010-03-01 15:34:34 +01003169static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003170{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003171 u32 offset, msr, value;
3172 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003173
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003174 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003175 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003176
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003177 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3178 offset = svm_msrpm_offset(msr);
3179 write = svm->vmcb->control.exit_info_1 & 1;
3180 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003181
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003182 if (offset == MSR_INVALID)
3183 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003184
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003185 /* Offset is in 32 bit units but need in 8 bit units */
3186 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003187
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003188 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003189 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003190
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003191 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003192}
3193
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003194/* DB exceptions for our internal use must not cause vmexit */
3195static int nested_svm_intercept_db(struct vcpu_svm *svm)
3196{
3197 unsigned long dr6;
3198
3199 /* if we're not singlestepping, it's not ours */
3200 if (!svm->nmi_singlestep)
3201 return NESTED_EXIT_DONE;
3202
3203 /* if it's not a singlestep exception, it's not ours */
3204 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3205 return NESTED_EXIT_DONE;
3206 if (!(dr6 & DR6_BS))
3207 return NESTED_EXIT_DONE;
3208
3209 /* if the guest is singlestepping, it should get the vmexit */
3210 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3211 disable_nmi_singlestep(svm);
3212 return NESTED_EXIT_DONE;
3213 }
3214
3215 /* it's ours, the nested hypervisor must not see this one */
3216 return NESTED_EXIT_HOST;
3217}
3218
Joerg Roedel410e4d52009-08-07 11:49:44 +02003219static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003220{
Alexander Grafcf74a782008-11-25 20:17:08 +01003221 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003222
Joerg Roedel410e4d52009-08-07 11:49:44 +02003223 switch (exit_code) {
3224 case SVM_EXIT_INTR:
3225 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003226 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003227 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003228 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003229 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003230 if (npt_enabled)
3231 return NESTED_EXIT_HOST;
3232 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003233 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003234 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003235 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003236 return NESTED_EXIT_HOST;
3237 break;
3238 default:
3239 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003240 }
3241
Joerg Roedel410e4d52009-08-07 11:49:44 +02003242 return NESTED_EXIT_CONTINUE;
3243}
3244
3245/*
3246 * If this function returns true, this #vmexit was already handled
3247 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003248static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003249{
3250 u32 exit_code = svm->vmcb->control.exit_code;
3251 int vmexit = NESTED_EXIT_HOST;
3252
Alexander Grafcf74a782008-11-25 20:17:08 +01003253 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003254 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003255 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003256 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003257 case SVM_EXIT_IOIO:
3258 vmexit = nested_svm_intercept_ioio(svm);
3259 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003260 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3261 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3262 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003263 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003264 break;
3265 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003266 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3267 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3268 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003269 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003270 break;
3271 }
3272 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3273 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003274 if (svm->nested.intercept_exceptions & excp_bits) {
3275 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3276 vmexit = nested_svm_intercept_db(svm);
3277 else
3278 vmexit = NESTED_EXIT_DONE;
3279 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003280 /* async page fault always cause vmexit */
3281 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003282 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003283 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003284 break;
3285 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003286 case SVM_EXIT_ERR: {
3287 vmexit = NESTED_EXIT_DONE;
3288 break;
3289 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003290 default: {
3291 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003292 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003293 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003294 }
3295 }
3296
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003297 return vmexit;
3298}
3299
3300static int nested_svm_exit_handled(struct vcpu_svm *svm)
3301{
3302 int vmexit;
3303
3304 vmexit = nested_svm_intercept(svm);
3305
3306 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003307 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003308
3309 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003310}
3311
Joerg Roedel0460a972009-08-07 11:49:31 +02003312static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3313{
3314 struct vmcb_control_area *dst = &dst_vmcb->control;
3315 struct vmcb_control_area *from = &from_vmcb->control;
3316
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003317 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003318 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003319 dst->intercept_exceptions = from->intercept_exceptions;
3320 dst->intercept = from->intercept;
3321 dst->iopm_base_pa = from->iopm_base_pa;
3322 dst->msrpm_base_pa = from->msrpm_base_pa;
3323 dst->tsc_offset = from->tsc_offset;
3324 dst->asid = from->asid;
3325 dst->tlb_ctl = from->tlb_ctl;
3326 dst->int_ctl = from->int_ctl;
3327 dst->int_vector = from->int_vector;
3328 dst->int_state = from->int_state;
3329 dst->exit_code = from->exit_code;
3330 dst->exit_code_hi = from->exit_code_hi;
3331 dst->exit_info_1 = from->exit_info_1;
3332 dst->exit_info_2 = from->exit_info_2;
3333 dst->exit_int_info = from->exit_int_info;
3334 dst->exit_int_info_err = from->exit_int_info_err;
3335 dst->nested_ctl = from->nested_ctl;
3336 dst->event_inj = from->event_inj;
3337 dst->event_inj_err = from->event_inj_err;
3338 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003339 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003340 dst->pause_filter_count = from->pause_filter_count;
3341 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003342}
3343
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003344static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003345{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003346 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003347 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003348 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003349 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003350 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003351
Joerg Roedel17897f32009-10-09 16:08:29 +02003352 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3353 vmcb->control.exit_info_1,
3354 vmcb->control.exit_info_2,
3355 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003356 vmcb->control.exit_int_info_err,
3357 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003358
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003359 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003360 if (rc) {
3361 if (rc == -EINVAL)
3362 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003363 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003364 }
3365
3366 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003367
Joerg Roedel20307532010-11-29 17:51:48 +01003368 /* Exit Guest-Mode */
3369 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003370 svm->nested.vmcb = 0;
3371
Alexander Grafcf74a782008-11-25 20:17:08 +01003372 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003373 disable_gif(svm);
3374
3375 nested_vmcb->save.es = vmcb->save.es;
3376 nested_vmcb->save.cs = vmcb->save.cs;
3377 nested_vmcb->save.ss = vmcb->save.ss;
3378 nested_vmcb->save.ds = vmcb->save.ds;
3379 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3380 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003381 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003382 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003383 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003384 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003385 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003386 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003387 nested_vmcb->save.rip = vmcb->save.rip;
3388 nested_vmcb->save.rsp = vmcb->save.rsp;
3389 nested_vmcb->save.rax = vmcb->save.rax;
3390 nested_vmcb->save.dr7 = vmcb->save.dr7;
3391 nested_vmcb->save.dr6 = vmcb->save.dr6;
3392 nested_vmcb->save.cpl = vmcb->save.cpl;
3393
3394 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3395 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3396 nested_vmcb->control.int_state = vmcb->control.int_state;
3397 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3398 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3399 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3400 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3401 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3402 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003403
3404 if (svm->nrips_enabled)
3405 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003406
3407 /*
3408 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3409 * to make sure that we do not lose injected events. So check event_inj
3410 * here and copy it to exit_int_info if it is valid.
3411 * Exit_int_info and event_inj can't be both valid because the case
3412 * below only happens on a VMRUN instruction intercept which has
3413 * no valid exit_int_info set.
3414 */
3415 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3416 struct vmcb_control_area *nc = &nested_vmcb->control;
3417
3418 nc->exit_int_info = vmcb->control.event_inj;
3419 nc->exit_int_info_err = vmcb->control.event_inj_err;
3420 }
3421
Joerg Roedel33740e42009-08-07 11:49:29 +02003422 nested_vmcb->control.tlb_ctl = 0;
3423 nested_vmcb->control.event_inj = 0;
3424 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003425
Tambe, Williame0813542018-11-13 16:51:20 +00003426 nested_vmcb->control.pause_filter_count =
3427 svm->vmcb->control.pause_filter_count;
3428 nested_vmcb->control.pause_filter_thresh =
3429 svm->vmcb->control.pause_filter_thresh;
3430
Alexander Grafcf74a782008-11-25 20:17:08 +01003431 /* We always set V_INTR_MASKING and remember the old value in hflags */
3432 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3433 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3434
Alexander Grafcf74a782008-11-25 20:17:08 +01003435 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003436 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003437
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003438 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003439 kvm_clear_exception_queue(&svm->vcpu);
3440 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003441
Joerg Roedel4b161842010-09-10 17:31:03 +02003442 svm->nested.nested_cr3 = 0;
3443
Alexander Grafcf74a782008-11-25 20:17:08 +01003444 /* Restore selected save entries */
3445 svm->vmcb->save.es = hsave->save.es;
3446 svm->vmcb->save.cs = hsave->save.cs;
3447 svm->vmcb->save.ss = hsave->save.ss;
3448 svm->vmcb->save.ds = hsave->save.ds;
3449 svm->vmcb->save.gdtr = hsave->save.gdtr;
3450 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003451 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003452 svm_set_efer(&svm->vcpu, hsave->save.efer);
3453 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3454 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3455 if (npt_enabled) {
3456 svm->vmcb->save.cr3 = hsave->save.cr3;
3457 svm->vcpu.arch.cr3 = hsave->save.cr3;
3458 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003459 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003460 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003461 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003462 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3463 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003464 svm->vmcb->save.dr7 = 0;
3465 svm->vmcb->save.cpl = 0;
3466 svm->vmcb->control.exit_int_info = 0;
3467
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003468 mark_all_dirty(svm->vmcb);
3469
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003470 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003471
Joerg Roedel4b161842010-09-10 17:31:03 +02003472 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003473 kvm_mmu_reset_context(&svm->vcpu);
3474 kvm_mmu_load(&svm->vcpu);
3475
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003476 /*
3477 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3478 * doesn't end up in L1.
3479 */
3480 svm->vcpu.arch.nmi_injected = false;
3481 kvm_clear_exception_queue(&svm->vcpu);
3482 kvm_clear_interrupt_queue(&svm->vcpu);
3483
Alexander Grafcf74a782008-11-25 20:17:08 +01003484 return 0;
3485}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003486
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003487static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003488{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003489 /*
3490 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003491 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003492 * the kvm msr permission bitmap may contain zero bits
3493 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003494 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003495
Joerg Roedel323c3d82010-03-01 15:34:37 +01003496 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3497 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003498
Joerg Roedel323c3d82010-03-01 15:34:37 +01003499 for (i = 0; i < MSRPM_OFFSETS; i++) {
3500 u32 value, p;
3501 u64 offset;
3502
3503 if (msrpm_offsets[i] == 0xffffffff)
3504 break;
3505
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003506 p = msrpm_offsets[i];
3507 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003508
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003509 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003510 return false;
3511
3512 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3513 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003514
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003515 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003516
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003517 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003518}
3519
Joerg Roedel52c65a302010-08-02 16:46:44 +02003520static bool nested_vmcb_checks(struct vmcb *vmcb)
3521{
3522 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3523 return false;
3524
Joerg Roedeldbe77582010-08-02 16:46:45 +02003525 if (vmcb->control.asid == 0)
3526 return false;
3527
Tom Lendackycea3a192017-12-04 10:57:24 -06003528 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3529 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003530 return false;
3531
Joerg Roedel52c65a302010-08-02 16:46:44 +02003532 return true;
3533}
3534
Ladi Prosekc2634062017-10-11 16:54:44 +02003535static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003536 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003537{
Avi Kivityf6e78472010-08-02 15:30:20 +03003538 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003539 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3540 else
3541 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3542
Tom Lendackycea3a192017-12-04 10:57:24 -06003543 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003544 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3545 nested_svm_init_mmu_context(&svm->vcpu);
3546 }
3547
Alexander Graf3d6368e2008-11-25 20:17:07 +01003548 /* Load the nested guest state */
3549 svm->vmcb->save.es = nested_vmcb->save.es;
3550 svm->vmcb->save.cs = nested_vmcb->save.cs;
3551 svm->vmcb->save.ss = nested_vmcb->save.ss;
3552 svm->vmcb->save.ds = nested_vmcb->save.ds;
3553 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3554 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003555 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003556 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3557 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3558 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3559 if (npt_enabled) {
3560 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3561 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003562 } else
Avi Kivity23902182010-06-10 17:02:16 +03003563 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003564
3565 /* Guest paging mode is active - reset mmu */
3566 kvm_mmu_reset_context(&svm->vcpu);
3567
Joerg Roedeldefbba52009-08-07 11:49:30 +02003568 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003569 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003570 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3571 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003572
Alexander Graf3d6368e2008-11-25 20:17:07 +01003573 /* In case we don't even reach vcpu_run, the fields are not updated */
3574 svm->vmcb->save.rax = nested_vmcb->save.rax;
3575 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3576 svm->vmcb->save.rip = nested_vmcb->save.rip;
3577 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3578 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3579 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3580
Joerg Roedelf7138532010-03-01 15:34:40 +01003581 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003582 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003583
Joerg Roedelaad42c62009-08-07 11:49:34 +02003584 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003585 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003586 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003587 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3588 svm->nested.intercept = nested_vmcb->control.intercept;
3589
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003590 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003591 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003592 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3593 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3594 else
3595 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3596
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003597 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3598 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003599 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3600 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003601 }
3602
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003603 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003604 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003605
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003606 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3607 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3608
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003609 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003610 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3611 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003612 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3613 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3614
Tambe, Williame0813542018-11-13 16:51:20 +00003615 svm->vmcb->control.pause_filter_count =
3616 nested_vmcb->control.pause_filter_count;
3617 svm->vmcb->control.pause_filter_thresh =
3618 nested_vmcb->control.pause_filter_thresh;
3619
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003620 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003621
Joerg Roedel20307532010-11-29 17:51:48 +01003622 /* Enter Guest-Mode */
3623 enter_guest_mode(&svm->vcpu);
3624
Joerg Roedel384c6362010-11-30 18:03:56 +01003625 /*
3626 * Merge guest and host intercepts - must be called with vcpu in
3627 * guest-mode to take affect here
3628 */
3629 recalc_intercepts(svm);
3630
Joerg Roedel06fc77722010-02-19 16:23:07 +01003631 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003632
Joerg Roedel2af91942009-08-07 11:49:28 +02003633 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003634
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003635 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003636}
3637
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003638static int nested_svm_vmrun(struct vcpu_svm *svm)
Ladi Prosekc2634062017-10-11 16:54:44 +02003639{
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003640 int ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003641 struct vmcb *nested_vmcb;
3642 struct vmcb *hsave = svm->nested.hsave;
3643 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003644 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003645 u64 vmcb_gpa;
3646
3647 vmcb_gpa = svm->vmcb->save.rax;
3648
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003649 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
Dan Carpentera0619852019-08-27 12:38:52 +03003650 if (ret == -EINVAL) {
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003651 kvm_inject_gp(&svm->vcpu, 0);
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003652 return 1;
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003653 } else if (ret) {
3654 return kvm_skip_emulated_instruction(&svm->vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003655 }
3656
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003657 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3658
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003659 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003660
3661 if (!nested_vmcb_checks(nested_vmcb)) {
3662 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3663 nested_vmcb->control.exit_code_hi = 0;
3664 nested_vmcb->control.exit_info_1 = 0;
3665 nested_vmcb->control.exit_info_2 = 0;
3666
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003667 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003668
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003669 return ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003670 }
3671
3672 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3673 nested_vmcb->save.rip,
3674 nested_vmcb->control.int_ctl,
3675 nested_vmcb->control.event_inj,
3676 nested_vmcb->control.nested_ctl);
3677
3678 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3679 nested_vmcb->control.intercept_cr >> 16,
3680 nested_vmcb->control.intercept_exceptions,
3681 nested_vmcb->control.intercept);
3682
3683 /* Clear internal status */
3684 kvm_clear_exception_queue(&svm->vcpu);
3685 kvm_clear_interrupt_queue(&svm->vcpu);
3686
3687 /*
3688 * Save the old vmcb, so we don't need to pick what we save, but can
3689 * restore everything when a VMEXIT occurs
3690 */
3691 hsave->save.es = vmcb->save.es;
3692 hsave->save.cs = vmcb->save.cs;
3693 hsave->save.ss = vmcb->save.ss;
3694 hsave->save.ds = vmcb->save.ds;
3695 hsave->save.gdtr = vmcb->save.gdtr;
3696 hsave->save.idtr = vmcb->save.idtr;
3697 hsave->save.efer = svm->vcpu.arch.efer;
3698 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3699 hsave->save.cr4 = svm->vcpu.arch.cr4;
3700 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3701 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3702 hsave->save.rsp = vmcb->save.rsp;
3703 hsave->save.rax = vmcb->save.rax;
3704 if (npt_enabled)
3705 hsave->save.cr3 = vmcb->save.cr3;
3706 else
3707 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3708
3709 copy_vmcb_control_area(hsave, vmcb);
3710
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003711 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003712
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003713 if (!nested_svm_vmrun_msrpm(svm)) {
3714 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3715 svm->vmcb->control.exit_code_hi = 0;
3716 svm->vmcb->control.exit_info_1 = 0;
3717 svm->vmcb->control.exit_info_2 = 0;
3718
3719 nested_svm_vmexit(svm);
3720 }
3721
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003722 return ret;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003723}
3724
Joerg Roedel9966bf62009-08-07 11:49:40 +02003725static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003726{
3727 to_vmcb->save.fs = from_vmcb->save.fs;
3728 to_vmcb->save.gs = from_vmcb->save.gs;
3729 to_vmcb->save.tr = from_vmcb->save.tr;
3730 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3731 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3732 to_vmcb->save.star = from_vmcb->save.star;
3733 to_vmcb->save.lstar = from_vmcb->save.lstar;
3734 to_vmcb->save.cstar = from_vmcb->save.cstar;
3735 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3736 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3737 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3738 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003739}
3740
Avi Kivity851ba692009-08-24 11:10:17 +03003741static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003742{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003743 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003744 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003745 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003746
Alexander Graf55426752008-11-25 20:17:06 +01003747 if (nested_svm_check_permissions(svm))
3748 return 1;
3749
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003750 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3751 if (ret) {
3752 if (ret == -EINVAL)
3753 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003754 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003755 }
3756
3757 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003758
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003759 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003760
Joerg Roedel9966bf62009-08-07 11:49:40 +02003761 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003762 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003763
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003764 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003765}
3766
Avi Kivity851ba692009-08-24 11:10:17 +03003767static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003768{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003769 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003770 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003771 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003772
Alexander Graf55426752008-11-25 20:17:06 +01003773 if (nested_svm_check_permissions(svm))
3774 return 1;
3775
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003776 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3777 if (ret) {
3778 if (ret == -EINVAL)
3779 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003780 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003781 }
3782
3783 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003784
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003785 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003786
Joerg Roedel9966bf62009-08-07 11:49:40 +02003787 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003788 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003789
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003790 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003791}
3792
Avi Kivity851ba692009-08-24 11:10:17 +03003793static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003794{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003795 if (nested_svm_check_permissions(svm))
3796 return 1;
3797
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003798 return nested_svm_vmrun(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003799}
3800
Avi Kivity851ba692009-08-24 11:10:17 +03003801static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003802{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003803 int ret;
3804
Alexander Graf1371d902008-11-25 20:17:04 +01003805 if (nested_svm_check_permissions(svm))
3806 return 1;
3807
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003808 /*
3809 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003810 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003811 */
3812 if (vgif_enabled(svm))
3813 clr_intercept(svm, INTERCEPT_STGI);
3814
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003815 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003816 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003817
Joerg Roedel2af91942009-08-07 11:49:28 +02003818 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003819
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003820 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003821}
3822
Avi Kivity851ba692009-08-24 11:10:17 +03003823static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003824{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003825 int ret;
3826
Alexander Graf1371d902008-11-25 20:17:04 +01003827 if (nested_svm_check_permissions(svm))
3828 return 1;
3829
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003830 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003831
Joerg Roedel2af91942009-08-07 11:49:28 +02003832 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003833
3834 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003835 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3836 svm_clear_vintr(svm);
3837 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3838 mark_dirty(svm->vmcb, VMCB_INTR);
3839 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003840
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003841 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003842}
3843
Avi Kivity851ba692009-08-24 11:10:17 +03003844static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003845{
3846 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003847
Sean Christophersonde3cd112019-04-30 10:36:17 -07003848 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3849 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003850
Alexander Grafff092382009-06-15 15:21:24 +02003851 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003852 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003853
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003854 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003855}
3856
Joerg Roedel532a46b2009-10-09 16:08:32 +02003857static int skinit_interception(struct vcpu_svm *svm)
3858{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003859 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003860
3861 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3862 return 1;
3863}
3864
David Kaplandab429a2015-03-02 13:43:37 -06003865static int wbinvd_interception(struct vcpu_svm *svm)
3866{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003867 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003868}
3869
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003870static int xsetbv_interception(struct vcpu_svm *svm)
3871{
3872 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003873 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003874
3875 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003876 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003877 }
3878
3879 return 1;
3880}
3881
Jim Mattson0cb84102019-09-19 15:59:17 -07003882static int rdpru_interception(struct vcpu_svm *svm)
3883{
3884 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3885 return 1;
3886}
3887
Avi Kivity851ba692009-08-24 11:10:17 +03003888static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003889{
Izik Eidus37817f22008-03-24 23:14:53 +02003890 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003891 int reason;
3892 int int_type = svm->vmcb->control.exit_int_info &
3893 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003894 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003895 uint32_t type =
3896 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3897 uint32_t idt_v =
3898 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003899 bool has_error_code = false;
3900 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003901
3902 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003903
Izik Eidus37817f22008-03-24 23:14:53 +02003904 if (svm->vmcb->control.exit_info_2 &
3905 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003906 reason = TASK_SWITCH_IRET;
3907 else if (svm->vmcb->control.exit_info_2 &
3908 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3909 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003910 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003911 reason = TASK_SWITCH_GATE;
3912 else
3913 reason = TASK_SWITCH_CALL;
3914
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003915 if (reason == TASK_SWITCH_GATE) {
3916 switch (type) {
3917 case SVM_EXITINTINFO_TYPE_NMI:
3918 svm->vcpu.arch.nmi_injected = false;
3919 break;
3920 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003921 if (svm->vmcb->control.exit_info_2 &
3922 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3923 has_error_code = true;
3924 error_code =
3925 (u32)svm->vmcb->control.exit_info_2;
3926 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003927 kvm_clear_exception_queue(&svm->vcpu);
3928 break;
3929 case SVM_EXITINTINFO_TYPE_INTR:
3930 kvm_clear_interrupt_queue(&svm->vcpu);
3931 break;
3932 default:
3933 break;
3934 }
3935 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003936
Gleb Natapov8317c292009-04-12 13:37:02 +03003937 if (reason != TASK_SWITCH_GATE ||
3938 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3939 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003940 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003941 if (!skip_emulated_instruction(&svm->vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07003942 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003943 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003944
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003945 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3946 int_vec = -1;
3947
Sean Christopherson10517782019-08-27 14:40:35 -07003948 return kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003949 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003950}
3951
Avi Kivity851ba692009-08-24 11:10:17 +03003952static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003953{
Kyle Huey6a908b62016-11-29 12:40:37 -08003954 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003955}
3956
Avi Kivity851ba692009-08-24 11:10:17 +03003957static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003958{
3959 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003960 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003961 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003962 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003963 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003964 return 1;
3965}
3966
Avi Kivity851ba692009-08-24 11:10:17 +03003967static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003968{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003969 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003970 return kvm_emulate_instruction(&svm->vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01003971
3972 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003973 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003974}
3975
Avi Kivity851ba692009-08-24 11:10:17 +03003976static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003978 return kvm_emulate_instruction(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003979}
3980
Brijesh Singh7607b712018-02-19 10:14:44 -06003981static int rsm_interception(struct vcpu_svm *svm)
3982{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003983 return kvm_emulate_instruction_from_buffer(&svm->vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06003984}
3985
Avi Kivity332b56e2011-11-10 14:57:24 +02003986static int rdpmc_interception(struct vcpu_svm *svm)
3987{
3988 int err;
3989
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003990 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003991 return emulate_on_interception(svm);
3992
3993 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003994 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003995}
3996
Xiubo Li52eb5a62015-03-13 17:39:45 +08003997static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3998 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003999{
4000 unsigned long cr0 = svm->vcpu.arch.cr0;
4001 bool ret = false;
4002 u64 intercept;
4003
4004 intercept = svm->nested.intercept;
4005
4006 if (!is_guest_mode(&svm->vcpu) ||
4007 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
4008 return false;
4009
4010 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
4011 val &= ~SVM_CR0_SELECTIVE_MASK;
4012
4013 if (cr0 ^ val) {
4014 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4015 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
4016 }
4017
4018 return ret;
4019}
4020
Andre Przywara7ff76d52010-12-21 11:12:04 +01004021#define CR_VALID (1ULL << 63)
4022
4023static int cr_interception(struct vcpu_svm *svm)
4024{
4025 int reg, cr;
4026 unsigned long val;
4027 int err;
4028
4029 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
4030 return emulate_on_interception(svm);
4031
4032 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4033 return emulate_on_interception(svm);
4034
4035 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004036 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4037 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4038 else
4039 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004040
4041 err = 0;
4042 if (cr >= 16) { /* mov to cr */
4043 cr -= 16;
4044 val = kvm_register_read(&svm->vcpu, reg);
4045 switch (cr) {
4046 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004047 if (!check_selective_cr0_intercepted(svm, val))
4048 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004049 else
4050 return 1;
4051
Andre Przywara7ff76d52010-12-21 11:12:04 +01004052 break;
4053 case 3:
4054 err = kvm_set_cr3(&svm->vcpu, val);
4055 break;
4056 case 4:
4057 err = kvm_set_cr4(&svm->vcpu, val);
4058 break;
4059 case 8:
4060 err = kvm_set_cr8(&svm->vcpu, val);
4061 break;
4062 default:
4063 WARN(1, "unhandled write to CR%d", cr);
4064 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4065 return 1;
4066 }
4067 } else { /* mov from cr */
4068 switch (cr) {
4069 case 0:
4070 val = kvm_read_cr0(&svm->vcpu);
4071 break;
4072 case 2:
4073 val = svm->vcpu.arch.cr2;
4074 break;
4075 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004076 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004077 break;
4078 case 4:
4079 val = kvm_read_cr4(&svm->vcpu);
4080 break;
4081 case 8:
4082 val = kvm_get_cr8(&svm->vcpu);
4083 break;
4084 default:
4085 WARN(1, "unhandled read from CR%d", cr);
4086 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4087 return 1;
4088 }
4089 kvm_register_write(&svm->vcpu, reg, val);
4090 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004091 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004092}
4093
Andre Przywaracae37972010-12-21 11:12:05 +01004094static int dr_interception(struct vcpu_svm *svm)
4095{
4096 int reg, dr;
4097 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004098
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004099 if (svm->vcpu.guest_debug == 0) {
4100 /*
4101 * No more DR vmexits; force a reload of the debug registers
4102 * and reenter on this instruction. The next vmexit will
4103 * retrieve the full state of the debug registers.
4104 */
4105 clr_dr_intercepts(svm);
4106 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4107 return 1;
4108 }
4109
Andre Przywaracae37972010-12-21 11:12:05 +01004110 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4111 return emulate_on_interception(svm);
4112
4113 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4114 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4115
4116 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004117 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4118 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004119 val = kvm_register_read(&svm->vcpu, reg);
4120 kvm_set_dr(&svm->vcpu, dr - 16, val);
4121 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004122 if (!kvm_require_dr(&svm->vcpu, dr))
4123 return 1;
4124 kvm_get_dr(&svm->vcpu, dr, &val);
4125 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004126 }
4127
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004128 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004129}
4130
Avi Kivity851ba692009-08-24 11:10:17 +03004131static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004132{
Avi Kivity851ba692009-08-24 11:10:17 +03004133 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004134 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004135
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004136 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4137 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004138 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004139 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004140 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004141 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004142 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004143 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4144 return 0;
4145}
4146
Tom Lendacky801e4592018-02-21 13:39:51 -06004147static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4148{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004149 msr->data = 0;
4150
4151 switch (msr->index) {
4152 case MSR_F10H_DECFG:
4153 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4154 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4155 break;
4156 default:
4157 return 1;
4158 }
4159
4160 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004161}
4162
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004163static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004164{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004165 struct vcpu_svm *svm = to_svm(vcpu);
4166
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004167 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004168 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004169 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004170 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004171#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004172 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004173 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 break;
4175 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004176 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004177 break;
4178 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004179 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180 break;
4181 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004182 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004183 break;
4184#endif
4185 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004186 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004187 break;
4188 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004189 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004190 break;
4191 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004192 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004193 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004194 case MSR_TSC_AUX:
4195 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4196 return 1;
4197 msr_info->data = svm->tsc_aux;
4198 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004199 /*
4200 * Nobody will change the following 5 values in the VMCB so we can
4201 * safely return them on rdmsr. They will always be 0 until LBRV is
4202 * implemented.
4203 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004204 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004205 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004206 break;
4207 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004208 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004209 break;
4210 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004211 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004212 break;
4213 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004214 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004215 break;
4216 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004217 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004218 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004219 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004220 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004221 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004222 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004223 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004224 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004225 case MSR_IA32_SPEC_CTRL:
4226 if (!msr_info->host_initiated &&
Paolo Bonzinidf7e8812020-02-05 16:10:52 +01004227 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4228 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004229 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4230 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004231 return 1;
4232
4233 msr_info->data = svm->spec_ctrl;
4234 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004235 case MSR_AMD64_VIRT_SPEC_CTRL:
4236 if (!msr_info->host_initiated &&
4237 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4238 return 1;
4239
4240 msr_info->data = svm->virt_spec_ctrl;
4241 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004242 case MSR_F15H_IC_CFG: {
4243
4244 int family, model;
4245
4246 family = guest_cpuid_family(vcpu);
4247 model = guest_cpuid_model(vcpu);
4248
4249 if (family < 0 || model < 0)
4250 return kvm_get_msr_common(vcpu, msr_info);
4251
4252 msr_info->data = 0;
4253
4254 if (family == 0x15 &&
4255 (model >= 0x2 && model < 0x20))
4256 msr_info->data = 0x1E;
4257 }
4258 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004259 case MSR_F10H_DECFG:
4260 msr_info->data = svm->msr_decfg;
4261 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004263 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004264 }
4265 return 0;
4266}
4267
Avi Kivity851ba692009-08-24 11:10:17 +03004268static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004269{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004270 return kvm_emulate_rdmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004271}
4272
Joerg Roedel4a810182010-02-24 18:59:15 +01004273static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4274{
4275 struct vcpu_svm *svm = to_svm(vcpu);
4276 int svm_dis, chg_mask;
4277
4278 if (data & ~SVM_VM_CR_VALID_MASK)
4279 return 1;
4280
4281 chg_mask = SVM_VM_CR_VALID_MASK;
4282
4283 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4284 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4285
4286 svm->nested.vm_cr_msr &= ~chg_mask;
4287 svm->nested.vm_cr_msr |= (data & chg_mask);
4288
4289 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4290
4291 /* check for svm_disable while efer.svme is set */
4292 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4293 return 1;
4294
4295 return 0;
4296}
4297
Will Auld8fe8ab42012-11-29 12:42:12 -08004298static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004299{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004300 struct vcpu_svm *svm = to_svm(vcpu);
4301
Will Auld8fe8ab42012-11-29 12:42:12 -08004302 u32 ecx = msr->index;
4303 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004304 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004305 case MSR_IA32_CR_PAT:
4306 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4307 return 1;
4308 vcpu->arch.pat = data;
4309 svm->vmcb->save.g_pat = data;
4310 mark_dirty(svm->vmcb, VMCB_NPT);
4311 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004312 case MSR_IA32_SPEC_CTRL:
4313 if (!msr->host_initiated &&
Paolo Bonzinidf7e8812020-02-05 16:10:52 +01004314 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
4315 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004316 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4317 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004318 return 1;
4319
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004320 if (data & ~kvm_spec_ctrl_valid_bits(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004321 return 1;
4322
4323 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004324 if (!data)
4325 break;
4326
4327 /*
4328 * For non-nested:
4329 * When it's written (to non-zero) for the first time, pass
4330 * it through.
4331 *
4332 * For nested:
4333 * The handling of the MSR bitmap for L2 guests is done in
4334 * nested_svm_vmrun_msrpm.
4335 * We update the L1 MSR bit as well since it will end up
4336 * touching the MSR anyway now.
4337 */
4338 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4339 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004340 case MSR_IA32_PRED_CMD:
4341 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004342 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004343 return 1;
4344
4345 if (data & ~PRED_CMD_IBPB)
4346 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004347 if (!boot_cpu_has(X86_FEATURE_AMD_IBPB))
4348 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01004349 if (!data)
4350 break;
4351
4352 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Ashok Raj15d45072018-02-01 22:59:43 +01004353 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4354 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004355 case MSR_AMD64_VIRT_SPEC_CTRL:
4356 if (!msr->host_initiated &&
4357 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4358 return 1;
4359
4360 if (data & ~SPEC_CTRL_SSBD)
4361 return 1;
4362
4363 svm->virt_spec_ctrl = data;
4364 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004365 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004366 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004368#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004369 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004370 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004371 break;
4372 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004373 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004374 break;
4375 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004376 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004377 break;
4378 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004379 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004380 break;
4381#endif
4382 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004383 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004384 break;
4385 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004386 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004387 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004388 break;
4389 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004390 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004391 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004392 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004393 case MSR_TSC_AUX:
4394 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4395 return 1;
4396
4397 /*
4398 * This is rare, so we update the MSR here instead of using
4399 * direct_access_msrs. Doing that would require a rdmsr in
4400 * svm_vcpu_put.
4401 */
4402 svm->tsc_aux = data;
4403 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4404 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004405 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004406 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004407 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4408 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004409 break;
4410 }
4411 if (data & DEBUGCTL_RESERVED_BITS)
4412 return 1;
4413
4414 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004415 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004416 if (data & (1ULL<<0))
4417 svm_enable_lbrv(svm);
4418 else
4419 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004420 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004421 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004422 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004423 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004424 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004425 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004426 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004427 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004428 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004429 case MSR_F10H_DECFG: {
4430 struct kvm_msr_entry msr_entry;
4431
4432 msr_entry.index = msr->index;
4433 if (svm_get_msr_feature(&msr_entry))
4434 return 1;
4435
4436 /* Check the supported bits */
4437 if (data & ~msr_entry.data)
4438 return 1;
4439
4440 /* Don't allow the guest to change a bit, #GP */
4441 if (!msr->host_initiated && (data ^ msr_entry.data))
4442 return 1;
4443
4444 svm->msr_decfg = data;
4445 break;
4446 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004447 case MSR_IA32_APICBASE:
4448 if (kvm_vcpu_apicv_active(vcpu))
4449 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004450 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004452 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453 }
4454 return 0;
4455}
4456
Avi Kivity851ba692009-08-24 11:10:17 +03004457static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004459 return kvm_emulate_wrmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004460}
4461
Avi Kivity851ba692009-08-24 11:10:17 +03004462static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004463{
Rusty Russelle756fc62007-07-30 20:07:08 +10004464 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004465 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004466 else
Avi Kivity851ba692009-08-24 11:10:17 +03004467 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004468}
4469
Avi Kivity851ba692009-08-24 11:10:17 +03004470static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004471{
Avi Kivity3842d132010-07-27 12:30:24 +03004472 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004473 svm_clear_vintr(svm);
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06004474
4475 /*
4476 * For AVIC, the only reason to end up here is ExtINTs.
4477 * In this case AVIC was temporarily disabled for
4478 * requesting the IRQ window and we have to re-enable it.
4479 */
4480 svm_toggle_avic_for_irq_window(&svm->vcpu, true);
4481
Eddie Dong85f455f2007-07-06 12:20:49 +03004482 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004483 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004484 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004485 return 1;
4486}
4487
Mark Langsdorf565d0992009-10-06 14:25:02 -05004488static int pause_interception(struct vcpu_svm *svm)
4489{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004490 struct kvm_vcpu *vcpu = &svm->vcpu;
4491 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4492
Babu Moger8566ac82018-03-16 16:37:26 -04004493 if (pause_filter_thresh)
4494 grow_ple_window(vcpu);
4495
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004496 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004497 return 1;
4498}
4499
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004500static int nop_interception(struct vcpu_svm *svm)
4501{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004502 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004503}
4504
4505static int monitor_interception(struct vcpu_svm *svm)
4506{
4507 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4508 return nop_interception(svm);
4509}
4510
4511static int mwait_interception(struct vcpu_svm *svm)
4512{
4513 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4514 return nop_interception(svm);
4515}
4516
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004517enum avic_ipi_failure_cause {
4518 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4519 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4520 AVIC_IPI_FAILURE_INVALID_TARGET,
4521 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4522};
4523
4524static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4525{
4526 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4527 u32 icrl = svm->vmcb->control.exit_info_1;
4528 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004529 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004530 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4531
4532 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4533
4534 switch (id) {
4535 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4536 /*
4537 * AVIC hardware handles the generation of
4538 * IPIs when the specified Message Type is Fixed
4539 * (also known as fixed delivery mode) and
4540 * the Trigger Mode is edge-triggered. The hardware
4541 * also supports self and broadcast delivery modes
4542 * specified via the Destination Shorthand(DSH)
4543 * field of the ICRL. Logical and physical APIC ID
4544 * formats are supported. All other IPI types cause
4545 * a #VMEXIT, which needs to emulated.
4546 */
4547 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4548 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4549 break;
4550 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004551 int i;
4552 struct kvm_vcpu *vcpu;
4553 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004554 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4555
4556 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004557 * At this point, we expect that the AVIC HW has already
4558 * set the appropriate IRR bits on the valid target
4559 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004560 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004561 kvm_for_each_vcpu(i, vcpu, kvm) {
4562 bool m = kvm_apic_match_dest(vcpu, apic,
Peter Xuac8ef992019-12-04 20:07:19 +01004563 icrl & APIC_SHORT_MASK,
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004564 GET_APIC_DEST_FIELD(icrh),
Peter Xuac8ef992019-12-04 20:07:19 +01004565 icrl & APIC_DEST_MASK);
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004566
4567 if (m && !avic_vcpu_is_running(vcpu))
4568 kvm_vcpu_wake_up(vcpu);
4569 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004570 break;
4571 }
4572 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004573 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4574 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004575 break;
4576 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4577 WARN_ONCE(1, "Invalid backing page\n");
4578 break;
4579 default:
4580 pr_err("Unknown IPI interception\n");
4581 }
4582
4583 return 1;
4584}
4585
4586static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4587{
Sean Christopherson81811c12018-03-20 12:17:21 -07004588 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004589 int index;
4590 u32 *logical_apic_id_table;
4591 int dlid = GET_APIC_LOGICAL_ID(ldr);
4592
4593 if (!dlid)
4594 return NULL;
4595
4596 if (flat) { /* flat */
4597 index = ffs(dlid) - 1;
4598 if (index > 7)
4599 return NULL;
4600 } else { /* cluster */
4601 int cluster = (dlid & 0xf0) >> 4;
4602 int apic = ffs(dlid & 0x0f) - 1;
4603
4604 if ((apic < 0) || (apic > 7) ||
4605 (cluster >= 0xf))
4606 return NULL;
4607 index = (cluster << 2) + apic;
4608 }
4609
Sean Christopherson81811c12018-03-20 12:17:21 -07004610 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004611
4612 return &logical_apic_id_table[index];
4613}
4614
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004615static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004616{
4617 bool flat;
4618 u32 *entry, new_entry;
4619
4620 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4621 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4622 if (!entry)
4623 return -EINVAL;
4624
4625 new_entry = READ_ONCE(*entry);
4626 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4627 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004628 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004629 WRITE_ONCE(*entry, new_entry);
4630
4631 return 0;
4632}
4633
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004634static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4635{
4636 struct vcpu_svm *svm = to_svm(vcpu);
4637 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4638 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4639
4640 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004641 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004642}
4643
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004644static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4645{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004646 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004647 struct vcpu_svm *svm = to_svm(vcpu);
4648 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004649 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004650
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004651 if (ldr == svm->ldr_reg)
4652 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004653
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004654 avic_invalidate_logical_id_entry(vcpu);
4655
4656 if (ldr)
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004657 ret = avic_ldr_write(vcpu, id, ldr);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004658
4659 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004660 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004661
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004662 return ret;
4663}
4664
4665static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4666{
4667 u64 *old, *new;
4668 struct vcpu_svm *svm = to_svm(vcpu);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004669 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004670
4671 if (vcpu->vcpu_id == id)
4672 return 0;
4673
4674 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4675 new = avic_get_physical_id_entry(vcpu, id);
4676 if (!new || !old)
4677 return 1;
4678
4679 /* We need to move physical_id_entry to new offset */
4680 *new = *old;
4681 *old = 0ULL;
4682 to_svm(vcpu)->avic_physical_id_cache = new;
4683
4684 /*
4685 * Also update the guest physical APIC ID in the logical
4686 * APIC ID table entry if already setup the LDR.
4687 */
4688 if (svm->ldr_reg)
4689 avic_handle_ldr_update(vcpu);
4690
4691 return 0;
4692}
4693
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004694static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004695{
4696 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004697 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004698
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004699 if (svm->dfr_reg == dfr)
4700 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004701
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004702 avic_invalidate_logical_id_entry(vcpu);
4703 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004704}
4705
4706static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4707{
4708 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4709 u32 offset = svm->vmcb->control.exit_info_1 &
4710 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4711
4712 switch (offset) {
4713 case APIC_ID:
4714 if (avic_handle_apic_id_update(&svm->vcpu))
4715 return 0;
4716 break;
4717 case APIC_LDR:
4718 if (avic_handle_ldr_update(&svm->vcpu))
4719 return 0;
4720 break;
4721 case APIC_DFR:
4722 avic_handle_dfr_update(&svm->vcpu);
4723 break;
4724 default:
4725 break;
4726 }
4727
4728 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4729
4730 return 1;
4731}
4732
4733static bool is_avic_unaccelerated_access_trap(u32 offset)
4734{
4735 bool ret = false;
4736
4737 switch (offset) {
4738 case APIC_ID:
4739 case APIC_EOI:
4740 case APIC_RRR:
4741 case APIC_LDR:
4742 case APIC_DFR:
4743 case APIC_SPIV:
4744 case APIC_ESR:
4745 case APIC_ICR:
4746 case APIC_LVTT:
4747 case APIC_LVTTHMR:
4748 case APIC_LVTPC:
4749 case APIC_LVT0:
4750 case APIC_LVT1:
4751 case APIC_LVTERR:
4752 case APIC_TMICT:
4753 case APIC_TDCR:
4754 ret = true;
4755 break;
4756 default:
4757 break;
4758 }
4759 return ret;
4760}
4761
4762static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4763{
4764 int ret = 0;
4765 u32 offset = svm->vmcb->control.exit_info_1 &
4766 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4767 u32 vector = svm->vmcb->control.exit_info_2 &
4768 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4769 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4770 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4771 bool trap = is_avic_unaccelerated_access_trap(offset);
4772
4773 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4774 trap, write, vector);
4775 if (trap) {
4776 /* Handling Trap */
4777 WARN_ONCE(!write, "svm: Handling trap read.\n");
4778 ret = avic_unaccel_trap_write(svm);
4779 } else {
4780 /* Handling Fault */
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004781 ret = kvm_emulate_instruction(&svm->vcpu, 0);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004782 }
4783
4784 return ret;
4785}
4786
Mathias Krause09941fb2012-08-30 01:30:20 +02004787static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004788 [SVM_EXIT_READ_CR0] = cr_interception,
4789 [SVM_EXIT_READ_CR3] = cr_interception,
4790 [SVM_EXIT_READ_CR4] = cr_interception,
4791 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004792 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004793 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004794 [SVM_EXIT_WRITE_CR3] = cr_interception,
4795 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004796 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004797 [SVM_EXIT_READ_DR0] = dr_interception,
4798 [SVM_EXIT_READ_DR1] = dr_interception,
4799 [SVM_EXIT_READ_DR2] = dr_interception,
4800 [SVM_EXIT_READ_DR3] = dr_interception,
4801 [SVM_EXIT_READ_DR4] = dr_interception,
4802 [SVM_EXIT_READ_DR5] = dr_interception,
4803 [SVM_EXIT_READ_DR6] = dr_interception,
4804 [SVM_EXIT_READ_DR7] = dr_interception,
4805 [SVM_EXIT_WRITE_DR0] = dr_interception,
4806 [SVM_EXIT_WRITE_DR1] = dr_interception,
4807 [SVM_EXIT_WRITE_DR2] = dr_interception,
4808 [SVM_EXIT_WRITE_DR3] = dr_interception,
4809 [SVM_EXIT_WRITE_DR4] = dr_interception,
4810 [SVM_EXIT_WRITE_DR5] = dr_interception,
4811 [SVM_EXIT_WRITE_DR6] = dr_interception,
4812 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004813 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4814 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004815 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004816 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004817 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004818 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004819 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004820 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004821 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822 [SVM_EXIT_SMI] = nop_on_interception,
4823 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004824 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004825 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004826 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004827 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004828 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004829 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004830 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004831 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004832 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004833 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004834 [SVM_EXIT_MSR] = msr_interception,
4835 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004836 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004837 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004838 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004839 [SVM_EXIT_VMLOAD] = vmload_interception,
4840 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004841 [SVM_EXIT_STGI] = stgi_interception,
4842 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004843 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004844 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004845 [SVM_EXIT_MONITOR] = monitor_interception,
4846 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004847 [SVM_EXIT_XSETBV] = xsetbv_interception,
Jim Mattson0cb84102019-09-19 15:59:17 -07004848 [SVM_EXIT_RDPRU] = rdpru_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004849 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004850 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004851 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4852 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004853};
4854
Joe Perchesae8cc052011-04-24 22:00:50 -07004855static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004856{
4857 struct vcpu_svm *svm = to_svm(vcpu);
4858 struct vmcb_control_area *control = &svm->vmcb->control;
4859 struct vmcb_save_area *save = &svm->vmcb->save;
4860
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004861 if (!dump_invalid_vmcb) {
4862 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4863 return;
4864 }
4865
Joerg Roedel3f10c842010-05-05 16:04:42 +02004866 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004867 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4868 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4869 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4870 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4871 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4872 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4873 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004874 pr_err("%-20s%d\n", "pause filter threshold:",
4875 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004876 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4877 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4878 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4879 pr_err("%-20s%d\n", "asid:", control->asid);
4880 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4881 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4882 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4883 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4884 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4885 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4886 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4887 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4888 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4889 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4890 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004891 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004892 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4893 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004894 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004895 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004896 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4897 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4898 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004899 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004900 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4901 "es:",
4902 save->es.selector, save->es.attrib,
4903 save->es.limit, save->es.base);
4904 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4905 "cs:",
4906 save->cs.selector, save->cs.attrib,
4907 save->cs.limit, save->cs.base);
4908 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4909 "ss:",
4910 save->ss.selector, save->ss.attrib,
4911 save->ss.limit, save->ss.base);
4912 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4913 "ds:",
4914 save->ds.selector, save->ds.attrib,
4915 save->ds.limit, save->ds.base);
4916 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4917 "fs:",
4918 save->fs.selector, save->fs.attrib,
4919 save->fs.limit, save->fs.base);
4920 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4921 "gs:",
4922 save->gs.selector, save->gs.attrib,
4923 save->gs.limit, save->gs.base);
4924 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4925 "gdtr:",
4926 save->gdtr.selector, save->gdtr.attrib,
4927 save->gdtr.limit, save->gdtr.base);
4928 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4929 "ldtr:",
4930 save->ldtr.selector, save->ldtr.attrib,
4931 save->ldtr.limit, save->ldtr.base);
4932 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4933 "idtr:",
4934 save->idtr.selector, save->idtr.attrib,
4935 save->idtr.limit, save->idtr.base);
4936 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4937 "tr:",
4938 save->tr.selector, save->tr.attrib,
4939 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004940 pr_err("cpl: %d efer: %016llx\n",
4941 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004942 pr_err("%-15s %016llx %-13s %016llx\n",
4943 "cr0:", save->cr0, "cr2:", save->cr2);
4944 pr_err("%-15s %016llx %-13s %016llx\n",
4945 "cr3:", save->cr3, "cr4:", save->cr4);
4946 pr_err("%-15s %016llx %-13s %016llx\n",
4947 "dr6:", save->dr6, "dr7:", save->dr7);
4948 pr_err("%-15s %016llx %-13s %016llx\n",
4949 "rip:", save->rip, "rflags:", save->rflags);
4950 pr_err("%-15s %016llx %-13s %016llx\n",
4951 "rsp:", save->rsp, "rax:", save->rax);
4952 pr_err("%-15s %016llx %-13s %016llx\n",
4953 "star:", save->star, "lstar:", save->lstar);
4954 pr_err("%-15s %016llx %-13s %016llx\n",
4955 "cstar:", save->cstar, "sfmask:", save->sfmask);
4956 pr_err("%-15s %016llx %-13s %016llx\n",
4957 "kernel_gs_base:", save->kernel_gs_base,
4958 "sysenter_cs:", save->sysenter_cs);
4959 pr_err("%-15s %016llx %-13s %016llx\n",
4960 "sysenter_esp:", save->sysenter_esp,
4961 "sysenter_eip:", save->sysenter_eip);
4962 pr_err("%-15s %016llx %-13s %016llx\n",
4963 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4964 pr_err("%-15s %016llx %-13s %016llx\n",
4965 "br_from:", save->br_from, "br_to:", save->br_to);
4966 pr_err("%-15s %016llx %-13s %016llx\n",
4967 "excp_from:", save->last_excp_from,
4968 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004969}
4970
Avi Kivity586f9602010-11-18 13:09:54 +02004971static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4972{
4973 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4974
4975 *info1 = control->exit_info_1;
4976 *info2 = control->exit_info_2;
4977}
4978
Wanpeng Li1e9e2622019-11-21 11:17:11 +08004979static int handle_exit(struct kvm_vcpu *vcpu,
4980 enum exit_fastpath_completion exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004981{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004982 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004983 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004984 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004985
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004986 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4987
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004988 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004989 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4990 if (npt_enabled)
4991 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004992
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004993 if (unlikely(svm->nested.exit_required)) {
4994 nested_svm_vmexit(svm);
4995 svm->nested.exit_required = false;
4996
4997 return 1;
4998 }
4999
Joerg Roedel20307532010-11-29 17:51:48 +01005000 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02005001 int vmexit;
5002
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02005003 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
5004 svm->vmcb->control.exit_info_1,
5005 svm->vmcb->control.exit_info_2,
5006 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01005007 svm->vmcb->control.exit_int_info_err,
5008 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02005009
Joerg Roedel410e4d52009-08-07 11:49:44 +02005010 vmexit = nested_svm_exit_special(svm);
5011
5012 if (vmexit == NESTED_EXIT_CONTINUE)
5013 vmexit = nested_svm_exit_handled(svm);
5014
5015 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01005016 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01005017 }
5018
Joerg Roedela5c38322009-08-07 11:49:32 +02005019 svm_complete_interrupts(svm);
5020
Avi Kivity04d2cc72007-09-10 18:10:54 +03005021 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5022 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5023 kvm_run->fail_entry.hardware_entry_failure_reason
5024 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005025 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005026 return 0;
5027 }
5028
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005029 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005030 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005031 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5032 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005033 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005034 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005035 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005036 exit_code);
5037
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005038 if (exit_fastpath == EXIT_FASTPATH_SKIP_EMUL_INS) {
5039 kvm_skip_emulated_instruction(vcpu);
5040 return 1;
5041 } else if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005042 || !svm_exit_handlers[exit_code]) {
Liran Alon7396d332019-08-26 13:16:43 +03005043 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%x\n", exit_code);
5044 dump_vmcb(vcpu);
5045 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5046 vcpu->run->internal.suberror =
5047 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
5048 vcpu->run->internal.ndata = 1;
5049 vcpu->run->internal.data[0] = exit_code;
5050 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051 }
5052
Andrea Arcangeli3dcb2a32019-11-04 18:00:00 -05005053#ifdef CONFIG_RETPOLINE
5054 if (exit_code == SVM_EXIT_MSR)
5055 return msr_interception(svm);
5056 else if (exit_code == SVM_EXIT_VINTR)
5057 return interrupt_window_interception(svm);
5058 else if (exit_code == SVM_EXIT_INTR)
5059 return intr_interception(svm);
5060 else if (exit_code == SVM_EXIT_HLT)
5061 return halt_interception(svm);
5062 else if (exit_code == SVM_EXIT_NPF)
5063 return npf_interception(svm);
5064#endif
Avi Kivity851ba692009-08-24 11:10:17 +03005065 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005066}
5067
5068static void reload_tss(struct kvm_vcpu *vcpu)
5069{
5070 int cpu = raw_smp_processor_id();
5071
Tejun Heo0fe1e002009-10-29 22:34:14 +09005072 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5073 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005074 load_TR_desc();
5075}
5076
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005077static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5078{
5079 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5080 int asid = sev_get_asid(svm->vcpu.kvm);
5081
5082 /* Assign the asid allocated with this SEV guest */
5083 svm->vmcb->control.asid = asid;
5084
5085 /*
5086 * Flush guest TLB:
5087 *
5088 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5089 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5090 */
5091 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5092 svm->last_cpu == cpu)
5093 return;
5094
5095 svm->last_cpu = cpu;
5096 sd->sev_vmcbs[asid] = svm->vmcb;
5097 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5098 mark_dirty(svm->vmcb, VMCB_ASID);
5099}
5100
Rusty Russelle756fc62007-07-30 20:07:08 +10005101static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005102{
5103 int cpu = raw_smp_processor_id();
5104
Tejun Heo0fe1e002009-10-29 22:34:14 +09005105 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005106
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005107 if (sev_guest(svm->vcpu.kvm))
5108 return pre_sev_run(svm, cpu);
5109
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005110 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005111 if (svm->asid_generation != sd->asid_generation)
5112 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005113}
5114
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005115static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5116{
5117 struct vcpu_svm *svm = to_svm(vcpu);
5118
5119 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5120 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005121 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005122 ++vcpu->stat.nmi_injections;
5123}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005124
Eddie Dong85f455f2007-07-06 12:20:49 +03005125static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005126{
5127 struct vmcb_control_area *control;
5128
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005129 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005130 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005131 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005132 control->int_ctl &= ~V_INTR_PRIO_MASK;
5133 control->int_ctl |= V_IRQ_MASK |
5134 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005135 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005136}
5137
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005138static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005139{
5140 struct vcpu_svm *svm = to_svm(vcpu);
5141
Joerg Roedel2af91942009-08-07 11:49:28 +02005142 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005143
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005144 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5145 ++vcpu->stat.irq_injections;
5146
Alexander Graf219b65d2009-06-15 15:21:25 +02005147 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5148 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005149}
5150
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005151static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5152{
5153 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5154}
5155
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005156static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5157{
5158 struct vcpu_svm *svm = to_svm(vcpu);
5159
Liran Alon49d654d2019-11-11 14:26:21 +02005160 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005161 return;
5162
Radim Krčmář596f3142014-03-11 19:11:18 +01005163 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5164
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005165 if (irr == -1)
5166 return;
5167
5168 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005169 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005170}
5171
Jim Mattson8d860bb2018-05-09 16:56:05 -04005172static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005173{
5174 return;
5175}
5176
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005177static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5178{
5179}
5180
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005181static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005182{
5183}
5184
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06005185static void svm_toggle_avic_for_irq_window(struct kvm_vcpu *vcpu, bool activate)
5186{
5187 if (!avic || !lapic_in_kernel(vcpu))
5188 return;
5189
5190 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
5191 kvm_request_apicv_update(vcpu->kvm, activate,
5192 APICV_INHIBIT_REASON_IRQWIN);
5193 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
5194}
5195
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005196static int svm_set_pi_irte_mode(struct kvm_vcpu *vcpu, bool activate)
5197{
5198 int ret = 0;
5199 unsigned long flags;
5200 struct amd_svm_iommu_ir *ir;
5201 struct vcpu_svm *svm = to_svm(vcpu);
5202
5203 if (!kvm_arch_has_assigned_device(vcpu->kvm))
5204 return 0;
5205
5206 /*
5207 * Here, we go through the per-vcpu ir_list to update all existing
5208 * interrupt remapping table entry targeting this vcpu.
5209 */
5210 spin_lock_irqsave(&svm->ir_list_lock, flags);
5211
5212 if (list_empty(&svm->ir_list))
5213 goto out;
5214
5215 list_for_each_entry(ir, &svm->ir_list, node) {
5216 if (activate)
5217 ret = amd_iommu_activate_guest_mode(ir->data);
5218 else
5219 ret = amd_iommu_deactivate_guest_mode(ir->data);
5220 if (ret)
5221 break;
5222 }
5223out:
5224 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5225 return ret;
5226}
5227
Andrey Smetanind62caab2015-11-10 15:36:33 +03005228static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5229{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005230 struct vcpu_svm *svm = to_svm(vcpu);
5231 struct vmcb *vmcb = svm->vmcb;
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005232 bool activated = kvm_vcpu_apicv_active(vcpu);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005233
Suravee Suthikulpanit93fd9662020-02-21 08:52:17 -06005234 if (!avic)
5235 return;
5236
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005237 if (activated) {
5238 /**
5239 * During AVIC temporary deactivation, guest could update
5240 * APIC ID, DFR and LDR registers, which would not be trapped
5241 * by avic_unaccelerated_access_interception(). In this case,
5242 * we need to check and update the AVIC logical APIC ID table
5243 * accordingly before re-activating.
5244 */
5245 avic_post_state_restore(vcpu);
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005246 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005247 } else {
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005248 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
Suravee Suthikulpanit6c3e4422019-11-14 14:15:12 -06005249 }
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005250 mark_dirty(vmcb, VMCB_AVIC);
Suravee Suthikulpanit8937d762019-11-14 14:15:08 -06005251
5252 svm_set_pi_irte_mode(vcpu, activated);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005253}
5254
Andrey Smetanin63086302015-11-10 15:36:32 +03005255static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005256{
5257 return;
5258}
5259
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005260static int svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005261{
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005262 if (!vcpu->arch.apicv_active)
5263 return -1;
5264
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005265 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5266 smp_mb__after_atomic();
5267
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005268 if (avic_vcpu_is_running(vcpu)) {
5269 int cpuid = vcpu->cpu;
5270
5271 if (cpuid != get_cpu())
5272 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5273 put_cpu();
5274 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005275 kvm_vcpu_wake_up(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01005276
5277 return 0;
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005278}
5279
Wanpeng Li17e433b2019-08-05 10:03:19 +08005280static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5281{
5282 return false;
5283}
5284
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005285static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5286{
5287 unsigned long flags;
5288 struct amd_svm_iommu_ir *cur;
5289
5290 spin_lock_irqsave(&svm->ir_list_lock, flags);
5291 list_for_each_entry(cur, &svm->ir_list, node) {
5292 if (cur->data != pi->ir_data)
5293 continue;
5294 list_del(&cur->node);
5295 kfree(cur);
5296 break;
5297 }
5298 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5299}
5300
5301static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5302{
5303 int ret = 0;
5304 unsigned long flags;
5305 struct amd_svm_iommu_ir *ir;
5306
5307 /**
5308 * In some cases, the existing irte is updaed and re-set,
5309 * so we need to check here if it's already been * added
5310 * to the ir_list.
5311 */
5312 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5313 struct kvm *kvm = svm->vcpu.kvm;
5314 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5315 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5316 struct vcpu_svm *prev_svm;
5317
5318 if (!prev_vcpu) {
5319 ret = -EINVAL;
5320 goto out;
5321 }
5322
5323 prev_svm = to_svm(prev_vcpu);
5324 svm_ir_list_del(prev_svm, pi);
5325 }
5326
5327 /**
5328 * Allocating new amd_iommu_pi_data, which will get
5329 * add to the per-vcpu ir_list.
5330 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005331 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005332 if (!ir) {
5333 ret = -ENOMEM;
5334 goto out;
5335 }
5336 ir->data = pi->ir_data;
5337
5338 spin_lock_irqsave(&svm->ir_list_lock, flags);
5339 list_add(&ir->node, &svm->ir_list);
5340 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5341out:
5342 return ret;
5343}
5344
5345/**
5346 * Note:
5347 * The HW cannot support posting multicast/broadcast
5348 * interrupts to a vCPU. So, we still use legacy interrupt
5349 * remapping for these kind of interrupts.
5350 *
5351 * For lowest-priority interrupts, we only support
5352 * those with single CPU as the destination, e.g. user
5353 * configures the interrupts via /proc/irq or uses
5354 * irqbalance to make the interrupts single-CPU.
5355 */
5356static int
5357get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5358 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5359{
5360 struct kvm_lapic_irq irq;
5361 struct kvm_vcpu *vcpu = NULL;
5362
5363 kvm_set_msi_irq(kvm, e, &irq);
5364
Alexander Graffdcf7562019-09-05 14:58:18 +02005365 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu) ||
5366 !kvm_irq_is_postable(&irq)) {
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005367 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5368 __func__, irq.vector);
5369 return -1;
5370 }
5371
5372 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5373 irq.vector);
5374 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005375 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005376 vcpu_info->vector = irq.vector;
5377
5378 return 0;
5379}
5380
5381/*
5382 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5383 *
5384 * @kvm: kvm
5385 * @host_irq: host irq of the interrupt
5386 * @guest_irq: gsi of the interrupt
5387 * @set: set or unset PI
5388 * returns 0 on success, < 0 on failure
5389 */
5390static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5391 uint32_t guest_irq, bool set)
5392{
5393 struct kvm_kernel_irq_routing_entry *e;
5394 struct kvm_irq_routing_table *irq_rt;
5395 int idx, ret = -EINVAL;
5396
5397 if (!kvm_arch_has_assigned_device(kvm) ||
5398 !irq_remapping_cap(IRQ_POSTING_CAP))
5399 return 0;
5400
5401 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5402 __func__, host_irq, guest_irq, set);
5403
5404 idx = srcu_read_lock(&kvm->irq_srcu);
5405 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5406 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5407
5408 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5409 struct vcpu_data vcpu_info;
5410 struct vcpu_svm *svm = NULL;
5411
5412 if (e->type != KVM_IRQ_ROUTING_MSI)
5413 continue;
5414
5415 /**
5416 * Here, we setup with legacy mode in the following cases:
5417 * 1. When cannot target interrupt to a specific vcpu.
5418 * 2. Unsetting posted interrupt.
5419 * 3. APIC virtialization is disabled for the vcpu.
Alexander Graffdcf7562019-09-05 14:58:18 +02005420 * 4. IRQ has incompatible delivery mode (SMI, INIT, etc)
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005421 */
5422 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5423 kvm_vcpu_apicv_active(&svm->vcpu)) {
5424 struct amd_iommu_pi_data pi;
5425
5426 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005427 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5428 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005429 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005430 svm->vcpu.vcpu_id);
5431 pi.is_guest_mode = true;
5432 pi.vcpu_data = &vcpu_info;
5433 ret = irq_set_vcpu_affinity(host_irq, &pi);
5434
5435 /**
5436 * Here, we successfully setting up vcpu affinity in
5437 * IOMMU guest mode. Now, we need to store the posted
5438 * interrupt information in a per-vcpu ir_list so that
5439 * we can reference to them directly when we update vcpu
5440 * scheduling information in IOMMU irte.
5441 */
5442 if (!ret && pi.is_guest_mode)
5443 svm_ir_list_add(svm, &pi);
5444 } else {
5445 /* Use legacy mode in IRTE */
5446 struct amd_iommu_pi_data pi;
5447
5448 /**
5449 * Here, pi is used to:
5450 * - Tell IOMMU to use legacy mode for this interrupt.
5451 * - Retrieve ga_tag of prior interrupt remapping data.
5452 */
5453 pi.is_guest_mode = false;
5454 ret = irq_set_vcpu_affinity(host_irq, &pi);
5455
5456 /**
5457 * Check if the posted interrupt was previously
5458 * setup with the guest_mode by checking if the ga_tag
5459 * was cached. If so, we need to clean up the per-vcpu
5460 * ir_list.
5461 */
5462 if (!ret && pi.prev_ga_tag) {
5463 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5464 struct kvm_vcpu *vcpu;
5465
5466 vcpu = kvm_get_vcpu_by_id(kvm, id);
5467 if (vcpu)
5468 svm_ir_list_del(to_svm(vcpu), &pi);
5469 }
5470 }
5471
5472 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005473 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5474 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005475 vcpu_info.pi_desc_addr, set);
5476 }
5477
5478 if (ret < 0) {
5479 pr_err("%s: failed to update PI IRTE\n", __func__);
5480 goto out;
5481 }
5482 }
5483
5484 ret = 0;
5485out:
5486 srcu_read_unlock(&kvm->irq_srcu, idx);
5487 return ret;
5488}
5489
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005490static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005491{
5492 struct vcpu_svm *svm = to_svm(vcpu);
5493 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005494 int ret;
5495 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5496 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5497 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5498
5499 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005500}
5501
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005502static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5503{
5504 struct vcpu_svm *svm = to_svm(vcpu);
5505
5506 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5507}
5508
5509static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5510{
5511 struct vcpu_svm *svm = to_svm(vcpu);
5512
5513 if (masked) {
5514 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005515 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005516 } else {
5517 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005518 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005519 }
5520}
5521
Gleb Natapov78646122009-03-23 12:12:11 +02005522static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5523{
5524 struct vcpu_svm *svm = to_svm(vcpu);
5525 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005526 int ret;
5527
5528 if (!gif_set(svm) ||
5529 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5530 return 0;
5531
Avi Kivityf6e78472010-08-02 15:30:20 +03005532 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005533
Joerg Roedel20307532010-11-29 17:51:48 +01005534 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005535 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5536
5537 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005538}
5539
Jan Kiszkac9a79532014-03-07 20:03:15 +01005540static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005541{
Alexander Graf219b65d2009-06-15 15:21:25 +02005542 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005543
Joerg Roedele0231712010-02-24 18:59:10 +01005544 /*
5545 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5546 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5547 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005548 * we'll get the vintr intercept. However, if the vGIF feature is
5549 * enabled, the STGI interception will not occur. Enable the irq
5550 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005551 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005552 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06005553 /*
5554 * IRQ window is not needed when AVIC is enabled,
5555 * unless we have pending ExtINT since it cannot be injected
5556 * via AVIC. In such case, we need to temporarily disable AVIC,
5557 * and fallback to injecting IRQ via V_IRQ.
5558 */
5559 svm_toggle_avic_for_irq_window(vcpu, false);
Alexander Graf219b65d2009-06-15 15:21:25 +02005560 svm_set_vintr(svm);
5561 svm_inject_irq(svm, 0x0);
5562 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005563}
5564
Jan Kiszkac9a79532014-03-07 20:03:15 +01005565static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005566{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005567 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005568
Gleb Natapov44c11432009-05-11 13:35:52 +03005569 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5570 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005571 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005572
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005573 if (!gif_set(svm)) {
5574 if (vgif_enabled(svm))
5575 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005576 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005577 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005578
5579 if (svm->nested.exit_required)
5580 return; /* we're not going to run the guest yet */
5581
Joerg Roedele0231712010-02-24 18:59:10 +01005582 /*
5583 * Something prevents NMI from been injected. Single step over possible
5584 * problem (IRET or exception injection or interrupt shadow)
5585 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005586 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005587 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005588 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005589}
5590
Izik Eiduscbc94022007-10-25 00:29:55 +02005591static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5592{
5593 return 0;
5594}
5595
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005596static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5597{
5598 return 0;
5599}
5600
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005601static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005602{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005603 struct vcpu_svm *svm = to_svm(vcpu);
5604
5605 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5606 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5607 else
5608 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005609}
5610
Junaid Shahidfaff8752018-06-29 13:10:05 -07005611static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5612{
5613 struct vcpu_svm *svm = to_svm(vcpu);
5614
5615 invlpga(gva, svm->vmcb->control.asid);
5616}
5617
Avi Kivity04d2cc72007-09-10 18:10:54 +03005618static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5619{
5620}
5621
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005622static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5623{
5624 struct vcpu_svm *svm = to_svm(vcpu);
5625
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005626 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005627 return;
5628
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005629 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005630 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005631 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005632 }
5633}
5634
Joerg Roedel649d6862008-04-16 16:51:15 +02005635static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5636{
5637 struct vcpu_svm *svm = to_svm(vcpu);
5638 u64 cr8;
5639
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005640 if (svm_nested_virtualize_tpr(vcpu) ||
5641 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005642 return;
5643
Joerg Roedel649d6862008-04-16 16:51:15 +02005644 cr8 = kvm_get_cr8(vcpu);
5645 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5646 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5647}
5648
Gleb Natapov9222be12009-04-23 17:14:37 +03005649static void svm_complete_interrupts(struct vcpu_svm *svm)
5650{
5651 u8 vector;
5652 int type;
5653 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005654 unsigned int3_injected = svm->int3_injected;
5655
5656 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005657
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005658 /*
5659 * If we've made progress since setting HF_IRET_MASK, we've
5660 * executed an IRET and can allow NMI injection.
5661 */
5662 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5663 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005664 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005665 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5666 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005667
Gleb Natapov9222be12009-04-23 17:14:37 +03005668 svm->vcpu.arch.nmi_injected = false;
5669 kvm_clear_exception_queue(&svm->vcpu);
5670 kvm_clear_interrupt_queue(&svm->vcpu);
5671
5672 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5673 return;
5674
Avi Kivity3842d132010-07-27 12:30:24 +03005675 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5676
Gleb Natapov9222be12009-04-23 17:14:37 +03005677 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5678 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5679
5680 switch (type) {
5681 case SVM_EXITINTINFO_TYPE_NMI:
5682 svm->vcpu.arch.nmi_injected = true;
5683 break;
5684 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005685 /*
5686 * In case of software exceptions, do not reinject the vector,
5687 * but re-execute the instruction instead. Rewind RIP first
5688 * if we emulated INT3 before.
5689 */
5690 if (kvm_exception_is_soft(vector)) {
5691 if (vector == BP_VECTOR && int3_injected &&
5692 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5693 kvm_rip_write(&svm->vcpu,
5694 kvm_rip_read(&svm->vcpu) -
5695 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005696 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005697 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005698 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5699 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005700 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005701
5702 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005703 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005704 break;
5705 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005706 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005707 break;
5708 default:
5709 break;
5710 }
5711}
5712
Avi Kivityb463a6f2010-07-20 15:06:17 +03005713static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5714{
5715 struct vcpu_svm *svm = to_svm(vcpu);
5716 struct vmcb_control_area *control = &svm->vmcb->control;
5717
5718 control->exit_int_info = control->event_inj;
5719 control->exit_int_info_err = control->event_inj_err;
5720 control->event_inj = 0;
5721 svm_complete_interrupts(svm);
5722}
5723
Avi Kivity851ba692009-08-24 11:10:17 +03005724static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005725{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005726 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005727
Joerg Roedel2041a062010-04-22 12:33:08 +02005728 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5729 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5730 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5731
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005732 /*
5733 * A vmexit emulation is required before the vcpu can be executed
5734 * again.
5735 */
5736 if (unlikely(svm->nested.exit_required))
5737 return;
5738
Ladi Proseka12713c2017-06-21 09:07:00 +02005739 /*
5740 * Disable singlestep if we're injecting an interrupt/exception.
5741 * We don't want our modified rflags to be pushed on the stack where
5742 * we might not be able to easily reset them if we disabled NMI
5743 * singlestep later.
5744 */
5745 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5746 /*
5747 * Event injection happens before external interrupts cause a
5748 * vmexit and interrupts are disabled here, so smp_send_reschedule
5749 * is enough to force an immediate vmexit.
5750 */
5751 disable_nmi_singlestep(svm);
5752 smp_send_reschedule(vcpu->cpu);
5753 }
5754
Rusty Russelle756fc62007-07-30 20:07:08 +10005755 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005756
Joerg Roedel649d6862008-04-16 16:51:15 +02005757 sync_lapic_to_cr8(vcpu);
5758
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005759 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005760
Avi Kivity04d2cc72007-09-10 18:10:54 +03005761 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07005762 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005763
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005764 if (lapic_in_kernel(vcpu) &&
5765 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5766 kvm_wait_lapic_expire(vcpu);
5767
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005768 /*
5769 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5770 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5771 * is no need to worry about the conditional branch over the wrmsr
5772 * being speculatively taken.
5773 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005774 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005775
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005776 local_irq_enable();
5777
Avi Kivity6aa8b732006-12-10 02:21:36 -08005778 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005779 "push %%" _ASM_BP "; \n\t"
5780 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5781 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5782 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5783 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5784 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5785 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005786#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005787 "mov %c[r8](%[svm]), %%r8 \n\t"
5788 "mov %c[r9](%[svm]), %%r9 \n\t"
5789 "mov %c[r10](%[svm]), %%r10 \n\t"
5790 "mov %c[r11](%[svm]), %%r11 \n\t"
5791 "mov %c[r12](%[svm]), %%r12 \n\t"
5792 "mov %c[r13](%[svm]), %%r13 \n\t"
5793 "mov %c[r14](%[svm]), %%r14 \n\t"
5794 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005795#endif
5796
Avi Kivity6aa8b732006-12-10 02:21:36 -08005797 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005798 "push %%" _ASM_AX " \n\t"
5799 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005800 __ex("vmload %%" _ASM_AX) "\n\t"
5801 __ex("vmrun %%" _ASM_AX) "\n\t"
5802 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005803 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005804
5805 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005806 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5807 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5808 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5809 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5810 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5811 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005812#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005813 "mov %%r8, %c[r8](%[svm]) \n\t"
5814 "mov %%r9, %c[r9](%[svm]) \n\t"
5815 "mov %%r10, %c[r10](%[svm]) \n\t"
5816 "mov %%r11, %c[r11](%[svm]) \n\t"
5817 "mov %%r12, %c[r12](%[svm]) \n\t"
5818 "mov %%r13, %c[r13](%[svm]) \n\t"
5819 "mov %%r14, %c[r14](%[svm]) \n\t"
5820 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005821 /*
5822 * Clear host registers marked as clobbered to prevent
5823 * speculative use.
5824 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005825 "xor %%r8d, %%r8d \n\t"
5826 "xor %%r9d, %%r9d \n\t"
5827 "xor %%r10d, %%r10d \n\t"
5828 "xor %%r11d, %%r11d \n\t"
5829 "xor %%r12d, %%r12d \n\t"
5830 "xor %%r13d, %%r13d \n\t"
5831 "xor %%r14d, %%r14d \n\t"
5832 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005833#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005834 "xor %%ebx, %%ebx \n\t"
5835 "xor %%ecx, %%ecx \n\t"
5836 "xor %%edx, %%edx \n\t"
5837 "xor %%esi, %%esi \n\t"
5838 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005839 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005840 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005841 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005842 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005843 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5844 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5845 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5846 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5847 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5848 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005849#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005850 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5851 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5852 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5853 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5854 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5855 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5856 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5857 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005858#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005859 : "cc", "memory"
5860#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005861 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005862 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005863#else
5864 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005865#endif
5866 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005867
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005868 /* Eliminate branch target predictions from guest mode */
5869 vmexit_fill_RSB();
5870
5871#ifdef CONFIG_X86_64
5872 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5873#else
5874 loadsegment(fs, svm->host.fs);
5875#ifndef CONFIG_X86_32_LAZY_GS
5876 loadsegment(gs, svm->host.gs);
5877#endif
5878#endif
5879
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005880 /*
5881 * We do not use IBRS in the kernel. If this vCPU has used the
5882 * SPEC_CTRL MSR it may have left it on; save the value and
5883 * turn it off. This is much more efficient than blindly adding
5884 * it to the atomic save/restore list. Especially as the former
5885 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5886 *
5887 * For non-nested case:
5888 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5889 * save it.
5890 *
5891 * For nested case:
5892 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5893 * save it.
5894 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005895 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005896 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005897
Avi Kivity6aa8b732006-12-10 02:21:36 -08005898 reload_tss(vcpu);
5899
Avi Kivity56ba47d2007-11-07 17:14:18 +02005900 local_irq_disable();
5901
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005902 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5903
Avi Kivity13c34e02010-10-21 12:20:31 +02005904 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5905 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5906 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5907 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5908
Joerg Roedel3781c012011-01-14 16:45:02 +01005909 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005910 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005911
Aaron Lewis139a12c2019-10-21 16:30:25 -07005912 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005913 stgi();
5914
5915 /* Any pending NMI will happen here */
5916
5917 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005918 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005919
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005920 sync_cr8_to_lapic(vcpu);
5921
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005922 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005923
Joerg Roedel38e5e922010-12-03 15:25:16 +01005924 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5925
Gleb Natapov631bc482010-10-14 11:22:52 +02005926 /* if exit due to PF check for async PF */
5927 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005928 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005929
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005930 if (npt_enabled) {
5931 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5932 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5933 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005934
5935 /*
5936 * We need to handle MC intercepts here before the vcpu has a chance to
5937 * change the physical cpu
5938 */
5939 if (unlikely(svm->vmcb->control.exit_code ==
5940 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5941 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005942
5943 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005944}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005945STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005946
Avi Kivity6aa8b732006-12-10 02:21:36 -08005947static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5948{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005949 struct vcpu_svm *svm = to_svm(vcpu);
5950
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005951 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005952 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005953}
5954
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005955static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5956{
5957 struct vcpu_svm *svm = to_svm(vcpu);
5958
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005959 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005960 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005961
5962 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005963 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005964 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005965}
5966
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967static int is_disabled(void)
5968{
Joerg Roedel6031a612007-06-22 12:29:50 +03005969 u64 vm_cr;
5970
5971 rdmsrl(MSR_VM_CR, vm_cr);
5972 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5973 return 1;
5974
Avi Kivity6aa8b732006-12-10 02:21:36 -08005975 return 0;
5976}
5977
Ingo Molnar102d8322007-02-19 14:37:47 +02005978static void
5979svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5980{
5981 /*
5982 * Patch in the VMMCALL instruction:
5983 */
5984 hypercall[0] = 0x0f;
5985 hypercall[1] = 0x01;
5986 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005987}
5988
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005989static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005990{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005991 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005992}
5993
Avi Kivity774ead32007-12-26 13:57:04 +02005994static bool svm_cpu_has_accelerated_tpr(void)
5995{
5996 return false;
5997}
5998
Tom Lendackybc226f02018-05-10 22:06:39 +02005999static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006000{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01006001 switch (index) {
6002 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006003 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01006004 return false;
6005 default:
6006 break;
6007 }
6008
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006009 return true;
6010}
6011
Paolo Bonzinifc07e762015-10-01 13:20:22 +02006012static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
6013{
6014 return 0;
6015}
6016
Sheng Yang0e851882009-12-18 16:48:46 +08006017static void svm_cpuid_update(struct kvm_vcpu *vcpu)
6018{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02006019 struct vcpu_svm *svm = to_svm(vcpu);
6020
Aaron Lewis72041602019-10-21 16:30:20 -07006021 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08006022 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07006023 boot_cpu_has(X86_FEATURE_XSAVES);
6024
Joerg Roedel6092d3d2015-10-14 15:10:54 +02006025 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02006026 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05006027
6028 if (!kvm_vcpu_apicv_active(vcpu))
6029 return;
6030
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02006031 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06006032
6033 /*
6034 * Currently, AVIC does not work with nested virtualization.
6035 * So, we disable AVIC when cpuid for SVM is set in the L1 guest.
6036 */
6037 if (nested && guest_cpuid_has(vcpu, X86_FEATURE_SVM))
6038 kvm_request_apicv_update(vcpu->kvm, false,
6039 APICV_INHIBIT_REASON_NESTED);
Sheng Yang0e851882009-12-18 16:48:46 +08006040}
6041
Sean Christopherson87382002019-12-17 13:32:42 -08006042#define F feature_bit
Paolo Bonzini50896de2019-08-15 09:17:31 +02006043
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006044static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6045{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006046 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05006047 case 0x1:
6048 if (avic)
Sean Christopherson87382002019-12-17 13:32:42 -08006049 entry->ecx &= ~F(X2APIC);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05006050 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02006051 case 0x80000001:
6052 if (nested)
6053 entry->ecx |= (1 << 2); /* Set SVM bit */
6054 break;
Paolo Bonzini50896de2019-08-15 09:17:31 +02006055 case 0x80000008:
6056 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
6057 boot_cpu_has(X86_FEATURE_AMD_SSBD))
6058 entry->ebx |= F(VIRT_SSBD);
6059 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006060 case 0x8000000A:
6061 entry->eax = 1; /* SVM revision 1 */
6062 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
6063 ASID emulation to nested SVM */
6064 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02006065 entry->edx = 0; /* Per default do not support any
6066 additional features */
6067
6068 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02006069 if (boot_cpu_has(X86_FEATURE_NRIPS))
Paolo Bonzini50896de2019-08-15 09:17:31 +02006070 entry->edx |= F(NRIPS);
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006071
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02006072 /* Support NPT for the guest if enabled */
6073 if (npt_enabled)
Paolo Bonzini50896de2019-08-15 09:17:31 +02006074 entry->edx |= F(NPT);
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02006075
Joerg Roedelc2c63a42010-04-22 12:33:12 +02006076 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006077}
6078
Sheng Yang17cc3932010-01-05 19:02:27 +08006079static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006080{
Sheng Yang17cc3932010-01-05 19:02:27 +08006081 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006082}
6083
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006084static bool svm_rdtscp_supported(void)
6085{
Paolo Bonzini46896c72015-11-12 14:49:16 +01006086 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006087}
6088
Mao, Junjiead756a12012-07-02 01:18:48 +00006089static bool svm_invpcid_supported(void)
6090{
6091 return false;
6092}
6093
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006094static bool svm_mpx_supported(void)
6095{
6096 return false;
6097}
6098
Wanpeng Li55412b22014-12-02 19:21:30 +08006099static bool svm_xsaves_supported(void)
6100{
Aaron Lewis52297432019-10-21 16:30:27 -07006101 return boot_cpu_has(X86_FEATURE_XSAVES);
Wanpeng Li55412b22014-12-02 19:21:30 +08006102}
6103
Paolo Bonzini66336ca2016-07-12 10:36:41 +02006104static bool svm_umip_emulated(void)
6105{
6106 return false;
6107}
6108
Chao Peng86f52012018-10-24 16:05:11 +08006109static bool svm_pt_supported(void)
6110{
6111 return false;
6112}
6113
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006114static bool svm_has_wbinvd_exit(void)
6115{
6116 return true;
6117}
6118
John Allena47970e2019-12-19 14:17:59 -06006119static bool svm_pku_supported(void)
6120{
6121 return false;
6122}
6123
Joerg Roedel80612522011-04-04 12:39:33 +02006124#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006125 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006126#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006127 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006128#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006129 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006130
Mathias Krause09941fb2012-08-30 01:30:20 +02006131static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006132 u32 exit_code;
6133 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006134} x86_intercept_map[] = {
6135 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6136 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6137 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6138 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6139 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006140 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6141 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006142 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6143 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6144 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6145 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6146 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6147 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6148 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6149 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006150 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6151 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6152 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6153 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6154 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6155 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6156 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6157 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006158 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6159 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6160 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006161 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6162 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6163 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6164 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6165 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6166 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6167 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6168 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6169 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006170 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6171 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6172 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6173 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6174 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6175 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6176 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006177 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6178 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6179 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6180 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006181 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006182};
6183
Joerg Roedel80612522011-04-04 12:39:33 +02006184#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006185#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006186#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006187
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006188static int svm_check_intercept(struct kvm_vcpu *vcpu,
6189 struct x86_instruction_info *info,
6190 enum x86_intercept_stage stage)
6191{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006192 struct vcpu_svm *svm = to_svm(vcpu);
6193 int vmexit, ret = X86EMUL_CONTINUE;
6194 struct __x86_intercept icpt_info;
6195 struct vmcb *vmcb = svm->vmcb;
6196
6197 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6198 goto out;
6199
6200 icpt_info = x86_intercept_map[info->intercept];
6201
Avi Kivity40e19b52011-04-21 12:35:41 +03006202 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006203 goto out;
6204
6205 switch (icpt_info.exit_code) {
6206 case SVM_EXIT_READ_CR0:
6207 if (info->intercept == x86_intercept_cr_read)
6208 icpt_info.exit_code += info->modrm_reg;
6209 break;
6210 case SVM_EXIT_WRITE_CR0: {
6211 unsigned long cr0, val;
6212 u64 intercept;
6213
6214 if (info->intercept == x86_intercept_cr_write)
6215 icpt_info.exit_code += info->modrm_reg;
6216
Jan Kiszka62baf442014-06-29 21:55:53 +02006217 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6218 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006219 break;
6220
6221 intercept = svm->nested.intercept;
6222
6223 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6224 break;
6225
6226 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6227 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6228
6229 if (info->intercept == x86_intercept_lmsw) {
6230 cr0 &= 0xfUL;
6231 val &= 0xfUL;
6232 /* lmsw can't clear PE - catch this here */
6233 if (cr0 & X86_CR0_PE)
6234 val |= X86_CR0_PE;
6235 }
6236
6237 if (cr0 ^ val)
6238 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6239
6240 break;
6241 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006242 case SVM_EXIT_READ_DR0:
6243 case SVM_EXIT_WRITE_DR0:
6244 icpt_info.exit_code += info->modrm_reg;
6245 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006246 case SVM_EXIT_MSR:
6247 if (info->intercept == x86_intercept_wrmsr)
6248 vmcb->control.exit_info_1 = 1;
6249 else
6250 vmcb->control.exit_info_1 = 0;
6251 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006252 case SVM_EXIT_PAUSE:
6253 /*
6254 * We get this for NOP only, but pause
6255 * is rep not, check this here
6256 */
6257 if (info->rep_prefix != REPE_PREFIX)
6258 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006259 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006260 case SVM_EXIT_IOIO: {
6261 u64 exit_info;
6262 u32 bytes;
6263
Joerg Roedelf6511932011-04-04 12:39:35 +02006264 if (info->intercept == x86_intercept_in ||
6265 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006266 exit_info = ((info->src_val & 0xffff) << 16) |
6267 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006268 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006269 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006270 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006271 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006272 }
6273
6274 if (info->intercept == x86_intercept_outs ||
6275 info->intercept == x86_intercept_ins)
6276 exit_info |= SVM_IOIO_STR_MASK;
6277
6278 if (info->rep_prefix)
6279 exit_info |= SVM_IOIO_REP_MASK;
6280
6281 bytes = min(bytes, 4u);
6282
6283 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6284
6285 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6286
6287 vmcb->control.exit_info_1 = exit_info;
6288 vmcb->control.exit_info_2 = info->next_rip;
6289
6290 break;
6291 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006292 default:
6293 break;
6294 }
6295
Bandan Dasf1047652015-06-11 02:05:33 -04006296 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6297 if (static_cpu_has(X86_FEATURE_NRIPS))
6298 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006299 vmcb->control.exit_code = icpt_info.exit_code;
6300 vmexit = nested_svm_exit_handled(svm);
6301
6302 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6303 : X86EMUL_CONTINUE;
6304
6305out:
6306 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006307}
6308
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006309static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu,
6310 enum exit_fastpath_completion *exit_fastpath)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006311{
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006312 if (!is_guest_mode(vcpu) &&
6313 to_svm(vcpu)->vmcb->control.exit_code == EXIT_REASON_MSR_WRITE)
6314 *exit_fastpath = handle_fastpath_set_msr_irqoff(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006315}
6316
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006317static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6318{
Babu Moger8566ac82018-03-16 16:37:26 -04006319 if (pause_filter_thresh)
6320 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006321}
6322
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006323static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6324{
6325 if (avic_handle_apic_id_update(vcpu) != 0)
6326 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006327 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006328 avic_handle_ldr_update(vcpu);
6329}
6330
Borislav Petkov74f16902017-03-26 23:51:24 +02006331static void svm_setup_mce(struct kvm_vcpu *vcpu)
6332{
6333 /* [63:9] are reserved. */
6334 vcpu->arch.mcg_cap &= 0x1ff;
6335}
6336
Ladi Prosek72d7b372017-10-11 16:54:41 +02006337static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6338{
Ladi Prosek05cade72017-10-11 16:54:45 +02006339 struct vcpu_svm *svm = to_svm(vcpu);
6340
6341 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6342 if (!gif_set(svm))
6343 return 0;
6344
6345 if (is_guest_mode(&svm->vcpu) &&
6346 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6347 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6348 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6349 svm->nested.exit_required = true;
6350 return 0;
6351 }
6352
Ladi Prosek72d7b372017-10-11 16:54:41 +02006353 return 1;
6354}
6355
Ladi Prosek0234bf82017-10-11 16:54:40 +02006356static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6357{
Ladi Prosek05cade72017-10-11 16:54:45 +02006358 struct vcpu_svm *svm = to_svm(vcpu);
6359 int ret;
6360
6361 if (is_guest_mode(vcpu)) {
6362 /* FED8h - SVM Guest */
6363 put_smstate(u64, smstate, 0x7ed8, 1);
6364 /* FEE0h - SVM Guest VMCB Physical Address */
6365 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6366
6367 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6368 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6369 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6370
6371 ret = nested_svm_vmexit(svm);
6372 if (ret)
6373 return ret;
6374 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006375 return 0;
6376}
6377
Sean Christophersoned193212019-04-02 08:03:09 -07006378static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006379{
Ladi Prosek05cade72017-10-11 16:54:45 +02006380 struct vcpu_svm *svm = to_svm(vcpu);
6381 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006382 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006383 u64 guest;
6384 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006385
Sean Christophersoned193212019-04-02 08:03:09 -07006386 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6387 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006388
Sean Christophersoned193212019-04-02 08:03:09 -07006389 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006390 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006391 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006392 nested_vmcb = map.hva;
6393 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006394 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006395 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006396}
6397
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006398static int enable_smi_window(struct kvm_vcpu *vcpu)
6399{
6400 struct vcpu_svm *svm = to_svm(vcpu);
6401
6402 if (!gif_set(svm)) {
6403 if (vgif_enabled(svm))
6404 set_intercept(svm, INTERCEPT_STGI);
6405 /* STGI will cause a vm exit */
6406 return 1;
6407 }
6408 return 0;
6409}
6410
Tom Lendacky33af3a72019-10-03 21:17:48 +00006411static int sev_flush_asids(void)
6412{
6413 int ret, error;
6414
6415 /*
6416 * DEACTIVATE will clear the WBINVD indicator causing DF_FLUSH to fail,
6417 * so it must be guarded.
6418 */
6419 down_write(&sev_deactivate_lock);
6420
6421 wbinvd_on_all_cpus();
6422 ret = sev_guest_df_flush(&error);
6423
6424 up_write(&sev_deactivate_lock);
6425
6426 if (ret)
6427 pr_err("SEV: DF_FLUSH failed, ret=%d, error=%#x\n", ret, error);
6428
6429 return ret;
6430}
6431
6432/* Must be called with the sev_bitmap_lock held */
6433static bool __sev_recycle_asids(void)
6434{
6435 int pos;
6436
6437 /* Check if there are any ASIDs to reclaim before performing a flush */
6438 pos = find_next_bit(sev_reclaim_asid_bitmap,
6439 max_sev_asid, min_sev_asid - 1);
6440 if (pos >= max_sev_asid)
6441 return false;
6442
6443 if (sev_flush_asids())
6444 return false;
6445
6446 bitmap_xor(sev_asid_bitmap, sev_asid_bitmap, sev_reclaim_asid_bitmap,
6447 max_sev_asid);
6448 bitmap_zero(sev_reclaim_asid_bitmap, max_sev_asid);
6449
6450 return true;
6451}
6452
Brijesh Singh1654efc2017-12-04 10:57:34 -06006453static int sev_asid_new(void)
6454{
Tom Lendacky33af3a72019-10-03 21:17:48 +00006455 bool retry = true;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006456 int pos;
6457
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006458 mutex_lock(&sev_bitmap_lock);
6459
Brijesh Singh1654efc2017-12-04 10:57:34 -06006460 /*
6461 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6462 */
Tom Lendacky33af3a72019-10-03 21:17:48 +00006463again:
Brijesh Singh1654efc2017-12-04 10:57:34 -06006464 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006465 if (pos >= max_sev_asid) {
Tom Lendacky33af3a72019-10-03 21:17:48 +00006466 if (retry && __sev_recycle_asids()) {
6467 retry = false;
6468 goto again;
6469 }
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006470 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006471 return -EBUSY;
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006472 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06006473
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006474 __set_bit(pos, sev_asid_bitmap);
6475
6476 mutex_unlock(&sev_bitmap_lock);
6477
Brijesh Singh1654efc2017-12-04 10:57:34 -06006478 return pos + 1;
6479}
6480
6481static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6482{
Sean Christopherson81811c12018-03-20 12:17:21 -07006483 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006484 int asid, ret;
6485
6486 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006487 if (unlikely(sev->active))
6488 return ret;
6489
Brijesh Singh1654efc2017-12-04 10:57:34 -06006490 asid = sev_asid_new();
6491 if (asid < 0)
6492 return ret;
6493
6494 ret = sev_platform_init(&argp->error);
6495 if (ret)
6496 goto e_free;
6497
6498 sev->active = true;
6499 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006500 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006501
6502 return 0;
6503
6504e_free:
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006505 sev_asid_free(asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006506 return ret;
6507}
6508
Brijesh Singh59414c92017-12-04 10:57:35 -06006509static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6510{
6511 struct sev_data_activate *data;
6512 int asid = sev_get_asid(kvm);
6513 int ret;
6514
Ben Gardon1ec69642019-02-11 11:02:51 -08006515 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006516 if (!data)
6517 return -ENOMEM;
6518
6519 /* activate ASID on the given handle */
6520 data->handle = handle;
6521 data->asid = asid;
6522 ret = sev_guest_activate(data, error);
6523 kfree(data);
6524
6525 return ret;
6526}
6527
Brijesh Singh89c50582017-12-04 10:57:35 -06006528static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006529{
6530 struct fd f;
6531 int ret;
6532
6533 f = fdget(fd);
6534 if (!f.file)
6535 return -EBADF;
6536
6537 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6538
6539 fdput(f);
6540 return ret;
6541}
6542
Brijesh Singh89c50582017-12-04 10:57:35 -06006543static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6544{
Sean Christopherson81811c12018-03-20 12:17:21 -07006545 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006546
6547 return __sev_issue_cmd(sev->fd, id, data, error);
6548}
6549
Brijesh Singh59414c92017-12-04 10:57:35 -06006550static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6551{
Sean Christopherson81811c12018-03-20 12:17:21 -07006552 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006553 struct sev_data_launch_start *start;
6554 struct kvm_sev_launch_start params;
6555 void *dh_blob, *session_blob;
6556 int *error = &argp->error;
6557 int ret;
6558
6559 if (!sev_guest(kvm))
6560 return -ENOTTY;
6561
6562 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6563 return -EFAULT;
6564
Ben Gardon1ec69642019-02-11 11:02:51 -08006565 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006566 if (!start)
6567 return -ENOMEM;
6568
6569 dh_blob = NULL;
6570 if (params.dh_uaddr) {
6571 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6572 if (IS_ERR(dh_blob)) {
6573 ret = PTR_ERR(dh_blob);
6574 goto e_free;
6575 }
6576
6577 start->dh_cert_address = __sme_set(__pa(dh_blob));
6578 start->dh_cert_len = params.dh_len;
6579 }
6580
6581 session_blob = NULL;
6582 if (params.session_uaddr) {
6583 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6584 if (IS_ERR(session_blob)) {
6585 ret = PTR_ERR(session_blob);
6586 goto e_free_dh;
6587 }
6588
6589 start->session_address = __sme_set(__pa(session_blob));
6590 start->session_len = params.session_len;
6591 }
6592
6593 start->handle = params.handle;
6594 start->policy = params.policy;
6595
6596 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006597 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006598 if (ret)
6599 goto e_free_session;
6600
6601 /* Bind ASID to this guest */
6602 ret = sev_bind_asid(kvm, start->handle, error);
6603 if (ret)
6604 goto e_free_session;
6605
6606 /* return handle to userspace */
6607 params.handle = start->handle;
6608 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6609 sev_unbind_asid(kvm, start->handle);
6610 ret = -EFAULT;
6611 goto e_free_session;
6612 }
6613
6614 sev->handle = start->handle;
6615 sev->fd = argp->sev_fd;
6616
6617e_free_session:
6618 kfree(session_blob);
6619e_free_dh:
6620 kfree(dh_blob);
6621e_free:
6622 kfree(start);
6623 return ret;
6624}
6625
David Rientjesede885e2019-03-19 15:19:56 -07006626static unsigned long get_num_contig_pages(unsigned long idx,
6627 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006628{
6629 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006630 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006631
6632 /* find the number of contiguous pages starting from idx */
6633 paddr = __sme_page_pa(inpages[idx]);
6634 while (i < npages) {
6635 next_paddr = __sme_page_pa(inpages[i++]);
6636 if ((paddr + PAGE_SIZE) == next_paddr) {
6637 pages++;
6638 paddr = next_paddr;
6639 continue;
6640 }
6641 break;
6642 }
6643
6644 return pages;
6645}
6646
6647static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6648{
David Rientjesede885e2019-03-19 15:19:56 -07006649 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006650 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006651 struct kvm_sev_launch_update_data params;
6652 struct sev_data_launch_update_data *data;
6653 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006654 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006655
6656 if (!sev_guest(kvm))
6657 return -ENOTTY;
6658
6659 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6660 return -EFAULT;
6661
Ben Gardon1ec69642019-02-11 11:02:51 -08006662 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006663 if (!data)
6664 return -ENOMEM;
6665
6666 vaddr = params.uaddr;
6667 size = params.len;
6668 vaddr_end = vaddr + size;
6669
6670 /* Lock the user memory. */
6671 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6672 if (!inpages) {
6673 ret = -ENOMEM;
6674 goto e_free;
6675 }
6676
6677 /*
6678 * The LAUNCH_UPDATE command will perform in-place encryption of the
6679 * memory content (i.e it will write the same memory region with C=1).
6680 * It's possible that the cache may contain the data with C=0, i.e.,
6681 * unencrypted so invalidate it first.
6682 */
6683 sev_clflush_pages(inpages, npages);
6684
6685 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6686 int offset, len;
6687
6688 /*
6689 * If the user buffer is not page-aligned, calculate the offset
6690 * within the page.
6691 */
6692 offset = vaddr & (PAGE_SIZE - 1);
6693
6694 /* Calculate the number of pages that can be encrypted in one go. */
6695 pages = get_num_contig_pages(i, inpages, npages);
6696
6697 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6698
6699 data->handle = sev->handle;
6700 data->len = len;
6701 data->address = __sme_page_pa(inpages[i]) + offset;
6702 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6703 if (ret)
6704 goto e_unpin;
6705
6706 size -= len;
6707 next_vaddr = vaddr + len;
6708 }
6709
6710e_unpin:
6711 /* content of memory is updated, mark pages dirty */
6712 for (i = 0; i < npages; i++) {
6713 set_page_dirty_lock(inpages[i]);
6714 mark_page_accessed(inpages[i]);
6715 }
6716 /* unlock the user pages */
6717 sev_unpin_memory(kvm, inpages, npages);
6718e_free:
6719 kfree(data);
6720 return ret;
6721}
6722
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006723static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6724{
Brijesh Singh3e233382018-02-23 12:36:50 -06006725 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006726 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006727 struct sev_data_launch_measure *data;
6728 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006729 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006730 void *blob = NULL;
6731 int ret;
6732
6733 if (!sev_guest(kvm))
6734 return -ENOTTY;
6735
Brijesh Singh3e233382018-02-23 12:36:50 -06006736 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006737 return -EFAULT;
6738
Ben Gardon1ec69642019-02-11 11:02:51 -08006739 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006740 if (!data)
6741 return -ENOMEM;
6742
6743 /* User wants to query the blob length */
6744 if (!params.len)
6745 goto cmd;
6746
Brijesh Singh3e233382018-02-23 12:36:50 -06006747 p = (void __user *)(uintptr_t)params.uaddr;
6748 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006749 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6750 ret = -EINVAL;
6751 goto e_free;
6752 }
6753
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006754 ret = -ENOMEM;
6755 blob = kmalloc(params.len, GFP_KERNEL);
6756 if (!blob)
6757 goto e_free;
6758
6759 data->address = __psp_pa(blob);
6760 data->len = params.len;
6761 }
6762
6763cmd:
6764 data->handle = sev->handle;
6765 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6766
6767 /*
6768 * If we query the session length, FW responded with expected data.
6769 */
6770 if (!params.len)
6771 goto done;
6772
6773 if (ret)
6774 goto e_free_blob;
6775
6776 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006777 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006778 ret = -EFAULT;
6779 }
6780
6781done:
6782 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006783 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006784 ret = -EFAULT;
6785e_free_blob:
6786 kfree(blob);
6787e_free:
6788 kfree(data);
6789 return ret;
6790}
6791
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006792static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6793{
Sean Christopherson81811c12018-03-20 12:17:21 -07006794 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006795 struct sev_data_launch_finish *data;
6796 int ret;
6797
6798 if (!sev_guest(kvm))
6799 return -ENOTTY;
6800
Ben Gardon1ec69642019-02-11 11:02:51 -08006801 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006802 if (!data)
6803 return -ENOMEM;
6804
6805 data->handle = sev->handle;
6806 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6807
6808 kfree(data);
6809 return ret;
6810}
6811
Brijesh Singh255d9e72017-12-04 10:57:37 -06006812static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6813{
Sean Christopherson81811c12018-03-20 12:17:21 -07006814 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006815 struct kvm_sev_guest_status params;
6816 struct sev_data_guest_status *data;
6817 int ret;
6818
6819 if (!sev_guest(kvm))
6820 return -ENOTTY;
6821
Ben Gardon1ec69642019-02-11 11:02:51 -08006822 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006823 if (!data)
6824 return -ENOMEM;
6825
6826 data->handle = sev->handle;
6827 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6828 if (ret)
6829 goto e_free;
6830
6831 params.policy = data->policy;
6832 params.state = data->state;
6833 params.handle = data->handle;
6834
6835 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6836 ret = -EFAULT;
6837e_free:
6838 kfree(data);
6839 return ret;
6840}
6841
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006842static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6843 unsigned long dst, int size,
6844 int *error, bool enc)
6845{
Sean Christopherson81811c12018-03-20 12:17:21 -07006846 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006847 struct sev_data_dbg *data;
6848 int ret;
6849
Ben Gardon1ec69642019-02-11 11:02:51 -08006850 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006851 if (!data)
6852 return -ENOMEM;
6853
6854 data->handle = sev->handle;
6855 data->dst_addr = dst;
6856 data->src_addr = src;
6857 data->len = size;
6858
6859 ret = sev_issue_cmd(kvm,
6860 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6861 data, error);
6862 kfree(data);
6863 return ret;
6864}
6865
6866static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6867 unsigned long dst_paddr, int sz, int *err)
6868{
6869 int offset;
6870
6871 /*
6872 * Its safe to read more than we are asked, caller should ensure that
6873 * destination has enough space.
6874 */
6875 src_paddr = round_down(src_paddr, 16);
6876 offset = src_paddr & 15;
6877 sz = round_up(sz + offset, 16);
6878
6879 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6880}
6881
6882static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6883 unsigned long __user dst_uaddr,
6884 unsigned long dst_paddr,
6885 int size, int *err)
6886{
6887 struct page *tpage = NULL;
6888 int ret, offset;
6889
6890 /* if inputs are not 16-byte then use intermediate buffer */
6891 if (!IS_ALIGNED(dst_paddr, 16) ||
6892 !IS_ALIGNED(paddr, 16) ||
6893 !IS_ALIGNED(size, 16)) {
6894 tpage = (void *)alloc_page(GFP_KERNEL);
6895 if (!tpage)
6896 return -ENOMEM;
6897
6898 dst_paddr = __sme_page_pa(tpage);
6899 }
6900
6901 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6902 if (ret)
6903 goto e_free;
6904
6905 if (tpage) {
6906 offset = paddr & 15;
6907 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6908 page_address(tpage) + offset, size))
6909 ret = -EFAULT;
6910 }
6911
6912e_free:
6913 if (tpage)
6914 __free_page(tpage);
6915
6916 return ret;
6917}
6918
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006919static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6920 unsigned long __user vaddr,
6921 unsigned long dst_paddr,
6922 unsigned long __user dst_vaddr,
6923 int size, int *error)
6924{
6925 struct page *src_tpage = NULL;
6926 struct page *dst_tpage = NULL;
6927 int ret, len = size;
6928
6929 /* If source buffer is not aligned then use an intermediate buffer */
6930 if (!IS_ALIGNED(vaddr, 16)) {
6931 src_tpage = alloc_page(GFP_KERNEL);
6932 if (!src_tpage)
6933 return -ENOMEM;
6934
6935 if (copy_from_user(page_address(src_tpage),
6936 (void __user *)(uintptr_t)vaddr, size)) {
6937 __free_page(src_tpage);
6938 return -EFAULT;
6939 }
6940
6941 paddr = __sme_page_pa(src_tpage);
6942 }
6943
6944 /*
6945 * If destination buffer or length is not aligned then do read-modify-write:
6946 * - decrypt destination in an intermediate buffer
6947 * - copy the source buffer in an intermediate buffer
6948 * - use the intermediate buffer as source buffer
6949 */
6950 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6951 int dst_offset;
6952
6953 dst_tpage = alloc_page(GFP_KERNEL);
6954 if (!dst_tpage) {
6955 ret = -ENOMEM;
6956 goto e_free;
6957 }
6958
6959 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6960 __sme_page_pa(dst_tpage), size, error);
6961 if (ret)
6962 goto e_free;
6963
6964 /*
6965 * If source is kernel buffer then use memcpy() otherwise
6966 * copy_from_user().
6967 */
6968 dst_offset = dst_paddr & 15;
6969
6970 if (src_tpage)
6971 memcpy(page_address(dst_tpage) + dst_offset,
6972 page_address(src_tpage), size);
6973 else {
6974 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6975 (void __user *)(uintptr_t)vaddr, size)) {
6976 ret = -EFAULT;
6977 goto e_free;
6978 }
6979 }
6980
6981 paddr = __sme_page_pa(dst_tpage);
6982 dst_paddr = round_down(dst_paddr, 16);
6983 len = round_up(size, 16);
6984 }
6985
6986 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6987
6988e_free:
6989 if (src_tpage)
6990 __free_page(src_tpage);
6991 if (dst_tpage)
6992 __free_page(dst_tpage);
6993 return ret;
6994}
6995
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006996static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6997{
6998 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006999 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007000 struct page **src_p, **dst_p;
7001 struct kvm_sev_dbg debug;
7002 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07007003 unsigned int size;
7004 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007005
7006 if (!sev_guest(kvm))
7007 return -ENOTTY;
7008
7009 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
7010 return -EFAULT;
7011
David Rientjesb86bc282019-03-25 11:47:31 -07007012 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
7013 return -EINVAL;
7014 if (!debug.dst_uaddr)
7015 return -EINVAL;
7016
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007017 vaddr = debug.src_uaddr;
7018 size = debug.len;
7019 vaddr_end = vaddr + size;
7020 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007021
7022 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
7023 int len, s_off, d_off;
7024
7025 /* lock userspace source and destination page */
7026 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
7027 if (!src_p)
7028 return -EFAULT;
7029
7030 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
7031 if (!dst_p) {
7032 sev_unpin_memory(kvm, src_p, n);
7033 return -EFAULT;
7034 }
7035
7036 /*
7037 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
7038 * memory content (i.e it will write the same memory region with C=1).
7039 * It's possible that the cache may contain the data with C=0, i.e.,
7040 * unencrypted so invalidate it first.
7041 */
7042 sev_clflush_pages(src_p, 1);
7043 sev_clflush_pages(dst_p, 1);
7044
7045 /*
7046 * Since user buffer may not be page aligned, calculate the
7047 * offset within the page.
7048 */
7049 s_off = vaddr & ~PAGE_MASK;
7050 d_off = dst_vaddr & ~PAGE_MASK;
7051 len = min_t(size_t, (PAGE_SIZE - s_off), size);
7052
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007053 if (dec)
7054 ret = __sev_dbg_decrypt_user(kvm,
7055 __sme_page_pa(src_p[0]) + s_off,
7056 dst_vaddr,
7057 __sme_page_pa(dst_p[0]) + d_off,
7058 len, &argp->error);
7059 else
7060 ret = __sev_dbg_encrypt_user(kvm,
7061 __sme_page_pa(src_p[0]) + s_off,
7062 vaddr,
7063 __sme_page_pa(dst_p[0]) + d_off,
7064 dst_vaddr,
7065 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007066
David Rientjesb86bc282019-03-25 11:47:31 -07007067 sev_unpin_memory(kvm, src_p, n);
7068 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007069
7070 if (ret)
7071 goto err;
7072
7073 next_vaddr = vaddr + len;
7074 dst_vaddr = dst_vaddr + len;
7075 size -= len;
7076 }
7077err:
7078 return ret;
7079}
7080
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007081static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
7082{
Sean Christopherson81811c12018-03-20 12:17:21 -07007083 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007084 struct sev_data_launch_secret *data;
7085 struct kvm_sev_launch_secret params;
7086 struct page **pages;
7087 void *blob, *hdr;
7088 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007089 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007090
7091 if (!sev_guest(kvm))
7092 return -ENOTTY;
7093
7094 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
7095 return -EFAULT;
7096
7097 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
7098 if (!pages)
7099 return -ENOMEM;
7100
7101 /*
7102 * The secret must be copied into contiguous memory region, lets verify
7103 * that userspace memory pages are contiguous before we issue command.
7104 */
7105 if (get_num_contig_pages(0, pages, n) != n) {
7106 ret = -EINVAL;
7107 goto e_unpin_memory;
7108 }
7109
7110 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08007111 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007112 if (!data)
7113 goto e_unpin_memory;
7114
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007115 offset = params.guest_uaddr & (PAGE_SIZE - 1);
7116 data->guest_address = __sme_page_pa(pages[0]) + offset;
7117 data->guest_len = params.guest_len;
7118
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007119 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
7120 if (IS_ERR(blob)) {
7121 ret = PTR_ERR(blob);
7122 goto e_free;
7123 }
7124
7125 data->trans_address = __psp_pa(blob);
7126 data->trans_len = params.trans_len;
7127
7128 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
7129 if (IS_ERR(hdr)) {
7130 ret = PTR_ERR(hdr);
7131 goto e_free_blob;
7132 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007133 data->hdr_address = __psp_pa(hdr);
7134 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007135
7136 data->handle = sev->handle;
7137 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
7138
7139 kfree(hdr);
7140
7141e_free_blob:
7142 kfree(blob);
7143e_free:
7144 kfree(data);
7145e_unpin_memory:
7146 sev_unpin_memory(kvm, pages, n);
7147 return ret;
7148}
7149
Brijesh Singh1654efc2017-12-04 10:57:34 -06007150static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
7151{
7152 struct kvm_sev_cmd sev_cmd;
7153 int r;
7154
7155 if (!svm_sev_enabled())
7156 return -ENOTTY;
7157
7158 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7159 return -EFAULT;
7160
7161 mutex_lock(&kvm->lock);
7162
7163 switch (sev_cmd.id) {
7164 case KVM_SEV_INIT:
7165 r = sev_guest_init(kvm, &sev_cmd);
7166 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007167 case KVM_SEV_LAUNCH_START:
7168 r = sev_launch_start(kvm, &sev_cmd);
7169 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007170 case KVM_SEV_LAUNCH_UPDATE_DATA:
7171 r = sev_launch_update_data(kvm, &sev_cmd);
7172 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007173 case KVM_SEV_LAUNCH_MEASURE:
7174 r = sev_launch_measure(kvm, &sev_cmd);
7175 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007176 case KVM_SEV_LAUNCH_FINISH:
7177 r = sev_launch_finish(kvm, &sev_cmd);
7178 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007179 case KVM_SEV_GUEST_STATUS:
7180 r = sev_guest_status(kvm, &sev_cmd);
7181 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007182 case KVM_SEV_DBG_DECRYPT:
7183 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7184 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007185 case KVM_SEV_DBG_ENCRYPT:
7186 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7187 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007188 case KVM_SEV_LAUNCH_SECRET:
7189 r = sev_launch_secret(kvm, &sev_cmd);
7190 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007191 default:
7192 r = -EINVAL;
7193 goto out;
7194 }
7195
7196 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7197 r = -EFAULT;
7198
7199out:
7200 mutex_unlock(&kvm->lock);
7201 return r;
7202}
7203
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007204static int svm_register_enc_region(struct kvm *kvm,
7205 struct kvm_enc_region *range)
7206{
Sean Christopherson81811c12018-03-20 12:17:21 -07007207 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007208 struct enc_region *region;
7209 int ret = 0;
7210
7211 if (!sev_guest(kvm))
7212 return -ENOTTY;
7213
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007214 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7215 return -EINVAL;
7216
Ben Gardon1ec69642019-02-11 11:02:51 -08007217 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007218 if (!region)
7219 return -ENOMEM;
7220
7221 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7222 if (!region->pages) {
7223 ret = -ENOMEM;
7224 goto e_free;
7225 }
7226
7227 /*
7228 * The guest may change the memory encryption attribute from C=0 -> C=1
7229 * or vice versa for this memory range. Lets make sure caches are
7230 * flushed to ensure that guest data gets written into memory with
7231 * correct C-bit.
7232 */
7233 sev_clflush_pages(region->pages, region->npages);
7234
7235 region->uaddr = range->addr;
7236 region->size = range->size;
7237
7238 mutex_lock(&kvm->lock);
7239 list_add_tail(&region->list, &sev->regions_list);
7240 mutex_unlock(&kvm->lock);
7241
7242 return ret;
7243
7244e_free:
7245 kfree(region);
7246 return ret;
7247}
7248
7249static struct enc_region *
7250find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7251{
Sean Christopherson81811c12018-03-20 12:17:21 -07007252 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007253 struct list_head *head = &sev->regions_list;
7254 struct enc_region *i;
7255
7256 list_for_each_entry(i, head, list) {
7257 if (i->uaddr == range->addr &&
7258 i->size == range->size)
7259 return i;
7260 }
7261
7262 return NULL;
7263}
7264
7265
7266static int svm_unregister_enc_region(struct kvm *kvm,
7267 struct kvm_enc_region *range)
7268{
7269 struct enc_region *region;
7270 int ret;
7271
7272 mutex_lock(&kvm->lock);
7273
7274 if (!sev_guest(kvm)) {
7275 ret = -ENOTTY;
7276 goto failed;
7277 }
7278
7279 region = find_enc_region(kvm, range);
7280 if (!region) {
7281 ret = -EINVAL;
7282 goto failed;
7283 }
7284
7285 __unregister_enc_region_locked(kvm, region);
7286
7287 mutex_unlock(&kvm->lock);
7288 return 0;
7289
7290failed:
7291 mutex_unlock(&kvm->lock);
7292 return ret;
7293}
7294
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007295static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7296{
Liran Alon118154b2019-07-17 02:56:58 +03007297 unsigned long cr4 = kvm_read_cr4(vcpu);
7298 bool smep = cr4 & X86_CR4_SMEP;
7299 bool smap = cr4 & X86_CR4_SMAP;
7300 bool is_user = svm_get_cpl(vcpu) == 3;
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007301
7302 /*
Liran Alon118154b2019-07-17 02:56:58 +03007303 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7304 *
7305 * Errata:
7306 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7307 * possible that CPU microcode implementing DecodeAssist will fail
7308 * to read bytes of instruction which caused #NPF. In this case,
7309 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7310 * return 0 instead of the correct guest instruction bytes.
7311 *
7312 * This happens because CPU microcode reading instruction bytes
7313 * uses a special opcode which attempts to read data using CPL=0
7314 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7315 * fault, it gives up and returns no instruction bytes.
7316 *
7317 * Detection:
7318 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7319 * returned 0 in GuestIntrBytes field of the VMCB.
7320 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7321 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7322 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7323 * a SMEP fault instead of #NPF).
7324 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7325 * As most guests enable SMAP if they have also enabled SMEP, use above
7326 * logic in order to attempt minimize false-positive of detecting errata
7327 * while still preserving all cases semantic correctness.
7328 *
7329 * Workaround:
7330 * To determine what instruction the guest was executing, the hypervisor
7331 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007332 *
7333 * In non SEV guest, hypervisor will be able to read the guest
7334 * memory to decode the instruction pointer when insn_len is zero
7335 * so we return true to indicate that decoding is possible.
7336 *
7337 * But in the SEV guest, the guest memory is encrypted with the
7338 * guest specific key and hypervisor will not be able to decode the
7339 * instruction pointer so we will not able to workaround it. Lets
7340 * print the error and request to kill the guest.
7341 */
Liran Alon118154b2019-07-17 02:56:58 +03007342 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007343 if (!sev_guest(vcpu->kvm))
7344 return true;
7345
Liran Alon118154b2019-07-17 02:56:58 +03007346 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007347 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7348 }
7349
7350 return false;
7351}
7352
Liran Alon4b9852f2019-08-26 13:24:49 +03007353static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7354{
7355 struct vcpu_svm *svm = to_svm(vcpu);
7356
7357 /*
7358 * TODO: Last condition latch INIT signals on vCPU when
7359 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
7360 * To properly emulate the INIT intercept, SVM should implement
7361 * kvm_x86_ops->check_nested_events() and call nested_svm_vmexit()
7362 * there if an INIT signal is pending.
7363 */
7364 return !gif_set(svm) ||
7365 (svm->vmcb->control.intercept & (1ULL << INTERCEPT_INIT));
7366}
7367
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007368static bool svm_check_apicv_inhibit_reasons(ulong bit)
7369{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007370 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
Suravee Suthikulpanit9a0bf052019-11-14 14:15:14 -06007371 BIT(APICV_INHIBIT_REASON_HYPERV) |
Suravee Suthikulpanitf3515dc2019-11-14 14:15:15 -06007372 BIT(APICV_INHIBIT_REASON_NESTED) |
Suravee Suthikulpanite2ed4072019-11-14 14:15:16 -06007373 BIT(APICV_INHIBIT_REASON_IRQWIN) |
7374 BIT(APICV_INHIBIT_REASON_PIT_REINJ);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007375
7376 return supported & BIT(bit);
7377}
7378
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06007379static void svm_pre_update_apicv_exec_ctrl(struct kvm *kvm, bool activate)
7380{
7381 avic_update_access_page(kvm, activate);
7382}
7383
Kees Cook404f6aa2016-08-08 16:29:06 -07007384static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007385 .cpu_has_kvm_support = has_svm,
7386 .disabled_by_bios = is_disabled,
7387 .hardware_setup = svm_hardware_setup,
7388 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007389 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007390 .hardware_enable = svm_hardware_enable,
7391 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007392 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007393 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007394
7395 .vcpu_create = svm_create_vcpu,
7396 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007397 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007398
Sean Christopherson434a1e92018-03-20 12:17:18 -07007399 .vm_alloc = svm_vm_alloc,
7400 .vm_free = svm_vm_free,
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007401 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007402 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007403
Avi Kivity04d2cc72007-09-10 18:10:54 +03007404 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007405 .vcpu_load = svm_vcpu_load,
7406 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007407 .vcpu_blocking = svm_vcpu_blocking,
7408 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007409
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007410 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007411 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007412 .get_msr = svm_get_msr,
7413 .set_msr = svm_set_msr,
7414 .get_segment_base = svm_get_segment_base,
7415 .get_segment = svm_get_segment,
7416 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007417 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007418 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007419 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007420 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007421 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007422 .set_cr3 = svm_set_cr3,
7423 .set_cr4 = svm_set_cr4,
7424 .set_efer = svm_set_efer,
7425 .get_idt = svm_get_idt,
7426 .set_idt = svm_set_idt,
7427 .get_gdt = svm_get_gdt,
7428 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007429 .get_dr6 = svm_get_dr6,
7430 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007431 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007432 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007433 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007434 .get_rflags = svm_get_rflags,
7435 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007436
Avi Kivity6aa8b732006-12-10 02:21:36 -08007437 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007438 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007439
Avi Kivity6aa8b732006-12-10 02:21:36 -08007440 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007441 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007442 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007443 .set_interrupt_shadow = svm_set_interrupt_shadow,
7444 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007445 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007446 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007447 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007448 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007449 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007450 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007451 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007452 .get_nmi_mask = svm_get_nmi_mask,
7453 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007454 .enable_nmi_window = enable_nmi_window,
7455 .enable_irq_window = enable_irq_window,
7456 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007457 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007458 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007459 .check_apicv_inhibit_reasons = svm_check_apicv_inhibit_reasons,
Suravee Suthikulpanit2de9d0c2019-11-14 14:15:11 -06007460 .pre_update_apicv_exec_ctrl = svm_pre_update_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007461 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007462 .hwapic_irr_update = svm_hwapic_irr_update,
7463 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007464 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007465 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007466
7467 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007468 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007469 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007470 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007471
Avi Kivity586f9602010-11-18 13:09:54 +02007472 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007473
Sheng Yang17cc3932010-01-05 19:02:27 +08007474 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007475
7476 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007477
7478 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007479 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007480 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007481 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007482 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007483 .pt_supported = svm_pt_supported,
John Allena47970e2019-12-19 14:17:59 -06007484 .pku_supported = svm_pku_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007485
7486 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007487
7488 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007489
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007490 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007491 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007492
7493 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007494
7495 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007496 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007497
Sean Christophersond264ee02018-08-27 15:21:12 -07007498 .request_immediate_exit = __kvm_request_immediate_exit,
7499
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007500 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007501
7502 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007503 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08007504 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007505 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007506 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007507
Ladi Prosek72d7b372017-10-11 16:54:41 +02007508 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007509 .pre_enter_smm = svm_pre_enter_smm,
7510 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007511 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007512
7513 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007514 .mem_enc_reg_region = svm_register_enc_region,
7515 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007516
Vitaly Kuznetsov956e2552019-08-28 09:59:04 +02007517 .nested_enable_evmcs = NULL,
Vitaly Kuznetsovea152982019-08-27 18:04:02 +02007518 .nested_get_evmcs_version = NULL,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007519
7520 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Liran Alon4b9852f2019-08-26 13:24:49 +03007521
7522 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007523};
7524
7525static int __init svm_init(void)
7526{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007527 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007528 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007529}
7530
7531static void __exit svm_exit(void)
7532{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007533 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007534}
7535
7536module_init(svm_init)
7537module_exit(svm_exit)