blob: ed39f72faeaf65776e7bc6f477de076f8e7a5800 [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);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390
Joerg Roedel410e4d52009-08-07 11:49:44 +0200391static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100392static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800393static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
395 bool has_error_code, u32 error_code);
396
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100397enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100398 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
399 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100400 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100401 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100402 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100403 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100404 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100405 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100406 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100407 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100408 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100409 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500410 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
411 * AVIC PHYSICAL_TABLE pointer,
412 * AVIC LOGICAL_TABLE pointer
413 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100414 VMCB_DIRTY_MAX,
415};
416
Joerg Roedel0574dec2010-12-03 11:45:58 +0100417/* TPR and CR2 are always written before VMRUN */
418#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100419
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500420#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
421
Tom Lendacky33af3a72019-10-03 21:17:48 +0000422static int sev_flush_asids(void);
423static DECLARE_RWSEM(sev_deactivate_lock);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +0000424static DEFINE_MUTEX(sev_bitmap_lock);
Brijesh Singhed3cd232017-12-04 10:57:32 -0600425static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600426static unsigned int min_sev_asid;
427static unsigned long *sev_asid_bitmap;
Tom Lendacky33af3a72019-10-03 21:17:48 +0000428static unsigned long *sev_reclaim_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600429#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600430
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600431struct enc_region {
432 struct list_head list;
433 unsigned long npages;
434 struct page **pages;
435 unsigned long uaddr;
436 unsigned long size;
437};
438
Sean Christopherson81811c12018-03-20 12:17:21 -0700439
440static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
441{
442 return container_of(kvm, struct kvm_svm, kvm);
443}
444
Brijesh Singh1654efc2017-12-04 10:57:34 -0600445static inline bool svm_sev_enabled(void)
446{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200447 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600448}
449
450static inline bool sev_guest(struct kvm *kvm)
451{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200452#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700453 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600454
455 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200456#else
457 return false;
458#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600459}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600460
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600461static inline int sev_get_asid(struct kvm *kvm)
462{
Sean Christopherson81811c12018-03-20 12:17:21 -0700463 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600464
465 return sev->asid;
466}
467
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100468static inline void mark_all_dirty(struct vmcb *vmcb)
469{
470 vmcb->control.clean = 0;
471}
472
473static inline void mark_all_clean(struct vmcb *vmcb)
474{
475 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
476 & ~VMCB_ALWAYS_DIRTY_MASK;
477}
478
479static inline void mark_dirty(struct vmcb *vmcb, int bit)
480{
481 vmcb->control.clean &= ~(1 << bit);
482}
483
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
485{
486 return container_of(vcpu, struct vcpu_svm, vcpu);
487}
488
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500489static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
490{
491 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
492 mark_dirty(svm->vmcb, VMCB_AVIC);
493}
494
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500495static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
496{
497 struct vcpu_svm *svm = to_svm(vcpu);
498 u64 *entry = svm->avic_physical_id_cache;
499
500 if (!entry)
501 return false;
502
503 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
504}
505
Joerg Roedel384c6362010-11-30 18:03:56 +0100506static void recalc_intercepts(struct vcpu_svm *svm)
507{
508 struct vmcb_control_area *c, *h;
509 struct nested_state *g;
510
Joerg Roedel116a0a22010-12-03 11:45:49 +0100511 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
512
Joerg Roedel384c6362010-11-30 18:03:56 +0100513 if (!is_guest_mode(&svm->vcpu))
514 return;
515
516 c = &svm->vmcb->control;
517 h = &svm->nested.hsave->control;
518 g = &svm->nested;
519
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100520 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100521 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100522 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100523 c->intercept = h->intercept | g->intercept;
524}
525
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100526static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
527{
528 if (is_guest_mode(&svm->vcpu))
529 return svm->nested.hsave;
530 else
531 return svm->vmcb;
532}
533
534static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
535{
536 struct vmcb *vmcb = get_host_vmcb(svm);
537
538 vmcb->control.intercept_cr |= (1U << bit);
539
540 recalc_intercepts(svm);
541}
542
543static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
544{
545 struct vmcb *vmcb = get_host_vmcb(svm);
546
547 vmcb->control.intercept_cr &= ~(1U << bit);
548
549 recalc_intercepts(svm);
550}
551
552static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
553{
554 struct vmcb *vmcb = get_host_vmcb(svm);
555
556 return vmcb->control.intercept_cr & (1U << bit);
557}
558
Paolo Bonzini5315c712014-03-03 13:08:29 +0100559static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100560{
561 struct vmcb *vmcb = get_host_vmcb(svm);
562
Paolo Bonzini5315c712014-03-03 13:08:29 +0100563 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
564 | (1 << INTERCEPT_DR1_READ)
565 | (1 << INTERCEPT_DR2_READ)
566 | (1 << INTERCEPT_DR3_READ)
567 | (1 << INTERCEPT_DR4_READ)
568 | (1 << INTERCEPT_DR5_READ)
569 | (1 << INTERCEPT_DR6_READ)
570 | (1 << INTERCEPT_DR7_READ)
571 | (1 << INTERCEPT_DR0_WRITE)
572 | (1 << INTERCEPT_DR1_WRITE)
573 | (1 << INTERCEPT_DR2_WRITE)
574 | (1 << INTERCEPT_DR3_WRITE)
575 | (1 << INTERCEPT_DR4_WRITE)
576 | (1 << INTERCEPT_DR5_WRITE)
577 | (1 << INTERCEPT_DR6_WRITE)
578 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100579
580 recalc_intercepts(svm);
581}
582
Paolo Bonzini5315c712014-03-03 13:08:29 +0100583static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100584{
585 struct vmcb *vmcb = get_host_vmcb(svm);
586
Paolo Bonzini5315c712014-03-03 13:08:29 +0100587 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100588
589 recalc_intercepts(svm);
590}
591
Joerg Roedel18c918c2010-11-30 18:03:59 +0100592static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
593{
594 struct vmcb *vmcb = get_host_vmcb(svm);
595
596 vmcb->control.intercept_exceptions |= (1U << bit);
597
598 recalc_intercepts(svm);
599}
600
601static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
602{
603 struct vmcb *vmcb = get_host_vmcb(svm);
604
605 vmcb->control.intercept_exceptions &= ~(1U << bit);
606
607 recalc_intercepts(svm);
608}
609
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100610static inline void set_intercept(struct vcpu_svm *svm, int bit)
611{
612 struct vmcb *vmcb = get_host_vmcb(svm);
613
614 vmcb->control.intercept |= (1ULL << bit);
615
616 recalc_intercepts(svm);
617}
618
619static inline void clr_intercept(struct vcpu_svm *svm, int bit)
620{
621 struct vmcb *vmcb = get_host_vmcb(svm);
622
623 vmcb->control.intercept &= ~(1ULL << bit);
624
625 recalc_intercepts(svm);
626}
627
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500628static inline bool vgif_enabled(struct vcpu_svm *svm)
629{
630 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
631}
632
Joerg Roedel2af91942009-08-07 11:49:28 +0200633static inline void enable_gif(struct vcpu_svm *svm)
634{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500635 if (vgif_enabled(svm))
636 svm->vmcb->control.int_ctl |= V_GIF_MASK;
637 else
638 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200639}
640
641static inline void disable_gif(struct vcpu_svm *svm)
642{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500643 if (vgif_enabled(svm))
644 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
645 else
646 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200647}
648
649static inline bool gif_set(struct vcpu_svm *svm)
650{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500651 if (vgif_enabled(svm))
652 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
653 else
654 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200655}
656
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657static unsigned long iopm_base;
658
659struct kvm_ldttss_desc {
660 u16 limit0;
661 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100662 unsigned base1:8, type:5, dpl:2, p:1;
663 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800664 u32 base3;
665 u32 zero1;
666} __attribute__((packed));
667
668struct svm_cpu_data {
669 int cpu;
670
Avi Kivity5008fdf2007-04-02 13:05:50 +0300671 u64 asid_generation;
672 u32 max_asid;
673 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600674 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675 struct kvm_ldttss_desc *tss_desc;
676
677 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100678 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600679
680 /* index = sev_asid, value = vmcb pointer */
681 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682};
683
684static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
685
Mathias Krause09941fb2012-08-30 01:30:20 +0200686static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800687
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200688#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800689#define MSRS_RANGE_SIZE 2048
690#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
691
Joerg Roedel455716f2010-03-01 15:34:35 +0100692static u32 svm_msrpm_offset(u32 msr)
693{
694 u32 offset;
695 int i;
696
697 for (i = 0; i < NUM_MSR_MAPS; i++) {
698 if (msr < msrpm_ranges[i] ||
699 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
700 continue;
701
702 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
703 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
704
705 /* Now we have the u8 offset - but need the u32 offset */
706 return offset / 4;
707 }
708
709 /* MSR not in any range */
710 return MSR_INVALID;
711}
712
Avi Kivity6aa8b732006-12-10 02:21:36 -0800713#define MAX_INST_SIZE 15
714
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715static inline void clgi(void)
716{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100717 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718}
719
720static inline void stgi(void)
721{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100722 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723}
724
725static inline void invlpga(unsigned long addr, u32 asid)
726{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100727 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728}
729
Yu Zhang855feb62017-08-24 20:27:55 +0800730static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200731{
732#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800733 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200734#else
735 return PT32E_ROOT_LEVEL;
736#endif
737}
738
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
740{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000741 vcpu->arch.efer = efer;
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100742
743 if (!npt_enabled) {
744 /* Shadow paging assumes NX to be available. */
745 efer |= EFER_NX;
746
747 if (!(efer & EFER_LMA))
748 efer &= ~EFER_LME;
749 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750
Alexander Graf9962d032008-11-25 20:17:02 +0100751 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100752 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800753}
754
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755static int is_external_interrupt(u32 info)
756{
757 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
758 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
759}
760
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200761static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400762{
763 struct vcpu_svm *svm = to_svm(vcpu);
764 u32 ret = 0;
765
766 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200767 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
768 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400769}
770
771static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
772{
773 struct vcpu_svm *svm = to_svm(vcpu);
774
775 if (mask == 0)
776 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
777 else
778 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
779
780}
781
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200782static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800783{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400784 struct vcpu_svm *svm = to_svm(vcpu);
785
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200786 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200787 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200788 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400789 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200790
Sean Christopherson1957aa62019-08-27 14:40:39 -0700791 if (!svm->next_rip) {
792 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
793 return 0;
794 } else {
795 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
796 pr_err("%s: ip 0x%lx next 0x%llx\n",
797 __func__, kvm_rip_read(vcpu), svm->next_rip);
798 kvm_rip_write(vcpu, svm->next_rip);
799 }
Glauber Costa2809f5d2009-05-12 16:21:05 -0400800 svm_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200801
Sean Christopherson60fc3d02019-08-27 14:40:38 -0700802 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803}
804
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700805static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100806{
807 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700808 unsigned nr = vcpu->arch.exception.nr;
809 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700810 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700811 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100812
Joerg Roedele0231712010-02-24 18:59:10 +0100813 /*
814 * If we are within a nested VM we'd better #VMEXIT and let the guest
815 * handle the exception
816 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200817 if (!reinject &&
818 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100819 return;
820
Jim Mattsonda998b42018-10-16 14:29:22 -0700821 kvm_deliver_exception_payload(&svm->vcpu);
822
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200823 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100824 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
825
826 /*
827 * For guest debugging where we have to reinject #BP if some
828 * INT3 is guest-owned:
829 * Emulate nRIP by moving RIP forward. Will fail if injection
830 * raises a fault that is not intercepted. Still better than
831 * failing in all cases.
832 */
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +0200833 (void)skip_emulated_instruction(&svm->vcpu);
Jan Kiszka66b71382010-02-23 17:47:56 +0100834 rip = kvm_rip_read(&svm->vcpu);
835 svm->int3_rip = rip + svm->vmcb->save.cs.base;
836 svm->int3_injected = rip - old_rip;
837 }
838
Jan Kiszka116a4752010-02-23 17:47:54 +0100839 svm->vmcb->control.event_inj = nr
840 | SVM_EVTINJ_VALID
841 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
842 | SVM_EVTINJ_TYPE_EXEPT;
843 svm->vmcb->control.event_inj_err = error_code;
844}
845
Joerg Roedel67ec6602010-05-17 14:43:35 +0200846static void svm_init_erratum_383(void)
847{
848 u32 low, high;
849 int err;
850 u64 val;
851
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100852 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200853 return;
854
855 /* Use _safe variants to not break nested virtualization */
856 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
857 if (err)
858 return;
859
860 val |= (1ULL << 47);
861
862 low = lower_32_bits(val);
863 high = upper_32_bits(val);
864
865 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
866
867 erratum_383_found = true;
868}
869
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500870static void svm_init_osvw(struct kvm_vcpu *vcpu)
871{
872 /*
873 * Guests should see errata 400 and 415 as fixed (assuming that
874 * HLT and IO instructions are intercepted).
875 */
876 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
877 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
878
879 /*
880 * By increasing VCPU's osvw.length to 3 we are telling the guest that
881 * all osvw.status bits inside that length, including bit 0 (which is
882 * reserved for erratum 298), are valid. However, if host processor's
883 * osvw_len is 0 then osvw_status[0] carries no information. We need to
884 * be conservative here and therefore we tell the guest that erratum 298
885 * is present (because we really don't know).
886 */
887 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
888 vcpu->arch.osvw.status |= 1;
889}
890
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891static int has_svm(void)
892{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200893 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894
Eduardo Habkost63d11422008-11-17 19:03:20 -0200895 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800896 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 return 0;
898 }
899
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900 return 1;
901}
902
Radim Krčmář13a34e02014-08-28 15:13:03 +0200903static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100905 /* Make sure we clean up behind us */
906 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
907 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
908
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200909 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100910
911 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912}
913
Radim Krčmář13a34e02014-08-28 15:13:03 +0200914static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915{
916
Tejun Heo0fe1e002009-10-29 22:34:14 +0900917 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 struct desc_struct *gdt;
920 int me = raw_smp_processor_id();
921
Alexander Graf10474ae2009-09-15 11:37:46 +0200922 rdmsrl(MSR_EFER, efer);
923 if (efer & EFER_SVME)
924 return -EBUSY;
925
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200927 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200928 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900930 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900931 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200932 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200933 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 }
935
Tejun Heo0fe1e002009-10-29 22:34:14 +0900936 sd->asid_generation = 1;
937 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
938 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600939 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940
Thomas Garnier45fc8752017-03-14 10:05:08 -0700941 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900942 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943
Alexander Graf9962d032008-11-25 20:17:02 +0100944 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945
Linus Torvaldsd0316552009-12-14 09:58:24 -0800946 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200947
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100948 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
949 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500950 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100951 }
952
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500953
954 /*
955 * Get OSVW bits.
956 *
957 * Note that it is possible to have a system with mixed processor
958 * revisions and therefore different OSVW bits. If bits are not the same
959 * on different processors then choose the worst case (i.e. if erratum
960 * is present on one processor and not on another then assume that the
961 * erratum is present everywhere).
962 */
963 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
964 uint64_t len, status = 0;
965 int err;
966
967 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
968 if (!err)
969 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
970 &err);
971
972 if (err)
973 osvw_status = osvw_len = 0;
974 else {
975 if (len < osvw_len)
976 osvw_len = len;
977 osvw_status |= status;
978 osvw_status &= (1ULL << osvw_len) - 1;
979 }
980 } else
981 osvw_status = osvw_len = 0;
982
Joerg Roedel67ec6602010-05-17 14:43:35 +0200983 svm_init_erratum_383();
984
Joerg Roedel1018faa2012-02-29 14:57:32 +0100985 amd_pmu_enable_virt();
986
Alexander Graf10474ae2009-09-15 11:37:46 +0200987 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988}
989
Joerg Roedel0da1db752008-07-02 16:02:11 +0200990static void svm_cpu_uninit(int cpu)
991{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900992 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200993
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200995 return;
996
997 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600998 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900999 __free_page(sd->save_area);
1000 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +02001001}
1002
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003static int svm_cpu_init(int cpu)
1004{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001005 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 int r;
1007
Tejun Heo0fe1e002009-10-29 22:34:14 +09001008 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1009 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001011 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 r = -ENOMEM;
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)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015 goto err_1;
1016
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001017 if (svm_sev_enabled()) {
1018 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001019 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1020 sizeof(void *),
1021 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001022 if (!sd->sev_vmcbs)
1023 goto err_1;
1024 }
1025
Tejun Heo0fe1e002009-10-29 22:34:14 +09001026 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001027
1028 return 0;
1029
1030err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001031 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 return r;
1033
1034}
1035
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001036static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037{
1038 int i;
1039
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001040 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1041 if (direct_access_msrs[i].index == index)
1042 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001044 return false;
1045}
1046
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001047static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1048{
1049 u8 bit_write;
1050 unsigned long tmp;
1051 u32 offset;
1052 u32 *msrpm;
1053
1054 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1055 to_svm(vcpu)->msrpm;
1056
1057 offset = svm_msrpm_offset(msr);
1058 bit_write = 2 * (msr & 0x0f) + 1;
1059 tmp = msrpm[offset];
1060
1061 BUG_ON(offset == MSR_INVALID);
1062
1063 return !!test_bit(bit_write, &tmp);
1064}
1065
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066static void set_msr_interception(u32 *msrpm, unsigned msr,
1067 int read, int write)
1068{
Joerg Roedel455716f2010-03-01 15:34:35 +01001069 u8 bit_read, bit_write;
1070 unsigned long tmp;
1071 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001073 /*
1074 * If this warning triggers extend the direct_access_msrs list at the
1075 * beginning of the file
1076 */
1077 WARN_ON(!valid_msr_intercept(msr));
1078
Joerg Roedel455716f2010-03-01 15:34:35 +01001079 offset = svm_msrpm_offset(msr);
1080 bit_read = 2 * (msr & 0x0f);
1081 bit_write = 2 * (msr & 0x0f) + 1;
1082 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083
Joerg Roedel455716f2010-03-01 15:34:35 +01001084 BUG_ON(offset == MSR_INVALID);
1085
1086 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1087 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1088
1089 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090}
1091
Joerg Roedelf65c2292008-02-13 18:58:46 +01001092static void svm_vcpu_init_msrpm(u32 *msrpm)
1093{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001094 int i;
1095
Joerg Roedelf65c2292008-02-13 18:58:46 +01001096 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1097
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001098 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1099 if (!direct_access_msrs[i].always)
1100 continue;
1101
1102 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1103 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001104}
1105
Joerg Roedel323c3d82010-03-01 15:34:37 +01001106static void add_msr_offset(u32 offset)
1107{
1108 int i;
1109
1110 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1111
1112 /* Offset already in list? */
1113 if (msrpm_offsets[i] == offset)
1114 return;
1115
1116 /* Slot used by another offset? */
1117 if (msrpm_offsets[i] != MSR_INVALID)
1118 continue;
1119
1120 /* Add offset to list */
1121 msrpm_offsets[i] = offset;
1122
1123 return;
1124 }
1125
1126 /*
1127 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1128 * increase MSRPM_OFFSETS in this case.
1129 */
1130 BUG();
1131}
1132
1133static void init_msrpm_offsets(void)
1134{
1135 int i;
1136
1137 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1138
1139 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1140 u32 offset;
1141
1142 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1143 BUG_ON(offset == MSR_INVALID);
1144
1145 add_msr_offset(offset);
1146 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001147}
1148
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001149static void svm_enable_lbrv(struct vcpu_svm *svm)
1150{
1151 u32 *msrpm = svm->msrpm;
1152
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001153 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001154 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1155 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1156 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1157 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1158}
1159
1160static void svm_disable_lbrv(struct vcpu_svm *svm)
1161{
1162 u32 *msrpm = svm->msrpm;
1163
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001164 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001165 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1166 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1167 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1168 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1169}
1170
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001171static void disable_nmi_singlestep(struct vcpu_svm *svm)
1172{
1173 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001174
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001175 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1176 /* Clear our flags if they were not set by the guest */
1177 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1178 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1179 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1180 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1181 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001182}
1183
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001184/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001185 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001186 * when handling AMD IOMMU GALOG notification to schedule in
1187 * a particular vCPU.
1188 */
1189#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001190static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001191static u32 next_vm_id = 0;
1192static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001193static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001194
1195/* Note:
1196 * This function is called from IOMMU driver to notify
1197 * SVM to schedule in a particular vCPU of a particular VM.
1198 */
1199static int avic_ga_log_notifier(u32 ga_tag)
1200{
1201 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001202 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001203 struct kvm_vcpu *vcpu = NULL;
1204 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1205 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1206
1207 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1208
1209 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001210 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1211 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001212 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001213 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001214 break;
1215 }
1216 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1217
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001218 /* Note:
1219 * At this point, the IOMMU should have already set the pending
1220 * bit in the vAPIC backing page. So, we just need to schedule
1221 * in the vcpu.
1222 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001223 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001224 kvm_vcpu_wake_up(vcpu);
1225
1226 return 0;
1227}
1228
Brijesh Singhe9df0942017-12-04 10:57:33 -06001229static __init int sev_hardware_setup(void)
1230{
1231 struct sev_user_data_status *status;
1232 int rc;
1233
1234 /* Maximum number of encrypted guests supported simultaneously */
1235 max_sev_asid = cpuid_ecx(0x8000001F);
1236
1237 if (!max_sev_asid)
1238 return 1;
1239
Brijesh Singh1654efc2017-12-04 10:57:34 -06001240 /* Minimum ASID value that should be used for SEV guest */
1241 min_sev_asid = cpuid_edx(0x8000001F);
1242
Tom Lendacky33af3a72019-10-03 21:17:48 +00001243 /* Initialize SEV ASID bitmaps */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001244 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001245 if (!sev_asid_bitmap)
1246 return 1;
1247
Tom Lendacky33af3a72019-10-03 21:17:48 +00001248 sev_reclaim_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
1249 if (!sev_reclaim_asid_bitmap)
1250 return 1;
1251
Brijesh Singhe9df0942017-12-04 10:57:33 -06001252 status = kmalloc(sizeof(*status), GFP_KERNEL);
1253 if (!status)
1254 return 1;
1255
1256 /*
1257 * Check SEV platform status.
1258 *
1259 * PLATFORM_STATUS can be called in any state, if we failed to query
1260 * the PLATFORM status then either PSP firmware does not support SEV
1261 * feature or SEV firmware is dead.
1262 */
1263 rc = sev_platform_status(status, NULL);
1264 if (rc)
1265 goto err;
1266
1267 pr_info("SEV supported\n");
1268
1269err:
1270 kfree(status);
1271 return rc;
1272}
1273
Babu Moger8566ac82018-03-16 16:37:26 -04001274static void grow_ple_window(struct kvm_vcpu *vcpu)
1275{
1276 struct vcpu_svm *svm = to_svm(vcpu);
1277 struct vmcb_control_area *control = &svm->vmcb->control;
1278 int old = control->pause_filter_count;
1279
1280 control->pause_filter_count = __grow_ple_window(old,
1281 pause_filter_count,
1282 pause_filter_count_grow,
1283 pause_filter_count_max);
1284
Peter Xu4f75bcc2019-09-06 10:17:22 +08001285 if (control->pause_filter_count != old) {
Babu Moger8566ac82018-03-16 16:37:26 -04001286 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001287 trace_kvm_ple_window_update(vcpu->vcpu_id,
1288 control->pause_filter_count, old);
1289 }
Babu Moger8566ac82018-03-16 16:37:26 -04001290}
1291
1292static void shrink_ple_window(struct kvm_vcpu *vcpu)
1293{
1294 struct vcpu_svm *svm = to_svm(vcpu);
1295 struct vmcb_control_area *control = &svm->vmcb->control;
1296 int old = control->pause_filter_count;
1297
1298 control->pause_filter_count =
1299 __shrink_ple_window(old,
1300 pause_filter_count,
1301 pause_filter_count_shrink,
1302 pause_filter_count);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001303 if (control->pause_filter_count != old) {
Babu Moger8566ac82018-03-16 16:37:26 -04001304 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Peter Xu4f75bcc2019-09-06 10:17:22 +08001305 trace_kvm_ple_window_update(vcpu->vcpu_id,
1306 control->pause_filter_count, old);
1307 }
Babu Moger8566ac82018-03-16 16:37:26 -04001308}
1309
Tom Lendacky52918ed2020-01-09 17:42:16 -06001310/*
1311 * The default MMIO mask is a single bit (excluding the present bit),
1312 * which could conflict with the memory encryption bit. Check for
1313 * memory encryption support and override the default MMIO mask if
1314 * memory encryption is enabled.
1315 */
1316static __init void svm_adjust_mmio_mask(void)
1317{
1318 unsigned int enc_bit, mask_bit;
1319 u64 msr, mask;
1320
1321 /* If there is no memory encryption support, use existing mask */
1322 if (cpuid_eax(0x80000000) < 0x8000001f)
1323 return;
1324
1325 /* If memory encryption is not enabled, use existing mask */
1326 rdmsrl(MSR_K8_SYSCFG, msr);
1327 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
1328 return;
1329
1330 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
1331 mask_bit = boot_cpu_data.x86_phys_bits;
1332
1333 /* Increment the mask bit if it is the same as the encryption bit */
1334 if (enc_bit == mask_bit)
1335 mask_bit++;
1336
1337 /*
1338 * If the mask bit location is below 52, then some bits above the
1339 * physical addressing limit will always be reserved, so use the
1340 * rsvd_bits() function to generate the mask. This mask, along with
1341 * the present bit, will be used to generate a page fault with
1342 * PFER.RSV = 1.
1343 *
1344 * If the mask bit location is 52 (or above), then clear the mask.
1345 */
1346 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
1347
1348 kvm_mmu_set_mmio_spte_mask(mask, mask, PT_WRITABLE_MASK | PT_USER_MASK);
1349}
1350
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351static __init int svm_hardware_setup(void)
1352{
1353 int cpu;
1354 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001355 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001356 int r;
1357
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1359
1360 if (!iopm_pages)
1361 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001362
1363 iopm_va = page_address(iopm_pages);
1364 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1366
Joerg Roedel323c3d82010-03-01 15:34:37 +01001367 init_msrpm_offsets();
1368
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001369 if (boot_cpu_has(X86_FEATURE_NX))
1370 kvm_enable_efer_bits(EFER_NX);
1371
Alexander Graf1b2fd702009-02-02 16:23:51 +01001372 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1373 kvm_enable_efer_bits(EFER_FFXSR);
1374
Joerg Roedel92a1f122011-03-25 09:44:51 +01001375 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001376 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001377 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1378 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001379 }
1380
Babu Moger8566ac82018-03-16 16:37:26 -04001381 /* Check for pause filtering support */
1382 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1383 pause_filter_count = 0;
1384 pause_filter_thresh = 0;
1385 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1386 pause_filter_thresh = 0;
1387 }
1388
Alexander Graf236de052008-11-25 20:17:10 +01001389 if (nested) {
1390 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001391 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001392 }
1393
Brijesh Singhe9df0942017-12-04 10:57:33 -06001394 if (sev) {
1395 if (boot_cpu_has(X86_FEATURE_SEV) &&
1396 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1397 r = sev_hardware_setup();
1398 if (r)
1399 sev = false;
1400 } else {
1401 sev = false;
1402 }
1403 }
1404
Tom Lendacky52918ed2020-01-09 17:42:16 -06001405 svm_adjust_mmio_mask();
1406
Zachary Amsden3230bb42009-09-29 11:38:37 -10001407 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 r = svm_cpu_init(cpu);
1409 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001410 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001412
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001413 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001414 npt_enabled = false;
1415
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001416 if (npt_enabled && !npt) {
1417 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1418 npt_enabled = false;
1419 }
1420
Joerg Roedel18552672008-02-07 13:47:41 +01001421 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001422 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001423 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001424 } else
1425 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001426
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001427 if (nrips) {
1428 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1429 nrips = false;
1430 }
1431
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001432 if (avic) {
1433 if (!npt_enabled ||
1434 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001435 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001436 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001437 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001438 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001439
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001440 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1441 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001442 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001443
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001444 if (vls) {
1445 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001446 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001447 !IS_ENABLED(CONFIG_X86_64)) {
1448 vls = false;
1449 } else {
1450 pr_info("Virtual VMLOAD VMSAVE supported\n");
1451 }
1452 }
1453
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001454 if (vgif) {
1455 if (!boot_cpu_has(X86_FEATURE_VGIF))
1456 vgif = false;
1457 else
1458 pr_info("Virtual GIF supported\n");
1459 }
1460
Avi Kivity6aa8b732006-12-10 02:21:36 -08001461 return 0;
1462
Joerg Roedelf65c2292008-02-13 18:58:46 +01001463err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001464 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1465 iopm_base = 0;
1466 return r;
1467}
1468
1469static __exit void svm_hardware_unsetup(void)
1470{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001471 int cpu;
1472
Tom Lendacky33af3a72019-10-03 21:17:48 +00001473 if (svm_sev_enabled()) {
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001474 bitmap_free(sev_asid_bitmap);
Tom Lendacky33af3a72019-10-03 21:17:48 +00001475 bitmap_free(sev_reclaim_asid_bitmap);
1476
1477 sev_flush_asids();
1478 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001479
Zachary Amsden3230bb42009-09-29 11:38:37 -10001480 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001481 svm_cpu_uninit(cpu);
1482
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001484 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485}
1486
1487static void init_seg(struct vmcb_seg *seg)
1488{
1489 seg->selector = 0;
1490 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001491 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 seg->limit = 0xffff;
1493 seg->base = 0;
1494}
1495
1496static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1497{
1498 seg->selector = 0;
1499 seg->attrib = SVM_SELECTOR_P_MASK | type;
1500 seg->limit = 0xffff;
1501 seg->base = 0;
1502}
1503
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001504static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1505{
1506 struct vcpu_svm *svm = to_svm(vcpu);
1507
1508 if (is_guest_mode(vcpu))
1509 return svm->nested.hsave->control.tsc_offset;
1510
1511 return vcpu->arch.tsc_offset;
1512}
1513
Leonid Shatz326e7422018-11-06 12:14:25 +02001514static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001515{
1516 struct vcpu_svm *svm = to_svm(vcpu);
1517 u64 g_tsc_offset = 0;
1518
Joerg Roedel20307532010-11-29 17:51:48 +01001519 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001520 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001521 g_tsc_offset = svm->vmcb->control.tsc_offset -
1522 svm->nested.hsave->control.tsc_offset;
1523 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001524 }
1525
1526 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1527 svm->vmcb->control.tsc_offset - g_tsc_offset,
1528 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001529
1530 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001531
1532 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001533 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001534}
1535
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001536static void avic_init_vmcb(struct vcpu_svm *svm)
1537{
1538 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001539 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001540 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001541 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1542 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001543
1544 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1545 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1546 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1547 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1548 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001549}
1550
Paolo Bonzini56908912015-10-19 11:30:19 +02001551static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552{
Joerg Roedele6101a92008-02-13 18:58:45 +01001553 struct vmcb_control_area *control = &svm->vmcb->control;
1554 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001556 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001557
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001558 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1559 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1560 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1561 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1562 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1563 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001564 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1565 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566
Paolo Bonzini5315c712014-03-03 13:08:29 +01001567 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568
Joerg Roedel18c918c2010-11-30 18:03:59 +01001569 set_exception_intercept(svm, PF_VECTOR);
1570 set_exception_intercept(svm, UD_VECTOR);
1571 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001572 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001573 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001574 /*
1575 * Guest access to VMware backdoor ports could legitimately
1576 * trigger #GP because of TSS I/O permission bitmap.
1577 * We intercept those #GP and allow access to them anyway
1578 * as VMware does.
1579 */
1580 if (enable_vmware_backdoor)
1581 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001583 set_intercept(svm, INTERCEPT_INTR);
1584 set_intercept(svm, INTERCEPT_NMI);
1585 set_intercept(svm, INTERCEPT_SMI);
1586 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001587 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001588 set_intercept(svm, INTERCEPT_CPUID);
1589 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001590 set_intercept(svm, INTERCEPT_INVLPG);
1591 set_intercept(svm, INTERCEPT_INVLPGA);
1592 set_intercept(svm, INTERCEPT_IOIO_PROT);
1593 set_intercept(svm, INTERCEPT_MSR_PROT);
1594 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1595 set_intercept(svm, INTERCEPT_SHUTDOWN);
1596 set_intercept(svm, INTERCEPT_VMRUN);
1597 set_intercept(svm, INTERCEPT_VMMCALL);
1598 set_intercept(svm, INTERCEPT_VMLOAD);
1599 set_intercept(svm, INTERCEPT_VMSAVE);
1600 set_intercept(svm, INTERCEPT_STGI);
1601 set_intercept(svm, INTERCEPT_CLGI);
1602 set_intercept(svm, INTERCEPT_SKINIT);
1603 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001604 set_intercept(svm, INTERCEPT_XSETBV);
Jim Mattson0cb84102019-09-19 15:59:17 -07001605 set_intercept(svm, INTERCEPT_RDPRU);
Brijesh Singh7607b712018-02-19 10:14:44 -06001606 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001607
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001608 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001609 set_intercept(svm, INTERCEPT_MONITOR);
1610 set_intercept(svm, INTERCEPT_MWAIT);
1611 }
1612
Wanpeng Licaa057a2018-03-12 04:53:03 -07001613 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1614 set_intercept(svm, INTERCEPT_HLT);
1615
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001616 control->iopm_base_pa = __sme_set(iopm_base);
1617 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001618 control->int_ctl = V_INTR_MASKING_MASK;
1619
1620 init_seg(&save->es);
1621 init_seg(&save->ss);
1622 init_seg(&save->ds);
1623 init_seg(&save->fs);
1624 init_seg(&save->gs);
1625
1626 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001627 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628 /* Executable/Readable Code Segment */
1629 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1630 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1631 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001632
1633 save->gdtr.limit = 0xffff;
1634 save->idtr.limit = 0xffff;
1635
1636 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1637 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1638
Paolo Bonzini56908912015-10-19 11:30:19 +02001639 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001640 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001641 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001643 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001644
Joerg Roedele0231712010-02-24 18:59:10 +01001645 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001646 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001647 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001649 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001650 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001651
Rusty Russell66aee912007-07-17 23:34:16 +10001652 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001654
1655 if (npt_enabled) {
1656 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001657 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001658 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001659 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001660 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1661 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001662 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001663 save->cr3 = 0;
1664 save->cr4 = 0;
1665 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001666 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001667
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001668 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001669 svm->vcpu.arch.hflags = 0;
1670
Babu Moger8566ac82018-03-16 16:37:26 -04001671 if (pause_filter_count) {
1672 control->pause_filter_count = pause_filter_count;
1673 if (pause_filter_thresh)
1674 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001675 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001676 } else {
1677 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001678 }
1679
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001680 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001681 avic_init_vmcb(svm);
1682
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001683 /*
1684 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1685 * in VMCB and clear intercepts to avoid #VMEXIT.
1686 */
1687 if (vls) {
1688 clr_intercept(svm, INTERCEPT_VMLOAD);
1689 clr_intercept(svm, INTERCEPT_VMSAVE);
1690 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1691 }
1692
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001693 if (vgif) {
1694 clr_intercept(svm, INTERCEPT_STGI);
1695 clr_intercept(svm, INTERCEPT_CLGI);
1696 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1697 }
1698
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001699 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001700 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001701 clr_exception_intercept(svm, UD_VECTOR);
1702 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001703
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001704 mark_all_dirty(svm->vmcb);
1705
Joerg Roedel2af91942009-08-07 11:49:28 +02001706 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001707
1708}
1709
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001710static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1711 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001712{
1713 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001714 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001715
1716 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1717 return NULL;
1718
Sean Christopherson81811c12018-03-20 12:17:21 -07001719 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001720
1721 return &avic_physical_id_table[index];
1722}
1723
1724/**
1725 * Note:
1726 * AVIC hardware walks the nested page table to check permissions,
1727 * but does not use the SPA address specified in the leaf page
1728 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1729 * field of the VMCB. Therefore, we set up the
1730 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1731 */
1732static int avic_init_access_page(struct kvm_vcpu *vcpu)
1733{
1734 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001735 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001736
Wei Wang30510382018-11-12 12:23:14 +00001737 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001738 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001739 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001740
Wei Wang30510382018-11-12 12:23:14 +00001741 ret = __x86_set_memory_region(kvm,
1742 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1743 APIC_DEFAULT_PHYS_BASE,
1744 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001745 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001746 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001747
1748 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001749out:
1750 mutex_unlock(&kvm->slots_lock);
1751 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001752}
1753
1754static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1755{
1756 int ret;
1757 u64 *entry, new_entry;
1758 int id = vcpu->vcpu_id;
1759 struct vcpu_svm *svm = to_svm(vcpu);
1760
1761 ret = avic_init_access_page(vcpu);
1762 if (ret)
1763 return ret;
1764
1765 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1766 return -EINVAL;
1767
1768 if (!svm->vcpu.arch.apic->regs)
1769 return -EINVAL;
1770
1771 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1772
1773 /* Setting AVIC backing page address in the phy APIC ID table */
1774 entry = avic_get_physical_id_entry(vcpu, id);
1775 if (!entry)
1776 return -EINVAL;
1777
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001778 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1779 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1780 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001781 WRITE_ONCE(*entry, new_entry);
1782
1783 svm->avic_physical_id_cache = entry;
1784
1785 return 0;
1786}
1787
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001788static void sev_asid_free(int asid)
Brijesh Singh1654efc2017-12-04 10:57:34 -06001789{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001790 struct svm_cpu_data *sd;
1791 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001792
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001793 mutex_lock(&sev_bitmap_lock);
1794
Brijesh Singh1654efc2017-12-04 10:57:34 -06001795 pos = asid - 1;
Tom Lendacky33af3a72019-10-03 21:17:48 +00001796 __set_bit(pos, sev_reclaim_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001797
1798 for_each_possible_cpu(cpu) {
1799 sd = per_cpu(svm_data, cpu);
1800 sd->sev_vmcbs[pos] = NULL;
1801 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001802
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001803 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001804}
1805
Brijesh Singh59414c92017-12-04 10:57:35 -06001806static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1807{
1808 struct sev_data_decommission *decommission;
1809 struct sev_data_deactivate *data;
1810
1811 if (!handle)
1812 return;
1813
1814 data = kzalloc(sizeof(*data), GFP_KERNEL);
1815 if (!data)
1816 return;
1817
1818 /* deactivate handle */
1819 data->handle = handle;
Tom Lendacky83af5e62019-10-03 21:17:45 +00001820
Tom Lendacky33af3a72019-10-03 21:17:48 +00001821 /* Guard DEACTIVATE against WBINVD/DF_FLUSH used in ASID recycling */
1822 down_read(&sev_deactivate_lock);
Brijesh Singh59414c92017-12-04 10:57:35 -06001823 sev_guest_deactivate(data, NULL);
Tom Lendacky33af3a72019-10-03 21:17:48 +00001824 up_read(&sev_deactivate_lock);
Tom Lendacky83af5e62019-10-03 21:17:45 +00001825
Brijesh Singh59414c92017-12-04 10:57:35 -06001826 kfree(data);
1827
1828 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1829 if (!decommission)
1830 return;
1831
1832 /* decommission handle */
1833 decommission->handle = handle;
1834 sev_guest_decommission(decommission, NULL);
1835
1836 kfree(decommission);
1837}
1838
Brijesh Singh89c50582017-12-04 10:57:35 -06001839static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1840 unsigned long ulen, unsigned long *n,
1841 int write)
1842{
Sean Christopherson81811c12018-03-20 12:17:21 -07001843 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001844 unsigned long npages, npinned, size;
1845 unsigned long locked, lock_limit;
1846 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001847 unsigned long first, last;
1848
1849 if (ulen == 0 || uaddr + ulen < uaddr)
1850 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001851
1852 /* Calculate number of pages. */
1853 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1854 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1855 npages = (last - first + 1);
1856
1857 locked = sev->pages_locked + npages;
1858 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1859 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1860 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1861 return NULL;
1862 }
1863
1864 /* Avoid using vmalloc for smaller buffers. */
1865 size = npages * sizeof(struct page *);
1866 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001867 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1868 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001869 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001870 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001871
1872 if (!pages)
1873 return NULL;
1874
1875 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001876 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001877 if (npinned != npages) {
1878 pr_err("SEV: Failure locking %lu pages.\n", npages);
1879 goto err;
1880 }
1881
1882 *n = npages;
1883 sev->pages_locked = locked;
1884
1885 return pages;
1886
1887err:
1888 if (npinned > 0)
1889 release_pages(pages, npinned);
1890
1891 kvfree(pages);
1892 return NULL;
1893}
1894
1895static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1896 unsigned long npages)
1897{
Sean Christopherson81811c12018-03-20 12:17:21 -07001898 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001899
1900 release_pages(pages, npages);
1901 kvfree(pages);
1902 sev->pages_locked -= npages;
1903}
1904
1905static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1906{
1907 uint8_t *page_virtual;
1908 unsigned long i;
1909
1910 if (npages == 0 || pages == NULL)
1911 return;
1912
1913 for (i = 0; i < npages; i++) {
1914 page_virtual = kmap_atomic(pages[i]);
1915 clflush_cache_range(page_virtual, PAGE_SIZE);
1916 kunmap_atomic(page_virtual);
1917 }
1918}
1919
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001920static void __unregister_enc_region_locked(struct kvm *kvm,
1921 struct enc_region *region)
1922{
1923 /*
1924 * The guest may change the memory encryption attribute from C=0 -> C=1
1925 * or vice versa for this memory range. Lets make sure caches are
1926 * flushed to ensure that guest data gets written into memory with
1927 * correct C-bit.
1928 */
1929 sev_clflush_pages(region->pages, region->npages);
1930
1931 sev_unpin_memory(kvm, region->pages, region->npages);
1932 list_del(&region->list);
1933 kfree(region);
1934}
1935
Sean Christopherson434a1e92018-03-20 12:17:18 -07001936static struct kvm *svm_vm_alloc(void)
1937{
Ben Gardon1ec69642019-02-11 11:02:51 -08001938 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1939 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1940 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001941 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001942}
1943
1944static void svm_vm_free(struct kvm *kvm)
1945{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001946 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001947}
1948
Brijesh Singh1654efc2017-12-04 10:57:34 -06001949static void sev_vm_destroy(struct kvm *kvm)
1950{
Sean Christopherson81811c12018-03-20 12:17:21 -07001951 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001952 struct list_head *head = &sev->regions_list;
1953 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001954
Brijesh Singh1654efc2017-12-04 10:57:34 -06001955 if (!sev_guest(kvm))
1956 return;
1957
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001958 mutex_lock(&kvm->lock);
1959
1960 /*
1961 * if userspace was terminated before unregistering the memory regions
1962 * then lets unpin all the registered memory.
1963 */
1964 if (!list_empty(head)) {
1965 list_for_each_safe(pos, q, head) {
1966 __unregister_enc_region_locked(kvm,
1967 list_entry(pos, struct enc_region, list));
1968 }
1969 }
1970
1971 mutex_unlock(&kvm->lock);
1972
Brijesh Singh59414c92017-12-04 10:57:35 -06001973 sev_unbind_asid(kvm, sev->handle);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00001974 sev_asid_free(sev->asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001975}
1976
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001977static void avic_vm_destroy(struct kvm *kvm)
1978{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001979 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001980 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001981
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001982 if (!avic)
1983 return;
1984
Sean Christopherson81811c12018-03-20 12:17:21 -07001985 if (kvm_svm->avic_logical_id_table_page)
1986 __free_page(kvm_svm->avic_logical_id_table_page);
1987 if (kvm_svm->avic_physical_id_table_page)
1988 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001989
1990 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001991 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001992 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001993}
1994
Brijesh Singh1654efc2017-12-04 10:57:34 -06001995static void svm_vm_destroy(struct kvm *kvm)
1996{
1997 avic_vm_destroy(kvm);
1998 sev_vm_destroy(kvm);
1999}
2000
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002001static int avic_vm_init(struct kvm *kvm)
2002{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002003 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002004 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07002005 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
2006 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002007 struct page *p_page;
2008 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002009 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002010
2011 if (!avic)
2012 return 0;
2013
2014 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002015 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002016 if (!p_page)
2017 goto free_avic;
2018
Sean Christopherson81811c12018-03-20 12:17:21 -07002019 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002020 clear_page(page_address(p_page));
2021
2022 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08002023 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002024 if (!l_page)
2025 goto free_avic;
2026
Sean Christopherson81811c12018-03-20 12:17:21 -07002027 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002028 clear_page(page_address(l_page));
2029
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002030 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002031 again:
2032 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
2033 if (vm_id == 0) { /* id is 1-based, zero is not okay */
2034 next_vm_id_wrapped = 1;
2035 goto again;
2036 }
2037 /* Is it still in use? Only possible if wrapped at least once */
2038 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07002039 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
2040 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002041 goto again;
2042 }
2043 }
Sean Christopherson81811c12018-03-20 12:17:21 -07002044 kvm_svm->avic_vm_id = vm_id;
2045 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002046 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
2047
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002048 return 0;
2049
2050free_avic:
2051 avic_vm_destroy(kvm);
2052 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053}
2054
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06002055static int svm_vm_init(struct kvm *kvm)
2056{
2057 if (avic) {
2058 int ret = avic_vm_init(kvm);
2059 if (ret)
2060 return ret;
2061 }
2062
2063 kvm_apicv_init(kvm, avic && irqchip_split(kvm));
2064 return 0;
2065}
2066
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002067static inline int
2068avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002069{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002070 int ret = 0;
2071 unsigned long flags;
2072 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002073 struct vcpu_svm *svm = to_svm(vcpu);
2074
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002075 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2076 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002077
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002078 /*
2079 * Here, we go through the per-vcpu ir_list to update all existing
2080 * interrupt remapping table entry targeting this vcpu.
2081 */
2082 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002083
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002084 if (list_empty(&svm->ir_list))
2085 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002086
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002087 list_for_each_entry(ir, &svm->ir_list, node) {
2088 ret = amd_iommu_update_ga(cpu, r, ir->data);
2089 if (ret)
2090 break;
2091 }
2092out:
2093 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2094 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002095}
2096
2097static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2098{
2099 u64 entry;
2100 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002101 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002102 struct vcpu_svm *svm = to_svm(vcpu);
2103
2104 if (!kvm_vcpu_apicv_active(vcpu))
2105 return;
2106
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002107 /*
2108 * Since the host physical APIC id is 8 bits,
2109 * we can support host APIC ID upto 255.
2110 */
2111 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002112 return;
2113
2114 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2115 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2116
2117 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2118 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2119
2120 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2121 if (svm->avic_is_running)
2122 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2123
2124 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002125 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2126 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002127}
2128
2129static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2130{
2131 u64 entry;
2132 struct vcpu_svm *svm = to_svm(vcpu);
2133
2134 if (!kvm_vcpu_apicv_active(vcpu))
2135 return;
2136
2137 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002138 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2139 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2140
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002141 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2142 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002143}
2144
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002145/**
2146 * This function is called during VCPU halt/unhalt.
2147 */
2148static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2149{
2150 struct vcpu_svm *svm = to_svm(vcpu);
2151
2152 svm->avic_is_running = is_run;
2153 if (is_run)
2154 avic_vcpu_load(vcpu, vcpu->cpu);
2155 else
2156 avic_vcpu_put(vcpu);
2157}
2158
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002159static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002160{
2161 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002162 u32 dummy;
2163 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002164
Wanpeng Li518e7b92018-02-28 14:03:31 +08002165 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002166 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002167 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002168
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002169 if (!init_event) {
2170 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2171 MSR_IA32_APICBASE_ENABLE;
2172 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2173 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2174 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002175 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002176
Yu Zhange911eb32017-08-24 20:27:52 +08002177 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002178 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002179
2180 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2181 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002182}
2183
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002184static int avic_init_vcpu(struct vcpu_svm *svm)
2185{
2186 int ret;
2187
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002188 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002189 return 0;
2190
2191 ret = avic_init_backing_page(&svm->vcpu);
2192 if (ret)
2193 return ret;
2194
2195 INIT_LIST_HEAD(&svm->ir_list);
2196 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002197 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002198
2199 return ret;
2200}
2201
Sean Christopherson987b2592019-12-18 13:54:55 -08002202static int svm_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002203{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002204 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002206 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002207 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002208 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002209 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002210
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002211 BUILD_BUG_ON(offsetof(struct vcpu_svm, vcpu) != 0);
2212 svm = to_svm(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002213
Joerg Roedelf65c2292008-02-13 18:58:46 +01002214 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002215 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002216 if (!page)
Sean Christopherson987b2592019-12-18 13:54:55 -08002217 goto out;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002218
Ben Gardon1ec69642019-02-11 11:02:51 -08002219 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002220 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002221 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002222
Ben Gardon1ec69642019-02-11 11:02:51 -08002223 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002224 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002225 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002226
Ben Gardon1ec69642019-02-11 11:02:51 -08002227 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002228 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002229 goto free_page3;
2230
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002231 err = avic_init_vcpu(svm);
2232 if (err)
2233 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002234
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002235 /* We initialize this flag to true to make sure that the is_running
2236 * bit would be set the first time the vcpu is loaded.
2237 */
2238 svm->avic_is_running = true;
2239
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002240 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002241
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002242 svm->msrpm = page_address(msrpm_pages);
2243 svm_vcpu_init_msrpm(svm->msrpm);
2244
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002245 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002246 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002247
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002248 svm->vmcb = page_address(page);
2249 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002250 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002251 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002252 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253
Sean Christopherson7f271792019-12-18 13:54:51 -08002254 svm_init_osvw(vcpu);
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002255
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002256 return 0;
Avi Kivity36241b82006-12-22 01:05:20 -08002257
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002258free_page4:
2259 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002260free_page3:
2261 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2262free_page2:
2263 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2264free_page1:
2265 __free_page(page);
Sean Christopherson987b2592019-12-18 13:54:55 -08002266out:
Sean Christophersona9dd6f02019-12-18 13:54:52 -08002267 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002268}
2269
Jim Mattsonfd65d312018-05-22 09:54:20 -07002270static void svm_clear_current_vmcb(struct vmcb *vmcb)
2271{
2272 int i;
2273
2274 for_each_online_cpu(i)
2275 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2276}
2277
Avi Kivity6aa8b732006-12-10 02:21:36 -08002278static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2279{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002280 struct vcpu_svm *svm = to_svm(vcpu);
2281
Jim Mattsonfd65d312018-05-22 09:54:20 -07002282 /*
2283 * The vmcb page can be recycled, causing a false negative in
2284 * svm_vcpu_load(). So, ensure that no logical CPU has this
2285 * vmcb page recorded as its current vmcb.
2286 */
2287 svm_clear_current_vmcb(svm->vmcb);
2288
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002289 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002290 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002291 __free_page(virt_to_page(svm->nested.hsave));
2292 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293}
2294
Avi Kivity15ad7142007-07-11 18:17:21 +03002295static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002297 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002298 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002299 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002300
Avi Kivity0cc50642007-03-25 12:07:27 +02002301 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002302 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002303 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002304 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002305
Avi Kivity82ca2d12010-10-21 12:20:34 +02002306#ifdef CONFIG_X86_64
2307 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2308#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002309 savesegment(fs, svm->host.fs);
2310 savesegment(gs, svm->host.gs);
2311 svm->host.ldt = kvm_read_ldt();
2312
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002313 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002314 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002315
Haozhong Zhangad7218832015-10-20 15:39:02 +08002316 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2317 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2318 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2319 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2320 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2321 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002322 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002323 /* This assumes that the kernel never uses MSR_TSC_AUX */
2324 if (static_cpu_has(X86_FEATURE_RDTSCP))
2325 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002326
Ashok Raj15d45072018-02-01 22:59:43 +01002327 if (sd->current_vmcb != svm->vmcb) {
2328 sd->current_vmcb = svm->vmcb;
2329 indirect_branch_prediction_barrier();
2330 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002331 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
2334static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2335{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002336 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002337 int i;
2338
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002339 avic_vcpu_put(vcpu);
2340
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002341 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002342 kvm_load_ldt(svm->host.ldt);
2343#ifdef CONFIG_X86_64
2344 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002345 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002346 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002347#else
Avi Kivity831ca602011-03-08 16:09:51 +02002348#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002349 loadsegment(gs, svm->host.gs);
2350#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002351#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002352 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002353 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002354}
2355
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002356static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2357{
2358 avic_set_running(vcpu, false);
2359}
2360
2361static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2362{
2363 avic_set_running(vcpu, true);
2364}
2365
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2367{
Ladi Prosek9b611742017-06-21 09:06:59 +02002368 struct vcpu_svm *svm = to_svm(vcpu);
2369 unsigned long rflags = svm->vmcb->save.rflags;
2370
2371 if (svm->nmi_singlestep) {
2372 /* Hide our flags if they were not set by the guest */
2373 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2374 rflags &= ~X86_EFLAGS_TF;
2375 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2376 rflags &= ~X86_EFLAGS_RF;
2377 }
2378 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379}
2380
2381static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2382{
Ladi Prosek9b611742017-06-21 09:06:59 +02002383 if (to_svm(vcpu)->nmi_singlestep)
2384 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2385
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002386 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002387 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002388 * (caused by either a task switch or an inter-privilege IRET),
2389 * so we do not need to update the CPL here.
2390 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002391 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392}
2393
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002394static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2395{
2396 switch (reg) {
2397 case VCPU_EXREG_PDPTR:
2398 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002399 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002400 break;
2401 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002402 WARN_ON_ONCE(1);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002403 }
2404}
2405
Alexander Graff0b85052008-11-25 20:17:01 +01002406static void svm_set_vintr(struct vcpu_svm *svm)
2407{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002408 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002409}
2410
2411static void svm_clear_vintr(struct vcpu_svm *svm)
2412{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002413 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002414}
2415
Avi Kivity6aa8b732006-12-10 02:21:36 -08002416static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2417{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002418 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002419
2420 switch (seg) {
2421 case VCPU_SREG_CS: return &save->cs;
2422 case VCPU_SREG_DS: return &save->ds;
2423 case VCPU_SREG_ES: return &save->es;
2424 case VCPU_SREG_FS: return &save->fs;
2425 case VCPU_SREG_GS: return &save->gs;
2426 case VCPU_SREG_SS: return &save->ss;
2427 case VCPU_SREG_TR: return &save->tr;
2428 case VCPU_SREG_LDTR: return &save->ldtr;
2429 }
2430 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002431 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432}
2433
2434static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2435{
2436 struct vmcb_seg *s = svm_seg(vcpu, seg);
2437
2438 return s->base;
2439}
2440
2441static void svm_get_segment(struct kvm_vcpu *vcpu,
2442 struct kvm_segment *var, int seg)
2443{
2444 struct vmcb_seg *s = svm_seg(vcpu, seg);
2445
2446 var->base = s->base;
2447 var->limit = s->limit;
2448 var->selector = s->selector;
2449 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2450 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2451 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2452 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2453 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2454 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2455 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302456
2457 /*
2458 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2459 * However, the SVM spec states that the G bit is not observed by the
2460 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2461 * So let's synthesize a legal G bit for all segments, this helps
2462 * running KVM nested. It also helps cross-vendor migration, because
2463 * Intel's vmentry has a check on the 'G' bit.
2464 */
2465 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002466
Joerg Roedele0231712010-02-24 18:59:10 +01002467 /*
2468 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002469 * for cross vendor migration purposes by "not present"
2470 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002471 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002472
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002473 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002474 case VCPU_SREG_TR:
2475 /*
2476 * Work around a bug where the busy flag in the tr selector
2477 * isn't exposed
2478 */
Amit Shahc0d09822008-10-27 09:04:18 +00002479 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002480 break;
2481 case VCPU_SREG_DS:
2482 case VCPU_SREG_ES:
2483 case VCPU_SREG_FS:
2484 case VCPU_SREG_GS:
2485 /*
2486 * The accessed bit must always be set in the segment
2487 * descriptor cache, although it can be cleared in the
2488 * descriptor, the cached bit always remains at 1. Since
2489 * Intel has a check on this, set it here to support
2490 * cross-vendor migration.
2491 */
2492 if (!var->unusable)
2493 var->type |= 0x1;
2494 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002495 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002496 /*
2497 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002498 * descriptor is left as 1, although the whole segment has
2499 * been made unusable. Clear it here to pass an Intel VMX
2500 * entry check when cross vendor migrating.
2501 */
2502 if (var->unusable)
2503 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002504 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002505 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002506 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002507 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508}
2509
Izik Eidus2e4d2652008-03-24 19:38:34 +02002510static int svm_get_cpl(struct kvm_vcpu *vcpu)
2511{
2512 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2513
2514 return save->cpl;
2515}
2516
Gleb Natapov89a27f42010-02-16 10:51:48 +02002517static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002518{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002519 struct vcpu_svm *svm = to_svm(vcpu);
2520
Gleb Natapov89a27f42010-02-16 10:51:48 +02002521 dt->size = svm->vmcb->save.idtr.limit;
2522 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523}
2524
Gleb Natapov89a27f42010-02-16 10:51:48 +02002525static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002527 struct vcpu_svm *svm = to_svm(vcpu);
2528
Gleb Natapov89a27f42010-02-16 10:51:48 +02002529 svm->vmcb->save.idtr.limit = dt->size;
2530 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002531 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002532}
2533
Gleb Natapov89a27f42010-02-16 10:51:48 +02002534static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002536 struct vcpu_svm *svm = to_svm(vcpu);
2537
Gleb Natapov89a27f42010-02-16 10:51:48 +02002538 dt->size = svm->vmcb->save.gdtr.limit;
2539 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002540}
2541
Gleb Natapov89a27f42010-02-16 10:51:48 +02002542static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002544 struct vcpu_svm *svm = to_svm(vcpu);
2545
Gleb Natapov89a27f42010-02-16 10:51:48 +02002546 svm->vmcb->save.gdtr.limit = dt->size;
2547 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002548 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002549}
2550
Avi Kivitye8467fd2009-12-29 18:43:06 +02002551static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2552{
2553}
2554
Anthony Liguori25c4c272007-04-27 09:29:21 +03002555static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002556{
2557}
2558
Avi Kivityd2251572010-01-06 10:55:27 +02002559static void update_cr0_intercept(struct vcpu_svm *svm)
2560{
2561 ulong gcr0 = svm->vcpu.arch.cr0;
2562 u64 *hcr0 = &svm->vmcb->save.cr0;
2563
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002564 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2565 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002566
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002567 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002568
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002569 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002570 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2571 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002572 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002573 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2574 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002575 }
2576}
2577
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2579{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002580 struct vcpu_svm *svm = to_svm(vcpu);
2581
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002582#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002583 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002584 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002585 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002586 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 }
2588
Mike Dayd77c26f2007-10-08 09:02:08 -04002589 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002590 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002591 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592 }
2593 }
2594#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002595 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002596
2597 if (!npt_enabled)
2598 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002599
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002600 /*
2601 * re-enable caching here because the QEMU bios
2602 * does not do it - this results in some delay at
2603 * reboot
2604 */
2605 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2606 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002607 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002608 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002609 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610}
2611
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002612static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002613{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002614 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002615 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2616
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002617 if (cr4 & X86_CR4_VMXE)
2618 return 1;
2619
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002620 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002621 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002622
Joerg Roedelec077262008-04-09 14:15:28 +02002623 vcpu->arch.cr4 = cr4;
2624 if (!npt_enabled)
2625 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002626 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002627 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002628 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002629 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630}
2631
2632static void svm_set_segment(struct kvm_vcpu *vcpu,
2633 struct kvm_segment *var, int seg)
2634{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002635 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 struct vmcb_seg *s = svm_seg(vcpu, seg);
2637
2638 s->base = var->base;
2639 s->limit = var->limit;
2640 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002641 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2642 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2643 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2644 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2645 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2646 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2647 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2648 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002649
2650 /*
2651 * This is always accurate, except if SYSRET returned to a segment
2652 * with SS.DPL != 3. Intel does not have this quirk, and always
2653 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2654 * would entail passing the CPL to userspace and back.
2655 */
2656 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002657 /* This is symmetric with svm_get_segment() */
2658 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002659
Joerg Roedel060d0c92010-12-03 11:45:57 +01002660 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002661}
2662
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002663static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002665 struct vcpu_svm *svm = to_svm(vcpu);
2666
Joerg Roedel18c918c2010-11-30 18:03:59 +01002667 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002668
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002669 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002670 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002671 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002672 } else
2673 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002674}
2675
Tejun Heo0fe1e002009-10-29 22:34:14 +09002676static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002678 if (sd->next_asid > sd->max_asid) {
2679 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002680 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002681 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002682 }
2683
Tejun Heo0fe1e002009-10-29 22:34:14 +09002684 svm->asid_generation = sd->asid_generation;
2685 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002686
2687 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688}
2689
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002690static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2691{
2692 return to_svm(vcpu)->vmcb->save.dr6;
2693}
2694
2695static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2696{
2697 struct vcpu_svm *svm = to_svm(vcpu);
2698
2699 svm->vmcb->save.dr6 = value;
2700 mark_dirty(svm->vmcb, VMCB_DR);
2701}
2702
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002703static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2704{
2705 struct vcpu_svm *svm = to_svm(vcpu);
2706
2707 get_debugreg(vcpu->arch.db[0], 0);
2708 get_debugreg(vcpu->arch.db[1], 1);
2709 get_debugreg(vcpu->arch.db[2], 2);
2710 get_debugreg(vcpu->arch.db[3], 3);
2711 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2712 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2713
2714 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2715 set_dr_intercepts(svm);
2716}
2717
Gleb Natapov020df072010-04-13 10:05:23 +03002718static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002720 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002721
Gleb Natapov020df072010-04-13 10:05:23 +03002722 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002723 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724}
2725
Avi Kivity851ba692009-08-24 11:10:17 +03002726static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002727{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002728 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002729 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002730
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002731 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002732 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2733 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002734 svm->vmcb->control.insn_len);
2735}
2736
2737static int npf_interception(struct vcpu_svm *svm)
2738{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002739 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002740 u64 error_code = svm->vmcb->control.exit_info_1;
2741
2742 trace_kvm_page_fault(fault_address, error_code);
2743 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002744 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2745 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002746 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747}
2748
Avi Kivity851ba692009-08-24 11:10:17 +03002749static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002750{
Avi Kivity851ba692009-08-24 11:10:17 +03002751 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002752 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002753
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002754 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002755 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002756 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002757 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2758 return 1;
2759 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002760
Jan Kiszka6be7d302009-10-18 13:24:54 +02002761 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002762 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002763 /* Make sure we check for pending NMIs upon entry */
2764 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002765 }
2766
2767 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002768 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002769 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2770 kvm_run->debug.arch.pc =
2771 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2772 kvm_run->debug.arch.exception = DB_VECTOR;
2773 return 0;
2774 }
2775
2776 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002777}
2778
Avi Kivity851ba692009-08-24 11:10:17 +03002779static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002780{
Avi Kivity851ba692009-08-24 11:10:17 +03002781 struct kvm_run *kvm_run = svm->vcpu.run;
2782
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002783 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2784 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2785 kvm_run->debug.arch.exception = BP_VECTOR;
2786 return 0;
2787}
2788
Avi Kivity851ba692009-08-24 11:10:17 +03002789static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002790{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002791 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002792}
2793
Eric Northup54a20552015-11-03 18:03:53 +01002794static int ac_interception(struct vcpu_svm *svm)
2795{
2796 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2797 return 1;
2798}
2799
Liran Alon97184202018-03-12 13:12:52 +02002800static int gp_interception(struct vcpu_svm *svm)
2801{
2802 struct kvm_vcpu *vcpu = &svm->vcpu;
2803 u32 error_code = svm->vmcb->control.exit_info_1;
Liran Alon97184202018-03-12 13:12:52 +02002804
2805 WARN_ON_ONCE(!enable_vmware_backdoor);
2806
Sean Christophersona6c6ed12019-08-27 14:40:30 -07002807 /*
2808 * VMware backdoor emulation on #GP interception only handles IN{S},
2809 * OUT{S}, and RDPMC, none of which generate a non-zero error code.
2810 */
2811 if (error_code) {
2812 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2813 return 1;
2814 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002815 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon97184202018-03-12 13:12:52 +02002816}
2817
Joerg Roedel67ec6602010-05-17 14:43:35 +02002818static bool is_erratum_383(void)
2819{
2820 int err, i;
2821 u64 value;
2822
2823 if (!erratum_383_found)
2824 return false;
2825
2826 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2827 if (err)
2828 return false;
2829
2830 /* Bit 62 may or may not be set for this mce */
2831 value &= ~(1ULL << 62);
2832
2833 if (value != 0xb600000000010015ULL)
2834 return false;
2835
2836 /* Clear MCi_STATUS registers */
2837 for (i = 0; i < 6; ++i)
2838 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2839
2840 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2841 if (!err) {
2842 u32 low, high;
2843
2844 value &= ~(1ULL << 2);
2845 low = lower_32_bits(value);
2846 high = upper_32_bits(value);
2847
2848 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2849 }
2850
2851 /* Flush tlb to evict multi-match entries */
2852 __flush_tlb_all();
2853
2854 return true;
2855}
2856
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002857static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002858{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002859 if (is_erratum_383()) {
2860 /*
2861 * Erratum 383 triggered. Guest state is corrupt so kill the
2862 * guest.
2863 */
2864 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2865
Avi Kivitya8eeb042010-05-10 12:34:53 +03002866 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002867
2868 return;
2869 }
2870
Joerg Roedel53371b52008-04-09 14:15:30 +02002871 /*
2872 * On an #MC intercept the MCE handler is not called automatically in
2873 * the host. So do it by hand here.
2874 */
2875 asm volatile (
2876 "int $0x12\n");
2877 /* not sure if we ever come back to this point */
2878
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002879 return;
2880}
2881
2882static int mc_interception(struct vcpu_svm *svm)
2883{
Joerg Roedel53371b52008-04-09 14:15:30 +02002884 return 1;
2885}
2886
Avi Kivity851ba692009-08-24 11:10:17 +03002887static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002888{
Avi Kivity851ba692009-08-24 11:10:17 +03002889 struct kvm_run *kvm_run = svm->vcpu.run;
2890
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002891 /*
2892 * VMCB is undefined after a SHUTDOWN intercept
2893 * so reinitialize it.
2894 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002895 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002896 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002897
2898 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2899 return 0;
2900}
2901
Avi Kivity851ba692009-08-24 11:10:17 +03002902static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002903{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002904 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002905 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002906 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002907 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908
Rusty Russelle756fc62007-07-30 20:07:08 +10002909 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002910 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002911 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002912 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07002913 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002914
Avi Kivity039576c2007-03-20 12:46:50 +02002915 port = io_info >> 16;
2916 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002917 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002918
Sean Christophersondca7f122018-03-08 08:57:27 -08002919 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002920}
2921
Avi Kivity851ba692009-08-24 11:10:17 +03002922static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002923{
2924 return 1;
2925}
2926
Avi Kivity851ba692009-08-24 11:10:17 +03002927static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002928{
2929 ++svm->vcpu.stat.irq_exits;
2930 return 1;
2931}
2932
Avi Kivity851ba692009-08-24 11:10:17 +03002933static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002934{
2935 return 1;
2936}
2937
Avi Kivity851ba692009-08-24 11:10:17 +03002938static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939{
Rusty Russelle756fc62007-07-30 20:07:08 +10002940 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002941}
2942
Avi Kivity851ba692009-08-24 11:10:17 +03002943static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002944{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002945 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002946}
2947
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002948static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2949{
2950 struct vcpu_svm *svm = to_svm(vcpu);
2951
2952 return svm->nested.nested_cr3;
2953}
2954
Avi Kivitye4e517b2011-07-28 11:36:17 +03002955static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2956{
2957 struct vcpu_svm *svm = to_svm(vcpu);
2958 u64 cr3 = svm->nested.nested_cr3;
2959 u64 pdpte;
2960 int ret;
2961
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002962 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002963 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002964 if (ret)
2965 return 0;
2966 return pdpte;
2967}
2968
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002969static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2970 unsigned long root)
2971{
2972 struct vcpu_svm *svm = to_svm(vcpu);
2973
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002974 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002975 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002976}
2977
Avi Kivity6389ee92010-11-29 16:12:30 +02002978static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2979 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002980{
2981 struct vcpu_svm *svm = to_svm(vcpu);
2982
Paolo Bonzini5e352512014-09-02 13:18:37 +02002983 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2984 /*
2985 * TODO: track the cause of the nested page fault, and
2986 * correctly fill in the high bits of exit_info_1.
2987 */
2988 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2989 svm->vmcb->control.exit_code_hi = 0;
2990 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2991 svm->vmcb->control.exit_info_2 = fault->address;
2992 }
2993
2994 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2995 svm->vmcb->control.exit_info_1 |= fault->error_code;
2996
2997 /*
2998 * The present bit is always zero for page structure faults on real
2999 * hardware.
3000 */
3001 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
3002 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02003003
3004 nested_svm_vmexit(svm);
3005}
3006
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003007static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02003008{
Paolo Bonziniad896af2013-10-02 16:56:14 +02003009 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003010
3011 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02003012 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003013 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
3014 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
3015 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
3016 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
3017 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
3018 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02003019 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003020}
3021
3022static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
3023{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01003024 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02003025 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003026}
3027
Alexander Grafc0725422008-11-25 20:17:03 +01003028static int nested_svm_check_permissions(struct vcpu_svm *svm)
3029{
Dan Carpentere9196ce2017-05-18 10:39:53 +03003030 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3031 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01003032 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3033 return 1;
3034 }
3035
3036 if (svm->vmcb->save.cpl) {
3037 kvm_inject_gp(&svm->vcpu, 0);
3038 return 1;
3039 }
3040
Dan Carpentere9196ce2017-05-18 10:39:53 +03003041 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003042}
3043
Alexander Grafcf74a782008-11-25 20:17:08 +01003044static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3045 bool has_error_code, u32 error_code)
3046{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003047 int vmexit;
3048
Joerg Roedel20307532010-11-29 17:51:48 +01003049 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003050 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003051
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003052 vmexit = nested_svm_intercept(svm);
3053 if (vmexit != NESTED_EXIT_DONE)
3054 return 0;
3055
Joerg Roedel0295ad72009-08-07 11:49:37 +02003056 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3057 svm->vmcb->control.exit_code_hi = 0;
3058 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003059
3060 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003061 * EXITINFO2 is undefined for all exception intercepts other
3062 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003063 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003064 if (svm->vcpu.arch.exception.nested_apf)
3065 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003066 else if (svm->vcpu.arch.exception.has_payload)
3067 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003068 else
3069 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003070
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003071 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003072 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003073}
3074
Joerg Roedel8fe54652010-02-19 16:23:01 +01003075/* This function returns true if it is save to enable the irq window */
3076static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003077{
Joerg Roedel20307532010-11-29 17:51:48 +01003078 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003079 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003080
Joerg Roedel26666952009-08-07 11:49:46 +02003081 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003082 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003083
Joerg Roedel26666952009-08-07 11:49:46 +02003084 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003085 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003086
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003087 /*
3088 * if vmexit was already requested (by intercepted exception
3089 * for instance) do not overwrite it with "external interrupt"
3090 * vmexit.
3091 */
3092 if (svm->nested.exit_required)
3093 return false;
3094
Joerg Roedel197717d2010-02-24 18:59:19 +01003095 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3096 svm->vmcb->control.exit_info_1 = 0;
3097 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003098
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003099 if (svm->nested.intercept & 1ULL) {
3100 /*
3101 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003102 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003103 * #vmexit emulation might sleep. Only signal request for
3104 * the #vmexit here.
3105 */
3106 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003107 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003108 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003109 }
3110
Joerg Roedel8fe54652010-02-19 16:23:01 +01003111 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003112}
3113
Joerg Roedel887f5002010-02-24 18:59:12 +01003114/* This function returns true if it is save to enable the nmi window */
3115static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3116{
Joerg Roedel20307532010-11-29 17:51:48 +01003117 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003118 return true;
3119
3120 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3121 return true;
3122
3123 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3124 svm->nested.exit_required = true;
3125
3126 return false;
3127}
3128
Joerg Roedelce2ac082010-03-01 15:34:39 +01003129static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003130{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003131 unsigned port, size, iopm_len;
3132 u16 val, mask;
3133 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003134 u64 gpa;
3135
3136 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3137 return NESTED_EXIT_HOST;
3138
3139 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003140 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3141 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003142 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003143 start_bit = port % 8;
3144 iopm_len = (start_bit + size > 8) ? 2 : 1;
3145 mask = (0xf >> (4 - size)) << start_bit;
3146 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003147
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003148 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003149 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003150
Jan Kiszka9bf41832014-06-30 10:54:17 +02003151 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003152}
3153
Joerg Roedeld2477822010-03-01 15:34:34 +01003154static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003155{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003156 u32 offset, msr, value;
3157 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003158
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003159 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003160 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003161
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003162 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3163 offset = svm_msrpm_offset(msr);
3164 write = svm->vmcb->control.exit_info_1 & 1;
3165 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003166
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003167 if (offset == MSR_INVALID)
3168 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003169
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003170 /* Offset is in 32 bit units but need in 8 bit units */
3171 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003172
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003173 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003174 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003175
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003176 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003177}
3178
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003179/* DB exceptions for our internal use must not cause vmexit */
3180static int nested_svm_intercept_db(struct vcpu_svm *svm)
3181{
3182 unsigned long dr6;
3183
3184 /* if we're not singlestepping, it's not ours */
3185 if (!svm->nmi_singlestep)
3186 return NESTED_EXIT_DONE;
3187
3188 /* if it's not a singlestep exception, it's not ours */
3189 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3190 return NESTED_EXIT_DONE;
3191 if (!(dr6 & DR6_BS))
3192 return NESTED_EXIT_DONE;
3193
3194 /* if the guest is singlestepping, it should get the vmexit */
3195 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3196 disable_nmi_singlestep(svm);
3197 return NESTED_EXIT_DONE;
3198 }
3199
3200 /* it's ours, the nested hypervisor must not see this one */
3201 return NESTED_EXIT_HOST;
3202}
3203
Joerg Roedel410e4d52009-08-07 11:49:44 +02003204static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003205{
Alexander Grafcf74a782008-11-25 20:17:08 +01003206 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003207
Joerg Roedel410e4d52009-08-07 11:49:44 +02003208 switch (exit_code) {
3209 case SVM_EXIT_INTR:
3210 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003211 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003212 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003213 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003214 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003215 if (npt_enabled)
3216 return NESTED_EXIT_HOST;
3217 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003218 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003219 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003220 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003221 return NESTED_EXIT_HOST;
3222 break;
3223 default:
3224 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003225 }
3226
Joerg Roedel410e4d52009-08-07 11:49:44 +02003227 return NESTED_EXIT_CONTINUE;
3228}
3229
3230/*
3231 * If this function returns true, this #vmexit was already handled
3232 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003233static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003234{
3235 u32 exit_code = svm->vmcb->control.exit_code;
3236 int vmexit = NESTED_EXIT_HOST;
3237
Alexander Grafcf74a782008-11-25 20:17:08 +01003238 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003239 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003240 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003241 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003242 case SVM_EXIT_IOIO:
3243 vmexit = nested_svm_intercept_ioio(svm);
3244 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003245 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3246 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3247 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003248 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003249 break;
3250 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003251 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3252 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3253 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003254 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003255 break;
3256 }
3257 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3258 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003259 if (svm->nested.intercept_exceptions & excp_bits) {
3260 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3261 vmexit = nested_svm_intercept_db(svm);
3262 else
3263 vmexit = NESTED_EXIT_DONE;
3264 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003265 /* async page fault always cause vmexit */
3266 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003267 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003268 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003269 break;
3270 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003271 case SVM_EXIT_ERR: {
3272 vmexit = NESTED_EXIT_DONE;
3273 break;
3274 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003275 default: {
3276 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003277 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003278 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003279 }
3280 }
3281
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003282 return vmexit;
3283}
3284
3285static int nested_svm_exit_handled(struct vcpu_svm *svm)
3286{
3287 int vmexit;
3288
3289 vmexit = nested_svm_intercept(svm);
3290
3291 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003292 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003293
3294 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003295}
3296
Joerg Roedel0460a972009-08-07 11:49:31 +02003297static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3298{
3299 struct vmcb_control_area *dst = &dst_vmcb->control;
3300 struct vmcb_control_area *from = &from_vmcb->control;
3301
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003302 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003303 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003304 dst->intercept_exceptions = from->intercept_exceptions;
3305 dst->intercept = from->intercept;
3306 dst->iopm_base_pa = from->iopm_base_pa;
3307 dst->msrpm_base_pa = from->msrpm_base_pa;
3308 dst->tsc_offset = from->tsc_offset;
3309 dst->asid = from->asid;
3310 dst->tlb_ctl = from->tlb_ctl;
3311 dst->int_ctl = from->int_ctl;
3312 dst->int_vector = from->int_vector;
3313 dst->int_state = from->int_state;
3314 dst->exit_code = from->exit_code;
3315 dst->exit_code_hi = from->exit_code_hi;
3316 dst->exit_info_1 = from->exit_info_1;
3317 dst->exit_info_2 = from->exit_info_2;
3318 dst->exit_int_info = from->exit_int_info;
3319 dst->exit_int_info_err = from->exit_int_info_err;
3320 dst->nested_ctl = from->nested_ctl;
3321 dst->event_inj = from->event_inj;
3322 dst->event_inj_err = from->event_inj_err;
3323 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003324 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003325 dst->pause_filter_count = from->pause_filter_count;
3326 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003327}
3328
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003329static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003330{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003331 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003332 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003333 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003334 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003335 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003336
Joerg Roedel17897f32009-10-09 16:08:29 +02003337 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3338 vmcb->control.exit_info_1,
3339 vmcb->control.exit_info_2,
3340 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003341 vmcb->control.exit_int_info_err,
3342 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003343
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003344 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003345 if (rc) {
3346 if (rc == -EINVAL)
3347 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003348 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003349 }
3350
3351 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003352
Joerg Roedel20307532010-11-29 17:51:48 +01003353 /* Exit Guest-Mode */
3354 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003355 svm->nested.vmcb = 0;
3356
Alexander Grafcf74a782008-11-25 20:17:08 +01003357 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003358 disable_gif(svm);
3359
3360 nested_vmcb->save.es = vmcb->save.es;
3361 nested_vmcb->save.cs = vmcb->save.cs;
3362 nested_vmcb->save.ss = vmcb->save.ss;
3363 nested_vmcb->save.ds = vmcb->save.ds;
3364 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3365 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003366 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003367 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003368 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003369 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003370 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003371 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003372 nested_vmcb->save.rip = vmcb->save.rip;
3373 nested_vmcb->save.rsp = vmcb->save.rsp;
3374 nested_vmcb->save.rax = vmcb->save.rax;
3375 nested_vmcb->save.dr7 = vmcb->save.dr7;
3376 nested_vmcb->save.dr6 = vmcb->save.dr6;
3377 nested_vmcb->save.cpl = vmcb->save.cpl;
3378
3379 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3380 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3381 nested_vmcb->control.int_state = vmcb->control.int_state;
3382 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3383 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3384 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3385 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3386 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3387 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003388
3389 if (svm->nrips_enabled)
3390 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003391
3392 /*
3393 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3394 * to make sure that we do not lose injected events. So check event_inj
3395 * here and copy it to exit_int_info if it is valid.
3396 * Exit_int_info and event_inj can't be both valid because the case
3397 * below only happens on a VMRUN instruction intercept which has
3398 * no valid exit_int_info set.
3399 */
3400 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3401 struct vmcb_control_area *nc = &nested_vmcb->control;
3402
3403 nc->exit_int_info = vmcb->control.event_inj;
3404 nc->exit_int_info_err = vmcb->control.event_inj_err;
3405 }
3406
Joerg Roedel33740e42009-08-07 11:49:29 +02003407 nested_vmcb->control.tlb_ctl = 0;
3408 nested_vmcb->control.event_inj = 0;
3409 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003410
Tambe, Williame0813542018-11-13 16:51:20 +00003411 nested_vmcb->control.pause_filter_count =
3412 svm->vmcb->control.pause_filter_count;
3413 nested_vmcb->control.pause_filter_thresh =
3414 svm->vmcb->control.pause_filter_thresh;
3415
Alexander Grafcf74a782008-11-25 20:17:08 +01003416 /* We always set V_INTR_MASKING and remember the old value in hflags */
3417 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3418 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3419
Alexander Grafcf74a782008-11-25 20:17:08 +01003420 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003421 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003422
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003423 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003424 kvm_clear_exception_queue(&svm->vcpu);
3425 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003426
Joerg Roedel4b161842010-09-10 17:31:03 +02003427 svm->nested.nested_cr3 = 0;
3428
Alexander Grafcf74a782008-11-25 20:17:08 +01003429 /* Restore selected save entries */
3430 svm->vmcb->save.es = hsave->save.es;
3431 svm->vmcb->save.cs = hsave->save.cs;
3432 svm->vmcb->save.ss = hsave->save.ss;
3433 svm->vmcb->save.ds = hsave->save.ds;
3434 svm->vmcb->save.gdtr = hsave->save.gdtr;
3435 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003436 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003437 svm_set_efer(&svm->vcpu, hsave->save.efer);
3438 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3439 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3440 if (npt_enabled) {
3441 svm->vmcb->save.cr3 = hsave->save.cr3;
3442 svm->vcpu.arch.cr3 = hsave->save.cr3;
3443 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003444 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003445 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003446 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003447 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3448 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003449 svm->vmcb->save.dr7 = 0;
3450 svm->vmcb->save.cpl = 0;
3451 svm->vmcb->control.exit_int_info = 0;
3452
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003453 mark_all_dirty(svm->vmcb);
3454
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003455 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003456
Joerg Roedel4b161842010-09-10 17:31:03 +02003457 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003458 kvm_mmu_reset_context(&svm->vcpu);
3459 kvm_mmu_load(&svm->vcpu);
3460
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003461 /*
3462 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3463 * doesn't end up in L1.
3464 */
3465 svm->vcpu.arch.nmi_injected = false;
3466 kvm_clear_exception_queue(&svm->vcpu);
3467 kvm_clear_interrupt_queue(&svm->vcpu);
3468
Alexander Grafcf74a782008-11-25 20:17:08 +01003469 return 0;
3470}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003471
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003472static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003473{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003474 /*
3475 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003476 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003477 * the kvm msr permission bitmap may contain zero bits
3478 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003479 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003480
Joerg Roedel323c3d82010-03-01 15:34:37 +01003481 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3482 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003483
Joerg Roedel323c3d82010-03-01 15:34:37 +01003484 for (i = 0; i < MSRPM_OFFSETS; i++) {
3485 u32 value, p;
3486 u64 offset;
3487
3488 if (msrpm_offsets[i] == 0xffffffff)
3489 break;
3490
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003491 p = msrpm_offsets[i];
3492 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003493
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003494 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003495 return false;
3496
3497 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3498 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003499
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003500 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003501
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003502 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003503}
3504
Joerg Roedel52c65a302010-08-02 16:46:44 +02003505static bool nested_vmcb_checks(struct vmcb *vmcb)
3506{
3507 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3508 return false;
3509
Joerg Roedeldbe77582010-08-02 16:46:45 +02003510 if (vmcb->control.asid == 0)
3511 return false;
3512
Tom Lendackycea3a192017-12-04 10:57:24 -06003513 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3514 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003515 return false;
3516
Joerg Roedel52c65a302010-08-02 16:46:44 +02003517 return true;
3518}
3519
Ladi Prosekc2634062017-10-11 16:54:44 +02003520static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003521 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003522{
Avi Kivityf6e78472010-08-02 15:30:20 +03003523 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003524 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3525 else
3526 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3527
Tom Lendackycea3a192017-12-04 10:57:24 -06003528 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003529 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3530 nested_svm_init_mmu_context(&svm->vcpu);
3531 }
3532
Alexander Graf3d6368e2008-11-25 20:17:07 +01003533 /* Load the nested guest state */
3534 svm->vmcb->save.es = nested_vmcb->save.es;
3535 svm->vmcb->save.cs = nested_vmcb->save.cs;
3536 svm->vmcb->save.ss = nested_vmcb->save.ss;
3537 svm->vmcb->save.ds = nested_vmcb->save.ds;
3538 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3539 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003540 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003541 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3542 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3543 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3544 if (npt_enabled) {
3545 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3546 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003547 } else
Avi Kivity23902182010-06-10 17:02:16 +03003548 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003549
3550 /* Guest paging mode is active - reset mmu */
3551 kvm_mmu_reset_context(&svm->vcpu);
3552
Joerg Roedeldefbba52009-08-07 11:49:30 +02003553 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003554 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003555 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3556 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003557
Alexander Graf3d6368e2008-11-25 20:17:07 +01003558 /* In case we don't even reach vcpu_run, the fields are not updated */
3559 svm->vmcb->save.rax = nested_vmcb->save.rax;
3560 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3561 svm->vmcb->save.rip = nested_vmcb->save.rip;
3562 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3563 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3564 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3565
Joerg Roedelf7138532010-03-01 15:34:40 +01003566 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003567 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003568
Joerg Roedelaad42c62009-08-07 11:49:34 +02003569 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003570 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003571 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003572 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3573 svm->nested.intercept = nested_vmcb->control.intercept;
3574
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003575 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003576 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003577 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3578 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3579 else
3580 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3581
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003582 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3583 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003584 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3585 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003586 }
3587
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003588 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003589 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003590
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003591 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3592 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3593
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003594 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003595 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3596 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003597 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3598 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3599
Tambe, Williame0813542018-11-13 16:51:20 +00003600 svm->vmcb->control.pause_filter_count =
3601 nested_vmcb->control.pause_filter_count;
3602 svm->vmcb->control.pause_filter_thresh =
3603 nested_vmcb->control.pause_filter_thresh;
3604
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003605 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003606
Joerg Roedel20307532010-11-29 17:51:48 +01003607 /* Enter Guest-Mode */
3608 enter_guest_mode(&svm->vcpu);
3609
Joerg Roedel384c6362010-11-30 18:03:56 +01003610 /*
3611 * Merge guest and host intercepts - must be called with vcpu in
3612 * guest-mode to take affect here
3613 */
3614 recalc_intercepts(svm);
3615
Joerg Roedel06fc77722010-02-19 16:23:07 +01003616 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003617
Joerg Roedel2af91942009-08-07 11:49:28 +02003618 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003619
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003620 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003621}
3622
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003623static int nested_svm_vmrun(struct vcpu_svm *svm)
Ladi Prosekc2634062017-10-11 16:54:44 +02003624{
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003625 int ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003626 struct vmcb *nested_vmcb;
3627 struct vmcb *hsave = svm->nested.hsave;
3628 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003629 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003630 u64 vmcb_gpa;
3631
3632 vmcb_gpa = svm->vmcb->save.rax;
3633
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003634 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
Dan Carpentera0619852019-08-27 12:38:52 +03003635 if (ret == -EINVAL) {
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003636 kvm_inject_gp(&svm->vcpu, 0);
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003637 return 1;
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003638 } else if (ret) {
3639 return kvm_skip_emulated_instruction(&svm->vcpu);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003640 }
3641
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003642 ret = kvm_skip_emulated_instruction(&svm->vcpu);
3643
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003644 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003645
3646 if (!nested_vmcb_checks(nested_vmcb)) {
3647 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3648 nested_vmcb->control.exit_code_hi = 0;
3649 nested_vmcb->control.exit_info_1 = 0;
3650 nested_vmcb->control.exit_info_2 = 0;
3651
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003652 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003653
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003654 return ret;
Ladi Prosekc2634062017-10-11 16:54:44 +02003655 }
3656
3657 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3658 nested_vmcb->save.rip,
3659 nested_vmcb->control.int_ctl,
3660 nested_vmcb->control.event_inj,
3661 nested_vmcb->control.nested_ctl);
3662
3663 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3664 nested_vmcb->control.intercept_cr >> 16,
3665 nested_vmcb->control.intercept_exceptions,
3666 nested_vmcb->control.intercept);
3667
3668 /* Clear internal status */
3669 kvm_clear_exception_queue(&svm->vcpu);
3670 kvm_clear_interrupt_queue(&svm->vcpu);
3671
3672 /*
3673 * Save the old vmcb, so we don't need to pick what we save, but can
3674 * restore everything when a VMEXIT occurs
3675 */
3676 hsave->save.es = vmcb->save.es;
3677 hsave->save.cs = vmcb->save.cs;
3678 hsave->save.ss = vmcb->save.ss;
3679 hsave->save.ds = vmcb->save.ds;
3680 hsave->save.gdtr = vmcb->save.gdtr;
3681 hsave->save.idtr = vmcb->save.idtr;
3682 hsave->save.efer = svm->vcpu.arch.efer;
3683 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3684 hsave->save.cr4 = svm->vcpu.arch.cr4;
3685 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3686 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3687 hsave->save.rsp = vmcb->save.rsp;
3688 hsave->save.rax = vmcb->save.rax;
3689 if (npt_enabled)
3690 hsave->save.cr3 = vmcb->save.cr3;
3691 else
3692 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3693
3694 copy_vmcb_control_area(hsave, vmcb);
3695
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003696 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003697
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003698 if (!nested_svm_vmrun_msrpm(svm)) {
3699 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3700 svm->vmcb->control.exit_code_hi = 0;
3701 svm->vmcb->control.exit_info_1 = 0;
3702 svm->vmcb->control.exit_info_2 = 0;
3703
3704 nested_svm_vmexit(svm);
3705 }
3706
Vitaly Kuznetsovc8e16b72019-08-13 15:53:35 +02003707 return ret;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003708}
3709
Joerg Roedel9966bf62009-08-07 11:49:40 +02003710static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003711{
3712 to_vmcb->save.fs = from_vmcb->save.fs;
3713 to_vmcb->save.gs = from_vmcb->save.gs;
3714 to_vmcb->save.tr = from_vmcb->save.tr;
3715 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3716 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3717 to_vmcb->save.star = from_vmcb->save.star;
3718 to_vmcb->save.lstar = from_vmcb->save.lstar;
3719 to_vmcb->save.cstar = from_vmcb->save.cstar;
3720 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3721 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3722 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3723 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003724}
3725
Avi Kivity851ba692009-08-24 11:10:17 +03003726static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003727{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003728 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003729 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003730 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003731
Alexander Graf55426752008-11-25 20:17:06 +01003732 if (nested_svm_check_permissions(svm))
3733 return 1;
3734
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003735 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3736 if (ret) {
3737 if (ret == -EINVAL)
3738 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003739 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003740 }
3741
3742 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003743
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003744 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003745
Joerg Roedel9966bf62009-08-07 11:49:40 +02003746 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003747 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003748
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003749 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003750}
3751
Avi Kivity851ba692009-08-24 11:10:17 +03003752static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003753{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003754 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003755 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003756 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003757
Alexander Graf55426752008-11-25 20:17:06 +01003758 if (nested_svm_check_permissions(svm))
3759 return 1;
3760
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003761 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3762 if (ret) {
3763 if (ret == -EINVAL)
3764 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003765 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003766 }
3767
3768 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003769
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003770 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003771
Joerg Roedel9966bf62009-08-07 11:49:40 +02003772 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003773 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003774
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003775 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003776}
3777
Avi Kivity851ba692009-08-24 11:10:17 +03003778static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003779{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003780 if (nested_svm_check_permissions(svm))
3781 return 1;
3782
Vitaly Kuznetsove7134c12019-08-13 15:53:34 +02003783 return nested_svm_vmrun(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003784}
3785
Avi Kivity851ba692009-08-24 11:10:17 +03003786static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003787{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003788 int ret;
3789
Alexander Graf1371d902008-11-25 20:17:04 +01003790 if (nested_svm_check_permissions(svm))
3791 return 1;
3792
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003793 /*
3794 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003795 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003796 */
3797 if (vgif_enabled(svm))
3798 clr_intercept(svm, INTERCEPT_STGI);
3799
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003800 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003801 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003802
Joerg Roedel2af91942009-08-07 11:49:28 +02003803 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003804
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003805 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003806}
3807
Avi Kivity851ba692009-08-24 11:10:17 +03003808static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003809{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003810 int ret;
3811
Alexander Graf1371d902008-11-25 20:17:04 +01003812 if (nested_svm_check_permissions(svm))
3813 return 1;
3814
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003815 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003816
Joerg Roedel2af91942009-08-07 11:49:28 +02003817 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003818
3819 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003820 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3821 svm_clear_vintr(svm);
3822 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3823 mark_dirty(svm->vmcb, VMCB_INTR);
3824 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003825
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003826 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003827}
3828
Avi Kivity851ba692009-08-24 11:10:17 +03003829static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003830{
3831 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003832
Sean Christophersonde3cd112019-04-30 10:36:17 -07003833 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3834 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003835
Alexander Grafff092382009-06-15 15:21:24 +02003836 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003837 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003838
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003839 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003840}
3841
Joerg Roedel532a46b2009-10-09 16:08:32 +02003842static int skinit_interception(struct vcpu_svm *svm)
3843{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003844 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003845
3846 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3847 return 1;
3848}
3849
David Kaplandab429a2015-03-02 13:43:37 -06003850static int wbinvd_interception(struct vcpu_svm *svm)
3851{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003852 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003853}
3854
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003855static int xsetbv_interception(struct vcpu_svm *svm)
3856{
3857 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003858 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003859
3860 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003861 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003862 }
3863
3864 return 1;
3865}
3866
Jim Mattson0cb84102019-09-19 15:59:17 -07003867static int rdpru_interception(struct vcpu_svm *svm)
3868{
3869 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3870 return 1;
3871}
3872
Avi Kivity851ba692009-08-24 11:10:17 +03003873static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003874{
Izik Eidus37817f22008-03-24 23:14:53 +02003875 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003876 int reason;
3877 int int_type = svm->vmcb->control.exit_int_info &
3878 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003879 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003880 uint32_t type =
3881 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3882 uint32_t idt_v =
3883 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003884 bool has_error_code = false;
3885 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003886
3887 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003888
Izik Eidus37817f22008-03-24 23:14:53 +02003889 if (svm->vmcb->control.exit_info_2 &
3890 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003891 reason = TASK_SWITCH_IRET;
3892 else if (svm->vmcb->control.exit_info_2 &
3893 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3894 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003895 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003896 reason = TASK_SWITCH_GATE;
3897 else
3898 reason = TASK_SWITCH_CALL;
3899
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003900 if (reason == TASK_SWITCH_GATE) {
3901 switch (type) {
3902 case SVM_EXITINTINFO_TYPE_NMI:
3903 svm->vcpu.arch.nmi_injected = false;
3904 break;
3905 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003906 if (svm->vmcb->control.exit_info_2 &
3907 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3908 has_error_code = true;
3909 error_code =
3910 (u32)svm->vmcb->control.exit_info_2;
3911 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003912 kvm_clear_exception_queue(&svm->vcpu);
3913 break;
3914 case SVM_EXITINTINFO_TYPE_INTR:
3915 kvm_clear_interrupt_queue(&svm->vcpu);
3916 break;
3917 default:
3918 break;
3919 }
3920 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003921
Gleb Natapov8317c292009-04-12 13:37:02 +03003922 if (reason != TASK_SWITCH_GATE ||
3923 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3924 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003925 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003926 if (!skip_emulated_instruction(&svm->vcpu))
Sean Christopherson738fece2019-08-27 14:40:34 -07003927 return 0;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02003928 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003929
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003930 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3931 int_vec = -1;
3932
Sean Christopherson10517782019-08-27 14:40:35 -07003933 return kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003934 has_error_code, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935}
3936
Avi Kivity851ba692009-08-24 11:10:17 +03003937static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938{
Kyle Huey6a908b62016-11-29 12:40:37 -08003939 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940}
3941
Avi Kivity851ba692009-08-24 11:10:17 +03003942static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003943{
3944 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003945 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003946 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003947 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003948 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003949 return 1;
3950}
3951
Avi Kivity851ba692009-08-24 11:10:17 +03003952static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003953{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003954 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003955 return kvm_emulate_instruction(&svm->vcpu, 0);
Andre Przywaradf4f31082010-12-21 11:12:06 +01003956
3957 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003958 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003959}
3960
Avi Kivity851ba692009-08-24 11:10:17 +03003961static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003962{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003963 return kvm_emulate_instruction(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003964}
3965
Brijesh Singh7607b712018-02-19 10:14:44 -06003966static int rsm_interception(struct vcpu_svm *svm)
3967{
Sean Christopherson60fc3d02019-08-27 14:40:38 -07003968 return kvm_emulate_instruction_from_buffer(&svm->vcpu, rsm_ins_bytes, 2);
Brijesh Singh7607b712018-02-19 10:14:44 -06003969}
3970
Avi Kivity332b56e2011-11-10 14:57:24 +02003971static int rdpmc_interception(struct vcpu_svm *svm)
3972{
3973 int err;
3974
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003975 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003976 return emulate_on_interception(svm);
3977
3978 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003979 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003980}
3981
Xiubo Li52eb5a62015-03-13 17:39:45 +08003982static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3983 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003984{
3985 unsigned long cr0 = svm->vcpu.arch.cr0;
3986 bool ret = false;
3987 u64 intercept;
3988
3989 intercept = svm->nested.intercept;
3990
3991 if (!is_guest_mode(&svm->vcpu) ||
3992 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3993 return false;
3994
3995 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3996 val &= ~SVM_CR0_SELECTIVE_MASK;
3997
3998 if (cr0 ^ val) {
3999 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
4000 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
4001 }
4002
4003 return ret;
4004}
4005
Andre Przywara7ff76d52010-12-21 11:12:04 +01004006#define CR_VALID (1ULL << 63)
4007
4008static int cr_interception(struct vcpu_svm *svm)
4009{
4010 int reg, cr;
4011 unsigned long val;
4012 int err;
4013
4014 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
4015 return emulate_on_interception(svm);
4016
4017 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4018 return emulate_on_interception(svm);
4019
4020 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004021 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4022 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4023 else
4024 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004025
4026 err = 0;
4027 if (cr >= 16) { /* mov to cr */
4028 cr -= 16;
4029 val = kvm_register_read(&svm->vcpu, reg);
4030 switch (cr) {
4031 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004032 if (!check_selective_cr0_intercepted(svm, val))
4033 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004034 else
4035 return 1;
4036
Andre Przywara7ff76d52010-12-21 11:12:04 +01004037 break;
4038 case 3:
4039 err = kvm_set_cr3(&svm->vcpu, val);
4040 break;
4041 case 4:
4042 err = kvm_set_cr4(&svm->vcpu, val);
4043 break;
4044 case 8:
4045 err = kvm_set_cr8(&svm->vcpu, val);
4046 break;
4047 default:
4048 WARN(1, "unhandled write to CR%d", cr);
4049 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4050 return 1;
4051 }
4052 } else { /* mov from cr */
4053 switch (cr) {
4054 case 0:
4055 val = kvm_read_cr0(&svm->vcpu);
4056 break;
4057 case 2:
4058 val = svm->vcpu.arch.cr2;
4059 break;
4060 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004061 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004062 break;
4063 case 4:
4064 val = kvm_read_cr4(&svm->vcpu);
4065 break;
4066 case 8:
4067 val = kvm_get_cr8(&svm->vcpu);
4068 break;
4069 default:
4070 WARN(1, "unhandled read from CR%d", cr);
4071 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4072 return 1;
4073 }
4074 kvm_register_write(&svm->vcpu, reg, val);
4075 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004076 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004077}
4078
Andre Przywaracae37972010-12-21 11:12:05 +01004079static int dr_interception(struct vcpu_svm *svm)
4080{
4081 int reg, dr;
4082 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004083
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004084 if (svm->vcpu.guest_debug == 0) {
4085 /*
4086 * No more DR vmexits; force a reload of the debug registers
4087 * and reenter on this instruction. The next vmexit will
4088 * retrieve the full state of the debug registers.
4089 */
4090 clr_dr_intercepts(svm);
4091 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4092 return 1;
4093 }
4094
Andre Przywaracae37972010-12-21 11:12:05 +01004095 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4096 return emulate_on_interception(svm);
4097
4098 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4099 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4100
4101 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004102 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4103 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004104 val = kvm_register_read(&svm->vcpu, reg);
4105 kvm_set_dr(&svm->vcpu, dr - 16, val);
4106 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004107 if (!kvm_require_dr(&svm->vcpu, dr))
4108 return 1;
4109 kvm_get_dr(&svm->vcpu, dr, &val);
4110 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004111 }
4112
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004113 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004114}
4115
Avi Kivity851ba692009-08-24 11:10:17 +03004116static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004117{
Avi Kivity851ba692009-08-24 11:10:17 +03004118 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004119 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004120
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004121 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4122 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004123 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004124 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004125 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004126 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004127 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004128 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4129 return 0;
4130}
4131
Tom Lendacky801e4592018-02-21 13:39:51 -06004132static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4133{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004134 msr->data = 0;
4135
4136 switch (msr->index) {
4137 case MSR_F10H_DECFG:
4138 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4139 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4140 break;
4141 default:
4142 return 1;
4143 }
4144
4145 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004146}
4147
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004148static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004149{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004150 struct vcpu_svm *svm = to_svm(vcpu);
4151
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004152 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004153 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004154 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004156#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004157 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004158 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004159 break;
4160 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004161 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162 break;
4163 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004164 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004165 break;
4166 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004167 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004168 break;
4169#endif
4170 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004171 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004172 break;
4173 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004174 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004175 break;
4176 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004177 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004178 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004179 case MSR_TSC_AUX:
4180 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4181 return 1;
4182 msr_info->data = svm->tsc_aux;
4183 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004184 /*
4185 * Nobody will change the following 5 values in the VMCB so we can
4186 * safely return them on rdmsr. They will always be 0 until LBRV is
4187 * implemented.
4188 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004189 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004190 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004191 break;
4192 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004193 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004194 break;
4195 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004196 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004197 break;
4198 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004199 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004200 break;
4201 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004202 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004203 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004204 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004205 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004206 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004207 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004208 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004209 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004210 case MSR_IA32_SPEC_CTRL:
4211 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004212 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4213 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004214 return 1;
4215
4216 msr_info->data = svm->spec_ctrl;
4217 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004218 case MSR_AMD64_VIRT_SPEC_CTRL:
4219 if (!msr_info->host_initiated &&
4220 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4221 return 1;
4222
4223 msr_info->data = svm->virt_spec_ctrl;
4224 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004225 case MSR_F15H_IC_CFG: {
4226
4227 int family, model;
4228
4229 family = guest_cpuid_family(vcpu);
4230 model = guest_cpuid_model(vcpu);
4231
4232 if (family < 0 || model < 0)
4233 return kvm_get_msr_common(vcpu, msr_info);
4234
4235 msr_info->data = 0;
4236
4237 if (family == 0x15 &&
4238 (model >= 0x2 && model < 0x20))
4239 msr_info->data = 0x1E;
4240 }
4241 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004242 case MSR_F10H_DECFG:
4243 msr_info->data = svm->msr_decfg;
4244 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004245 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004246 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004247 }
4248 return 0;
4249}
4250
Avi Kivity851ba692009-08-24 11:10:17 +03004251static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004253 return kvm_emulate_rdmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254}
4255
Joerg Roedel4a810182010-02-24 18:59:15 +01004256static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4257{
4258 struct vcpu_svm *svm = to_svm(vcpu);
4259 int svm_dis, chg_mask;
4260
4261 if (data & ~SVM_VM_CR_VALID_MASK)
4262 return 1;
4263
4264 chg_mask = SVM_VM_CR_VALID_MASK;
4265
4266 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4267 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4268
4269 svm->nested.vm_cr_msr &= ~chg_mask;
4270 svm->nested.vm_cr_msr |= (data & chg_mask);
4271
4272 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4273
4274 /* check for svm_disable while efer.svme is set */
4275 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4276 return 1;
4277
4278 return 0;
4279}
4280
Will Auld8fe8ab42012-11-29 12:42:12 -08004281static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004283 struct vcpu_svm *svm = to_svm(vcpu);
4284
Will Auld8fe8ab42012-11-29 12:42:12 -08004285 u32 ecx = msr->index;
4286 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004287 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004288 case MSR_IA32_CR_PAT:
4289 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4290 return 1;
4291 vcpu->arch.pat = data;
4292 svm->vmcb->save.g_pat = data;
4293 mark_dirty(svm->vmcb, VMCB_NPT);
4294 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004295 case MSR_IA32_SPEC_CTRL:
4296 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004297 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4298 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004299 return 1;
4300
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004301 if (data & ~kvm_spec_ctrl_valid_bits(vcpu))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004302 return 1;
4303
4304 svm->spec_ctrl = data;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004305 if (!data)
4306 break;
4307
4308 /*
4309 * For non-nested:
4310 * When it's written (to non-zero) for the first time, pass
4311 * it through.
4312 *
4313 * For nested:
4314 * The handling of the MSR bitmap for L2 guests is done in
4315 * nested_svm_vmrun_msrpm.
4316 * We update the L1 MSR bit as well since it will end up
4317 * touching the MSR anyway now.
4318 */
4319 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4320 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004321 case MSR_IA32_PRED_CMD:
4322 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004323 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004324 return 1;
4325
4326 if (data & ~PRED_CMD_IBPB)
4327 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01004328 if (!boot_cpu_has(X86_FEATURE_AMD_IBPB))
4329 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01004330 if (!data)
4331 break;
4332
4333 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
Ashok Raj15d45072018-02-01 22:59:43 +01004334 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4335 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004336 case MSR_AMD64_VIRT_SPEC_CTRL:
4337 if (!msr->host_initiated &&
4338 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4339 return 1;
4340
4341 if (data & ~SPEC_CTRL_SSBD)
4342 return 1;
4343
4344 svm->virt_spec_ctrl = data;
4345 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004346 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004347 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004348 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004349#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004351 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004352 break;
4353 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004354 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355 break;
4356 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004357 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358 break;
4359 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004360 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004361 break;
4362#endif
4363 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004364 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004365 break;
4366 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004367 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004368 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004369 break;
4370 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004371 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004372 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004373 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004374 case MSR_TSC_AUX:
4375 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4376 return 1;
4377
4378 /*
4379 * This is rare, so we update the MSR here instead of using
4380 * direct_access_msrs. Doing that would require a rdmsr in
4381 * svm_vcpu_put.
4382 */
4383 svm->tsc_aux = data;
4384 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4385 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004386 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004387 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004388 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4389 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004390 break;
4391 }
4392 if (data & DEBUGCTL_RESERVED_BITS)
4393 return 1;
4394
4395 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004396 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004397 if (data & (1ULL<<0))
4398 svm_enable_lbrv(svm);
4399 else
4400 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004401 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004402 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004403 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004404 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004405 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004406 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004407 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004408 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004409 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004410 case MSR_F10H_DECFG: {
4411 struct kvm_msr_entry msr_entry;
4412
4413 msr_entry.index = msr->index;
4414 if (svm_get_msr_feature(&msr_entry))
4415 return 1;
4416
4417 /* Check the supported bits */
4418 if (data & ~msr_entry.data)
4419 return 1;
4420
4421 /* Don't allow the guest to change a bit, #GP */
4422 if (!msr->host_initiated && (data ^ msr_entry.data))
4423 return 1;
4424
4425 svm->msr_decfg = data;
4426 break;
4427 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004428 case MSR_IA32_APICBASE:
4429 if (kvm_vcpu_apicv_active(vcpu))
4430 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004431 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004432 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004433 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004434 }
4435 return 0;
4436}
4437
Avi Kivity851ba692009-08-24 11:10:17 +03004438static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004439{
Sean Christopherson1edce0a2019-09-05 14:22:55 -07004440 return kvm_emulate_wrmsr(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441}
4442
Avi Kivity851ba692009-08-24 11:10:17 +03004443static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004444{
Rusty Russelle756fc62007-07-30 20:07:08 +10004445 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004446 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004447 else
Avi Kivity851ba692009-08-24 11:10:17 +03004448 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004449}
4450
Avi Kivity851ba692009-08-24 11:10:17 +03004451static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004452{
Avi Kivity3842d132010-07-27 12:30:24 +03004453 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004454 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004455 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004456 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004457 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004458 return 1;
4459}
4460
Mark Langsdorf565d0992009-10-06 14:25:02 -05004461static int pause_interception(struct vcpu_svm *svm)
4462{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004463 struct kvm_vcpu *vcpu = &svm->vcpu;
4464 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4465
Babu Moger8566ac82018-03-16 16:37:26 -04004466 if (pause_filter_thresh)
4467 grow_ple_window(vcpu);
4468
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004469 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004470 return 1;
4471}
4472
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004473static int nop_interception(struct vcpu_svm *svm)
4474{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004475 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004476}
4477
4478static int monitor_interception(struct vcpu_svm *svm)
4479{
4480 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4481 return nop_interception(svm);
4482}
4483
4484static int mwait_interception(struct vcpu_svm *svm)
4485{
4486 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4487 return nop_interception(svm);
4488}
4489
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004490enum avic_ipi_failure_cause {
4491 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4492 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4493 AVIC_IPI_FAILURE_INVALID_TARGET,
4494 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4495};
4496
4497static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4498{
4499 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4500 u32 icrl = svm->vmcb->control.exit_info_1;
4501 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004502 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004503 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4504
4505 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4506
4507 switch (id) {
4508 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4509 /*
4510 * AVIC hardware handles the generation of
4511 * IPIs when the specified Message Type is Fixed
4512 * (also known as fixed delivery mode) and
4513 * the Trigger Mode is edge-triggered. The hardware
4514 * also supports self and broadcast delivery modes
4515 * specified via the Destination Shorthand(DSH)
4516 * field of the ICRL. Logical and physical APIC ID
4517 * formats are supported. All other IPI types cause
4518 * a #VMEXIT, which needs to emulated.
4519 */
4520 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4521 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4522 break;
4523 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004524 int i;
4525 struct kvm_vcpu *vcpu;
4526 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004527 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4528
4529 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004530 * At this point, we expect that the AVIC HW has already
4531 * set the appropriate IRR bits on the valid target
4532 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004533 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004534 kvm_for_each_vcpu(i, vcpu, kvm) {
4535 bool m = kvm_apic_match_dest(vcpu, apic,
Peter Xuac8ef992019-12-04 20:07:19 +01004536 icrl & APIC_SHORT_MASK,
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004537 GET_APIC_DEST_FIELD(icrh),
Peter Xuac8ef992019-12-04 20:07:19 +01004538 icrl & APIC_DEST_MASK);
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004539
4540 if (m && !avic_vcpu_is_running(vcpu))
4541 kvm_vcpu_wake_up(vcpu);
4542 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004543 break;
4544 }
4545 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004546 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4547 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004548 break;
4549 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4550 WARN_ONCE(1, "Invalid backing page\n");
4551 break;
4552 default:
4553 pr_err("Unknown IPI interception\n");
4554 }
4555
4556 return 1;
4557}
4558
4559static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4560{
Sean Christopherson81811c12018-03-20 12:17:21 -07004561 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004562 int index;
4563 u32 *logical_apic_id_table;
4564 int dlid = GET_APIC_LOGICAL_ID(ldr);
4565
4566 if (!dlid)
4567 return NULL;
4568
4569 if (flat) { /* flat */
4570 index = ffs(dlid) - 1;
4571 if (index > 7)
4572 return NULL;
4573 } else { /* cluster */
4574 int cluster = (dlid & 0xf0) >> 4;
4575 int apic = ffs(dlid & 0x0f) - 1;
4576
4577 if ((apic < 0) || (apic > 7) ||
4578 (cluster >= 0xf))
4579 return NULL;
4580 index = (cluster << 2) + apic;
4581 }
4582
Sean Christopherson81811c12018-03-20 12:17:21 -07004583 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004584
4585 return &logical_apic_id_table[index];
4586}
4587
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004588static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004589{
4590 bool flat;
4591 u32 *entry, new_entry;
4592
4593 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4594 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4595 if (!entry)
4596 return -EINVAL;
4597
4598 new_entry = READ_ONCE(*entry);
4599 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4600 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004601 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004602 WRITE_ONCE(*entry, new_entry);
4603
4604 return 0;
4605}
4606
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004607static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4608{
4609 struct vcpu_svm *svm = to_svm(vcpu);
4610 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4611 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4612
4613 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004614 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004615}
4616
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004617static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4618{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004619 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004620 struct vcpu_svm *svm = to_svm(vcpu);
4621 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004622 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004623
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004624 if (ldr == svm->ldr_reg)
4625 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004626
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004627 avic_invalidate_logical_id_entry(vcpu);
4628
4629 if (ldr)
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004630 ret = avic_ldr_write(vcpu, id, ldr);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004631
4632 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004633 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004634
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004635 return ret;
4636}
4637
4638static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4639{
4640 u64 *old, *new;
4641 struct vcpu_svm *svm = to_svm(vcpu);
Miaohe Lin5c94ac52019-10-18 10:50:31 +08004642 u32 id = kvm_xapic_id(vcpu->arch.apic);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004643
4644 if (vcpu->vcpu_id == id)
4645 return 0;
4646
4647 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4648 new = avic_get_physical_id_entry(vcpu, id);
4649 if (!new || !old)
4650 return 1;
4651
4652 /* We need to move physical_id_entry to new offset */
4653 *new = *old;
4654 *old = 0ULL;
4655 to_svm(vcpu)->avic_physical_id_cache = new;
4656
4657 /*
4658 * Also update the guest physical APIC ID in the logical
4659 * APIC ID table entry if already setup the LDR.
4660 */
4661 if (svm->ldr_reg)
4662 avic_handle_ldr_update(vcpu);
4663
4664 return 0;
4665}
4666
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004667static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004668{
4669 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004670 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004671
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004672 if (svm->dfr_reg == dfr)
4673 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004674
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004675 avic_invalidate_logical_id_entry(vcpu);
4676 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004677}
4678
4679static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4680{
4681 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4682 u32 offset = svm->vmcb->control.exit_info_1 &
4683 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4684
4685 switch (offset) {
4686 case APIC_ID:
4687 if (avic_handle_apic_id_update(&svm->vcpu))
4688 return 0;
4689 break;
4690 case APIC_LDR:
4691 if (avic_handle_ldr_update(&svm->vcpu))
4692 return 0;
4693 break;
4694 case APIC_DFR:
4695 avic_handle_dfr_update(&svm->vcpu);
4696 break;
4697 default:
4698 break;
4699 }
4700
4701 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4702
4703 return 1;
4704}
4705
4706static bool is_avic_unaccelerated_access_trap(u32 offset)
4707{
4708 bool ret = false;
4709
4710 switch (offset) {
4711 case APIC_ID:
4712 case APIC_EOI:
4713 case APIC_RRR:
4714 case APIC_LDR:
4715 case APIC_DFR:
4716 case APIC_SPIV:
4717 case APIC_ESR:
4718 case APIC_ICR:
4719 case APIC_LVTT:
4720 case APIC_LVTTHMR:
4721 case APIC_LVTPC:
4722 case APIC_LVT0:
4723 case APIC_LVT1:
4724 case APIC_LVTERR:
4725 case APIC_TMICT:
4726 case APIC_TDCR:
4727 ret = true;
4728 break;
4729 default:
4730 break;
4731 }
4732 return ret;
4733}
4734
4735static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4736{
4737 int ret = 0;
4738 u32 offset = svm->vmcb->control.exit_info_1 &
4739 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4740 u32 vector = svm->vmcb->control.exit_info_2 &
4741 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4742 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4743 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4744 bool trap = is_avic_unaccelerated_access_trap(offset);
4745
4746 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4747 trap, write, vector);
4748 if (trap) {
4749 /* Handling Trap */
4750 WARN_ONCE(!write, "svm: Handling trap read.\n");
4751 ret = avic_unaccel_trap_write(svm);
4752 } else {
4753 /* Handling Fault */
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004754 ret = kvm_emulate_instruction(&svm->vcpu, 0);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004755 }
4756
4757 return ret;
4758}
4759
Mathias Krause09941fb2012-08-30 01:30:20 +02004760static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004761 [SVM_EXIT_READ_CR0] = cr_interception,
4762 [SVM_EXIT_READ_CR3] = cr_interception,
4763 [SVM_EXIT_READ_CR4] = cr_interception,
4764 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004765 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004766 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004767 [SVM_EXIT_WRITE_CR3] = cr_interception,
4768 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004769 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004770 [SVM_EXIT_READ_DR0] = dr_interception,
4771 [SVM_EXIT_READ_DR1] = dr_interception,
4772 [SVM_EXIT_READ_DR2] = dr_interception,
4773 [SVM_EXIT_READ_DR3] = dr_interception,
4774 [SVM_EXIT_READ_DR4] = dr_interception,
4775 [SVM_EXIT_READ_DR5] = dr_interception,
4776 [SVM_EXIT_READ_DR6] = dr_interception,
4777 [SVM_EXIT_READ_DR7] = dr_interception,
4778 [SVM_EXIT_WRITE_DR0] = dr_interception,
4779 [SVM_EXIT_WRITE_DR1] = dr_interception,
4780 [SVM_EXIT_WRITE_DR2] = dr_interception,
4781 [SVM_EXIT_WRITE_DR3] = dr_interception,
4782 [SVM_EXIT_WRITE_DR4] = dr_interception,
4783 [SVM_EXIT_WRITE_DR5] = dr_interception,
4784 [SVM_EXIT_WRITE_DR6] = dr_interception,
4785 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004786 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4787 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004788 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004789 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004790 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004791 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004792 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004793 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004794 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004795 [SVM_EXIT_SMI] = nop_on_interception,
4796 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004797 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004798 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004799 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004800 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004801 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004802 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004803 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004804 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004805 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004806 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004807 [SVM_EXIT_MSR] = msr_interception,
4808 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004809 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004810 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004811 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004812 [SVM_EXIT_VMLOAD] = vmload_interception,
4813 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004814 [SVM_EXIT_STGI] = stgi_interception,
4815 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004816 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004817 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004818 [SVM_EXIT_MONITOR] = monitor_interception,
4819 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004820 [SVM_EXIT_XSETBV] = xsetbv_interception,
Jim Mattson0cb84102019-09-19 15:59:17 -07004821 [SVM_EXIT_RDPRU] = rdpru_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004822 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004823 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004824 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4825 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004826};
4827
Joe Perchesae8cc052011-04-24 22:00:50 -07004828static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004829{
4830 struct vcpu_svm *svm = to_svm(vcpu);
4831 struct vmcb_control_area *control = &svm->vmcb->control;
4832 struct vmcb_save_area *save = &svm->vmcb->save;
4833
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004834 if (!dump_invalid_vmcb) {
4835 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4836 return;
4837 }
4838
Joerg Roedel3f10c842010-05-05 16:04:42 +02004839 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004840 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4841 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4842 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4843 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4844 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4845 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4846 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004847 pr_err("%-20s%d\n", "pause filter threshold:",
4848 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004849 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4850 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4851 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4852 pr_err("%-20s%d\n", "asid:", control->asid);
4853 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4854 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4855 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4856 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4857 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4858 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4859 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4860 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4861 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4862 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4863 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004864 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004865 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4866 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004867 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004868 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004869 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4870 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4871 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004872 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004873 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4874 "es:",
4875 save->es.selector, save->es.attrib,
4876 save->es.limit, save->es.base);
4877 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4878 "cs:",
4879 save->cs.selector, save->cs.attrib,
4880 save->cs.limit, save->cs.base);
4881 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4882 "ss:",
4883 save->ss.selector, save->ss.attrib,
4884 save->ss.limit, save->ss.base);
4885 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4886 "ds:",
4887 save->ds.selector, save->ds.attrib,
4888 save->ds.limit, save->ds.base);
4889 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4890 "fs:",
4891 save->fs.selector, save->fs.attrib,
4892 save->fs.limit, save->fs.base);
4893 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4894 "gs:",
4895 save->gs.selector, save->gs.attrib,
4896 save->gs.limit, save->gs.base);
4897 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4898 "gdtr:",
4899 save->gdtr.selector, save->gdtr.attrib,
4900 save->gdtr.limit, save->gdtr.base);
4901 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4902 "ldtr:",
4903 save->ldtr.selector, save->ldtr.attrib,
4904 save->ldtr.limit, save->ldtr.base);
4905 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4906 "idtr:",
4907 save->idtr.selector, save->idtr.attrib,
4908 save->idtr.limit, save->idtr.base);
4909 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4910 "tr:",
4911 save->tr.selector, save->tr.attrib,
4912 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004913 pr_err("cpl: %d efer: %016llx\n",
4914 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004915 pr_err("%-15s %016llx %-13s %016llx\n",
4916 "cr0:", save->cr0, "cr2:", save->cr2);
4917 pr_err("%-15s %016llx %-13s %016llx\n",
4918 "cr3:", save->cr3, "cr4:", save->cr4);
4919 pr_err("%-15s %016llx %-13s %016llx\n",
4920 "dr6:", save->dr6, "dr7:", save->dr7);
4921 pr_err("%-15s %016llx %-13s %016llx\n",
4922 "rip:", save->rip, "rflags:", save->rflags);
4923 pr_err("%-15s %016llx %-13s %016llx\n",
4924 "rsp:", save->rsp, "rax:", save->rax);
4925 pr_err("%-15s %016llx %-13s %016llx\n",
4926 "star:", save->star, "lstar:", save->lstar);
4927 pr_err("%-15s %016llx %-13s %016llx\n",
4928 "cstar:", save->cstar, "sfmask:", save->sfmask);
4929 pr_err("%-15s %016llx %-13s %016llx\n",
4930 "kernel_gs_base:", save->kernel_gs_base,
4931 "sysenter_cs:", save->sysenter_cs);
4932 pr_err("%-15s %016llx %-13s %016llx\n",
4933 "sysenter_esp:", save->sysenter_esp,
4934 "sysenter_eip:", save->sysenter_eip);
4935 pr_err("%-15s %016llx %-13s %016llx\n",
4936 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4937 pr_err("%-15s %016llx %-13s %016llx\n",
4938 "br_from:", save->br_from, "br_to:", save->br_to);
4939 pr_err("%-15s %016llx %-13s %016llx\n",
4940 "excp_from:", save->last_excp_from,
4941 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004942}
4943
Avi Kivity586f9602010-11-18 13:09:54 +02004944static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4945{
4946 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4947
4948 *info1 = control->exit_info_1;
4949 *info2 = control->exit_info_2;
4950}
4951
Wanpeng Li1e9e2622019-11-21 11:17:11 +08004952static int handle_exit(struct kvm_vcpu *vcpu,
4953 enum exit_fastpath_completion exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004954{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004955 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004956 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004957 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004958
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004959 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4960
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004961 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004962 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4963 if (npt_enabled)
4964 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004965
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004966 if (unlikely(svm->nested.exit_required)) {
4967 nested_svm_vmexit(svm);
4968 svm->nested.exit_required = false;
4969
4970 return 1;
4971 }
4972
Joerg Roedel20307532010-11-29 17:51:48 +01004973 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004974 int vmexit;
4975
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004976 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4977 svm->vmcb->control.exit_info_1,
4978 svm->vmcb->control.exit_info_2,
4979 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004980 svm->vmcb->control.exit_int_info_err,
4981 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004982
Joerg Roedel410e4d52009-08-07 11:49:44 +02004983 vmexit = nested_svm_exit_special(svm);
4984
4985 if (vmexit == NESTED_EXIT_CONTINUE)
4986 vmexit = nested_svm_exit_handled(svm);
4987
4988 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004989 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004990 }
4991
Joerg Roedela5c38322009-08-07 11:49:32 +02004992 svm_complete_interrupts(svm);
4993
Avi Kivity04d2cc72007-09-10 18:10:54 +03004994 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4995 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4996 kvm_run->fail_entry.hardware_entry_failure_reason
4997 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004998 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004999 return 0;
5000 }
5001
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005002 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005003 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005004 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5005 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005006 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005007 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005008 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005009 exit_code);
5010
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005011 if (exit_fastpath == EXIT_FASTPATH_SKIP_EMUL_INS) {
5012 kvm_skip_emulated_instruction(vcpu);
5013 return 1;
5014 } else if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005015 || !svm_exit_handlers[exit_code]) {
Liran Alon7396d332019-08-26 13:16:43 +03005016 vcpu_unimpl(vcpu, "svm: unexpected exit reason 0x%x\n", exit_code);
5017 dump_vmcb(vcpu);
5018 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5019 vcpu->run->internal.suberror =
5020 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
5021 vcpu->run->internal.ndata = 1;
5022 vcpu->run->internal.data[0] = exit_code;
5023 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005024 }
5025
Andrea Arcangeli3dcb2a32019-11-04 18:00:00 -05005026#ifdef CONFIG_RETPOLINE
5027 if (exit_code == SVM_EXIT_MSR)
5028 return msr_interception(svm);
5029 else if (exit_code == SVM_EXIT_VINTR)
5030 return interrupt_window_interception(svm);
5031 else if (exit_code == SVM_EXIT_INTR)
5032 return intr_interception(svm);
5033 else if (exit_code == SVM_EXIT_HLT)
5034 return halt_interception(svm);
5035 else if (exit_code == SVM_EXIT_NPF)
5036 return npf_interception(svm);
5037#endif
Avi Kivity851ba692009-08-24 11:10:17 +03005038 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005039}
5040
5041static void reload_tss(struct kvm_vcpu *vcpu)
5042{
5043 int cpu = raw_smp_processor_id();
5044
Tejun Heo0fe1e002009-10-29 22:34:14 +09005045 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5046 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005047 load_TR_desc();
5048}
5049
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005050static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5051{
5052 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5053 int asid = sev_get_asid(svm->vcpu.kvm);
5054
5055 /* Assign the asid allocated with this SEV guest */
5056 svm->vmcb->control.asid = asid;
5057
5058 /*
5059 * Flush guest TLB:
5060 *
5061 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5062 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5063 */
5064 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5065 svm->last_cpu == cpu)
5066 return;
5067
5068 svm->last_cpu = cpu;
5069 sd->sev_vmcbs[asid] = svm->vmcb;
5070 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5071 mark_dirty(svm->vmcb, VMCB_ASID);
5072}
5073
Rusty Russelle756fc62007-07-30 20:07:08 +10005074static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005075{
5076 int cpu = raw_smp_processor_id();
5077
Tejun Heo0fe1e002009-10-29 22:34:14 +09005078 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005079
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005080 if (sev_guest(svm->vcpu.kvm))
5081 return pre_sev_run(svm, cpu);
5082
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005083 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005084 if (svm->asid_generation != sd->asid_generation)
5085 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005086}
5087
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005088static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5089{
5090 struct vcpu_svm *svm = to_svm(vcpu);
5091
5092 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5093 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005094 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005095 ++vcpu->stat.nmi_injections;
5096}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005097
Eddie Dong85f455f2007-07-06 12:20:49 +03005098static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005099{
5100 struct vmcb_control_area *control;
5101
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005102 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005103 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005104 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005105 control->int_ctl &= ~V_INTR_PRIO_MASK;
5106 control->int_ctl |= V_IRQ_MASK |
5107 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005108 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005109}
5110
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005111static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005112{
5113 struct vcpu_svm *svm = to_svm(vcpu);
5114
Joerg Roedel2af91942009-08-07 11:49:28 +02005115 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005116
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005117 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5118 ++vcpu->stat.irq_injections;
5119
Alexander Graf219b65d2009-06-15 15:21:25 +02005120 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5121 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005122}
5123
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005124static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5125{
5126 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5127}
5128
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005129static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5130{
5131 struct vcpu_svm *svm = to_svm(vcpu);
5132
Liran Alon49d654d2019-11-11 14:26:21 +02005133 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005134 return;
5135
Radim Krčmář596f3142014-03-11 19:11:18 +01005136 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5137
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005138 if (irr == -1)
5139 return;
5140
5141 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005142 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005143}
5144
Jim Mattson8d860bb2018-05-09 16:56:05 -04005145static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005146{
5147 return;
5148}
5149
Suthikulpanit, Suravee2cf9af02019-09-13 19:00:49 +00005150static bool svm_get_enable_apicv(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005151{
Suthikulpanit, Suravee2cf9af02019-09-13 19:00:49 +00005152 return avic && irqchip_split(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005153}
5154
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005155static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5156{
5157}
5158
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005159static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005160{
5161}
5162
5163/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005164static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5165{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005166 struct vcpu_svm *svm = to_svm(vcpu);
5167 struct vmcb *vmcb = svm->vmcb;
5168
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005169 if (kvm_vcpu_apicv_active(vcpu))
5170 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
5171 else
5172 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5173 mark_dirty(vmcb, VMCB_AVIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005174}
5175
Andrey Smetanin63086302015-11-10 15:36:32 +03005176static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005177{
5178 return;
5179}
5180
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005181static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5182{
5183 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5184 smp_mb__after_atomic();
5185
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005186 if (avic_vcpu_is_running(vcpu)) {
5187 int cpuid = vcpu->cpu;
5188
5189 if (cpuid != get_cpu())
5190 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5191 put_cpu();
5192 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005193 kvm_vcpu_wake_up(vcpu);
5194}
5195
Wanpeng Li17e433b2019-08-05 10:03:19 +08005196static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5197{
5198 return false;
5199}
5200
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005201static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5202{
5203 unsigned long flags;
5204 struct amd_svm_iommu_ir *cur;
5205
5206 spin_lock_irqsave(&svm->ir_list_lock, flags);
5207 list_for_each_entry(cur, &svm->ir_list, node) {
5208 if (cur->data != pi->ir_data)
5209 continue;
5210 list_del(&cur->node);
5211 kfree(cur);
5212 break;
5213 }
5214 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5215}
5216
5217static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5218{
5219 int ret = 0;
5220 unsigned long flags;
5221 struct amd_svm_iommu_ir *ir;
5222
5223 /**
5224 * In some cases, the existing irte is updaed and re-set,
5225 * so we need to check here if it's already been * added
5226 * to the ir_list.
5227 */
5228 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5229 struct kvm *kvm = svm->vcpu.kvm;
5230 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5231 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5232 struct vcpu_svm *prev_svm;
5233
5234 if (!prev_vcpu) {
5235 ret = -EINVAL;
5236 goto out;
5237 }
5238
5239 prev_svm = to_svm(prev_vcpu);
5240 svm_ir_list_del(prev_svm, pi);
5241 }
5242
5243 /**
5244 * Allocating new amd_iommu_pi_data, which will get
5245 * add to the per-vcpu ir_list.
5246 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005247 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005248 if (!ir) {
5249 ret = -ENOMEM;
5250 goto out;
5251 }
5252 ir->data = pi->ir_data;
5253
5254 spin_lock_irqsave(&svm->ir_list_lock, flags);
5255 list_add(&ir->node, &svm->ir_list);
5256 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5257out:
5258 return ret;
5259}
5260
5261/**
5262 * Note:
5263 * The HW cannot support posting multicast/broadcast
5264 * interrupts to a vCPU. So, we still use legacy interrupt
5265 * remapping for these kind of interrupts.
5266 *
5267 * For lowest-priority interrupts, we only support
5268 * those with single CPU as the destination, e.g. user
5269 * configures the interrupts via /proc/irq or uses
5270 * irqbalance to make the interrupts single-CPU.
5271 */
5272static int
5273get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5274 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5275{
5276 struct kvm_lapic_irq irq;
5277 struct kvm_vcpu *vcpu = NULL;
5278
5279 kvm_set_msi_irq(kvm, e, &irq);
5280
Alexander Graffdcf7562019-09-05 14:58:18 +02005281 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu) ||
5282 !kvm_irq_is_postable(&irq)) {
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005283 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5284 __func__, irq.vector);
5285 return -1;
5286 }
5287
5288 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5289 irq.vector);
5290 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005291 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005292 vcpu_info->vector = irq.vector;
5293
5294 return 0;
5295}
5296
5297/*
5298 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5299 *
5300 * @kvm: kvm
5301 * @host_irq: host irq of the interrupt
5302 * @guest_irq: gsi of the interrupt
5303 * @set: set or unset PI
5304 * returns 0 on success, < 0 on failure
5305 */
5306static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5307 uint32_t guest_irq, bool set)
5308{
5309 struct kvm_kernel_irq_routing_entry *e;
5310 struct kvm_irq_routing_table *irq_rt;
5311 int idx, ret = -EINVAL;
5312
5313 if (!kvm_arch_has_assigned_device(kvm) ||
5314 !irq_remapping_cap(IRQ_POSTING_CAP))
5315 return 0;
5316
5317 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5318 __func__, host_irq, guest_irq, set);
5319
5320 idx = srcu_read_lock(&kvm->irq_srcu);
5321 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5322 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5323
5324 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5325 struct vcpu_data vcpu_info;
5326 struct vcpu_svm *svm = NULL;
5327
5328 if (e->type != KVM_IRQ_ROUTING_MSI)
5329 continue;
5330
5331 /**
5332 * Here, we setup with legacy mode in the following cases:
5333 * 1. When cannot target interrupt to a specific vcpu.
5334 * 2. Unsetting posted interrupt.
5335 * 3. APIC virtialization is disabled for the vcpu.
Alexander Graffdcf7562019-09-05 14:58:18 +02005336 * 4. IRQ has incompatible delivery mode (SMI, INIT, etc)
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005337 */
5338 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5339 kvm_vcpu_apicv_active(&svm->vcpu)) {
5340 struct amd_iommu_pi_data pi;
5341
5342 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005343 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5344 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005345 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005346 svm->vcpu.vcpu_id);
5347 pi.is_guest_mode = true;
5348 pi.vcpu_data = &vcpu_info;
5349 ret = irq_set_vcpu_affinity(host_irq, &pi);
5350
5351 /**
5352 * Here, we successfully setting up vcpu affinity in
5353 * IOMMU guest mode. Now, we need to store the posted
5354 * interrupt information in a per-vcpu ir_list so that
5355 * we can reference to them directly when we update vcpu
5356 * scheduling information in IOMMU irte.
5357 */
5358 if (!ret && pi.is_guest_mode)
5359 svm_ir_list_add(svm, &pi);
5360 } else {
5361 /* Use legacy mode in IRTE */
5362 struct amd_iommu_pi_data pi;
5363
5364 /**
5365 * Here, pi is used to:
5366 * - Tell IOMMU to use legacy mode for this interrupt.
5367 * - Retrieve ga_tag of prior interrupt remapping data.
5368 */
5369 pi.is_guest_mode = false;
5370 ret = irq_set_vcpu_affinity(host_irq, &pi);
5371
5372 /**
5373 * Check if the posted interrupt was previously
5374 * setup with the guest_mode by checking if the ga_tag
5375 * was cached. If so, we need to clean up the per-vcpu
5376 * ir_list.
5377 */
5378 if (!ret && pi.prev_ga_tag) {
5379 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5380 struct kvm_vcpu *vcpu;
5381
5382 vcpu = kvm_get_vcpu_by_id(kvm, id);
5383 if (vcpu)
5384 svm_ir_list_del(to_svm(vcpu), &pi);
5385 }
5386 }
5387
5388 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005389 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5390 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005391 vcpu_info.pi_desc_addr, set);
5392 }
5393
5394 if (ret < 0) {
5395 pr_err("%s: failed to update PI IRTE\n", __func__);
5396 goto out;
5397 }
5398 }
5399
5400 ret = 0;
5401out:
5402 srcu_read_unlock(&kvm->irq_srcu, idx);
5403 return ret;
5404}
5405
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005406static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005407{
5408 struct vcpu_svm *svm = to_svm(vcpu);
5409 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005410 int ret;
5411 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5412 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5413 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5414
5415 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005416}
5417
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005418static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5419{
5420 struct vcpu_svm *svm = to_svm(vcpu);
5421
5422 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5423}
5424
5425static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5426{
5427 struct vcpu_svm *svm = to_svm(vcpu);
5428
5429 if (masked) {
5430 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005431 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005432 } else {
5433 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005434 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005435 }
5436}
5437
Gleb Natapov78646122009-03-23 12:12:11 +02005438static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5439{
5440 struct vcpu_svm *svm = to_svm(vcpu);
5441 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005442 int ret;
5443
5444 if (!gif_set(svm) ||
5445 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5446 return 0;
5447
Avi Kivityf6e78472010-08-02 15:30:20 +03005448 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005449
Joerg Roedel20307532010-11-29 17:51:48 +01005450 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005451 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5452
5453 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005454}
5455
Jan Kiszkac9a79532014-03-07 20:03:15 +01005456static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005457{
Alexander Graf219b65d2009-06-15 15:21:25 +02005458 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005459
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005460 if (kvm_vcpu_apicv_active(vcpu))
5461 return;
5462
Joerg Roedele0231712010-02-24 18:59:10 +01005463 /*
5464 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5465 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5466 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005467 * we'll get the vintr intercept. However, if the vGIF feature is
5468 * enabled, the STGI interception will not occur. Enable the irq
5469 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005470 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005471 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005472 svm_set_vintr(svm);
5473 svm_inject_irq(svm, 0x0);
5474 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005475}
5476
Jan Kiszkac9a79532014-03-07 20:03:15 +01005477static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005478{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005479 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005480
Gleb Natapov44c11432009-05-11 13:35:52 +03005481 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5482 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005483 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005484
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005485 if (!gif_set(svm)) {
5486 if (vgif_enabled(svm))
5487 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005488 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005489 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005490
5491 if (svm->nested.exit_required)
5492 return; /* we're not going to run the guest yet */
5493
Joerg Roedele0231712010-02-24 18:59:10 +01005494 /*
5495 * Something prevents NMI from been injected. Single step over possible
5496 * problem (IRET or exception injection or interrupt shadow)
5497 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005498 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005499 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005500 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005501}
5502
Izik Eiduscbc94022007-10-25 00:29:55 +02005503static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5504{
5505 return 0;
5506}
5507
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005508static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5509{
5510 return 0;
5511}
5512
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005513static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005514{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005515 struct vcpu_svm *svm = to_svm(vcpu);
5516
5517 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5518 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5519 else
5520 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005521}
5522
Junaid Shahidfaff8752018-06-29 13:10:05 -07005523static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5524{
5525 struct vcpu_svm *svm = to_svm(vcpu);
5526
5527 invlpga(gva, svm->vmcb->control.asid);
5528}
5529
Avi Kivity04d2cc72007-09-10 18:10:54 +03005530static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5531{
5532}
5533
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005534static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5535{
5536 struct vcpu_svm *svm = to_svm(vcpu);
5537
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005538 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005539 return;
5540
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005541 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005542 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005543 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005544 }
5545}
5546
Joerg Roedel649d6862008-04-16 16:51:15 +02005547static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5548{
5549 struct vcpu_svm *svm = to_svm(vcpu);
5550 u64 cr8;
5551
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005552 if (svm_nested_virtualize_tpr(vcpu) ||
5553 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005554 return;
5555
Joerg Roedel649d6862008-04-16 16:51:15 +02005556 cr8 = kvm_get_cr8(vcpu);
5557 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5558 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5559}
5560
Gleb Natapov9222be12009-04-23 17:14:37 +03005561static void svm_complete_interrupts(struct vcpu_svm *svm)
5562{
5563 u8 vector;
5564 int type;
5565 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005566 unsigned int3_injected = svm->int3_injected;
5567
5568 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005569
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005570 /*
5571 * If we've made progress since setting HF_IRET_MASK, we've
5572 * executed an IRET and can allow NMI injection.
5573 */
5574 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5575 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005576 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005577 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5578 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005579
Gleb Natapov9222be12009-04-23 17:14:37 +03005580 svm->vcpu.arch.nmi_injected = false;
5581 kvm_clear_exception_queue(&svm->vcpu);
5582 kvm_clear_interrupt_queue(&svm->vcpu);
5583
5584 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5585 return;
5586
Avi Kivity3842d132010-07-27 12:30:24 +03005587 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5588
Gleb Natapov9222be12009-04-23 17:14:37 +03005589 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5590 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5591
5592 switch (type) {
5593 case SVM_EXITINTINFO_TYPE_NMI:
5594 svm->vcpu.arch.nmi_injected = true;
5595 break;
5596 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005597 /*
5598 * In case of software exceptions, do not reinject the vector,
5599 * but re-execute the instruction instead. Rewind RIP first
5600 * if we emulated INT3 before.
5601 */
5602 if (kvm_exception_is_soft(vector)) {
5603 if (vector == BP_VECTOR && int3_injected &&
5604 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5605 kvm_rip_write(&svm->vcpu,
5606 kvm_rip_read(&svm->vcpu) -
5607 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005608 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005609 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005610 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5611 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005612 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005613
5614 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005615 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005616 break;
5617 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005618 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005619 break;
5620 default:
5621 break;
5622 }
5623}
5624
Avi Kivityb463a6f2010-07-20 15:06:17 +03005625static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5626{
5627 struct vcpu_svm *svm = to_svm(vcpu);
5628 struct vmcb_control_area *control = &svm->vmcb->control;
5629
5630 control->exit_int_info = control->event_inj;
5631 control->exit_int_info_err = control->event_inj_err;
5632 control->event_inj = 0;
5633 svm_complete_interrupts(svm);
5634}
5635
Avi Kivity851ba692009-08-24 11:10:17 +03005636static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005637{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005638 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005639
Joerg Roedel2041a062010-04-22 12:33:08 +02005640 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5641 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5642 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5643
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005644 /*
5645 * A vmexit emulation is required before the vcpu can be executed
5646 * again.
5647 */
5648 if (unlikely(svm->nested.exit_required))
5649 return;
5650
Ladi Proseka12713c2017-06-21 09:07:00 +02005651 /*
5652 * Disable singlestep if we're injecting an interrupt/exception.
5653 * We don't want our modified rflags to be pushed on the stack where
5654 * we might not be able to easily reset them if we disabled NMI
5655 * singlestep later.
5656 */
5657 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5658 /*
5659 * Event injection happens before external interrupts cause a
5660 * vmexit and interrupts are disabled here, so smp_send_reschedule
5661 * is enough to force an immediate vmexit.
5662 */
5663 disable_nmi_singlestep(svm);
5664 smp_send_reschedule(vcpu->cpu);
5665 }
5666
Rusty Russelle756fc62007-07-30 20:07:08 +10005667 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005668
Joerg Roedel649d6862008-04-16 16:51:15 +02005669 sync_lapic_to_cr8(vcpu);
5670
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005671 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005672
Avi Kivity04d2cc72007-09-10 18:10:54 +03005673 clgi();
Aaron Lewis139a12c2019-10-21 16:30:25 -07005674 kvm_load_guest_xsave_state(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005675
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005676 if (lapic_in_kernel(vcpu) &&
5677 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5678 kvm_wait_lapic_expire(vcpu);
5679
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005680 /*
5681 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5682 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5683 * is no need to worry about the conditional branch over the wrmsr
5684 * being speculatively taken.
5685 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005686 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005687
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005688 local_irq_enable();
5689
Avi Kivity6aa8b732006-12-10 02:21:36 -08005690 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005691 "push %%" _ASM_BP "; \n\t"
5692 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5693 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5694 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5695 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5696 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5697 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005698#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005699 "mov %c[r8](%[svm]), %%r8 \n\t"
5700 "mov %c[r9](%[svm]), %%r9 \n\t"
5701 "mov %c[r10](%[svm]), %%r10 \n\t"
5702 "mov %c[r11](%[svm]), %%r11 \n\t"
5703 "mov %c[r12](%[svm]), %%r12 \n\t"
5704 "mov %c[r13](%[svm]), %%r13 \n\t"
5705 "mov %c[r14](%[svm]), %%r14 \n\t"
5706 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005707#endif
5708
Avi Kivity6aa8b732006-12-10 02:21:36 -08005709 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005710 "push %%" _ASM_AX " \n\t"
5711 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005712 __ex("vmload %%" _ASM_AX) "\n\t"
5713 __ex("vmrun %%" _ASM_AX) "\n\t"
5714 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005715 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005716
5717 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005718 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5719 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5720 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5721 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5722 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5723 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005724#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005725 "mov %%r8, %c[r8](%[svm]) \n\t"
5726 "mov %%r9, %c[r9](%[svm]) \n\t"
5727 "mov %%r10, %c[r10](%[svm]) \n\t"
5728 "mov %%r11, %c[r11](%[svm]) \n\t"
5729 "mov %%r12, %c[r12](%[svm]) \n\t"
5730 "mov %%r13, %c[r13](%[svm]) \n\t"
5731 "mov %%r14, %c[r14](%[svm]) \n\t"
5732 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005733 /*
5734 * Clear host registers marked as clobbered to prevent
5735 * speculative use.
5736 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005737 "xor %%r8d, %%r8d \n\t"
5738 "xor %%r9d, %%r9d \n\t"
5739 "xor %%r10d, %%r10d \n\t"
5740 "xor %%r11d, %%r11d \n\t"
5741 "xor %%r12d, %%r12d \n\t"
5742 "xor %%r13d, %%r13d \n\t"
5743 "xor %%r14d, %%r14d \n\t"
5744 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005745#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005746 "xor %%ebx, %%ebx \n\t"
5747 "xor %%ecx, %%ecx \n\t"
5748 "xor %%edx, %%edx \n\t"
5749 "xor %%esi, %%esi \n\t"
5750 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005751 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005753 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005754 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005755 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5756 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5757 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5758 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5759 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5760 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005761#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005762 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5763 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5764 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5765 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5766 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5767 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5768 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5769 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005770#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005771 : "cc", "memory"
5772#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005773 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005774 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005775#else
5776 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005777#endif
5778 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005779
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005780 /* Eliminate branch target predictions from guest mode */
5781 vmexit_fill_RSB();
5782
5783#ifdef CONFIG_X86_64
5784 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5785#else
5786 loadsegment(fs, svm->host.fs);
5787#ifndef CONFIG_X86_32_LAZY_GS
5788 loadsegment(gs, svm->host.gs);
5789#endif
5790#endif
5791
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005792 /*
5793 * We do not use IBRS in the kernel. If this vCPU has used the
5794 * SPEC_CTRL MSR it may have left it on; save the value and
5795 * turn it off. This is much more efficient than blindly adding
5796 * it to the atomic save/restore list. Especially as the former
5797 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5798 *
5799 * For non-nested case:
5800 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5801 * save it.
5802 *
5803 * For nested case:
5804 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5805 * save it.
5806 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005807 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005808 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005809
Avi Kivity6aa8b732006-12-10 02:21:36 -08005810 reload_tss(vcpu);
5811
Avi Kivity56ba47d2007-11-07 17:14:18 +02005812 local_irq_disable();
5813
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005814 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5815
Avi Kivity13c34e02010-10-21 12:20:31 +02005816 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5817 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5818 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5819 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5820
Joerg Roedel3781c012011-01-14 16:45:02 +01005821 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005822 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005823
Aaron Lewis139a12c2019-10-21 16:30:25 -07005824 kvm_load_host_xsave_state(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005825 stgi();
5826
5827 /* Any pending NMI will happen here */
5828
5829 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005830 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005831
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005832 sync_cr8_to_lapic(vcpu);
5833
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005834 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005835
Joerg Roedel38e5e922010-12-03 15:25:16 +01005836 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5837
Gleb Natapov631bc482010-10-14 11:22:52 +02005838 /* if exit due to PF check for async PF */
5839 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005840 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005841
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005842 if (npt_enabled) {
5843 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5844 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5845 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005846
5847 /*
5848 * We need to handle MC intercepts here before the vcpu has a chance to
5849 * change the physical cpu
5850 */
5851 if (unlikely(svm->vmcb->control.exit_code ==
5852 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5853 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005854
5855 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005856}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005857STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005858
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5860{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005861 struct vcpu_svm *svm = to_svm(vcpu);
5862
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005863 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005864 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005865}
5866
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005867static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5868{
5869 struct vcpu_svm *svm = to_svm(vcpu);
5870
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005871 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005872 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005873
5874 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005875 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005876 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005877}
5878
Avi Kivity6aa8b732006-12-10 02:21:36 -08005879static int is_disabled(void)
5880{
Joerg Roedel6031a612007-06-22 12:29:50 +03005881 u64 vm_cr;
5882
5883 rdmsrl(MSR_VM_CR, vm_cr);
5884 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5885 return 1;
5886
Avi Kivity6aa8b732006-12-10 02:21:36 -08005887 return 0;
5888}
5889
Ingo Molnar102d8322007-02-19 14:37:47 +02005890static void
5891svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5892{
5893 /*
5894 * Patch in the VMMCALL instruction:
5895 */
5896 hypercall[0] = 0x0f;
5897 hypercall[1] = 0x01;
5898 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005899}
5900
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005901static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005902{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005903 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005904}
5905
Avi Kivity774ead32007-12-26 13:57:04 +02005906static bool svm_cpu_has_accelerated_tpr(void)
5907{
5908 return false;
5909}
5910
Tom Lendackybc226f02018-05-10 22:06:39 +02005911static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005912{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005913 switch (index) {
5914 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02005915 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005916 return false;
5917 default:
5918 break;
5919 }
5920
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005921 return true;
5922}
5923
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005924static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5925{
5926 return 0;
5927}
5928
Sheng Yang0e851882009-12-18 16:48:46 +08005929static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5930{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005931 struct vcpu_svm *svm = to_svm(vcpu);
5932
Aaron Lewis72041602019-10-21 16:30:20 -07005933 vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
Sean Christopherson96be4e02019-12-10 14:44:15 -08005934 boot_cpu_has(X86_FEATURE_XSAVE) &&
Aaron Lewis72041602019-10-21 16:30:20 -07005935 boot_cpu_has(X86_FEATURE_XSAVES);
5936
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005937 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005938 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005939
5940 if (!kvm_vcpu_apicv_active(vcpu))
5941 return;
5942
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005943 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005944}
5945
Sean Christopherson87382002019-12-17 13:32:42 -08005946#define F feature_bit
Paolo Bonzini50896de2019-08-15 09:17:31 +02005947
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005948static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5949{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005950 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005951 case 0x1:
5952 if (avic)
Sean Christopherson87382002019-12-17 13:32:42 -08005953 entry->ecx &= ~F(X2APIC);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005954 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005955 case 0x80000001:
5956 if (nested)
5957 entry->ecx |= (1 << 2); /* Set SVM bit */
5958 break;
Paolo Bonzini50896de2019-08-15 09:17:31 +02005959 case 0x80000008:
5960 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
5961 boot_cpu_has(X86_FEATURE_AMD_SSBD))
5962 entry->ebx |= F(VIRT_SSBD);
5963 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005964 case 0x8000000A:
5965 entry->eax = 1; /* SVM revision 1 */
5966 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5967 ASID emulation to nested SVM */
5968 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005969 entry->edx = 0; /* Per default do not support any
5970 additional features */
5971
5972 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005973 if (boot_cpu_has(X86_FEATURE_NRIPS))
Paolo Bonzini50896de2019-08-15 09:17:31 +02005974 entry->edx |= F(NRIPS);
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005975
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005976 /* Support NPT for the guest if enabled */
5977 if (npt_enabled)
Paolo Bonzini50896de2019-08-15 09:17:31 +02005978 entry->edx |= F(NPT);
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005979
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005980 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005981}
5982
Sheng Yang17cc3932010-01-05 19:02:27 +08005983static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005984{
Sheng Yang17cc3932010-01-05 19:02:27 +08005985 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005986}
5987
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005988static bool svm_rdtscp_supported(void)
5989{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005990 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005991}
5992
Mao, Junjiead756a12012-07-02 01:18:48 +00005993static bool svm_invpcid_supported(void)
5994{
5995 return false;
5996}
5997
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005998static bool svm_mpx_supported(void)
5999{
6000 return false;
6001}
6002
Wanpeng Li55412b22014-12-02 19:21:30 +08006003static bool svm_xsaves_supported(void)
6004{
Aaron Lewis52297432019-10-21 16:30:27 -07006005 return boot_cpu_has(X86_FEATURE_XSAVES);
Wanpeng Li55412b22014-12-02 19:21:30 +08006006}
6007
Paolo Bonzini66336ca2016-07-12 10:36:41 +02006008static bool svm_umip_emulated(void)
6009{
6010 return false;
6011}
6012
Chao Peng86f52012018-10-24 16:05:11 +08006013static bool svm_pt_supported(void)
6014{
6015 return false;
6016}
6017
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006018static bool svm_has_wbinvd_exit(void)
6019{
6020 return true;
6021}
6022
John Allena47970e2019-12-19 14:17:59 -06006023static bool svm_pku_supported(void)
6024{
6025 return false;
6026}
6027
Joerg Roedel80612522011-04-04 12:39:33 +02006028#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006029 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006030#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006031 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006032#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006033 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006034
Mathias Krause09941fb2012-08-30 01:30:20 +02006035static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006036 u32 exit_code;
6037 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006038} x86_intercept_map[] = {
6039 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6040 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6041 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6042 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6043 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006044 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6045 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006046 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6047 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6048 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6049 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6050 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6051 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6052 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6053 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006054 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6055 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6056 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6057 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6058 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6059 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6060 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6061 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006062 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6063 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6064 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006065 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6066 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6067 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6068 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6069 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6070 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6071 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6072 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6073 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006074 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6075 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6076 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6077 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6078 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6079 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6080 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006081 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6082 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6083 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6084 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006085 [x86_intercept_xsetbv] = PRE_EX(SVM_EXIT_XSETBV),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006086};
6087
Joerg Roedel80612522011-04-04 12:39:33 +02006088#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006089#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006090#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006091
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006092static int svm_check_intercept(struct kvm_vcpu *vcpu,
6093 struct x86_instruction_info *info,
6094 enum x86_intercept_stage stage)
6095{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006096 struct vcpu_svm *svm = to_svm(vcpu);
6097 int vmexit, ret = X86EMUL_CONTINUE;
6098 struct __x86_intercept icpt_info;
6099 struct vmcb *vmcb = svm->vmcb;
6100
6101 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6102 goto out;
6103
6104 icpt_info = x86_intercept_map[info->intercept];
6105
Avi Kivity40e19b52011-04-21 12:35:41 +03006106 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006107 goto out;
6108
6109 switch (icpt_info.exit_code) {
6110 case SVM_EXIT_READ_CR0:
6111 if (info->intercept == x86_intercept_cr_read)
6112 icpt_info.exit_code += info->modrm_reg;
6113 break;
6114 case SVM_EXIT_WRITE_CR0: {
6115 unsigned long cr0, val;
6116 u64 intercept;
6117
6118 if (info->intercept == x86_intercept_cr_write)
6119 icpt_info.exit_code += info->modrm_reg;
6120
Jan Kiszka62baf442014-06-29 21:55:53 +02006121 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6122 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006123 break;
6124
6125 intercept = svm->nested.intercept;
6126
6127 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6128 break;
6129
6130 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6131 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6132
6133 if (info->intercept == x86_intercept_lmsw) {
6134 cr0 &= 0xfUL;
6135 val &= 0xfUL;
6136 /* lmsw can't clear PE - catch this here */
6137 if (cr0 & X86_CR0_PE)
6138 val |= X86_CR0_PE;
6139 }
6140
6141 if (cr0 ^ val)
6142 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6143
6144 break;
6145 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006146 case SVM_EXIT_READ_DR0:
6147 case SVM_EXIT_WRITE_DR0:
6148 icpt_info.exit_code += info->modrm_reg;
6149 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006150 case SVM_EXIT_MSR:
6151 if (info->intercept == x86_intercept_wrmsr)
6152 vmcb->control.exit_info_1 = 1;
6153 else
6154 vmcb->control.exit_info_1 = 0;
6155 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006156 case SVM_EXIT_PAUSE:
6157 /*
6158 * We get this for NOP only, but pause
6159 * is rep not, check this here
6160 */
6161 if (info->rep_prefix != REPE_PREFIX)
6162 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006163 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006164 case SVM_EXIT_IOIO: {
6165 u64 exit_info;
6166 u32 bytes;
6167
Joerg Roedelf6511932011-04-04 12:39:35 +02006168 if (info->intercept == x86_intercept_in ||
6169 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006170 exit_info = ((info->src_val & 0xffff) << 16) |
6171 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006172 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006173 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006174 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006175 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006176 }
6177
6178 if (info->intercept == x86_intercept_outs ||
6179 info->intercept == x86_intercept_ins)
6180 exit_info |= SVM_IOIO_STR_MASK;
6181
6182 if (info->rep_prefix)
6183 exit_info |= SVM_IOIO_REP_MASK;
6184
6185 bytes = min(bytes, 4u);
6186
6187 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6188
6189 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6190
6191 vmcb->control.exit_info_1 = exit_info;
6192 vmcb->control.exit_info_2 = info->next_rip;
6193
6194 break;
6195 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006196 default:
6197 break;
6198 }
6199
Bandan Dasf1047652015-06-11 02:05:33 -04006200 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6201 if (static_cpu_has(X86_FEATURE_NRIPS))
6202 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006203 vmcb->control.exit_code = icpt_info.exit_code;
6204 vmexit = nested_svm_exit_handled(svm);
6205
6206 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6207 : X86EMUL_CONTINUE;
6208
6209out:
6210 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006211}
6212
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006213static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu,
6214 enum exit_fastpath_completion *exit_fastpath)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006215{
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006216 if (!is_guest_mode(vcpu) &&
6217 to_svm(vcpu)->vmcb->control.exit_code == EXIT_REASON_MSR_WRITE)
6218 *exit_fastpath = handle_fastpath_set_msr_irqoff(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006219}
6220
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006221static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6222{
Babu Moger8566ac82018-03-16 16:37:26 -04006223 if (pause_filter_thresh)
6224 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006225}
6226
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006227static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6228{
6229 if (avic_handle_apic_id_update(vcpu) != 0)
6230 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006231 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006232 avic_handle_ldr_update(vcpu);
6233}
6234
Borislav Petkov74f16902017-03-26 23:51:24 +02006235static void svm_setup_mce(struct kvm_vcpu *vcpu)
6236{
6237 /* [63:9] are reserved. */
6238 vcpu->arch.mcg_cap &= 0x1ff;
6239}
6240
Ladi Prosek72d7b372017-10-11 16:54:41 +02006241static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6242{
Ladi Prosek05cade72017-10-11 16:54:45 +02006243 struct vcpu_svm *svm = to_svm(vcpu);
6244
6245 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6246 if (!gif_set(svm))
6247 return 0;
6248
6249 if (is_guest_mode(&svm->vcpu) &&
6250 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6251 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6252 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6253 svm->nested.exit_required = true;
6254 return 0;
6255 }
6256
Ladi Prosek72d7b372017-10-11 16:54:41 +02006257 return 1;
6258}
6259
Ladi Prosek0234bf82017-10-11 16:54:40 +02006260static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6261{
Ladi Prosek05cade72017-10-11 16:54:45 +02006262 struct vcpu_svm *svm = to_svm(vcpu);
6263 int ret;
6264
6265 if (is_guest_mode(vcpu)) {
6266 /* FED8h - SVM Guest */
6267 put_smstate(u64, smstate, 0x7ed8, 1);
6268 /* FEE0h - SVM Guest VMCB Physical Address */
6269 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6270
6271 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6272 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6273 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6274
6275 ret = nested_svm_vmexit(svm);
6276 if (ret)
6277 return ret;
6278 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006279 return 0;
6280}
6281
Sean Christophersoned193212019-04-02 08:03:09 -07006282static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006283{
Ladi Prosek05cade72017-10-11 16:54:45 +02006284 struct vcpu_svm *svm = to_svm(vcpu);
6285 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006286 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006287 u64 guest;
6288 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006289
Sean Christophersoned193212019-04-02 08:03:09 -07006290 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6291 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006292
Sean Christophersoned193212019-04-02 08:03:09 -07006293 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006294 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006295 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006296 nested_vmcb = map.hva;
6297 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006298 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006299 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006300}
6301
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006302static int enable_smi_window(struct kvm_vcpu *vcpu)
6303{
6304 struct vcpu_svm *svm = to_svm(vcpu);
6305
6306 if (!gif_set(svm)) {
6307 if (vgif_enabled(svm))
6308 set_intercept(svm, INTERCEPT_STGI);
6309 /* STGI will cause a vm exit */
6310 return 1;
6311 }
6312 return 0;
6313}
6314
Tom Lendacky33af3a72019-10-03 21:17:48 +00006315static int sev_flush_asids(void)
6316{
6317 int ret, error;
6318
6319 /*
6320 * DEACTIVATE will clear the WBINVD indicator causing DF_FLUSH to fail,
6321 * so it must be guarded.
6322 */
6323 down_write(&sev_deactivate_lock);
6324
6325 wbinvd_on_all_cpus();
6326 ret = sev_guest_df_flush(&error);
6327
6328 up_write(&sev_deactivate_lock);
6329
6330 if (ret)
6331 pr_err("SEV: DF_FLUSH failed, ret=%d, error=%#x\n", ret, error);
6332
6333 return ret;
6334}
6335
6336/* Must be called with the sev_bitmap_lock held */
6337static bool __sev_recycle_asids(void)
6338{
6339 int pos;
6340
6341 /* Check if there are any ASIDs to reclaim before performing a flush */
6342 pos = find_next_bit(sev_reclaim_asid_bitmap,
6343 max_sev_asid, min_sev_asid - 1);
6344 if (pos >= max_sev_asid)
6345 return false;
6346
6347 if (sev_flush_asids())
6348 return false;
6349
6350 bitmap_xor(sev_asid_bitmap, sev_asid_bitmap, sev_reclaim_asid_bitmap,
6351 max_sev_asid);
6352 bitmap_zero(sev_reclaim_asid_bitmap, max_sev_asid);
6353
6354 return true;
6355}
6356
Brijesh Singh1654efc2017-12-04 10:57:34 -06006357static int sev_asid_new(void)
6358{
Tom Lendacky33af3a72019-10-03 21:17:48 +00006359 bool retry = true;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006360 int pos;
6361
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006362 mutex_lock(&sev_bitmap_lock);
6363
Brijesh Singh1654efc2017-12-04 10:57:34 -06006364 /*
6365 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6366 */
Tom Lendacky33af3a72019-10-03 21:17:48 +00006367again:
Brijesh Singh1654efc2017-12-04 10:57:34 -06006368 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006369 if (pos >= max_sev_asid) {
Tom Lendacky33af3a72019-10-03 21:17:48 +00006370 if (retry && __sev_recycle_asids()) {
6371 retry = false;
6372 goto again;
6373 }
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006374 mutex_unlock(&sev_bitmap_lock);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006375 return -EBUSY;
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006376 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06006377
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006378 __set_bit(pos, sev_asid_bitmap);
6379
6380 mutex_unlock(&sev_bitmap_lock);
6381
Brijesh Singh1654efc2017-12-04 10:57:34 -06006382 return pos + 1;
6383}
6384
6385static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6386{
Sean Christopherson81811c12018-03-20 12:17:21 -07006387 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006388 int asid, ret;
6389
6390 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006391 if (unlikely(sev->active))
6392 return ret;
6393
Brijesh Singh1654efc2017-12-04 10:57:34 -06006394 asid = sev_asid_new();
6395 if (asid < 0)
6396 return ret;
6397
6398 ret = sev_platform_init(&argp->error);
6399 if (ret)
6400 goto e_free;
6401
6402 sev->active = true;
6403 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006404 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006405
6406 return 0;
6407
6408e_free:
Tom Lendackye3b9a9e2019-10-03 21:17:43 +00006409 sev_asid_free(asid);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006410 return ret;
6411}
6412
Brijesh Singh59414c92017-12-04 10:57:35 -06006413static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6414{
6415 struct sev_data_activate *data;
6416 int asid = sev_get_asid(kvm);
6417 int ret;
6418
Ben Gardon1ec69642019-02-11 11:02:51 -08006419 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006420 if (!data)
6421 return -ENOMEM;
6422
6423 /* activate ASID on the given handle */
6424 data->handle = handle;
6425 data->asid = asid;
6426 ret = sev_guest_activate(data, error);
6427 kfree(data);
6428
6429 return ret;
6430}
6431
Brijesh Singh89c50582017-12-04 10:57:35 -06006432static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006433{
6434 struct fd f;
6435 int ret;
6436
6437 f = fdget(fd);
6438 if (!f.file)
6439 return -EBADF;
6440
6441 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6442
6443 fdput(f);
6444 return ret;
6445}
6446
Brijesh Singh89c50582017-12-04 10:57:35 -06006447static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6448{
Sean Christopherson81811c12018-03-20 12:17:21 -07006449 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006450
6451 return __sev_issue_cmd(sev->fd, id, data, error);
6452}
6453
Brijesh Singh59414c92017-12-04 10:57:35 -06006454static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6455{
Sean Christopherson81811c12018-03-20 12:17:21 -07006456 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006457 struct sev_data_launch_start *start;
6458 struct kvm_sev_launch_start params;
6459 void *dh_blob, *session_blob;
6460 int *error = &argp->error;
6461 int ret;
6462
6463 if (!sev_guest(kvm))
6464 return -ENOTTY;
6465
6466 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6467 return -EFAULT;
6468
Ben Gardon1ec69642019-02-11 11:02:51 -08006469 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006470 if (!start)
6471 return -ENOMEM;
6472
6473 dh_blob = NULL;
6474 if (params.dh_uaddr) {
6475 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6476 if (IS_ERR(dh_blob)) {
6477 ret = PTR_ERR(dh_blob);
6478 goto e_free;
6479 }
6480
6481 start->dh_cert_address = __sme_set(__pa(dh_blob));
6482 start->dh_cert_len = params.dh_len;
6483 }
6484
6485 session_blob = NULL;
6486 if (params.session_uaddr) {
6487 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6488 if (IS_ERR(session_blob)) {
6489 ret = PTR_ERR(session_blob);
6490 goto e_free_dh;
6491 }
6492
6493 start->session_address = __sme_set(__pa(session_blob));
6494 start->session_len = params.session_len;
6495 }
6496
6497 start->handle = params.handle;
6498 start->policy = params.policy;
6499
6500 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006501 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006502 if (ret)
6503 goto e_free_session;
6504
6505 /* Bind ASID to this guest */
6506 ret = sev_bind_asid(kvm, start->handle, error);
6507 if (ret)
6508 goto e_free_session;
6509
6510 /* return handle to userspace */
6511 params.handle = start->handle;
6512 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6513 sev_unbind_asid(kvm, start->handle);
6514 ret = -EFAULT;
6515 goto e_free_session;
6516 }
6517
6518 sev->handle = start->handle;
6519 sev->fd = argp->sev_fd;
6520
6521e_free_session:
6522 kfree(session_blob);
6523e_free_dh:
6524 kfree(dh_blob);
6525e_free:
6526 kfree(start);
6527 return ret;
6528}
6529
David Rientjesede885e2019-03-19 15:19:56 -07006530static unsigned long get_num_contig_pages(unsigned long idx,
6531 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006532{
6533 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006534 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006535
6536 /* find the number of contiguous pages starting from idx */
6537 paddr = __sme_page_pa(inpages[idx]);
6538 while (i < npages) {
6539 next_paddr = __sme_page_pa(inpages[i++]);
6540 if ((paddr + PAGE_SIZE) == next_paddr) {
6541 pages++;
6542 paddr = next_paddr;
6543 continue;
6544 }
6545 break;
6546 }
6547
6548 return pages;
6549}
6550
6551static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6552{
David Rientjesede885e2019-03-19 15:19:56 -07006553 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006554 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006555 struct kvm_sev_launch_update_data params;
6556 struct sev_data_launch_update_data *data;
6557 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006558 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006559
6560 if (!sev_guest(kvm))
6561 return -ENOTTY;
6562
6563 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6564 return -EFAULT;
6565
Ben Gardon1ec69642019-02-11 11:02:51 -08006566 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006567 if (!data)
6568 return -ENOMEM;
6569
6570 vaddr = params.uaddr;
6571 size = params.len;
6572 vaddr_end = vaddr + size;
6573
6574 /* Lock the user memory. */
6575 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6576 if (!inpages) {
6577 ret = -ENOMEM;
6578 goto e_free;
6579 }
6580
6581 /*
6582 * The LAUNCH_UPDATE command will perform in-place encryption of the
6583 * memory content (i.e it will write the same memory region with C=1).
6584 * It's possible that the cache may contain the data with C=0, i.e.,
6585 * unencrypted so invalidate it first.
6586 */
6587 sev_clflush_pages(inpages, npages);
6588
6589 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6590 int offset, len;
6591
6592 /*
6593 * If the user buffer is not page-aligned, calculate the offset
6594 * within the page.
6595 */
6596 offset = vaddr & (PAGE_SIZE - 1);
6597
6598 /* Calculate the number of pages that can be encrypted in one go. */
6599 pages = get_num_contig_pages(i, inpages, npages);
6600
6601 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6602
6603 data->handle = sev->handle;
6604 data->len = len;
6605 data->address = __sme_page_pa(inpages[i]) + offset;
6606 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6607 if (ret)
6608 goto e_unpin;
6609
6610 size -= len;
6611 next_vaddr = vaddr + len;
6612 }
6613
6614e_unpin:
6615 /* content of memory is updated, mark pages dirty */
6616 for (i = 0; i < npages; i++) {
6617 set_page_dirty_lock(inpages[i]);
6618 mark_page_accessed(inpages[i]);
6619 }
6620 /* unlock the user pages */
6621 sev_unpin_memory(kvm, inpages, npages);
6622e_free:
6623 kfree(data);
6624 return ret;
6625}
6626
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006627static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6628{
Brijesh Singh3e233382018-02-23 12:36:50 -06006629 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006630 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006631 struct sev_data_launch_measure *data;
6632 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006633 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006634 void *blob = NULL;
6635 int ret;
6636
6637 if (!sev_guest(kvm))
6638 return -ENOTTY;
6639
Brijesh Singh3e233382018-02-23 12:36:50 -06006640 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006641 return -EFAULT;
6642
Ben Gardon1ec69642019-02-11 11:02:51 -08006643 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006644 if (!data)
6645 return -ENOMEM;
6646
6647 /* User wants to query the blob length */
6648 if (!params.len)
6649 goto cmd;
6650
Brijesh Singh3e233382018-02-23 12:36:50 -06006651 p = (void __user *)(uintptr_t)params.uaddr;
6652 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006653 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6654 ret = -EINVAL;
6655 goto e_free;
6656 }
6657
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006658 ret = -ENOMEM;
6659 blob = kmalloc(params.len, GFP_KERNEL);
6660 if (!blob)
6661 goto e_free;
6662
6663 data->address = __psp_pa(blob);
6664 data->len = params.len;
6665 }
6666
6667cmd:
6668 data->handle = sev->handle;
6669 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6670
6671 /*
6672 * If we query the session length, FW responded with expected data.
6673 */
6674 if (!params.len)
6675 goto done;
6676
6677 if (ret)
6678 goto e_free_blob;
6679
6680 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006681 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006682 ret = -EFAULT;
6683 }
6684
6685done:
6686 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006687 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006688 ret = -EFAULT;
6689e_free_blob:
6690 kfree(blob);
6691e_free:
6692 kfree(data);
6693 return ret;
6694}
6695
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006696static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6697{
Sean Christopherson81811c12018-03-20 12:17:21 -07006698 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006699 struct sev_data_launch_finish *data;
6700 int ret;
6701
6702 if (!sev_guest(kvm))
6703 return -ENOTTY;
6704
Ben Gardon1ec69642019-02-11 11:02:51 -08006705 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006706 if (!data)
6707 return -ENOMEM;
6708
6709 data->handle = sev->handle;
6710 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6711
6712 kfree(data);
6713 return ret;
6714}
6715
Brijesh Singh255d9e72017-12-04 10:57:37 -06006716static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6717{
Sean Christopherson81811c12018-03-20 12:17:21 -07006718 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006719 struct kvm_sev_guest_status params;
6720 struct sev_data_guest_status *data;
6721 int ret;
6722
6723 if (!sev_guest(kvm))
6724 return -ENOTTY;
6725
Ben Gardon1ec69642019-02-11 11:02:51 -08006726 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006727 if (!data)
6728 return -ENOMEM;
6729
6730 data->handle = sev->handle;
6731 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6732 if (ret)
6733 goto e_free;
6734
6735 params.policy = data->policy;
6736 params.state = data->state;
6737 params.handle = data->handle;
6738
6739 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6740 ret = -EFAULT;
6741e_free:
6742 kfree(data);
6743 return ret;
6744}
6745
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006746static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6747 unsigned long dst, int size,
6748 int *error, bool enc)
6749{
Sean Christopherson81811c12018-03-20 12:17:21 -07006750 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006751 struct sev_data_dbg *data;
6752 int ret;
6753
Ben Gardon1ec69642019-02-11 11:02:51 -08006754 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006755 if (!data)
6756 return -ENOMEM;
6757
6758 data->handle = sev->handle;
6759 data->dst_addr = dst;
6760 data->src_addr = src;
6761 data->len = size;
6762
6763 ret = sev_issue_cmd(kvm,
6764 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6765 data, error);
6766 kfree(data);
6767 return ret;
6768}
6769
6770static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6771 unsigned long dst_paddr, int sz, int *err)
6772{
6773 int offset;
6774
6775 /*
6776 * Its safe to read more than we are asked, caller should ensure that
6777 * destination has enough space.
6778 */
6779 src_paddr = round_down(src_paddr, 16);
6780 offset = src_paddr & 15;
6781 sz = round_up(sz + offset, 16);
6782
6783 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6784}
6785
6786static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6787 unsigned long __user dst_uaddr,
6788 unsigned long dst_paddr,
6789 int size, int *err)
6790{
6791 struct page *tpage = NULL;
6792 int ret, offset;
6793
6794 /* if inputs are not 16-byte then use intermediate buffer */
6795 if (!IS_ALIGNED(dst_paddr, 16) ||
6796 !IS_ALIGNED(paddr, 16) ||
6797 !IS_ALIGNED(size, 16)) {
6798 tpage = (void *)alloc_page(GFP_KERNEL);
6799 if (!tpage)
6800 return -ENOMEM;
6801
6802 dst_paddr = __sme_page_pa(tpage);
6803 }
6804
6805 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6806 if (ret)
6807 goto e_free;
6808
6809 if (tpage) {
6810 offset = paddr & 15;
6811 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6812 page_address(tpage) + offset, size))
6813 ret = -EFAULT;
6814 }
6815
6816e_free:
6817 if (tpage)
6818 __free_page(tpage);
6819
6820 return ret;
6821}
6822
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006823static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6824 unsigned long __user vaddr,
6825 unsigned long dst_paddr,
6826 unsigned long __user dst_vaddr,
6827 int size, int *error)
6828{
6829 struct page *src_tpage = NULL;
6830 struct page *dst_tpage = NULL;
6831 int ret, len = size;
6832
6833 /* If source buffer is not aligned then use an intermediate buffer */
6834 if (!IS_ALIGNED(vaddr, 16)) {
6835 src_tpage = alloc_page(GFP_KERNEL);
6836 if (!src_tpage)
6837 return -ENOMEM;
6838
6839 if (copy_from_user(page_address(src_tpage),
6840 (void __user *)(uintptr_t)vaddr, size)) {
6841 __free_page(src_tpage);
6842 return -EFAULT;
6843 }
6844
6845 paddr = __sme_page_pa(src_tpage);
6846 }
6847
6848 /*
6849 * If destination buffer or length is not aligned then do read-modify-write:
6850 * - decrypt destination in an intermediate buffer
6851 * - copy the source buffer in an intermediate buffer
6852 * - use the intermediate buffer as source buffer
6853 */
6854 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6855 int dst_offset;
6856
6857 dst_tpage = alloc_page(GFP_KERNEL);
6858 if (!dst_tpage) {
6859 ret = -ENOMEM;
6860 goto e_free;
6861 }
6862
6863 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6864 __sme_page_pa(dst_tpage), size, error);
6865 if (ret)
6866 goto e_free;
6867
6868 /*
6869 * If source is kernel buffer then use memcpy() otherwise
6870 * copy_from_user().
6871 */
6872 dst_offset = dst_paddr & 15;
6873
6874 if (src_tpage)
6875 memcpy(page_address(dst_tpage) + dst_offset,
6876 page_address(src_tpage), size);
6877 else {
6878 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6879 (void __user *)(uintptr_t)vaddr, size)) {
6880 ret = -EFAULT;
6881 goto e_free;
6882 }
6883 }
6884
6885 paddr = __sme_page_pa(dst_tpage);
6886 dst_paddr = round_down(dst_paddr, 16);
6887 len = round_up(size, 16);
6888 }
6889
6890 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6891
6892e_free:
6893 if (src_tpage)
6894 __free_page(src_tpage);
6895 if (dst_tpage)
6896 __free_page(dst_tpage);
6897 return ret;
6898}
6899
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006900static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6901{
6902 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006903 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006904 struct page **src_p, **dst_p;
6905 struct kvm_sev_dbg debug;
6906 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006907 unsigned int size;
6908 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006909
6910 if (!sev_guest(kvm))
6911 return -ENOTTY;
6912
6913 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6914 return -EFAULT;
6915
David Rientjesb86bc282019-03-25 11:47:31 -07006916 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6917 return -EINVAL;
6918 if (!debug.dst_uaddr)
6919 return -EINVAL;
6920
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006921 vaddr = debug.src_uaddr;
6922 size = debug.len;
6923 vaddr_end = vaddr + size;
6924 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006925
6926 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6927 int len, s_off, d_off;
6928
6929 /* lock userspace source and destination page */
6930 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6931 if (!src_p)
6932 return -EFAULT;
6933
6934 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6935 if (!dst_p) {
6936 sev_unpin_memory(kvm, src_p, n);
6937 return -EFAULT;
6938 }
6939
6940 /*
6941 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6942 * memory content (i.e it will write the same memory region with C=1).
6943 * It's possible that the cache may contain the data with C=0, i.e.,
6944 * unencrypted so invalidate it first.
6945 */
6946 sev_clflush_pages(src_p, 1);
6947 sev_clflush_pages(dst_p, 1);
6948
6949 /*
6950 * Since user buffer may not be page aligned, calculate the
6951 * offset within the page.
6952 */
6953 s_off = vaddr & ~PAGE_MASK;
6954 d_off = dst_vaddr & ~PAGE_MASK;
6955 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6956
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006957 if (dec)
6958 ret = __sev_dbg_decrypt_user(kvm,
6959 __sme_page_pa(src_p[0]) + s_off,
6960 dst_vaddr,
6961 __sme_page_pa(dst_p[0]) + d_off,
6962 len, &argp->error);
6963 else
6964 ret = __sev_dbg_encrypt_user(kvm,
6965 __sme_page_pa(src_p[0]) + s_off,
6966 vaddr,
6967 __sme_page_pa(dst_p[0]) + d_off,
6968 dst_vaddr,
6969 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006970
David Rientjesb86bc282019-03-25 11:47:31 -07006971 sev_unpin_memory(kvm, src_p, n);
6972 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006973
6974 if (ret)
6975 goto err;
6976
6977 next_vaddr = vaddr + len;
6978 dst_vaddr = dst_vaddr + len;
6979 size -= len;
6980 }
6981err:
6982 return ret;
6983}
6984
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006985static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6986{
Sean Christopherson81811c12018-03-20 12:17:21 -07006987 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006988 struct sev_data_launch_secret *data;
6989 struct kvm_sev_launch_secret params;
6990 struct page **pages;
6991 void *blob, *hdr;
6992 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006993 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006994
6995 if (!sev_guest(kvm))
6996 return -ENOTTY;
6997
6998 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6999 return -EFAULT;
7000
7001 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
7002 if (!pages)
7003 return -ENOMEM;
7004
7005 /*
7006 * The secret must be copied into contiguous memory region, lets verify
7007 * that userspace memory pages are contiguous before we issue command.
7008 */
7009 if (get_num_contig_pages(0, pages, n) != n) {
7010 ret = -EINVAL;
7011 goto e_unpin_memory;
7012 }
7013
7014 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08007015 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007016 if (!data)
7017 goto e_unpin_memory;
7018
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007019 offset = params.guest_uaddr & (PAGE_SIZE - 1);
7020 data->guest_address = __sme_page_pa(pages[0]) + offset;
7021 data->guest_len = params.guest_len;
7022
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007023 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
7024 if (IS_ERR(blob)) {
7025 ret = PTR_ERR(blob);
7026 goto e_free;
7027 }
7028
7029 data->trans_address = __psp_pa(blob);
7030 data->trans_len = params.trans_len;
7031
7032 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
7033 if (IS_ERR(hdr)) {
7034 ret = PTR_ERR(hdr);
7035 goto e_free_blob;
7036 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06007037 data->hdr_address = __psp_pa(hdr);
7038 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007039
7040 data->handle = sev->handle;
7041 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
7042
7043 kfree(hdr);
7044
7045e_free_blob:
7046 kfree(blob);
7047e_free:
7048 kfree(data);
7049e_unpin_memory:
7050 sev_unpin_memory(kvm, pages, n);
7051 return ret;
7052}
7053
Brijesh Singh1654efc2017-12-04 10:57:34 -06007054static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
7055{
7056 struct kvm_sev_cmd sev_cmd;
7057 int r;
7058
7059 if (!svm_sev_enabled())
7060 return -ENOTTY;
7061
7062 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7063 return -EFAULT;
7064
7065 mutex_lock(&kvm->lock);
7066
7067 switch (sev_cmd.id) {
7068 case KVM_SEV_INIT:
7069 r = sev_guest_init(kvm, &sev_cmd);
7070 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007071 case KVM_SEV_LAUNCH_START:
7072 r = sev_launch_start(kvm, &sev_cmd);
7073 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007074 case KVM_SEV_LAUNCH_UPDATE_DATA:
7075 r = sev_launch_update_data(kvm, &sev_cmd);
7076 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007077 case KVM_SEV_LAUNCH_MEASURE:
7078 r = sev_launch_measure(kvm, &sev_cmd);
7079 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007080 case KVM_SEV_LAUNCH_FINISH:
7081 r = sev_launch_finish(kvm, &sev_cmd);
7082 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007083 case KVM_SEV_GUEST_STATUS:
7084 r = sev_guest_status(kvm, &sev_cmd);
7085 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007086 case KVM_SEV_DBG_DECRYPT:
7087 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7088 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007089 case KVM_SEV_DBG_ENCRYPT:
7090 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7091 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007092 case KVM_SEV_LAUNCH_SECRET:
7093 r = sev_launch_secret(kvm, &sev_cmd);
7094 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007095 default:
7096 r = -EINVAL;
7097 goto out;
7098 }
7099
7100 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7101 r = -EFAULT;
7102
7103out:
7104 mutex_unlock(&kvm->lock);
7105 return r;
7106}
7107
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007108static int svm_register_enc_region(struct kvm *kvm,
7109 struct kvm_enc_region *range)
7110{
Sean Christopherson81811c12018-03-20 12:17:21 -07007111 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007112 struct enc_region *region;
7113 int ret = 0;
7114
7115 if (!sev_guest(kvm))
7116 return -ENOTTY;
7117
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007118 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7119 return -EINVAL;
7120
Ben Gardon1ec69642019-02-11 11:02:51 -08007121 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007122 if (!region)
7123 return -ENOMEM;
7124
7125 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7126 if (!region->pages) {
7127 ret = -ENOMEM;
7128 goto e_free;
7129 }
7130
7131 /*
7132 * The guest may change the memory encryption attribute from C=0 -> C=1
7133 * or vice versa for this memory range. Lets make sure caches are
7134 * flushed to ensure that guest data gets written into memory with
7135 * correct C-bit.
7136 */
7137 sev_clflush_pages(region->pages, region->npages);
7138
7139 region->uaddr = range->addr;
7140 region->size = range->size;
7141
7142 mutex_lock(&kvm->lock);
7143 list_add_tail(&region->list, &sev->regions_list);
7144 mutex_unlock(&kvm->lock);
7145
7146 return ret;
7147
7148e_free:
7149 kfree(region);
7150 return ret;
7151}
7152
7153static struct enc_region *
7154find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7155{
Sean Christopherson81811c12018-03-20 12:17:21 -07007156 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007157 struct list_head *head = &sev->regions_list;
7158 struct enc_region *i;
7159
7160 list_for_each_entry(i, head, list) {
7161 if (i->uaddr == range->addr &&
7162 i->size == range->size)
7163 return i;
7164 }
7165
7166 return NULL;
7167}
7168
7169
7170static int svm_unregister_enc_region(struct kvm *kvm,
7171 struct kvm_enc_region *range)
7172{
7173 struct enc_region *region;
7174 int ret;
7175
7176 mutex_lock(&kvm->lock);
7177
7178 if (!sev_guest(kvm)) {
7179 ret = -ENOTTY;
7180 goto failed;
7181 }
7182
7183 region = find_enc_region(kvm, range);
7184 if (!region) {
7185 ret = -EINVAL;
7186 goto failed;
7187 }
7188
7189 __unregister_enc_region_locked(kvm, region);
7190
7191 mutex_unlock(&kvm->lock);
7192 return 0;
7193
7194failed:
7195 mutex_unlock(&kvm->lock);
7196 return ret;
7197}
7198
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007199static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7200{
Liran Alon118154b2019-07-17 02:56:58 +03007201 unsigned long cr4 = kvm_read_cr4(vcpu);
7202 bool smep = cr4 & X86_CR4_SMEP;
7203 bool smap = cr4 & X86_CR4_SMAP;
7204 bool is_user = svm_get_cpl(vcpu) == 3;
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007205
7206 /*
Liran Alon118154b2019-07-17 02:56:58 +03007207 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7208 *
7209 * Errata:
7210 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7211 * possible that CPU microcode implementing DecodeAssist will fail
7212 * to read bytes of instruction which caused #NPF. In this case,
7213 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7214 * return 0 instead of the correct guest instruction bytes.
7215 *
7216 * This happens because CPU microcode reading instruction bytes
7217 * uses a special opcode which attempts to read data using CPL=0
7218 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7219 * fault, it gives up and returns no instruction bytes.
7220 *
7221 * Detection:
7222 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7223 * returned 0 in GuestIntrBytes field of the VMCB.
7224 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7225 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7226 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7227 * a SMEP fault instead of #NPF).
7228 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7229 * As most guests enable SMAP if they have also enabled SMEP, use above
7230 * logic in order to attempt minimize false-positive of detecting errata
7231 * while still preserving all cases semantic correctness.
7232 *
7233 * Workaround:
7234 * To determine what instruction the guest was executing, the hypervisor
7235 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007236 *
7237 * In non SEV guest, hypervisor will be able to read the guest
7238 * memory to decode the instruction pointer when insn_len is zero
7239 * so we return true to indicate that decoding is possible.
7240 *
7241 * But in the SEV guest, the guest memory is encrypted with the
7242 * guest specific key and hypervisor will not be able to decode the
7243 * instruction pointer so we will not able to workaround it. Lets
7244 * print the error and request to kill the guest.
7245 */
Liran Alon118154b2019-07-17 02:56:58 +03007246 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007247 if (!sev_guest(vcpu->kvm))
7248 return true;
7249
Liran Alon118154b2019-07-17 02:56:58 +03007250 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007251 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7252 }
7253
7254 return false;
7255}
7256
Liran Alon4b9852f2019-08-26 13:24:49 +03007257static bool svm_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7258{
7259 struct vcpu_svm *svm = to_svm(vcpu);
7260
7261 /*
7262 * TODO: Last condition latch INIT signals on vCPU when
7263 * vCPU is in guest-mode and vmcb12 defines intercept on INIT.
7264 * To properly emulate the INIT intercept, SVM should implement
7265 * kvm_x86_ops->check_nested_events() and call nested_svm_vmexit()
7266 * there if an INIT signal is pending.
7267 */
7268 return !gif_set(svm) ||
7269 (svm->vmcb->control.intercept & (1ULL << INTERCEPT_INIT));
7270}
7271
Kees Cook404f6aa2016-08-08 16:29:06 -07007272static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007273 .cpu_has_kvm_support = has_svm,
7274 .disabled_by_bios = is_disabled,
7275 .hardware_setup = svm_hardware_setup,
7276 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007277 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007278 .hardware_enable = svm_hardware_enable,
7279 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007280 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007281 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007282
7283 .vcpu_create = svm_create_vcpu,
7284 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007285 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007286
Sean Christopherson434a1e92018-03-20 12:17:18 -07007287 .vm_alloc = svm_vm_alloc,
7288 .vm_free = svm_vm_free,
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007289 .vm_init = svm_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007290 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007291
Avi Kivity04d2cc72007-09-10 18:10:54 +03007292 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007293 .vcpu_load = svm_vcpu_load,
7294 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007295 .vcpu_blocking = svm_vcpu_blocking,
7296 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007297
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007298 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007299 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007300 .get_msr = svm_get_msr,
7301 .set_msr = svm_set_msr,
7302 .get_segment_base = svm_get_segment_base,
7303 .get_segment = svm_get_segment,
7304 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007305 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007306 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007307 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007308 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007309 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007310 .set_cr3 = svm_set_cr3,
7311 .set_cr4 = svm_set_cr4,
7312 .set_efer = svm_set_efer,
7313 .get_idt = svm_get_idt,
7314 .set_idt = svm_set_idt,
7315 .get_gdt = svm_get_gdt,
7316 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007317 .get_dr6 = svm_get_dr6,
7318 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007319 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007320 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007321 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007322 .get_rflags = svm_get_rflags,
7323 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007324
Avi Kivity6aa8b732006-12-10 02:21:36 -08007325 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007326 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007327
Avi Kivity6aa8b732006-12-10 02:21:36 -08007328 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007329 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007330 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007331 .set_interrupt_shadow = svm_set_interrupt_shadow,
7332 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007333 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007334 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007335 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007336 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007337 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007338 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007339 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007340 .get_nmi_mask = svm_get_nmi_mask,
7341 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007342 .enable_nmi_window = enable_nmi_window,
7343 .enable_irq_window = enable_irq_window,
7344 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007345 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007346 .get_enable_apicv = svm_get_enable_apicv,
7347 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007348 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007349 .hwapic_irr_update = svm_hwapic_irr_update,
7350 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007351 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007352 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007353
7354 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007355 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007356 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007357 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007358
Avi Kivity586f9602010-11-18 13:09:54 +02007359 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007360
Sheng Yang17cc3932010-01-05 19:02:27 +08007361 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007362
7363 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007364
7365 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007366 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007367 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007368 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007369 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007370 .pt_supported = svm_pt_supported,
John Allena47970e2019-12-19 14:17:59 -06007371 .pku_supported = svm_pku_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007372
7373 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007374
7375 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007376
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007377 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007378 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007379
7380 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007381
7382 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007383 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007384
Sean Christophersond264ee02018-08-27 15:21:12 -07007385 .request_immediate_exit = __kvm_request_immediate_exit,
7386
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007387 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007388
7389 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007390 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08007391 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007392 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007393 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007394
Ladi Prosek72d7b372017-10-11 16:54:41 +02007395 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007396 .pre_enter_smm = svm_pre_enter_smm,
7397 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007398 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007399
7400 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007401 .mem_enc_reg_region = svm_register_enc_region,
7402 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007403
Vitaly Kuznetsov956e2552019-08-28 09:59:04 +02007404 .nested_enable_evmcs = NULL,
Vitaly Kuznetsovea152982019-08-27 18:04:02 +02007405 .nested_get_evmcs_version = NULL,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007406
7407 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Liran Alon4b9852f2019-08-26 13:24:49 +03007408
7409 .apic_init_signal_blocked = svm_apic_init_signal_blocked,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007410};
7411
7412static int __init svm_init(void)
7413{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007414 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007415 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007416}
7417
7418static void __exit svm_exit(void)
7419{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007420 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007421}
7422
7423module_init(svm_init)
7424module_exit(svm_exit)