blob: c5120a9519f3c968fe2eadfdd1101af7673cf9d0 [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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050042#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010043#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020044#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040045#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010046#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020047#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050048#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020049#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080050
Eduardo Habkost63d11422008-11-17 19:03:20 -020051#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030052#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020053
Avi Kivity4ecac3f2008-05-13 13:23:38 +030054#define __ex(x) __kvm_handle_fault_on_reboot(x)
55
Avi Kivity6aa8b732006-12-10 02:21:36 -080056MODULE_AUTHOR("Qumranet");
57MODULE_LICENSE("GPL");
58
Josh Triplettae759542012-03-28 11:32:28 -070059static const struct x86_cpu_id svm_cpu_id[] = {
60 X86_FEATURE_MATCH(X86_FEATURE_SVM),
61 {}
62};
63MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
64
Avi Kivity6aa8b732006-12-10 02:21:36 -080065#define IOPM_ALLOC_ORDER 2
66#define MSRPM_ALLOC_ORDER 1
67
Avi Kivity6aa8b732006-12-10 02:21:36 -080068#define SEG_TYPE_LDT 2
69#define SEG_TYPE_BUSY_TSS16 3
70
Andre Przywara6bc31bd2010-04-11 23:07:28 +020071#define SVM_FEATURE_LBRV (1 << 1)
72#define SVM_FEATURE_SVML (1 << 2)
Andre Przywaraddce97a2010-12-21 11:12:03 +010073#define SVM_FEATURE_TSC_RATE (1 << 4)
74#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
75#define SVM_FEATURE_FLUSH_ASID (1 << 6)
76#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020077#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030078
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050079#define SVM_AVIC_DOORBELL 0xc001011b
80
Joerg Roedel410e4d52009-08-07 11:49:44 +020081#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
82#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
83#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
84
Joerg Roedel24e09cb2008-02-13 18:58:47 +010085#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
86
Joerg Roedelfbc0db72011-03-25 09:44:46 +010087#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010088#define TSC_RATIO_MIN 0x0000000000000001ULL
89#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010090
Dan Carpenter5446a972016-05-23 13:20:10 +030091#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050092
93/*
94 * 0xff is broadcast, so the max index allowed for physical APIC ID
95 * table is 0xfe. APIC IDs above 0xff are reserved.
96 */
97#define AVIC_MAX_PHYSICAL_ID_COUNT 255
98
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -050099#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
100#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
101#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
102
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500103/* AVIC GATAG is encoded using VM and VCPU IDs */
104#define AVIC_VCPU_ID_BITS 8
105#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
106
107#define AVIC_VM_ID_BITS 24
108#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
109#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
110
111#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
112 (y & AVIC_VCPU_ID_MASK))
113#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
114#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
115
Joerg Roedel67ec6602010-05-17 14:43:35 +0200116static bool erratum_383_found __read_mostly;
117
Avi Kivity6c8166a2009-05-31 18:15:37 +0300118static const u32 host_save_user_msrs[] = {
119#ifdef CONFIG_X86_64
120 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
121 MSR_FS_BASE,
122#endif
123 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100124 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300125};
126
127#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
128
Sean Christopherson81811c12018-03-20 12:17:21 -0700129struct kvm_sev_info {
130 bool active; /* SEV enabled guest */
131 unsigned int asid; /* ASID used for this guest */
132 unsigned int handle; /* SEV firmware handle */
133 int fd; /* SEV device fd */
134 unsigned long pages_locked; /* Number of pages locked */
135 struct list_head regions_list; /* List of registered regions */
136};
137
138struct kvm_svm {
139 struct kvm kvm;
140
141 /* Struct members for AVIC */
142 u32 avic_vm_id;
Sean Christopherson81811c12018-03-20 12:17:21 -0700143 struct page *avic_logical_id_table_page;
144 struct page *avic_physical_id_table_page;
145 struct hlist_node hnode;
146
147 struct kvm_sev_info sev_info;
148};
149
Avi Kivity6c8166a2009-05-31 18:15:37 +0300150struct kvm_vcpu;
151
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200152struct nested_state {
153 struct vmcb *hsave;
154 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100155 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200156 u64 vmcb;
157
158 /* These are the merged vectors */
159 u32 *msrpm;
160
161 /* gpa pointers to the real vectors */
162 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100163 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200164
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200165 /* A VMEXIT is required but not yet emulated */
166 bool exit_required;
167
Joerg Roedelaad42c62009-08-07 11:49:34 +0200168 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100169 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100170 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200171 u32 intercept_exceptions;
172 u64 intercept;
173
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200174 /* Nested Paging related state */
175 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200176};
177
Joerg Roedel323c3d82010-03-01 15:34:37 +0100178#define MSRPM_OFFSETS 16
179static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
180
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500181/*
182 * Set osvw_len to higher value when updated Revision Guides
183 * are published and we know what the new status bits are
184 */
185static uint64_t osvw_len = 4, osvw_status;
186
Avi Kivity6c8166a2009-05-31 18:15:37 +0300187struct vcpu_svm {
188 struct kvm_vcpu vcpu;
189 struct vmcb *vmcb;
190 unsigned long vmcb_pa;
191 struct svm_cpu_data *svm_data;
192 uint64_t asid_generation;
193 uint64_t sysenter_esp;
194 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100195 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300196
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100197 u64 msr_decfg;
198
Avi Kivity6c8166a2009-05-31 18:15:37 +0300199 u64 next_rip;
200
201 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200202 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200203 u16 fs;
204 u16 gs;
205 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200206 u64 gs_base;
207 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300208
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100209 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200210 /*
211 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
212 * translated into the appropriate L2_CFG bits on the host to
213 * perform speculative control.
214 */
215 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100216
Avi Kivity6c8166a2009-05-31 18:15:37 +0300217 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300218
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200219 ulong nmi_iret_rip;
220
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200221 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200222
223 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200224 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100225
226 unsigned int3_injected;
227 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100228
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200229 /* cached guest cpuid flags for faster access */
230 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500231
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500232 u32 ldr_reg;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +0000233 u32 dfr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500234 struct page *avic_backing_page;
235 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500236 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500237
238 /*
239 * Per-vcpu list of struct amd_svm_iommu_ir:
240 * This is used mainly to store interrupt remapping information used
241 * when update the vcpu affinity. This avoids the need to scan for
242 * IRTE and try to match ga_tag in the IOMMU driver.
243 */
244 struct list_head ir_list;
245 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600246
247 /* which host CPU was used for running this vcpu */
248 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500249};
250
251/*
252 * This is a wrapper of struct amd_iommu_ir_data.
253 */
254struct amd_svm_iommu_ir {
255 struct list_head node; /* Used by SVM for per-vcpu ir_list */
256 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300257};
258
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500259#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +0000260#define AVIC_LOGICAL_ID_ENTRY_VALID_BIT 31
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500261#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
262
263#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
264#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
265#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
266#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
267
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100268static DEFINE_PER_CPU(u64, current_tsc_ratio);
269#define TSC_RATIO_DEFAULT 0x0100000000ULL
270
Joerg Roedel455716f2010-03-01 15:34:35 +0100271#define MSR_INVALID 0xffffffffU
272
Mathias Krause09941fb2012-08-30 01:30:20 +0200273static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100274 u32 index; /* Index of the MSR */
275 bool always; /* True if intercept is always on */
276} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400277 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100278 { .index = MSR_IA32_SYSENTER_CS, .always = true },
279#ifdef CONFIG_X86_64
280 { .index = MSR_GS_BASE, .always = true },
281 { .index = MSR_FS_BASE, .always = true },
282 { .index = MSR_KERNEL_GS_BASE, .always = true },
283 { .index = MSR_LSTAR, .always = true },
284 { .index = MSR_CSTAR, .always = true },
285 { .index = MSR_SYSCALL_MASK, .always = true },
286#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100287 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100288 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100289 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
290 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
291 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
292 { .index = MSR_IA32_LASTINTTOIP, .always = false },
293 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800294};
295
296/* enable NPT for AMD64 and X86 with PAE */
297#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
298static bool npt_enabled = true;
299#else
Joerg Roedele0231712010-02-24 18:59:10 +0100300static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301#endif
302
Babu Moger8566ac82018-03-16 16:37:26 -0400303/*
304 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
305 * pause_filter_count: On processors that support Pause filtering(indicated
306 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
307 * count value. On VMRUN this value is loaded into an internal counter.
308 * Each time a pause instruction is executed, this counter is decremented
309 * until it reaches zero at which time a #VMEXIT is generated if pause
310 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
311 * Intercept Filtering for more details.
312 * This also indicate if ple logic enabled.
313 *
314 * pause_filter_thresh: In addition, some processor families support advanced
315 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
316 * the amount of time a guest is allowed to execute in a pause loop.
317 * In this mode, a 16-bit pause filter threshold field is added in the
318 * VMCB. The threshold value is a cycle count that is used to reset the
319 * pause counter. As with simple pause filtering, VMRUN loads the pause
320 * count value from VMCB into an internal counter. Then, on each pause
321 * instruction the hardware checks the elapsed number of cycles since
322 * the most recent pause instruction against the pause filter threshold.
323 * If the elapsed cycle count is greater than the pause filter threshold,
324 * then the internal pause count is reloaded from the VMCB and execution
325 * continues. If the elapsed cycle count is less than the pause filter
326 * threshold, then the internal pause count is decremented. If the count
327 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
328 * triggered. If advanced pause filtering is supported and pause filter
329 * threshold field is set to zero, the filter will operate in the simpler,
330 * count only mode.
331 */
332
333static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
334module_param(pause_filter_thresh, ushort, 0444);
335
336static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
337module_param(pause_filter_count, ushort, 0444);
338
339/* Default doubles per-vcpu window every exit. */
340static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
341module_param(pause_filter_count_grow, ushort, 0444);
342
343/* Default resets per-vcpu window every exit to pause_filter_count. */
344static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
345module_param(pause_filter_count_shrink, ushort, 0444);
346
347/* Default is to compute the maximum so we can never overflow. */
348static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
349module_param(pause_filter_count_max, ushort, 0444);
350
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100351/* allow nested paging (virtualized MMU) for all guests */
352static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800353module_param(npt, int, S_IRUGO);
354
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100355/* allow nested virtualization in KVM/SVM */
356static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357module_param(nested, int, S_IRUGO);
358
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500359/* enable / disable AVIC */
360static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500361#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500362module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500363#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500364
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200365/* enable/disable Next RIP Save */
366static int nrips = true;
367module_param(nrips, int, 0444);
368
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500369/* enable/disable Virtual VMLOAD VMSAVE */
370static int vls = true;
371module_param(vls, int, 0444);
372
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500373/* enable/disable Virtual GIF */
374static int vgif = true;
375module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500376
Brijesh Singhe9df0942017-12-04 10:57:33 -0600377/* enable/disable SEV support */
378static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
379module_param(sev, int, 0444);
380
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200381static bool __read_mostly dump_invalid_vmcb = 0;
382module_param(dump_invalid_vmcb, bool, 0644);
383
Brijesh Singh7607b712018-02-19 10:14:44 -0600384static u8 rsm_ins_bytes[] = "\x0f\xaa";
385
Paolo Bonzini79a80592015-09-21 07:46:55 +0200386static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800387static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200388static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800389
Joerg Roedel410e4d52009-08-07 11:49:44 +0200390static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100391static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800392static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800393static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
394 bool has_error_code, u32 error_code);
395
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100396enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100397 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
398 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100399 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100400 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100401 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100402 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100403 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100404 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100405 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100406 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100407 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100408 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500409 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
410 * AVIC PHYSICAL_TABLE pointer,
411 * AVIC LOGICAL_TABLE pointer
412 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100413 VMCB_DIRTY_MAX,
414};
415
Joerg Roedel0574dec2010-12-03 11:45:58 +0100416/* TPR and CR2 are always written before VMRUN */
417#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100418
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500419#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
420
Brijesh Singhed3cd232017-12-04 10:57:32 -0600421static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600422static unsigned int min_sev_asid;
423static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600424#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600425
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600426struct enc_region {
427 struct list_head list;
428 unsigned long npages;
429 struct page **pages;
430 unsigned long uaddr;
431 unsigned long size;
432};
433
Sean Christopherson81811c12018-03-20 12:17:21 -0700434
435static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
436{
437 return container_of(kvm, struct kvm_svm, kvm);
438}
439
Brijesh Singh1654efc2017-12-04 10:57:34 -0600440static inline bool svm_sev_enabled(void)
441{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200442 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600443}
444
445static inline bool sev_guest(struct kvm *kvm)
446{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200447#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700448 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600449
450 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200451#else
452 return false;
453#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600454}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600455
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600456static inline int sev_get_asid(struct kvm *kvm)
457{
Sean Christopherson81811c12018-03-20 12:17:21 -0700458 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600459
460 return sev->asid;
461}
462
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100463static inline void mark_all_dirty(struct vmcb *vmcb)
464{
465 vmcb->control.clean = 0;
466}
467
468static inline void mark_all_clean(struct vmcb *vmcb)
469{
470 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
471 & ~VMCB_ALWAYS_DIRTY_MASK;
472}
473
474static inline void mark_dirty(struct vmcb *vmcb, int bit)
475{
476 vmcb->control.clean &= ~(1 << bit);
477}
478
Avi Kivity6aa8b732006-12-10 02:21:36 -0800479static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
480{
481 return container_of(vcpu, struct vcpu_svm, vcpu);
482}
483
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500484static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
485{
486 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
487 mark_dirty(svm->vmcb, VMCB_AVIC);
488}
489
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500490static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
491{
492 struct vcpu_svm *svm = to_svm(vcpu);
493 u64 *entry = svm->avic_physical_id_cache;
494
495 if (!entry)
496 return false;
497
498 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
499}
500
Joerg Roedel384c6362010-11-30 18:03:56 +0100501static void recalc_intercepts(struct vcpu_svm *svm)
502{
503 struct vmcb_control_area *c, *h;
504 struct nested_state *g;
505
Joerg Roedel116a0a22010-12-03 11:45:49 +0100506 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
507
Joerg Roedel384c6362010-11-30 18:03:56 +0100508 if (!is_guest_mode(&svm->vcpu))
509 return;
510
511 c = &svm->vmcb->control;
512 h = &svm->nested.hsave->control;
513 g = &svm->nested;
514
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100515 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100516 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100517 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100518 c->intercept = h->intercept | g->intercept;
519}
520
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100521static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
522{
523 if (is_guest_mode(&svm->vcpu))
524 return svm->nested.hsave;
525 else
526 return svm->vmcb;
527}
528
529static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
530{
531 struct vmcb *vmcb = get_host_vmcb(svm);
532
533 vmcb->control.intercept_cr |= (1U << bit);
534
535 recalc_intercepts(svm);
536}
537
538static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
539{
540 struct vmcb *vmcb = get_host_vmcb(svm);
541
542 vmcb->control.intercept_cr &= ~(1U << bit);
543
544 recalc_intercepts(svm);
545}
546
547static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
548{
549 struct vmcb *vmcb = get_host_vmcb(svm);
550
551 return vmcb->control.intercept_cr & (1U << bit);
552}
553
Paolo Bonzini5315c712014-03-03 13:08:29 +0100554static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100555{
556 struct vmcb *vmcb = get_host_vmcb(svm);
557
Paolo Bonzini5315c712014-03-03 13:08:29 +0100558 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
559 | (1 << INTERCEPT_DR1_READ)
560 | (1 << INTERCEPT_DR2_READ)
561 | (1 << INTERCEPT_DR3_READ)
562 | (1 << INTERCEPT_DR4_READ)
563 | (1 << INTERCEPT_DR5_READ)
564 | (1 << INTERCEPT_DR6_READ)
565 | (1 << INTERCEPT_DR7_READ)
566 | (1 << INTERCEPT_DR0_WRITE)
567 | (1 << INTERCEPT_DR1_WRITE)
568 | (1 << INTERCEPT_DR2_WRITE)
569 | (1 << INTERCEPT_DR3_WRITE)
570 | (1 << INTERCEPT_DR4_WRITE)
571 | (1 << INTERCEPT_DR5_WRITE)
572 | (1 << INTERCEPT_DR6_WRITE)
573 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100574
575 recalc_intercepts(svm);
576}
577
Paolo Bonzini5315c712014-03-03 13:08:29 +0100578static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100579{
580 struct vmcb *vmcb = get_host_vmcb(svm);
581
Paolo Bonzini5315c712014-03-03 13:08:29 +0100582 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100583
584 recalc_intercepts(svm);
585}
586
Joerg Roedel18c918c2010-11-30 18:03:59 +0100587static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
588{
589 struct vmcb *vmcb = get_host_vmcb(svm);
590
591 vmcb->control.intercept_exceptions |= (1U << bit);
592
593 recalc_intercepts(svm);
594}
595
596static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
597{
598 struct vmcb *vmcb = get_host_vmcb(svm);
599
600 vmcb->control.intercept_exceptions &= ~(1U << bit);
601
602 recalc_intercepts(svm);
603}
604
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100605static inline void set_intercept(struct vcpu_svm *svm, int bit)
606{
607 struct vmcb *vmcb = get_host_vmcb(svm);
608
609 vmcb->control.intercept |= (1ULL << bit);
610
611 recalc_intercepts(svm);
612}
613
614static inline void clr_intercept(struct vcpu_svm *svm, int bit)
615{
616 struct vmcb *vmcb = get_host_vmcb(svm);
617
618 vmcb->control.intercept &= ~(1ULL << bit);
619
620 recalc_intercepts(svm);
621}
622
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500623static inline bool vgif_enabled(struct vcpu_svm *svm)
624{
625 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
626}
627
Joerg Roedel2af91942009-08-07 11:49:28 +0200628static inline void enable_gif(struct vcpu_svm *svm)
629{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500630 if (vgif_enabled(svm))
631 svm->vmcb->control.int_ctl |= V_GIF_MASK;
632 else
633 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200634}
635
636static inline void disable_gif(struct vcpu_svm *svm)
637{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500638 if (vgif_enabled(svm))
639 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
640 else
641 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200642}
643
644static inline bool gif_set(struct vcpu_svm *svm)
645{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500646 if (vgif_enabled(svm))
647 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
648 else
649 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200650}
651
Avi Kivity6aa8b732006-12-10 02:21:36 -0800652static unsigned long iopm_base;
653
654struct kvm_ldttss_desc {
655 u16 limit0;
656 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100657 unsigned base1:8, type:5, dpl:2, p:1;
658 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800659 u32 base3;
660 u32 zero1;
661} __attribute__((packed));
662
663struct svm_cpu_data {
664 int cpu;
665
Avi Kivity5008fdf2007-04-02 13:05:50 +0300666 u64 asid_generation;
667 u32 max_asid;
668 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600669 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670 struct kvm_ldttss_desc *tss_desc;
671
672 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100673 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600674
675 /* index = sev_asid, value = vmcb pointer */
676 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677};
678
679static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
680
Mathias Krause09941fb2012-08-30 01:30:20 +0200681static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200683#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684#define MSRS_RANGE_SIZE 2048
685#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
686
Joerg Roedel455716f2010-03-01 15:34:35 +0100687static u32 svm_msrpm_offset(u32 msr)
688{
689 u32 offset;
690 int i;
691
692 for (i = 0; i < NUM_MSR_MAPS; i++) {
693 if (msr < msrpm_ranges[i] ||
694 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
695 continue;
696
697 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
698 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
699
700 /* Now we have the u8 offset - but need the u32 offset */
701 return offset / 4;
702 }
703
704 /* MSR not in any range */
705 return MSR_INVALID;
706}
707
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708#define MAX_INST_SIZE 15
709
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710static inline void clgi(void)
711{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100712 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800713}
714
715static inline void stgi(void)
716{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100717 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718}
719
720static inline void invlpga(unsigned long addr, u32 asid)
721{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100722 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723}
724
Yu Zhang855feb62017-08-24 20:27:55 +0800725static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200726{
727#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800728 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200729#else
730 return PT32E_ROOT_LEVEL;
731#endif
732}
733
Avi Kivity6aa8b732006-12-10 02:21:36 -0800734static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
735{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000736 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100737 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600738 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739
Alexander Graf9962d032008-11-25 20:17:02 +0100740 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100741 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742}
743
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744static int is_external_interrupt(u32 info)
745{
746 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
747 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
748}
749
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200750static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400751{
752 struct vcpu_svm *svm = to_svm(vcpu);
753 u32 ret = 0;
754
755 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200756 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
757 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400758}
759
760static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
761{
762 struct vcpu_svm *svm = to_svm(vcpu);
763
764 if (mask == 0)
765 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
766 else
767 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
768
769}
770
Avi Kivity6aa8b732006-12-10 02:21:36 -0800771static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
772{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400773 struct vcpu_svm *svm = to_svm(vcpu);
774
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200775 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200776 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200777 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400778 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200779
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400780 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700781 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300782 EMULATE_DONE)
783 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784 return;
785 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300786 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
787 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
788 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300790 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400791 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792}
793
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700794static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100795{
796 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700797 unsigned nr = vcpu->arch.exception.nr;
798 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700799 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700800 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100801
Joerg Roedele0231712010-02-24 18:59:10 +0100802 /*
803 * If we are within a nested VM we'd better #VMEXIT and let the guest
804 * handle the exception
805 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200806 if (!reinject &&
807 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100808 return;
809
Jim Mattsonda998b42018-10-16 14:29:22 -0700810 kvm_deliver_exception_payload(&svm->vcpu);
811
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200812 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100813 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
814
815 /*
816 * For guest debugging where we have to reinject #BP if some
817 * INT3 is guest-owned:
818 * Emulate nRIP by moving RIP forward. Will fail if injection
819 * raises a fault that is not intercepted. Still better than
820 * failing in all cases.
821 */
822 skip_emulated_instruction(&svm->vcpu);
823 rip = kvm_rip_read(&svm->vcpu);
824 svm->int3_rip = rip + svm->vmcb->save.cs.base;
825 svm->int3_injected = rip - old_rip;
826 }
827
Jan Kiszka116a4752010-02-23 17:47:54 +0100828 svm->vmcb->control.event_inj = nr
829 | SVM_EVTINJ_VALID
830 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
831 | SVM_EVTINJ_TYPE_EXEPT;
832 svm->vmcb->control.event_inj_err = error_code;
833}
834
Joerg Roedel67ec6602010-05-17 14:43:35 +0200835static void svm_init_erratum_383(void)
836{
837 u32 low, high;
838 int err;
839 u64 val;
840
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100841 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200842 return;
843
844 /* Use _safe variants to not break nested virtualization */
845 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
846 if (err)
847 return;
848
849 val |= (1ULL << 47);
850
851 low = lower_32_bits(val);
852 high = upper_32_bits(val);
853
854 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
855
856 erratum_383_found = true;
857}
858
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500859static void svm_init_osvw(struct kvm_vcpu *vcpu)
860{
861 /*
862 * Guests should see errata 400 and 415 as fixed (assuming that
863 * HLT and IO instructions are intercepted).
864 */
865 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
866 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
867
868 /*
869 * By increasing VCPU's osvw.length to 3 we are telling the guest that
870 * all osvw.status bits inside that length, including bit 0 (which is
871 * reserved for erratum 298), are valid. However, if host processor's
872 * osvw_len is 0 then osvw_status[0] carries no information. We need to
873 * be conservative here and therefore we tell the guest that erratum 298
874 * is present (because we really don't know).
875 */
876 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
877 vcpu->arch.osvw.status |= 1;
878}
879
Avi Kivity6aa8b732006-12-10 02:21:36 -0800880static int has_svm(void)
881{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200882 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883
Eduardo Habkost63d11422008-11-17 19:03:20 -0200884 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800885 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 return 0;
887 }
888
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889 return 1;
890}
891
Radim Krčmář13a34e02014-08-28 15:13:03 +0200892static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100894 /* Make sure we clean up behind us */
895 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
896 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
897
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200898 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100899
900 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901}
902
Radim Krčmář13a34e02014-08-28 15:13:03 +0200903static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904{
905
Tejun Heo0fe1e002009-10-29 22:34:14 +0900906 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 struct desc_struct *gdt;
909 int me = raw_smp_processor_id();
910
Alexander Graf10474ae2009-09-15 11:37:46 +0200911 rdmsrl(MSR_EFER, efer);
912 if (efer & EFER_SVME)
913 return -EBUSY;
914
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200916 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200917 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900919 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900920 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200921 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200922 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 }
924
Tejun Heo0fe1e002009-10-29 22:34:14 +0900925 sd->asid_generation = 1;
926 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
927 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600928 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929
Thomas Garnier45fc8752017-03-14 10:05:08 -0700930 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900931 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932
Alexander Graf9962d032008-11-25 20:17:02 +0100933 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934
Linus Torvaldsd0316552009-12-14 09:58:24 -0800935 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200936
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100937 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
938 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500939 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100940 }
941
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500942
943 /*
944 * Get OSVW bits.
945 *
946 * Note that it is possible to have a system with mixed processor
947 * revisions and therefore different OSVW bits. If bits are not the same
948 * on different processors then choose the worst case (i.e. if erratum
949 * is present on one processor and not on another then assume that the
950 * erratum is present everywhere).
951 */
952 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
953 uint64_t len, status = 0;
954 int err;
955
956 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
957 if (!err)
958 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
959 &err);
960
961 if (err)
962 osvw_status = osvw_len = 0;
963 else {
964 if (len < osvw_len)
965 osvw_len = len;
966 osvw_status |= status;
967 osvw_status &= (1ULL << osvw_len) - 1;
968 }
969 } else
970 osvw_status = osvw_len = 0;
971
Joerg Roedel67ec6602010-05-17 14:43:35 +0200972 svm_init_erratum_383();
973
Joerg Roedel1018faa2012-02-29 14:57:32 +0100974 amd_pmu_enable_virt();
975
Alexander Graf10474ae2009-09-15 11:37:46 +0200976 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977}
978
Joerg Roedel0da1db752008-07-02 16:02:11 +0200979static void svm_cpu_uninit(int cpu)
980{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900981 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200982
Tejun Heo0fe1e002009-10-29 22:34:14 +0900983 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200984 return;
985
986 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600987 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900988 __free_page(sd->save_area);
989 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200990}
991
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992static int svm_cpu_init(int cpu)
993{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995 int r;
996
Tejun Heo0fe1e002009-10-29 22:34:14 +0900997 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
998 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001000 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001002 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001003 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 goto err_1;
1005
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001006 if (svm_sev_enabled()) {
1007 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001008 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1009 sizeof(void *),
1010 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001011 if (!sd->sev_vmcbs)
1012 goto err_1;
1013 }
1014
Tejun Heo0fe1e002009-10-29 22:34:14 +09001015 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016
1017 return 0;
1018
1019err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001020 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 return r;
1022
1023}
1024
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001025static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026{
1027 int i;
1028
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001029 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1030 if (direct_access_msrs[i].index == index)
1031 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001033 return false;
1034}
1035
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001036static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1037{
1038 u8 bit_write;
1039 unsigned long tmp;
1040 u32 offset;
1041 u32 *msrpm;
1042
1043 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1044 to_svm(vcpu)->msrpm;
1045
1046 offset = svm_msrpm_offset(msr);
1047 bit_write = 2 * (msr & 0x0f) + 1;
1048 tmp = msrpm[offset];
1049
1050 BUG_ON(offset == MSR_INVALID);
1051
1052 return !!test_bit(bit_write, &tmp);
1053}
1054
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055static void set_msr_interception(u32 *msrpm, unsigned msr,
1056 int read, int write)
1057{
Joerg Roedel455716f2010-03-01 15:34:35 +01001058 u8 bit_read, bit_write;
1059 unsigned long tmp;
1060 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001062 /*
1063 * If this warning triggers extend the direct_access_msrs list at the
1064 * beginning of the file
1065 */
1066 WARN_ON(!valid_msr_intercept(msr));
1067
Joerg Roedel455716f2010-03-01 15:34:35 +01001068 offset = svm_msrpm_offset(msr);
1069 bit_read = 2 * (msr & 0x0f);
1070 bit_write = 2 * (msr & 0x0f) + 1;
1071 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072
Joerg Roedel455716f2010-03-01 15:34:35 +01001073 BUG_ON(offset == MSR_INVALID);
1074
1075 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1076 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1077
1078 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079}
1080
Joerg Roedelf65c2292008-02-13 18:58:46 +01001081static void svm_vcpu_init_msrpm(u32 *msrpm)
1082{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001083 int i;
1084
Joerg Roedelf65c2292008-02-13 18:58:46 +01001085 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1086
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001087 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1088 if (!direct_access_msrs[i].always)
1089 continue;
1090
1091 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1092 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001093}
1094
Joerg Roedel323c3d82010-03-01 15:34:37 +01001095static void add_msr_offset(u32 offset)
1096{
1097 int i;
1098
1099 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1100
1101 /* Offset already in list? */
1102 if (msrpm_offsets[i] == offset)
1103 return;
1104
1105 /* Slot used by another offset? */
1106 if (msrpm_offsets[i] != MSR_INVALID)
1107 continue;
1108
1109 /* Add offset to list */
1110 msrpm_offsets[i] = offset;
1111
1112 return;
1113 }
1114
1115 /*
1116 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1117 * increase MSRPM_OFFSETS in this case.
1118 */
1119 BUG();
1120}
1121
1122static void init_msrpm_offsets(void)
1123{
1124 int i;
1125
1126 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1127
1128 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1129 u32 offset;
1130
1131 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1132 BUG_ON(offset == MSR_INVALID);
1133
1134 add_msr_offset(offset);
1135 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001136}
1137
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001138static void svm_enable_lbrv(struct vcpu_svm *svm)
1139{
1140 u32 *msrpm = svm->msrpm;
1141
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001142 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001143 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1144 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1145 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1146 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1147}
1148
1149static void svm_disable_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, 0, 0);
1155 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1156 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1157 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1158}
1159
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001160static void disable_nmi_singlestep(struct vcpu_svm *svm)
1161{
1162 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001163
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001164 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1165 /* Clear our flags if they were not set by the guest */
1166 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1167 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1168 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1169 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1170 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001171}
1172
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001173/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001174 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001175 * when handling AMD IOMMU GALOG notification to schedule in
1176 * a particular vCPU.
1177 */
1178#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001179static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001180static u32 next_vm_id = 0;
1181static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001182static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001183
1184/* Note:
1185 * This function is called from IOMMU driver to notify
1186 * SVM to schedule in a particular vCPU of a particular VM.
1187 */
1188static int avic_ga_log_notifier(u32 ga_tag)
1189{
1190 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001191 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001192 struct kvm_vcpu *vcpu = NULL;
1193 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1194 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1195
1196 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1197
1198 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001199 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1200 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001201 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001202 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001203 break;
1204 }
1205 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1206
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001207 /* Note:
1208 * At this point, the IOMMU should have already set the pending
1209 * bit in the vAPIC backing page. So, we just need to schedule
1210 * in the vcpu.
1211 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001212 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001213 kvm_vcpu_wake_up(vcpu);
1214
1215 return 0;
1216}
1217
Brijesh Singhe9df0942017-12-04 10:57:33 -06001218static __init int sev_hardware_setup(void)
1219{
1220 struct sev_user_data_status *status;
1221 int rc;
1222
1223 /* Maximum number of encrypted guests supported simultaneously */
1224 max_sev_asid = cpuid_ecx(0x8000001F);
1225
1226 if (!max_sev_asid)
1227 return 1;
1228
Brijesh Singh1654efc2017-12-04 10:57:34 -06001229 /* Minimum ASID value that should be used for SEV guest */
1230 min_sev_asid = cpuid_edx(0x8000001F);
1231
1232 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001233 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001234 if (!sev_asid_bitmap)
1235 return 1;
1236
Brijesh Singhe9df0942017-12-04 10:57:33 -06001237 status = kmalloc(sizeof(*status), GFP_KERNEL);
1238 if (!status)
1239 return 1;
1240
1241 /*
1242 * Check SEV platform status.
1243 *
1244 * PLATFORM_STATUS can be called in any state, if we failed to query
1245 * the PLATFORM status then either PSP firmware does not support SEV
1246 * feature or SEV firmware is dead.
1247 */
1248 rc = sev_platform_status(status, NULL);
1249 if (rc)
1250 goto err;
1251
1252 pr_info("SEV supported\n");
1253
1254err:
1255 kfree(status);
1256 return rc;
1257}
1258
Babu Moger8566ac82018-03-16 16:37:26 -04001259static void grow_ple_window(struct kvm_vcpu *vcpu)
1260{
1261 struct vcpu_svm *svm = to_svm(vcpu);
1262 struct vmcb_control_area *control = &svm->vmcb->control;
1263 int old = control->pause_filter_count;
1264
1265 control->pause_filter_count = __grow_ple_window(old,
1266 pause_filter_count,
1267 pause_filter_count_grow,
1268 pause_filter_count_max);
1269
1270 if (control->pause_filter_count != old)
1271 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1272
1273 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1274 control->pause_filter_count, old);
1275}
1276
1277static void shrink_ple_window(struct kvm_vcpu *vcpu)
1278{
1279 struct vcpu_svm *svm = to_svm(vcpu);
1280 struct vmcb_control_area *control = &svm->vmcb->control;
1281 int old = control->pause_filter_count;
1282
1283 control->pause_filter_count =
1284 __shrink_ple_window(old,
1285 pause_filter_count,
1286 pause_filter_count_shrink,
1287 pause_filter_count);
1288 if (control->pause_filter_count != old)
1289 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1290
1291 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1292 control->pause_filter_count, old);
1293}
1294
Avi Kivity6aa8b732006-12-10 02:21:36 -08001295static __init int svm_hardware_setup(void)
1296{
1297 int cpu;
1298 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001299 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300 int r;
1301
Avi Kivity6aa8b732006-12-10 02:21:36 -08001302 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1303
1304 if (!iopm_pages)
1305 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001306
1307 iopm_va = page_address(iopm_pages);
1308 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1310
Joerg Roedel323c3d82010-03-01 15:34:37 +01001311 init_msrpm_offsets();
1312
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001313 if (boot_cpu_has(X86_FEATURE_NX))
1314 kvm_enable_efer_bits(EFER_NX);
1315
Alexander Graf1b2fd702009-02-02 16:23:51 +01001316 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1317 kvm_enable_efer_bits(EFER_FFXSR);
1318
Joerg Roedel92a1f122011-03-25 09:44:51 +01001319 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001320 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001321 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1322 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001323 }
1324
Babu Moger8566ac82018-03-16 16:37:26 -04001325 /* Check for pause filtering support */
1326 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1327 pause_filter_count = 0;
1328 pause_filter_thresh = 0;
1329 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1330 pause_filter_thresh = 0;
1331 }
1332
Alexander Graf236de052008-11-25 20:17:10 +01001333 if (nested) {
1334 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001335 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001336 }
1337
Brijesh Singhe9df0942017-12-04 10:57:33 -06001338 if (sev) {
1339 if (boot_cpu_has(X86_FEATURE_SEV) &&
1340 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1341 r = sev_hardware_setup();
1342 if (r)
1343 sev = false;
1344 } else {
1345 sev = false;
1346 }
1347 }
1348
Zachary Amsden3230bb42009-09-29 11:38:37 -10001349 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350 r = svm_cpu_init(cpu);
1351 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001352 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001353 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001354
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001355 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001356 npt_enabled = false;
1357
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001358 if (npt_enabled && !npt) {
1359 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1360 npt_enabled = false;
1361 }
1362
Joerg Roedel18552672008-02-07 13:47:41 +01001363 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001364 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001365 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001366 } else
1367 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001368
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001369 if (nrips) {
1370 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1371 nrips = false;
1372 }
1373
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001374 if (avic) {
1375 if (!npt_enabled ||
1376 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001377 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001378 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001379 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001380 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001381
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001382 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1383 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001384 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001385
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001386 if (vls) {
1387 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001388 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001389 !IS_ENABLED(CONFIG_X86_64)) {
1390 vls = false;
1391 } else {
1392 pr_info("Virtual VMLOAD VMSAVE supported\n");
1393 }
1394 }
1395
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001396 if (vgif) {
1397 if (!boot_cpu_has(X86_FEATURE_VGIF))
1398 vgif = false;
1399 else
1400 pr_info("Virtual GIF supported\n");
1401 }
1402
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403 return 0;
1404
Joerg Roedelf65c2292008-02-13 18:58:46 +01001405err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1407 iopm_base = 0;
1408 return r;
1409}
1410
1411static __exit void svm_hardware_unsetup(void)
1412{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001413 int cpu;
1414
Brijesh Singh1654efc2017-12-04 10:57:34 -06001415 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001416 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001417
Zachary Amsden3230bb42009-09-29 11:38:37 -10001418 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001419 svm_cpu_uninit(cpu);
1420
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001422 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423}
1424
1425static void init_seg(struct vmcb_seg *seg)
1426{
1427 seg->selector = 0;
1428 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001429 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001430 seg->limit = 0xffff;
1431 seg->base = 0;
1432}
1433
1434static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1435{
1436 seg->selector = 0;
1437 seg->attrib = SVM_SELECTOR_P_MASK | type;
1438 seg->limit = 0xffff;
1439 seg->base = 0;
1440}
1441
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001442static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1443{
1444 struct vcpu_svm *svm = to_svm(vcpu);
1445
1446 if (is_guest_mode(vcpu))
1447 return svm->nested.hsave->control.tsc_offset;
1448
1449 return vcpu->arch.tsc_offset;
1450}
1451
Leonid Shatz326e7422018-11-06 12:14:25 +02001452static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001453{
1454 struct vcpu_svm *svm = to_svm(vcpu);
1455 u64 g_tsc_offset = 0;
1456
Joerg Roedel20307532010-11-29 17:51:48 +01001457 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001458 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001459 g_tsc_offset = svm->vmcb->control.tsc_offset -
1460 svm->nested.hsave->control.tsc_offset;
1461 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001462 }
1463
1464 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1465 svm->vmcb->control.tsc_offset - g_tsc_offset,
1466 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001467
1468 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001469
1470 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001471 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001472}
1473
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001474static void avic_init_vmcb(struct vcpu_svm *svm)
1475{
1476 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001477 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001478 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001479 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1480 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001481
1482 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1483 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1484 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1485 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1486 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001487}
1488
Paolo Bonzini56908912015-10-19 11:30:19 +02001489static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001490{
Joerg Roedele6101a92008-02-13 18:58:45 +01001491 struct vmcb_control_area *control = &svm->vmcb->control;
1492 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001494 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001495
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001496 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1497 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1498 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1499 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1500 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1501 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001502 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1503 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001504
Paolo Bonzini5315c712014-03-03 13:08:29 +01001505 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506
Joerg Roedel18c918c2010-11-30 18:03:59 +01001507 set_exception_intercept(svm, PF_VECTOR);
1508 set_exception_intercept(svm, UD_VECTOR);
1509 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001510 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001511 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001512 /*
1513 * Guest access to VMware backdoor ports could legitimately
1514 * trigger #GP because of TSS I/O permission bitmap.
1515 * We intercept those #GP and allow access to them anyway
1516 * as VMware does.
1517 */
1518 if (enable_vmware_backdoor)
1519 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001521 set_intercept(svm, INTERCEPT_INTR);
1522 set_intercept(svm, INTERCEPT_NMI);
1523 set_intercept(svm, INTERCEPT_SMI);
1524 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001525 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001526 set_intercept(svm, INTERCEPT_CPUID);
1527 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001528 set_intercept(svm, INTERCEPT_INVLPG);
1529 set_intercept(svm, INTERCEPT_INVLPGA);
1530 set_intercept(svm, INTERCEPT_IOIO_PROT);
1531 set_intercept(svm, INTERCEPT_MSR_PROT);
1532 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1533 set_intercept(svm, INTERCEPT_SHUTDOWN);
1534 set_intercept(svm, INTERCEPT_VMRUN);
1535 set_intercept(svm, INTERCEPT_VMMCALL);
1536 set_intercept(svm, INTERCEPT_VMLOAD);
1537 set_intercept(svm, INTERCEPT_VMSAVE);
1538 set_intercept(svm, INTERCEPT_STGI);
1539 set_intercept(svm, INTERCEPT_CLGI);
1540 set_intercept(svm, INTERCEPT_SKINIT);
1541 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001542 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001543 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001544
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001545 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001546 set_intercept(svm, INTERCEPT_MONITOR);
1547 set_intercept(svm, INTERCEPT_MWAIT);
1548 }
1549
Wanpeng Licaa057a2018-03-12 04:53:03 -07001550 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1551 set_intercept(svm, INTERCEPT_HLT);
1552
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001553 control->iopm_base_pa = __sme_set(iopm_base);
1554 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555 control->int_ctl = V_INTR_MASKING_MASK;
1556
1557 init_seg(&save->es);
1558 init_seg(&save->ss);
1559 init_seg(&save->ds);
1560 init_seg(&save->fs);
1561 init_seg(&save->gs);
1562
1563 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001564 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565 /* Executable/Readable Code Segment */
1566 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1567 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1568 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569
1570 save->gdtr.limit = 0xffff;
1571 save->idtr.limit = 0xffff;
1572
1573 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1574 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1575
Paolo Bonzini56908912015-10-19 11:30:19 +02001576 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001577 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001578 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001580 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001581
Joerg Roedele0231712010-02-24 18:59:10 +01001582 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001583 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001584 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001586 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001587 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001588
Rusty Russell66aee912007-07-17 23:34:16 +10001589 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001591
1592 if (npt_enabled) {
1593 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001594 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001595 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001596 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001597 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1598 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001599 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001600 save->cr3 = 0;
1601 save->cr4 = 0;
1602 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001603 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001604
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001605 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001606 svm->vcpu.arch.hflags = 0;
1607
Babu Moger8566ac82018-03-16 16:37:26 -04001608 if (pause_filter_count) {
1609 control->pause_filter_count = pause_filter_count;
1610 if (pause_filter_thresh)
1611 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001612 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001613 } else {
1614 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001615 }
1616
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001617 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001618 avic_init_vmcb(svm);
1619
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001620 /*
1621 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1622 * in VMCB and clear intercepts to avoid #VMEXIT.
1623 */
1624 if (vls) {
1625 clr_intercept(svm, INTERCEPT_VMLOAD);
1626 clr_intercept(svm, INTERCEPT_VMSAVE);
1627 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1628 }
1629
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001630 if (vgif) {
1631 clr_intercept(svm, INTERCEPT_STGI);
1632 clr_intercept(svm, INTERCEPT_CLGI);
1633 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1634 }
1635
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001636 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001637 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001638 clr_exception_intercept(svm, UD_VECTOR);
1639 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001640
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001641 mark_all_dirty(svm->vmcb);
1642
Joerg Roedel2af91942009-08-07 11:49:28 +02001643 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001644
1645}
1646
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001647static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1648 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001649{
1650 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001651 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001652
1653 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1654 return NULL;
1655
Sean Christopherson81811c12018-03-20 12:17:21 -07001656 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001657
1658 return &avic_physical_id_table[index];
1659}
1660
1661/**
1662 * Note:
1663 * AVIC hardware walks the nested page table to check permissions,
1664 * but does not use the SPA address specified in the leaf page
1665 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1666 * field of the VMCB. Therefore, we set up the
1667 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1668 */
1669static int avic_init_access_page(struct kvm_vcpu *vcpu)
1670{
1671 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001672 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001673
Wei Wang30510382018-11-12 12:23:14 +00001674 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001675 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001676 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001677
Wei Wang30510382018-11-12 12:23:14 +00001678 ret = __x86_set_memory_region(kvm,
1679 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1680 APIC_DEFAULT_PHYS_BASE,
1681 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001682 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001683 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001684
1685 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001686out:
1687 mutex_unlock(&kvm->slots_lock);
1688 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001689}
1690
1691static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1692{
1693 int ret;
1694 u64 *entry, new_entry;
1695 int id = vcpu->vcpu_id;
1696 struct vcpu_svm *svm = to_svm(vcpu);
1697
1698 ret = avic_init_access_page(vcpu);
1699 if (ret)
1700 return ret;
1701
1702 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1703 return -EINVAL;
1704
1705 if (!svm->vcpu.arch.apic->regs)
1706 return -EINVAL;
1707
1708 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1709
1710 /* Setting AVIC backing page address in the phy APIC ID table */
1711 entry = avic_get_physical_id_entry(vcpu, id);
1712 if (!entry)
1713 return -EINVAL;
1714
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001715 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1716 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1717 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001718 WRITE_ONCE(*entry, new_entry);
1719
1720 svm->avic_physical_id_cache = entry;
1721
1722 return 0;
1723}
1724
Brijesh Singh1654efc2017-12-04 10:57:34 -06001725static void __sev_asid_free(int asid)
1726{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001727 struct svm_cpu_data *sd;
1728 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001729
1730 pos = asid - 1;
1731 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001732
1733 for_each_possible_cpu(cpu) {
1734 sd = per_cpu(svm_data, cpu);
1735 sd->sev_vmcbs[pos] = NULL;
1736 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001737}
1738
1739static void sev_asid_free(struct kvm *kvm)
1740{
Sean Christopherson81811c12018-03-20 12:17:21 -07001741 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001742
1743 __sev_asid_free(sev->asid);
1744}
1745
Brijesh Singh59414c92017-12-04 10:57:35 -06001746static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1747{
1748 struct sev_data_decommission *decommission;
1749 struct sev_data_deactivate *data;
1750
1751 if (!handle)
1752 return;
1753
1754 data = kzalloc(sizeof(*data), GFP_KERNEL);
1755 if (!data)
1756 return;
1757
1758 /* deactivate handle */
1759 data->handle = handle;
1760 sev_guest_deactivate(data, NULL);
1761
1762 wbinvd_on_all_cpus();
1763 sev_guest_df_flush(NULL);
1764 kfree(data);
1765
1766 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1767 if (!decommission)
1768 return;
1769
1770 /* decommission handle */
1771 decommission->handle = handle;
1772 sev_guest_decommission(decommission, NULL);
1773
1774 kfree(decommission);
1775}
1776
Brijesh Singh89c50582017-12-04 10:57:35 -06001777static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1778 unsigned long ulen, unsigned long *n,
1779 int write)
1780{
Sean Christopherson81811c12018-03-20 12:17:21 -07001781 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001782 unsigned long npages, npinned, size;
1783 unsigned long locked, lock_limit;
1784 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001785 unsigned long first, last;
1786
1787 if (ulen == 0 || uaddr + ulen < uaddr)
1788 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001789
1790 /* Calculate number of pages. */
1791 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1792 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1793 npages = (last - first + 1);
1794
1795 locked = sev->pages_locked + npages;
1796 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1797 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1798 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1799 return NULL;
1800 }
1801
1802 /* Avoid using vmalloc for smaller buffers. */
1803 size = npages * sizeof(struct page *);
1804 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001805 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1806 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001807 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001808 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001809
1810 if (!pages)
1811 return NULL;
1812
1813 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001814 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001815 if (npinned != npages) {
1816 pr_err("SEV: Failure locking %lu pages.\n", npages);
1817 goto err;
1818 }
1819
1820 *n = npages;
1821 sev->pages_locked = locked;
1822
1823 return pages;
1824
1825err:
1826 if (npinned > 0)
1827 release_pages(pages, npinned);
1828
1829 kvfree(pages);
1830 return NULL;
1831}
1832
1833static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1834 unsigned long npages)
1835{
Sean Christopherson81811c12018-03-20 12:17:21 -07001836 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001837
1838 release_pages(pages, npages);
1839 kvfree(pages);
1840 sev->pages_locked -= npages;
1841}
1842
1843static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1844{
1845 uint8_t *page_virtual;
1846 unsigned long i;
1847
1848 if (npages == 0 || pages == NULL)
1849 return;
1850
1851 for (i = 0; i < npages; i++) {
1852 page_virtual = kmap_atomic(pages[i]);
1853 clflush_cache_range(page_virtual, PAGE_SIZE);
1854 kunmap_atomic(page_virtual);
1855 }
1856}
1857
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001858static void __unregister_enc_region_locked(struct kvm *kvm,
1859 struct enc_region *region)
1860{
1861 /*
1862 * The guest may change the memory encryption attribute from C=0 -> C=1
1863 * or vice versa for this memory range. Lets make sure caches are
1864 * flushed to ensure that guest data gets written into memory with
1865 * correct C-bit.
1866 */
1867 sev_clflush_pages(region->pages, region->npages);
1868
1869 sev_unpin_memory(kvm, region->pages, region->npages);
1870 list_del(&region->list);
1871 kfree(region);
1872}
1873
Sean Christopherson434a1e92018-03-20 12:17:18 -07001874static struct kvm *svm_vm_alloc(void)
1875{
Ben Gardon1ec69642019-02-11 11:02:51 -08001876 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1877 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1878 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001879 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001880}
1881
1882static void svm_vm_free(struct kvm *kvm)
1883{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001884 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001885}
1886
Brijesh Singh1654efc2017-12-04 10:57:34 -06001887static void sev_vm_destroy(struct kvm *kvm)
1888{
Sean Christopherson81811c12018-03-20 12:17:21 -07001889 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001890 struct list_head *head = &sev->regions_list;
1891 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001892
Brijesh Singh1654efc2017-12-04 10:57:34 -06001893 if (!sev_guest(kvm))
1894 return;
1895
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001896 mutex_lock(&kvm->lock);
1897
1898 /*
1899 * if userspace was terminated before unregistering the memory regions
1900 * then lets unpin all the registered memory.
1901 */
1902 if (!list_empty(head)) {
1903 list_for_each_safe(pos, q, head) {
1904 __unregister_enc_region_locked(kvm,
1905 list_entry(pos, struct enc_region, list));
1906 }
1907 }
1908
1909 mutex_unlock(&kvm->lock);
1910
Brijesh Singh59414c92017-12-04 10:57:35 -06001911 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001912 sev_asid_free(kvm);
1913}
1914
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001915static void avic_vm_destroy(struct kvm *kvm)
1916{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001917 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001918 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001919
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001920 if (!avic)
1921 return;
1922
Sean Christopherson81811c12018-03-20 12:17:21 -07001923 if (kvm_svm->avic_logical_id_table_page)
1924 __free_page(kvm_svm->avic_logical_id_table_page);
1925 if (kvm_svm->avic_physical_id_table_page)
1926 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001927
1928 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001929 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001930 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001931}
1932
Brijesh Singh1654efc2017-12-04 10:57:34 -06001933static void svm_vm_destroy(struct kvm *kvm)
1934{
1935 avic_vm_destroy(kvm);
1936 sev_vm_destroy(kvm);
1937}
1938
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001939static int avic_vm_init(struct kvm *kvm)
1940{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001941 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001942 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001943 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1944 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001945 struct page *p_page;
1946 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001947 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001948
1949 if (!avic)
1950 return 0;
1951
1952 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001953 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001954 if (!p_page)
1955 goto free_avic;
1956
Sean Christopherson81811c12018-03-20 12:17:21 -07001957 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001958 clear_page(page_address(p_page));
1959
1960 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001961 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001962 if (!l_page)
1963 goto free_avic;
1964
Sean Christopherson81811c12018-03-20 12:17:21 -07001965 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001966 clear_page(page_address(l_page));
1967
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001968 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001969 again:
1970 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1971 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1972 next_vm_id_wrapped = 1;
1973 goto again;
1974 }
1975 /* Is it still in use? Only possible if wrapped at least once */
1976 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001977 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1978 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001979 goto again;
1980 }
1981 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001982 kvm_svm->avic_vm_id = vm_id;
1983 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001984 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1985
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001986 return 0;
1987
1988free_avic:
1989 avic_vm_destroy(kvm);
1990 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991}
1992
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001993static inline int
1994avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001995{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001996 int ret = 0;
1997 unsigned long flags;
1998 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001999 struct vcpu_svm *svm = to_svm(vcpu);
2000
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002001 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2002 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002003
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002004 /*
2005 * Here, we go through the per-vcpu ir_list to update all existing
2006 * interrupt remapping table entry targeting this vcpu.
2007 */
2008 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002009
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002010 if (list_empty(&svm->ir_list))
2011 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002012
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002013 list_for_each_entry(ir, &svm->ir_list, node) {
2014 ret = amd_iommu_update_ga(cpu, r, ir->data);
2015 if (ret)
2016 break;
2017 }
2018out:
2019 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2020 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002021}
2022
2023static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2024{
2025 u64 entry;
2026 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002027 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002028 struct vcpu_svm *svm = to_svm(vcpu);
2029
2030 if (!kvm_vcpu_apicv_active(vcpu))
2031 return;
2032
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002033 /*
2034 * Since the host physical APIC id is 8 bits,
2035 * we can support host APIC ID upto 255.
2036 */
2037 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002038 return;
2039
2040 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2041 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2042
2043 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2044 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2045
2046 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2047 if (svm->avic_is_running)
2048 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2049
2050 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002051 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2052 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002053}
2054
2055static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2056{
2057 u64 entry;
2058 struct vcpu_svm *svm = to_svm(vcpu);
2059
2060 if (!kvm_vcpu_apicv_active(vcpu))
2061 return;
2062
2063 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002064 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2065 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2066
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002067 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2068 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002069}
2070
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002071/**
2072 * This function is called during VCPU halt/unhalt.
2073 */
2074static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2075{
2076 struct vcpu_svm *svm = to_svm(vcpu);
2077
2078 svm->avic_is_running = is_run;
2079 if (is_run)
2080 avic_vcpu_load(vcpu, vcpu->cpu);
2081 else
2082 avic_vcpu_put(vcpu);
2083}
2084
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002085static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002086{
2087 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002088 u32 dummy;
2089 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002090
Wanpeng Li518e7b92018-02-28 14:03:31 +08002091 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002092 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002093 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002094
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002095 if (!init_event) {
2096 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2097 MSR_IA32_APICBASE_ENABLE;
2098 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2099 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2100 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002101 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002102
Yu Zhange911eb32017-08-24 20:27:52 +08002103 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002104 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002105
2106 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2107 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002108}
2109
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002110static int avic_init_vcpu(struct vcpu_svm *svm)
2111{
2112 int ret;
2113
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002114 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002115 return 0;
2116
2117 ret = avic_init_backing_page(&svm->vcpu);
2118 if (ret)
2119 return ret;
2120
2121 INIT_LIST_HEAD(&svm->ir_list);
2122 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002123 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002124
2125 return ret;
2126}
2127
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002128static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002129{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002130 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002131 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002132 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002133 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002134 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002135 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136
Ben Gardon1ec69642019-02-11 11:02:51 -08002137 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002138 if (!svm) {
2139 err = -ENOMEM;
2140 goto out;
2141 }
2142
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002143 svm->vcpu.arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
2144 GFP_KERNEL_ACCOUNT);
2145 if (!svm->vcpu.arch.user_fpu) {
2146 printk(KERN_ERR "kvm: failed to allocate kvm userspace's fpu\n");
2147 err = -ENOMEM;
2148 goto free_partial_svm;
2149 }
2150
Ben Gardon1ec69642019-02-11 11:02:51 -08002151 svm->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
2152 GFP_KERNEL_ACCOUNT);
Marc Orrb666a4b2018-11-06 14:53:56 -08002153 if (!svm->vcpu.arch.guest_fpu) {
2154 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
2155 err = -ENOMEM;
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002156 goto free_user_fpu;
Marc Orrb666a4b2018-11-06 14:53:56 -08002157 }
2158
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002159 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2160 if (err)
2161 goto free_svm;
2162
Joerg Roedelf65c2292008-02-13 18:58:46 +01002163 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002164 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002165 if (!page)
2166 goto uninit;
2167
Ben Gardon1ec69642019-02-11 11:02:51 -08002168 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002169 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002170 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002171
Ben Gardon1ec69642019-02-11 11:02:51 -08002172 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002173 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002174 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002175
Ben Gardon1ec69642019-02-11 11:02:51 -08002176 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002177 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002178 goto free_page3;
2179
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002180 err = avic_init_vcpu(svm);
2181 if (err)
2182 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002183
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002184 /* We initialize this flag to true to make sure that the is_running
2185 * bit would be set the first time the vcpu is loaded.
2186 */
2187 svm->avic_is_running = true;
2188
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002189 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002190
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002191 svm->msrpm = page_address(msrpm_pages);
2192 svm_vcpu_init_msrpm(svm->msrpm);
2193
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002194 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002195 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002196
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002197 svm->vmcb = page_address(page);
2198 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002199 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002200 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002201 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002203 svm_init_osvw(&svm->vcpu);
2204
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002205 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002206
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002207free_page4:
2208 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002209free_page3:
2210 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2211free_page2:
2212 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2213free_page1:
2214 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002215uninit:
2216 kvm_vcpu_uninit(&svm->vcpu);
2217free_svm:
Marc Orrb666a4b2018-11-06 14:53:56 -08002218 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002219free_user_fpu:
2220 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.user_fpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002221free_partial_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002222 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002223out:
2224 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002225}
2226
Jim Mattsonfd65d312018-05-22 09:54:20 -07002227static void svm_clear_current_vmcb(struct vmcb *vmcb)
2228{
2229 int i;
2230
2231 for_each_online_cpu(i)
2232 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2233}
2234
Avi Kivity6aa8b732006-12-10 02:21:36 -08002235static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2236{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002237 struct vcpu_svm *svm = to_svm(vcpu);
2238
Jim Mattsonfd65d312018-05-22 09:54:20 -07002239 /*
2240 * The vmcb page can be recycled, causing a false negative in
2241 * svm_vcpu_load(). So, ensure that no logical CPU has this
2242 * vmcb page recorded as its current vmcb.
2243 */
2244 svm_clear_current_vmcb(svm->vmcb);
2245
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002246 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002247 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002248 __free_page(virt_to_page(svm->nested.hsave));
2249 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002250 kvm_vcpu_uninit(vcpu);
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002251 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.user_fpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002252 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10002253 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002254}
2255
Avi Kivity15ad7142007-07-11 18:17:21 +03002256static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002258 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002259 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002260 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002261
Avi Kivity0cc50642007-03-25 12:07:27 +02002262 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002263 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002264 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002265 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002266
Avi Kivity82ca2d12010-10-21 12:20:34 +02002267#ifdef CONFIG_X86_64
2268 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2269#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002270 savesegment(fs, svm->host.fs);
2271 savesegment(gs, svm->host.gs);
2272 svm->host.ldt = kvm_read_ldt();
2273
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002274 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002275 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002276
Haozhong Zhangad7218832015-10-20 15:39:02 +08002277 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2278 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2279 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2280 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2281 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2282 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002283 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002284 /* This assumes that the kernel never uses MSR_TSC_AUX */
2285 if (static_cpu_has(X86_FEATURE_RDTSCP))
2286 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002287
Ashok Raj15d45072018-02-01 22:59:43 +01002288 if (sd->current_vmcb != svm->vmcb) {
2289 sd->current_vmcb = svm->vmcb;
2290 indirect_branch_prediction_barrier();
2291 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002292 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293}
2294
2295static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2296{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002297 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002298 int i;
2299
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002300 avic_vcpu_put(vcpu);
2301
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002302 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002303 kvm_load_ldt(svm->host.ldt);
2304#ifdef CONFIG_X86_64
2305 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002306 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002307 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002308#else
Avi Kivity831ca602011-03-08 16:09:51 +02002309#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002310 loadsegment(gs, svm->host.gs);
2311#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002312#endif
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 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002315}
2316
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002317static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2318{
2319 avic_set_running(vcpu, false);
2320}
2321
2322static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2323{
2324 avic_set_running(vcpu, true);
2325}
2326
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2328{
Ladi Prosek9b611742017-06-21 09:06:59 +02002329 struct vcpu_svm *svm = to_svm(vcpu);
2330 unsigned long rflags = svm->vmcb->save.rflags;
2331
2332 if (svm->nmi_singlestep) {
2333 /* Hide our flags if they were not set by the guest */
2334 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2335 rflags &= ~X86_EFLAGS_TF;
2336 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2337 rflags &= ~X86_EFLAGS_RF;
2338 }
2339 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340}
2341
2342static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2343{
Ladi Prosek9b611742017-06-21 09:06:59 +02002344 if (to_svm(vcpu)->nmi_singlestep)
2345 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2346
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002347 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002348 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002349 * (caused by either a task switch or an inter-privilege IRET),
2350 * so we do not need to update the CPL here.
2351 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002352 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353}
2354
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002355static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2356{
2357 switch (reg) {
2358 case VCPU_EXREG_PDPTR:
2359 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002360 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002361 break;
2362 default:
2363 BUG();
2364 }
2365}
2366
Alexander Graff0b85052008-11-25 20:17:01 +01002367static void svm_set_vintr(struct vcpu_svm *svm)
2368{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002369 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002370}
2371
2372static void svm_clear_vintr(struct vcpu_svm *svm)
2373{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002374 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002375}
2376
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2378{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002379 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380
2381 switch (seg) {
2382 case VCPU_SREG_CS: return &save->cs;
2383 case VCPU_SREG_DS: return &save->ds;
2384 case VCPU_SREG_ES: return &save->es;
2385 case VCPU_SREG_FS: return &save->fs;
2386 case VCPU_SREG_GS: return &save->gs;
2387 case VCPU_SREG_SS: return &save->ss;
2388 case VCPU_SREG_TR: return &save->tr;
2389 case VCPU_SREG_LDTR: return &save->ldtr;
2390 }
2391 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002392 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393}
2394
2395static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2396{
2397 struct vmcb_seg *s = svm_seg(vcpu, seg);
2398
2399 return s->base;
2400}
2401
2402static void svm_get_segment(struct kvm_vcpu *vcpu,
2403 struct kvm_segment *var, int seg)
2404{
2405 struct vmcb_seg *s = svm_seg(vcpu, seg);
2406
2407 var->base = s->base;
2408 var->limit = s->limit;
2409 var->selector = s->selector;
2410 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2411 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2412 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2413 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2414 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2415 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2416 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302417
2418 /*
2419 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2420 * However, the SVM spec states that the G bit is not observed by the
2421 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2422 * So let's synthesize a legal G bit for all segments, this helps
2423 * running KVM nested. It also helps cross-vendor migration, because
2424 * Intel's vmentry has a check on the 'G' bit.
2425 */
2426 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002427
Joerg Roedele0231712010-02-24 18:59:10 +01002428 /*
2429 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002430 * for cross vendor migration purposes by "not present"
2431 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002432 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002433
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002434 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002435 case VCPU_SREG_TR:
2436 /*
2437 * Work around a bug where the busy flag in the tr selector
2438 * isn't exposed
2439 */
Amit Shahc0d09822008-10-27 09:04:18 +00002440 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002441 break;
2442 case VCPU_SREG_DS:
2443 case VCPU_SREG_ES:
2444 case VCPU_SREG_FS:
2445 case VCPU_SREG_GS:
2446 /*
2447 * The accessed bit must always be set in the segment
2448 * descriptor cache, although it can be cleared in the
2449 * descriptor, the cached bit always remains at 1. Since
2450 * Intel has a check on this, set it here to support
2451 * cross-vendor migration.
2452 */
2453 if (!var->unusable)
2454 var->type |= 0x1;
2455 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002456 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002457 /*
2458 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002459 * descriptor is left as 1, although the whole segment has
2460 * been made unusable. Clear it here to pass an Intel VMX
2461 * entry check when cross vendor migrating.
2462 */
2463 if (var->unusable)
2464 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002465 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002466 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002467 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002468 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002469}
2470
Izik Eidus2e4d2652008-03-24 19:38:34 +02002471static int svm_get_cpl(struct kvm_vcpu *vcpu)
2472{
2473 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2474
2475 return save->cpl;
2476}
2477
Gleb Natapov89a27f42010-02-16 10:51:48 +02002478static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002480 struct vcpu_svm *svm = to_svm(vcpu);
2481
Gleb Natapov89a27f42010-02-16 10:51:48 +02002482 dt->size = svm->vmcb->save.idtr.limit;
2483 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002484}
2485
Gleb Natapov89a27f42010-02-16 10:51:48 +02002486static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002487{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002488 struct vcpu_svm *svm = to_svm(vcpu);
2489
Gleb Natapov89a27f42010-02-16 10:51:48 +02002490 svm->vmcb->save.idtr.limit = dt->size;
2491 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002492 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002493}
2494
Gleb Natapov89a27f42010-02-16 10:51:48 +02002495static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002497 struct vcpu_svm *svm = to_svm(vcpu);
2498
Gleb Natapov89a27f42010-02-16 10:51:48 +02002499 dt->size = svm->vmcb->save.gdtr.limit;
2500 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002501}
2502
Gleb Natapov89a27f42010-02-16 10:51:48 +02002503static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002505 struct vcpu_svm *svm = to_svm(vcpu);
2506
Gleb Natapov89a27f42010-02-16 10:51:48 +02002507 svm->vmcb->save.gdtr.limit = dt->size;
2508 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002509 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510}
2511
Avi Kivitye8467fd2009-12-29 18:43:06 +02002512static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2513{
2514}
2515
Avi Kivityaff48ba2010-12-05 18:56:11 +02002516static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2517{
2518}
2519
Anthony Liguori25c4c272007-04-27 09:29:21 +03002520static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002521{
2522}
2523
Avi Kivityd2251572010-01-06 10:55:27 +02002524static void update_cr0_intercept(struct vcpu_svm *svm)
2525{
2526 ulong gcr0 = svm->vcpu.arch.cr0;
2527 u64 *hcr0 = &svm->vmcb->save.cr0;
2528
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002529 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2530 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002531
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002532 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002533
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002534 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002535 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2536 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002537 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002538 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2539 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002540 }
2541}
2542
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2544{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002545 struct vcpu_svm *svm = to_svm(vcpu);
2546
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002547#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002548 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002549 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002550 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002551 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552 }
2553
Mike Dayd77c26f2007-10-08 09:02:08 -04002554 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002555 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002556 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 }
2558 }
2559#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002560 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002561
2562 if (!npt_enabled)
2563 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002564
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002565 /*
2566 * re-enable caching here because the QEMU bios
2567 * does not do it - this results in some delay at
2568 * reboot
2569 */
2570 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2571 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002572 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002573 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002574 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575}
2576
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002577static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002579 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002580 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2581
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002582 if (cr4 & X86_CR4_VMXE)
2583 return 1;
2584
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002585 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002586 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002587
Joerg Roedelec077262008-04-09 14:15:28 +02002588 vcpu->arch.cr4 = cr4;
2589 if (!npt_enabled)
2590 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002591 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002592 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002593 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002594 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595}
2596
2597static void svm_set_segment(struct kvm_vcpu *vcpu,
2598 struct kvm_segment *var, int seg)
2599{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002600 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 struct vmcb_seg *s = svm_seg(vcpu, seg);
2602
2603 s->base = var->base;
2604 s->limit = var->limit;
2605 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002606 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2607 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2608 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2609 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2610 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2611 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2612 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2613 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002614
2615 /*
2616 * This is always accurate, except if SYSRET returned to a segment
2617 * with SS.DPL != 3. Intel does not have this quirk, and always
2618 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2619 * would entail passing the CPL to userspace and back.
2620 */
2621 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002622 /* This is symmetric with svm_get_segment() */
2623 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624
Joerg Roedel060d0c92010-12-03 11:45:57 +01002625 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626}
2627
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002628static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002630 struct vcpu_svm *svm = to_svm(vcpu);
2631
Joerg Roedel18c918c2010-11-30 18:03:59 +01002632 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002633
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002634 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002635 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002636 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002637 } else
2638 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002639}
2640
Tejun Heo0fe1e002009-10-29 22:34:14 +09002641static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002643 if (sd->next_asid > sd->max_asid) {
2644 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002645 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002646 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647 }
2648
Tejun Heo0fe1e002009-10-29 22:34:14 +09002649 svm->asid_generation = sd->asid_generation;
2650 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002651
2652 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653}
2654
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002655static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2656{
2657 return to_svm(vcpu)->vmcb->save.dr6;
2658}
2659
2660static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2661{
2662 struct vcpu_svm *svm = to_svm(vcpu);
2663
2664 svm->vmcb->save.dr6 = value;
2665 mark_dirty(svm->vmcb, VMCB_DR);
2666}
2667
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002668static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2669{
2670 struct vcpu_svm *svm = to_svm(vcpu);
2671
2672 get_debugreg(vcpu->arch.db[0], 0);
2673 get_debugreg(vcpu->arch.db[1], 1);
2674 get_debugreg(vcpu->arch.db[2], 2);
2675 get_debugreg(vcpu->arch.db[3], 3);
2676 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2677 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2678
2679 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2680 set_dr_intercepts(svm);
2681}
2682
Gleb Natapov020df072010-04-13 10:05:23 +03002683static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002685 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002686
Gleb Natapov020df072010-04-13 10:05:23 +03002687 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002688 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689}
2690
Avi Kivity851ba692009-08-24 11:10:17 +03002691static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002693 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002694 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002696 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002697 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2698 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002699 svm->vmcb->control.insn_len);
2700}
2701
2702static int npf_interception(struct vcpu_svm *svm)
2703{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002704 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002705 u64 error_code = svm->vmcb->control.exit_info_1;
2706
2707 trace_kvm_page_fault(fault_address, error_code);
2708 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002709 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2710 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002711 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002712}
2713
Avi Kivity851ba692009-08-24 11:10:17 +03002714static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002715{
Avi Kivity851ba692009-08-24 11:10:17 +03002716 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002717 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002718
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002719 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002720 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002721 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002722 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2723 return 1;
2724 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002725
Jan Kiszka6be7d302009-10-18 13:24:54 +02002726 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002727 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002728 /* Make sure we check for pending NMIs upon entry */
2729 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002730 }
2731
2732 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002733 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002734 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2735 kvm_run->debug.arch.pc =
2736 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2737 kvm_run->debug.arch.exception = DB_VECTOR;
2738 return 0;
2739 }
2740
2741 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002742}
2743
Avi Kivity851ba692009-08-24 11:10:17 +03002744static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002745{
Avi Kivity851ba692009-08-24 11:10:17 +03002746 struct kvm_run *kvm_run = svm->vcpu.run;
2747
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002748 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2749 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2750 kvm_run->debug.arch.exception = BP_VECTOR;
2751 return 0;
2752}
2753
Avi Kivity851ba692009-08-24 11:10:17 +03002754static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002755{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002756 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002757}
2758
Eric Northup54a20552015-11-03 18:03:53 +01002759static int ac_interception(struct vcpu_svm *svm)
2760{
2761 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2762 return 1;
2763}
2764
Liran Alon97184202018-03-12 13:12:52 +02002765static int gp_interception(struct vcpu_svm *svm)
2766{
2767 struct kvm_vcpu *vcpu = &svm->vcpu;
2768 u32 error_code = svm->vmcb->control.exit_info_1;
2769 int er;
2770
2771 WARN_ON_ONCE(!enable_vmware_backdoor);
2772
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002773 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002774 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2775 if (er == EMULATE_USER_EXIT)
2776 return 0;
2777 else if (er != EMULATE_DONE)
2778 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2779 return 1;
2780}
2781
Joerg Roedel67ec6602010-05-17 14:43:35 +02002782static bool is_erratum_383(void)
2783{
2784 int err, i;
2785 u64 value;
2786
2787 if (!erratum_383_found)
2788 return false;
2789
2790 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2791 if (err)
2792 return false;
2793
2794 /* Bit 62 may or may not be set for this mce */
2795 value &= ~(1ULL << 62);
2796
2797 if (value != 0xb600000000010015ULL)
2798 return false;
2799
2800 /* Clear MCi_STATUS registers */
2801 for (i = 0; i < 6; ++i)
2802 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2803
2804 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2805 if (!err) {
2806 u32 low, high;
2807
2808 value &= ~(1ULL << 2);
2809 low = lower_32_bits(value);
2810 high = upper_32_bits(value);
2811
2812 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2813 }
2814
2815 /* Flush tlb to evict multi-match entries */
2816 __flush_tlb_all();
2817
2818 return true;
2819}
2820
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002821static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002822{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002823 if (is_erratum_383()) {
2824 /*
2825 * Erratum 383 triggered. Guest state is corrupt so kill the
2826 * guest.
2827 */
2828 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2829
Avi Kivitya8eeb042010-05-10 12:34:53 +03002830 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002831
2832 return;
2833 }
2834
Joerg Roedel53371b52008-04-09 14:15:30 +02002835 /*
2836 * On an #MC intercept the MCE handler is not called automatically in
2837 * the host. So do it by hand here.
2838 */
2839 asm volatile (
2840 "int $0x12\n");
2841 /* not sure if we ever come back to this point */
2842
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002843 return;
2844}
2845
2846static int mc_interception(struct vcpu_svm *svm)
2847{
Joerg Roedel53371b52008-04-09 14:15:30 +02002848 return 1;
2849}
2850
Avi Kivity851ba692009-08-24 11:10:17 +03002851static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002852{
Avi Kivity851ba692009-08-24 11:10:17 +03002853 struct kvm_run *kvm_run = svm->vcpu.run;
2854
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002855 /*
2856 * VMCB is undefined after a SHUTDOWN intercept
2857 * so reinitialize it.
2858 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002859 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002860 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002861
2862 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2863 return 0;
2864}
2865
Avi Kivity851ba692009-08-24 11:10:17 +03002866static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002867{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002868 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002869 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002870 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002871 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872
Rusty Russelle756fc62007-07-30 20:07:08 +10002873 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002874 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002875 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002876 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002877 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002878
Avi Kivity039576c2007-03-20 12:46:50 +02002879 port = io_info >> 16;
2880 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002881 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002882
Sean Christophersondca7f122018-03-08 08:57:27 -08002883 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884}
2885
Avi Kivity851ba692009-08-24 11:10:17 +03002886static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002887{
2888 return 1;
2889}
2890
Avi Kivity851ba692009-08-24 11:10:17 +03002891static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002892{
2893 ++svm->vcpu.stat.irq_exits;
2894 return 1;
2895}
2896
Avi Kivity851ba692009-08-24 11:10:17 +03002897static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898{
2899 return 1;
2900}
2901
Avi Kivity851ba692009-08-24 11:10:17 +03002902static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002903{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002904 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002905 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906}
2907
Avi Kivity851ba692009-08-24 11:10:17 +03002908static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002909{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002910 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002911 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002912}
2913
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002914static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2915{
2916 struct vcpu_svm *svm = to_svm(vcpu);
2917
2918 return svm->nested.nested_cr3;
2919}
2920
Avi Kivitye4e517b2011-07-28 11:36:17 +03002921static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2922{
2923 struct vcpu_svm *svm = to_svm(vcpu);
2924 u64 cr3 = svm->nested.nested_cr3;
2925 u64 pdpte;
2926 int ret;
2927
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002928 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002929 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002930 if (ret)
2931 return 0;
2932 return pdpte;
2933}
2934
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002935static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2936 unsigned long root)
2937{
2938 struct vcpu_svm *svm = to_svm(vcpu);
2939
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002940 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002941 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002942}
2943
Avi Kivity6389ee92010-11-29 16:12:30 +02002944static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2945 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002946{
2947 struct vcpu_svm *svm = to_svm(vcpu);
2948
Paolo Bonzini5e352512014-09-02 13:18:37 +02002949 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2950 /*
2951 * TODO: track the cause of the nested page fault, and
2952 * correctly fill in the high bits of exit_info_1.
2953 */
2954 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2955 svm->vmcb->control.exit_code_hi = 0;
2956 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2957 svm->vmcb->control.exit_info_2 = fault->address;
2958 }
2959
2960 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2961 svm->vmcb->control.exit_info_1 |= fault->error_code;
2962
2963 /*
2964 * The present bit is always zero for page structure faults on real
2965 * hardware.
2966 */
2967 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2968 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002969
2970 nested_svm_vmexit(svm);
2971}
2972
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002973static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002974{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002975 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002976
2977 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02002978 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002979 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
2980 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
2981 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
2982 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
2983 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
2984 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002985 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002986}
2987
2988static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2989{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002990 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002991 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002992}
2993
Alexander Grafc0725422008-11-25 20:17:03 +01002994static int nested_svm_check_permissions(struct vcpu_svm *svm)
2995{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002996 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2997 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002998 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2999 return 1;
3000 }
3001
3002 if (svm->vmcb->save.cpl) {
3003 kvm_inject_gp(&svm->vcpu, 0);
3004 return 1;
3005 }
3006
Dan Carpentere9196ce2017-05-18 10:39:53 +03003007 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003008}
3009
Alexander Grafcf74a782008-11-25 20:17:08 +01003010static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3011 bool has_error_code, u32 error_code)
3012{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003013 int vmexit;
3014
Joerg Roedel20307532010-11-29 17:51:48 +01003015 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003016 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003017
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003018 vmexit = nested_svm_intercept(svm);
3019 if (vmexit != NESTED_EXIT_DONE)
3020 return 0;
3021
Joerg Roedel0295ad72009-08-07 11:49:37 +02003022 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3023 svm->vmcb->control.exit_code_hi = 0;
3024 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003025
3026 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003027 * EXITINFO2 is undefined for all exception intercepts other
3028 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003029 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003030 if (svm->vcpu.arch.exception.nested_apf)
3031 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003032 else if (svm->vcpu.arch.exception.has_payload)
3033 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003034 else
3035 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003036
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003037 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003038 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003039}
3040
Joerg Roedel8fe54652010-02-19 16:23:01 +01003041/* This function returns true if it is save to enable the irq window */
3042static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003043{
Joerg Roedel20307532010-11-29 17:51:48 +01003044 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003045 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003046
Joerg Roedel26666952009-08-07 11:49:46 +02003047 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003048 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003049
Joerg Roedel26666952009-08-07 11:49:46 +02003050 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003051 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003052
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003053 /*
3054 * if vmexit was already requested (by intercepted exception
3055 * for instance) do not overwrite it with "external interrupt"
3056 * vmexit.
3057 */
3058 if (svm->nested.exit_required)
3059 return false;
3060
Joerg Roedel197717d2010-02-24 18:59:19 +01003061 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3062 svm->vmcb->control.exit_info_1 = 0;
3063 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003064
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003065 if (svm->nested.intercept & 1ULL) {
3066 /*
3067 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003068 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003069 * #vmexit emulation might sleep. Only signal request for
3070 * the #vmexit here.
3071 */
3072 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003073 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003074 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003075 }
3076
Joerg Roedel8fe54652010-02-19 16:23:01 +01003077 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003078}
3079
Joerg Roedel887f5002010-02-24 18:59:12 +01003080/* This function returns true if it is save to enable the nmi window */
3081static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3082{
Joerg Roedel20307532010-11-29 17:51:48 +01003083 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003084 return true;
3085
3086 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3087 return true;
3088
3089 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3090 svm->nested.exit_required = true;
3091
3092 return false;
3093}
3094
Joerg Roedelce2ac082010-03-01 15:34:39 +01003095static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003096{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003097 unsigned port, size, iopm_len;
3098 u16 val, mask;
3099 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003100 u64 gpa;
3101
3102 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3103 return NESTED_EXIT_HOST;
3104
3105 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003106 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3107 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003108 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003109 start_bit = port % 8;
3110 iopm_len = (start_bit + size > 8) ? 2 : 1;
3111 mask = (0xf >> (4 - size)) << start_bit;
3112 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003113
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003114 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003115 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003116
Jan Kiszka9bf41832014-06-30 10:54:17 +02003117 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003118}
3119
Joerg Roedeld2477822010-03-01 15:34:34 +01003120static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003121{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003122 u32 offset, msr, value;
3123 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003124
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003125 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003126 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003127
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003128 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3129 offset = svm_msrpm_offset(msr);
3130 write = svm->vmcb->control.exit_info_1 & 1;
3131 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003132
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003133 if (offset == MSR_INVALID)
3134 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003135
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003136 /* Offset is in 32 bit units but need in 8 bit units */
3137 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003138
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003139 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003140 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003141
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003142 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003143}
3144
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003145/* DB exceptions for our internal use must not cause vmexit */
3146static int nested_svm_intercept_db(struct vcpu_svm *svm)
3147{
3148 unsigned long dr6;
3149
3150 /* if we're not singlestepping, it's not ours */
3151 if (!svm->nmi_singlestep)
3152 return NESTED_EXIT_DONE;
3153
3154 /* if it's not a singlestep exception, it's not ours */
3155 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3156 return NESTED_EXIT_DONE;
3157 if (!(dr6 & DR6_BS))
3158 return NESTED_EXIT_DONE;
3159
3160 /* if the guest is singlestepping, it should get the vmexit */
3161 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3162 disable_nmi_singlestep(svm);
3163 return NESTED_EXIT_DONE;
3164 }
3165
3166 /* it's ours, the nested hypervisor must not see this one */
3167 return NESTED_EXIT_HOST;
3168}
3169
Joerg Roedel410e4d52009-08-07 11:49:44 +02003170static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003171{
Alexander Grafcf74a782008-11-25 20:17:08 +01003172 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003173
Joerg Roedel410e4d52009-08-07 11:49:44 +02003174 switch (exit_code) {
3175 case SVM_EXIT_INTR:
3176 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003177 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003178 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003179 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003180 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003181 if (npt_enabled)
3182 return NESTED_EXIT_HOST;
3183 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003184 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003185 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003186 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003187 return NESTED_EXIT_HOST;
3188 break;
3189 default:
3190 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003191 }
3192
Joerg Roedel410e4d52009-08-07 11:49:44 +02003193 return NESTED_EXIT_CONTINUE;
3194}
3195
3196/*
3197 * If this function returns true, this #vmexit was already handled
3198 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003199static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003200{
3201 u32 exit_code = svm->vmcb->control.exit_code;
3202 int vmexit = NESTED_EXIT_HOST;
3203
Alexander Grafcf74a782008-11-25 20:17:08 +01003204 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003205 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003206 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003207 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003208 case SVM_EXIT_IOIO:
3209 vmexit = nested_svm_intercept_ioio(svm);
3210 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003211 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3212 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3213 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003214 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003215 break;
3216 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003217 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3218 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3219 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003220 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003221 break;
3222 }
3223 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3224 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003225 if (svm->nested.intercept_exceptions & excp_bits) {
3226 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3227 vmexit = nested_svm_intercept_db(svm);
3228 else
3229 vmexit = NESTED_EXIT_DONE;
3230 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003231 /* async page fault always cause vmexit */
3232 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003233 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003234 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003235 break;
3236 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003237 case SVM_EXIT_ERR: {
3238 vmexit = NESTED_EXIT_DONE;
3239 break;
3240 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003241 default: {
3242 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003243 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003244 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003245 }
3246 }
3247
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003248 return vmexit;
3249}
3250
3251static int nested_svm_exit_handled(struct vcpu_svm *svm)
3252{
3253 int vmexit;
3254
3255 vmexit = nested_svm_intercept(svm);
3256
3257 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003258 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003259
3260 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003261}
3262
Joerg Roedel0460a972009-08-07 11:49:31 +02003263static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3264{
3265 struct vmcb_control_area *dst = &dst_vmcb->control;
3266 struct vmcb_control_area *from = &from_vmcb->control;
3267
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003268 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003269 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003270 dst->intercept_exceptions = from->intercept_exceptions;
3271 dst->intercept = from->intercept;
3272 dst->iopm_base_pa = from->iopm_base_pa;
3273 dst->msrpm_base_pa = from->msrpm_base_pa;
3274 dst->tsc_offset = from->tsc_offset;
3275 dst->asid = from->asid;
3276 dst->tlb_ctl = from->tlb_ctl;
3277 dst->int_ctl = from->int_ctl;
3278 dst->int_vector = from->int_vector;
3279 dst->int_state = from->int_state;
3280 dst->exit_code = from->exit_code;
3281 dst->exit_code_hi = from->exit_code_hi;
3282 dst->exit_info_1 = from->exit_info_1;
3283 dst->exit_info_2 = from->exit_info_2;
3284 dst->exit_int_info = from->exit_int_info;
3285 dst->exit_int_info_err = from->exit_int_info_err;
3286 dst->nested_ctl = from->nested_ctl;
3287 dst->event_inj = from->event_inj;
3288 dst->event_inj_err = from->event_inj_err;
3289 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003290 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003291 dst->pause_filter_count = from->pause_filter_count;
3292 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003293}
3294
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003295static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003296{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003297 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003298 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003299 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003300 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003301 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003302
Joerg Roedel17897f32009-10-09 16:08:29 +02003303 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3304 vmcb->control.exit_info_1,
3305 vmcb->control.exit_info_2,
3306 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003307 vmcb->control.exit_int_info_err,
3308 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003309
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003310 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003311 if (rc) {
3312 if (rc == -EINVAL)
3313 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003314 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003315 }
3316
3317 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003318
Joerg Roedel20307532010-11-29 17:51:48 +01003319 /* Exit Guest-Mode */
3320 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003321 svm->nested.vmcb = 0;
3322
Alexander Grafcf74a782008-11-25 20:17:08 +01003323 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003324 disable_gif(svm);
3325
3326 nested_vmcb->save.es = vmcb->save.es;
3327 nested_vmcb->save.cs = vmcb->save.cs;
3328 nested_vmcb->save.ss = vmcb->save.ss;
3329 nested_vmcb->save.ds = vmcb->save.ds;
3330 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3331 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003332 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003333 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003334 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003335 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003336 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003337 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003338 nested_vmcb->save.rip = vmcb->save.rip;
3339 nested_vmcb->save.rsp = vmcb->save.rsp;
3340 nested_vmcb->save.rax = vmcb->save.rax;
3341 nested_vmcb->save.dr7 = vmcb->save.dr7;
3342 nested_vmcb->save.dr6 = vmcb->save.dr6;
3343 nested_vmcb->save.cpl = vmcb->save.cpl;
3344
3345 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3346 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3347 nested_vmcb->control.int_state = vmcb->control.int_state;
3348 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3349 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3350 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3351 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3352 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3353 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003354
3355 if (svm->nrips_enabled)
3356 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003357
3358 /*
3359 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3360 * to make sure that we do not lose injected events. So check event_inj
3361 * here and copy it to exit_int_info if it is valid.
3362 * Exit_int_info and event_inj can't be both valid because the case
3363 * below only happens on a VMRUN instruction intercept which has
3364 * no valid exit_int_info set.
3365 */
3366 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3367 struct vmcb_control_area *nc = &nested_vmcb->control;
3368
3369 nc->exit_int_info = vmcb->control.event_inj;
3370 nc->exit_int_info_err = vmcb->control.event_inj_err;
3371 }
3372
Joerg Roedel33740e42009-08-07 11:49:29 +02003373 nested_vmcb->control.tlb_ctl = 0;
3374 nested_vmcb->control.event_inj = 0;
3375 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003376
Tambe, Williame0813542018-11-13 16:51:20 +00003377 nested_vmcb->control.pause_filter_count =
3378 svm->vmcb->control.pause_filter_count;
3379 nested_vmcb->control.pause_filter_thresh =
3380 svm->vmcb->control.pause_filter_thresh;
3381
Alexander Grafcf74a782008-11-25 20:17:08 +01003382 /* We always set V_INTR_MASKING and remember the old value in hflags */
3383 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3384 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3385
Alexander Grafcf74a782008-11-25 20:17:08 +01003386 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003387 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003388
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003389 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003390 kvm_clear_exception_queue(&svm->vcpu);
3391 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003392
Joerg Roedel4b161842010-09-10 17:31:03 +02003393 svm->nested.nested_cr3 = 0;
3394
Alexander Grafcf74a782008-11-25 20:17:08 +01003395 /* Restore selected save entries */
3396 svm->vmcb->save.es = hsave->save.es;
3397 svm->vmcb->save.cs = hsave->save.cs;
3398 svm->vmcb->save.ss = hsave->save.ss;
3399 svm->vmcb->save.ds = hsave->save.ds;
3400 svm->vmcb->save.gdtr = hsave->save.gdtr;
3401 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003402 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003403 svm_set_efer(&svm->vcpu, hsave->save.efer);
3404 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3405 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3406 if (npt_enabled) {
3407 svm->vmcb->save.cr3 = hsave->save.cr3;
3408 svm->vcpu.arch.cr3 = hsave->save.cr3;
3409 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003410 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003411 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003412 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003413 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3414 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003415 svm->vmcb->save.dr7 = 0;
3416 svm->vmcb->save.cpl = 0;
3417 svm->vmcb->control.exit_int_info = 0;
3418
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003419 mark_all_dirty(svm->vmcb);
3420
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003421 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003422
Joerg Roedel4b161842010-09-10 17:31:03 +02003423 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003424 kvm_mmu_reset_context(&svm->vcpu);
3425 kvm_mmu_load(&svm->vcpu);
3426
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003427 /*
3428 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3429 * doesn't end up in L1.
3430 */
3431 svm->vcpu.arch.nmi_injected = false;
3432 kvm_clear_exception_queue(&svm->vcpu);
3433 kvm_clear_interrupt_queue(&svm->vcpu);
3434
Alexander Grafcf74a782008-11-25 20:17:08 +01003435 return 0;
3436}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003437
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003438static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003439{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003440 /*
3441 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003442 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003443 * the kvm msr permission bitmap may contain zero bits
3444 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003445 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003446
Joerg Roedel323c3d82010-03-01 15:34:37 +01003447 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3448 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003449
Joerg Roedel323c3d82010-03-01 15:34:37 +01003450 for (i = 0; i < MSRPM_OFFSETS; i++) {
3451 u32 value, p;
3452 u64 offset;
3453
3454 if (msrpm_offsets[i] == 0xffffffff)
3455 break;
3456
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003457 p = msrpm_offsets[i];
3458 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003459
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003460 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003461 return false;
3462
3463 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3464 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003465
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003466 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003467
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003468 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003469}
3470
Joerg Roedel52c65a302010-08-02 16:46:44 +02003471static bool nested_vmcb_checks(struct vmcb *vmcb)
3472{
3473 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3474 return false;
3475
Joerg Roedeldbe77582010-08-02 16:46:45 +02003476 if (vmcb->control.asid == 0)
3477 return false;
3478
Tom Lendackycea3a192017-12-04 10:57:24 -06003479 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3480 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003481 return false;
3482
Joerg Roedel52c65a302010-08-02 16:46:44 +02003483 return true;
3484}
3485
Ladi Prosekc2634062017-10-11 16:54:44 +02003486static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003487 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003488{
Avi Kivityf6e78472010-08-02 15:30:20 +03003489 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003490 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3491 else
3492 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3493
Tom Lendackycea3a192017-12-04 10:57:24 -06003494 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003495 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3496 nested_svm_init_mmu_context(&svm->vcpu);
3497 }
3498
Alexander Graf3d6368e2008-11-25 20:17:07 +01003499 /* Load the nested guest state */
3500 svm->vmcb->save.es = nested_vmcb->save.es;
3501 svm->vmcb->save.cs = nested_vmcb->save.cs;
3502 svm->vmcb->save.ss = nested_vmcb->save.ss;
3503 svm->vmcb->save.ds = nested_vmcb->save.ds;
3504 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3505 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003506 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003507 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3508 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3509 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3510 if (npt_enabled) {
3511 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3512 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003513 } else
Avi Kivity23902182010-06-10 17:02:16 +03003514 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003515
3516 /* Guest paging mode is active - reset mmu */
3517 kvm_mmu_reset_context(&svm->vcpu);
3518
Joerg Roedeldefbba52009-08-07 11:49:30 +02003519 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003520 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003521 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3522 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003523
Alexander Graf3d6368e2008-11-25 20:17:07 +01003524 /* In case we don't even reach vcpu_run, the fields are not updated */
3525 svm->vmcb->save.rax = nested_vmcb->save.rax;
3526 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3527 svm->vmcb->save.rip = nested_vmcb->save.rip;
3528 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3529 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3530 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3531
Joerg Roedelf7138532010-03-01 15:34:40 +01003532 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003533 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003534
Joerg Roedelaad42c62009-08-07 11:49:34 +02003535 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003536 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003537 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003538 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3539 svm->nested.intercept = nested_vmcb->control.intercept;
3540
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003541 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003542 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003543 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3544 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3545 else
3546 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3547
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003548 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3549 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003550 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3551 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003552 }
3553
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003554 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003555 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003556
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003557 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3558 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3559
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003560 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003561 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3562 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003563 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3564 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3565
Tambe, Williame0813542018-11-13 16:51:20 +00003566 svm->vmcb->control.pause_filter_count =
3567 nested_vmcb->control.pause_filter_count;
3568 svm->vmcb->control.pause_filter_thresh =
3569 nested_vmcb->control.pause_filter_thresh;
3570
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003571 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003572
Joerg Roedel20307532010-11-29 17:51:48 +01003573 /* Enter Guest-Mode */
3574 enter_guest_mode(&svm->vcpu);
3575
Joerg Roedel384c6362010-11-30 18:03:56 +01003576 /*
3577 * Merge guest and host intercepts - must be called with vcpu in
3578 * guest-mode to take affect here
3579 */
3580 recalc_intercepts(svm);
3581
Joerg Roedel06fc77722010-02-19 16:23:07 +01003582 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003583
Joerg Roedel2af91942009-08-07 11:49:28 +02003584 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003585
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003586 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003587}
3588
3589static bool nested_svm_vmrun(struct vcpu_svm *svm)
3590{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003591 int rc;
Ladi Prosekc2634062017-10-11 16:54:44 +02003592 struct vmcb *nested_vmcb;
3593 struct vmcb *hsave = svm->nested.hsave;
3594 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003595 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003596 u64 vmcb_gpa;
3597
3598 vmcb_gpa = svm->vmcb->save.rax;
3599
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003600 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003601 if (rc) {
3602 if (rc == -EINVAL)
3603 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekc2634062017-10-11 16:54:44 +02003604 return false;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003605 }
3606
3607 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003608
3609 if (!nested_vmcb_checks(nested_vmcb)) {
3610 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3611 nested_vmcb->control.exit_code_hi = 0;
3612 nested_vmcb->control.exit_info_1 = 0;
3613 nested_vmcb->control.exit_info_2 = 0;
3614
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003615 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003616
3617 return false;
3618 }
3619
3620 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3621 nested_vmcb->save.rip,
3622 nested_vmcb->control.int_ctl,
3623 nested_vmcb->control.event_inj,
3624 nested_vmcb->control.nested_ctl);
3625
3626 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3627 nested_vmcb->control.intercept_cr >> 16,
3628 nested_vmcb->control.intercept_exceptions,
3629 nested_vmcb->control.intercept);
3630
3631 /* Clear internal status */
3632 kvm_clear_exception_queue(&svm->vcpu);
3633 kvm_clear_interrupt_queue(&svm->vcpu);
3634
3635 /*
3636 * Save the old vmcb, so we don't need to pick what we save, but can
3637 * restore everything when a VMEXIT occurs
3638 */
3639 hsave->save.es = vmcb->save.es;
3640 hsave->save.cs = vmcb->save.cs;
3641 hsave->save.ss = vmcb->save.ss;
3642 hsave->save.ds = vmcb->save.ds;
3643 hsave->save.gdtr = vmcb->save.gdtr;
3644 hsave->save.idtr = vmcb->save.idtr;
3645 hsave->save.efer = svm->vcpu.arch.efer;
3646 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3647 hsave->save.cr4 = svm->vcpu.arch.cr4;
3648 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3649 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3650 hsave->save.rsp = vmcb->save.rsp;
3651 hsave->save.rax = vmcb->save.rax;
3652 if (npt_enabled)
3653 hsave->save.cr3 = vmcb->save.cr3;
3654 else
3655 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3656
3657 copy_vmcb_control_area(hsave, vmcb);
3658
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003659 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003660
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003661 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003662}
3663
Joerg Roedel9966bf62009-08-07 11:49:40 +02003664static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003665{
3666 to_vmcb->save.fs = from_vmcb->save.fs;
3667 to_vmcb->save.gs = from_vmcb->save.gs;
3668 to_vmcb->save.tr = from_vmcb->save.tr;
3669 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3670 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3671 to_vmcb->save.star = from_vmcb->save.star;
3672 to_vmcb->save.lstar = from_vmcb->save.lstar;
3673 to_vmcb->save.cstar = from_vmcb->save.cstar;
3674 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3675 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3676 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3677 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003678}
3679
Avi Kivity851ba692009-08-24 11:10:17 +03003680static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003681{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003682 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003683 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003684 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003685
Alexander Graf55426752008-11-25 20:17:06 +01003686 if (nested_svm_check_permissions(svm))
3687 return 1;
3688
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003689 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3690 if (ret) {
3691 if (ret == -EINVAL)
3692 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003693 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003694 }
3695
3696 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003697
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003698 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003699 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003700
Joerg Roedel9966bf62009-08-07 11:49:40 +02003701 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003702 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003703
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003704 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003705}
3706
Avi Kivity851ba692009-08-24 11:10:17 +03003707static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003708{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003709 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003710 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003711 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003712
Alexander Graf55426752008-11-25 20:17:06 +01003713 if (nested_svm_check_permissions(svm))
3714 return 1;
3715
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003716 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3717 if (ret) {
3718 if (ret == -EINVAL)
3719 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003720 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003721 }
3722
3723 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003724
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003725 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003726 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003727
Joerg Roedel9966bf62009-08-07 11:49:40 +02003728 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003729 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003730
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003731 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003732}
3733
Avi Kivity851ba692009-08-24 11:10:17 +03003734static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003735{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003736 if (nested_svm_check_permissions(svm))
3737 return 1;
3738
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003739 /* Save rip after vmrun instruction */
3740 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003741
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003742 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003743 return 1;
3744
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003745 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003746 goto failed;
3747
3748 return 1;
3749
3750failed:
3751
3752 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3753 svm->vmcb->control.exit_code_hi = 0;
3754 svm->vmcb->control.exit_info_1 = 0;
3755 svm->vmcb->control.exit_info_2 = 0;
3756
3757 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003758
3759 return 1;
3760}
3761
Avi Kivity851ba692009-08-24 11:10:17 +03003762static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003763{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003764 int ret;
3765
Alexander Graf1371d902008-11-25 20:17:04 +01003766 if (nested_svm_check_permissions(svm))
3767 return 1;
3768
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003769 /*
3770 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003771 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003772 */
3773 if (vgif_enabled(svm))
3774 clr_intercept(svm, INTERCEPT_STGI);
3775
Alexander Graf1371d902008-11-25 20:17:04 +01003776 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003777 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003778 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003779
Joerg Roedel2af91942009-08-07 11:49:28 +02003780 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003781
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003782 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003783}
3784
Avi Kivity851ba692009-08-24 11:10:17 +03003785static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003786{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003787 int ret;
3788
Alexander Graf1371d902008-11-25 20:17:04 +01003789 if (nested_svm_check_permissions(svm))
3790 return 1;
3791
3792 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003793 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003794
Joerg Roedel2af91942009-08-07 11:49:28 +02003795 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003796
3797 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003798 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3799 svm_clear_vintr(svm);
3800 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3801 mark_dirty(svm->vmcb, VMCB_INTR);
3802 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003803
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003804 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003805}
3806
Avi Kivity851ba692009-08-24 11:10:17 +03003807static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003808{
3809 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003810
Sean Christophersonde3cd112019-04-30 10:36:17 -07003811 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3812 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003813
Alexander Grafff092382009-06-15 15:21:24 +02003814 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003815 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003816
3817 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003818 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003819}
3820
Joerg Roedel532a46b2009-10-09 16:08:32 +02003821static int skinit_interception(struct vcpu_svm *svm)
3822{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003823 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003824
3825 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3826 return 1;
3827}
3828
David Kaplandab429a2015-03-02 13:43:37 -06003829static int wbinvd_interception(struct vcpu_svm *svm)
3830{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003831 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003832}
3833
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003834static int xsetbv_interception(struct vcpu_svm *svm)
3835{
3836 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003837 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003838
3839 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3840 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003841 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003842 }
3843
3844 return 1;
3845}
3846
Avi Kivity851ba692009-08-24 11:10:17 +03003847static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003848{
Izik Eidus37817f22008-03-24 23:14:53 +02003849 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003850 int reason;
3851 int int_type = svm->vmcb->control.exit_int_info &
3852 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003853 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003854 uint32_t type =
3855 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3856 uint32_t idt_v =
3857 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003858 bool has_error_code = false;
3859 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003860
3861 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003862
Izik Eidus37817f22008-03-24 23:14:53 +02003863 if (svm->vmcb->control.exit_info_2 &
3864 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003865 reason = TASK_SWITCH_IRET;
3866 else if (svm->vmcb->control.exit_info_2 &
3867 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3868 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003869 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003870 reason = TASK_SWITCH_GATE;
3871 else
3872 reason = TASK_SWITCH_CALL;
3873
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003874 if (reason == TASK_SWITCH_GATE) {
3875 switch (type) {
3876 case SVM_EXITINTINFO_TYPE_NMI:
3877 svm->vcpu.arch.nmi_injected = false;
3878 break;
3879 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003880 if (svm->vmcb->control.exit_info_2 &
3881 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3882 has_error_code = true;
3883 error_code =
3884 (u32)svm->vmcb->control.exit_info_2;
3885 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003886 kvm_clear_exception_queue(&svm->vcpu);
3887 break;
3888 case SVM_EXITINTINFO_TYPE_INTR:
3889 kvm_clear_interrupt_queue(&svm->vcpu);
3890 break;
3891 default:
3892 break;
3893 }
3894 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003895
Gleb Natapov8317c292009-04-12 13:37:02 +03003896 if (reason != TASK_SWITCH_GATE ||
3897 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3898 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003899 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3900 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003901
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003902 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3903 int_vec = -1;
3904
3905 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003906 has_error_code, error_code) == EMULATE_FAIL) {
3907 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3908 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3909 svm->vcpu.run->internal.ndata = 0;
3910 return 0;
3911 }
3912 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913}
3914
Avi Kivity851ba692009-08-24 11:10:17 +03003915static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003916{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003917 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003918 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003919}
3920
Avi Kivity851ba692009-08-24 11:10:17 +03003921static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003922{
3923 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003924 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003925 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003926 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003927 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003928 return 1;
3929}
3930
Avi Kivity851ba692009-08-24 11:10:17 +03003931static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003932{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003933 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003934 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003935
3936 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003937 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003938}
3939
Avi Kivity851ba692009-08-24 11:10:17 +03003940static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003941{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003942 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943}
3944
Brijesh Singh7607b712018-02-19 10:14:44 -06003945static int rsm_interception(struct vcpu_svm *svm)
3946{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003947 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3948 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003949}
3950
Avi Kivity332b56e2011-11-10 14:57:24 +02003951static int rdpmc_interception(struct vcpu_svm *svm)
3952{
3953 int err;
3954
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003955 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003956 return emulate_on_interception(svm);
3957
3958 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003959 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003960}
3961
Xiubo Li52eb5a62015-03-13 17:39:45 +08003962static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3963 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003964{
3965 unsigned long cr0 = svm->vcpu.arch.cr0;
3966 bool ret = false;
3967 u64 intercept;
3968
3969 intercept = svm->nested.intercept;
3970
3971 if (!is_guest_mode(&svm->vcpu) ||
3972 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3973 return false;
3974
3975 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3976 val &= ~SVM_CR0_SELECTIVE_MASK;
3977
3978 if (cr0 ^ val) {
3979 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3980 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3981 }
3982
3983 return ret;
3984}
3985
Andre Przywara7ff76d52010-12-21 11:12:04 +01003986#define CR_VALID (1ULL << 63)
3987
3988static int cr_interception(struct vcpu_svm *svm)
3989{
3990 int reg, cr;
3991 unsigned long val;
3992 int err;
3993
3994 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3995 return emulate_on_interception(svm);
3996
3997 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3998 return emulate_on_interception(svm);
3999
4000 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004001 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4002 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4003 else
4004 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004005
4006 err = 0;
4007 if (cr >= 16) { /* mov to cr */
4008 cr -= 16;
4009 val = kvm_register_read(&svm->vcpu, reg);
4010 switch (cr) {
4011 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004012 if (!check_selective_cr0_intercepted(svm, val))
4013 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004014 else
4015 return 1;
4016
Andre Przywara7ff76d52010-12-21 11:12:04 +01004017 break;
4018 case 3:
4019 err = kvm_set_cr3(&svm->vcpu, val);
4020 break;
4021 case 4:
4022 err = kvm_set_cr4(&svm->vcpu, val);
4023 break;
4024 case 8:
4025 err = kvm_set_cr8(&svm->vcpu, val);
4026 break;
4027 default:
4028 WARN(1, "unhandled write to CR%d", cr);
4029 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4030 return 1;
4031 }
4032 } else { /* mov from cr */
4033 switch (cr) {
4034 case 0:
4035 val = kvm_read_cr0(&svm->vcpu);
4036 break;
4037 case 2:
4038 val = svm->vcpu.arch.cr2;
4039 break;
4040 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004041 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004042 break;
4043 case 4:
4044 val = kvm_read_cr4(&svm->vcpu);
4045 break;
4046 case 8:
4047 val = kvm_get_cr8(&svm->vcpu);
4048 break;
4049 default:
4050 WARN(1, "unhandled read from CR%d", cr);
4051 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4052 return 1;
4053 }
4054 kvm_register_write(&svm->vcpu, reg, val);
4055 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004056 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004057}
4058
Andre Przywaracae37972010-12-21 11:12:05 +01004059static int dr_interception(struct vcpu_svm *svm)
4060{
4061 int reg, dr;
4062 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004063
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004064 if (svm->vcpu.guest_debug == 0) {
4065 /*
4066 * No more DR vmexits; force a reload of the debug registers
4067 * and reenter on this instruction. The next vmexit will
4068 * retrieve the full state of the debug registers.
4069 */
4070 clr_dr_intercepts(svm);
4071 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4072 return 1;
4073 }
4074
Andre Przywaracae37972010-12-21 11:12:05 +01004075 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4076 return emulate_on_interception(svm);
4077
4078 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4079 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4080
4081 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004082 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4083 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004084 val = kvm_register_read(&svm->vcpu, reg);
4085 kvm_set_dr(&svm->vcpu, dr - 16, val);
4086 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004087 if (!kvm_require_dr(&svm->vcpu, dr))
4088 return 1;
4089 kvm_get_dr(&svm->vcpu, dr, &val);
4090 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004091 }
4092
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004093 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004094}
4095
Avi Kivity851ba692009-08-24 11:10:17 +03004096static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004097{
Avi Kivity851ba692009-08-24 11:10:17 +03004098 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004099 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004100
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004101 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4102 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004103 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004104 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004105 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004106 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004107 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004108 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4109 return 0;
4110}
4111
Tom Lendacky801e4592018-02-21 13:39:51 -06004112static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4113{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004114 msr->data = 0;
4115
4116 switch (msr->index) {
4117 case MSR_F10H_DECFG:
4118 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4119 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4120 break;
4121 default:
4122 return 1;
4123 }
4124
4125 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004126}
4127
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004128static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004129{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004130 struct vcpu_svm *svm = to_svm(vcpu);
4131
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004132 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004133 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004134 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004136#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004137 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004138 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139 break;
4140 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004141 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142 break;
4143 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004144 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004145 break;
4146 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004147 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004148 break;
4149#endif
4150 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004151 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004152 break;
4153 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004154 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155 break;
4156 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004157 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004158 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004159 case MSR_TSC_AUX:
4160 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4161 return 1;
4162 msr_info->data = svm->tsc_aux;
4163 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004164 /*
4165 * Nobody will change the following 5 values in the VMCB so we can
4166 * safely return them on rdmsr. They will always be 0 until LBRV is
4167 * implemented.
4168 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004169 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004170 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004171 break;
4172 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004173 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004174 break;
4175 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004176 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004177 break;
4178 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004179 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004180 break;
4181 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004182 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004183 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004184 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004185 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004186 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004187 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004188 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004189 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004190 case MSR_IA32_SPEC_CTRL:
4191 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004192 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4193 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004194 return 1;
4195
4196 msr_info->data = svm->spec_ctrl;
4197 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004198 case MSR_AMD64_VIRT_SPEC_CTRL:
4199 if (!msr_info->host_initiated &&
4200 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4201 return 1;
4202
4203 msr_info->data = svm->virt_spec_ctrl;
4204 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004205 case MSR_F15H_IC_CFG: {
4206
4207 int family, model;
4208
4209 family = guest_cpuid_family(vcpu);
4210 model = guest_cpuid_model(vcpu);
4211
4212 if (family < 0 || model < 0)
4213 return kvm_get_msr_common(vcpu, msr_info);
4214
4215 msr_info->data = 0;
4216
4217 if (family == 0x15 &&
4218 (model >= 0x2 && model < 0x20))
4219 msr_info->data = 0x1E;
4220 }
4221 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004222 case MSR_F10H_DECFG:
4223 msr_info->data = svm->msr_decfg;
4224 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004225 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004226 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004227 }
4228 return 0;
4229}
4230
Avi Kivity851ba692009-08-24 11:10:17 +03004231static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232{
Sean Christophersonde3cd112019-04-30 10:36:17 -07004233 u32 ecx = kvm_rcx_read(&svm->vcpu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004234 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004235
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004236 msr_info.index = ecx;
4237 msr_info.host_initiated = false;
4238 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004239 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004240 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004241 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004242 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004243 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004244
Sean Christophersonde3cd112019-04-30 10:36:17 -07004245 kvm_rax_write(&svm->vcpu, msr_info.data & 0xffffffff);
4246 kvm_rdx_write(&svm->vcpu, msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004247 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004248 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004249 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004250}
4251
Joerg Roedel4a810182010-02-24 18:59:15 +01004252static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4253{
4254 struct vcpu_svm *svm = to_svm(vcpu);
4255 int svm_dis, chg_mask;
4256
4257 if (data & ~SVM_VM_CR_VALID_MASK)
4258 return 1;
4259
4260 chg_mask = SVM_VM_CR_VALID_MASK;
4261
4262 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4263 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4264
4265 svm->nested.vm_cr_msr &= ~chg_mask;
4266 svm->nested.vm_cr_msr |= (data & chg_mask);
4267
4268 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4269
4270 /* check for svm_disable while efer.svme is set */
4271 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4272 return 1;
4273
4274 return 0;
4275}
4276
Will Auld8fe8ab42012-11-29 12:42:12 -08004277static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004279 struct vcpu_svm *svm = to_svm(vcpu);
4280
Will Auld8fe8ab42012-11-29 12:42:12 -08004281 u32 ecx = msr->index;
4282 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004284 case MSR_IA32_CR_PAT:
4285 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4286 return 1;
4287 vcpu->arch.pat = data;
4288 svm->vmcb->save.g_pat = data;
4289 mark_dirty(svm->vmcb, VMCB_NPT);
4290 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004291 case MSR_IA32_SPEC_CTRL:
4292 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004293 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4294 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004295 return 1;
4296
4297 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004298 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004299 return 1;
4300
4301 svm->spec_ctrl = data;
4302
4303 if (!data)
4304 break;
4305
4306 /*
4307 * For non-nested:
4308 * When it's written (to non-zero) for the first time, pass
4309 * it through.
4310 *
4311 * For nested:
4312 * The handling of the MSR bitmap for L2 guests is done in
4313 * nested_svm_vmrun_msrpm.
4314 * We update the L1 MSR bit as well since it will end up
4315 * touching the MSR anyway now.
4316 */
4317 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4318 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004319 case MSR_IA32_PRED_CMD:
4320 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004321 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004322 return 1;
4323
4324 if (data & ~PRED_CMD_IBPB)
4325 return 1;
4326
4327 if (!data)
4328 break;
4329
4330 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4331 if (is_guest_mode(vcpu))
4332 break;
4333 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4334 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004335 case MSR_AMD64_VIRT_SPEC_CTRL:
4336 if (!msr->host_initiated &&
4337 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4338 return 1;
4339
4340 if (data & ~SPEC_CTRL_SSBD)
4341 return 1;
4342
4343 svm->virt_spec_ctrl = data;
4344 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004345 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004346 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004347 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004348#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004349 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004350 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004351 break;
4352 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004353 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354 break;
4355 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004356 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004357 break;
4358 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004359 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004360 break;
4361#endif
4362 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004363 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 break;
4365 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004366 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004367 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004368 break;
4369 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004370 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004371 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004372 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004373 case MSR_TSC_AUX:
4374 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4375 return 1;
4376
4377 /*
4378 * This is rare, so we update the MSR here instead of using
4379 * direct_access_msrs. Doing that would require a rdmsr in
4380 * svm_vcpu_put.
4381 */
4382 svm->tsc_aux = data;
4383 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4384 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004385 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004386 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004387 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4388 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004389 break;
4390 }
4391 if (data & DEBUGCTL_RESERVED_BITS)
4392 return 1;
4393
4394 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004395 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004396 if (data & (1ULL<<0))
4397 svm_enable_lbrv(svm);
4398 else
4399 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004400 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004401 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004402 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004403 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004404 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004405 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004406 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004407 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004408 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004409 case MSR_F10H_DECFG: {
4410 struct kvm_msr_entry msr_entry;
4411
4412 msr_entry.index = msr->index;
4413 if (svm_get_msr_feature(&msr_entry))
4414 return 1;
4415
4416 /* Check the supported bits */
4417 if (data & ~msr_entry.data)
4418 return 1;
4419
4420 /* Don't allow the guest to change a bit, #GP */
4421 if (!msr->host_initiated && (data ^ msr_entry.data))
4422 return 1;
4423
4424 svm->msr_decfg = data;
4425 break;
4426 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004427 case MSR_IA32_APICBASE:
4428 if (kvm_vcpu_apicv_active(vcpu))
4429 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004430 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004431 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004432 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433 }
4434 return 0;
4435}
4436
Avi Kivity851ba692009-08-24 11:10:17 +03004437static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004438{
Will Auld8fe8ab42012-11-29 12:42:12 -08004439 struct msr_data msr;
Sean Christophersonde3cd112019-04-30 10:36:17 -07004440 u32 ecx = kvm_rcx_read(&svm->vcpu);
David Kaplan668f1982015-02-20 16:02:10 -06004441 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004442
Will Auld8fe8ab42012-11-29 12:42:12 -08004443 msr.data = data;
4444 msr.index = ecx;
4445 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004446
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004447 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004448 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004449 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004450 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004451 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004452 } else {
4453 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004454 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004455 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456}
4457
Avi Kivity851ba692009-08-24 11:10:17 +03004458static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459{
Rusty Russelle756fc62007-07-30 20:07:08 +10004460 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004461 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462 else
Avi Kivity851ba692009-08-24 11:10:17 +03004463 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004464}
4465
Avi Kivity851ba692009-08-24 11:10:17 +03004466static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004467{
Avi Kivity3842d132010-07-27 12:30:24 +03004468 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004469 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004470 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004471 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004472 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004473 return 1;
4474}
4475
Mark Langsdorf565d0992009-10-06 14:25:02 -05004476static int pause_interception(struct vcpu_svm *svm)
4477{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004478 struct kvm_vcpu *vcpu = &svm->vcpu;
4479 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4480
Babu Moger8566ac82018-03-16 16:37:26 -04004481 if (pause_filter_thresh)
4482 grow_ple_window(vcpu);
4483
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004484 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004485 return 1;
4486}
4487
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004488static int nop_interception(struct vcpu_svm *svm)
4489{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004490 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004491}
4492
4493static int monitor_interception(struct vcpu_svm *svm)
4494{
4495 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4496 return nop_interception(svm);
4497}
4498
4499static int mwait_interception(struct vcpu_svm *svm)
4500{
4501 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4502 return nop_interception(svm);
4503}
4504
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004505enum avic_ipi_failure_cause {
4506 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4507 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4508 AVIC_IPI_FAILURE_INVALID_TARGET,
4509 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4510};
4511
4512static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4513{
4514 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4515 u32 icrl = svm->vmcb->control.exit_info_1;
4516 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004517 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004518 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4519
4520 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4521
4522 switch (id) {
4523 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4524 /*
4525 * AVIC hardware handles the generation of
4526 * IPIs when the specified Message Type is Fixed
4527 * (also known as fixed delivery mode) and
4528 * the Trigger Mode is edge-triggered. The hardware
4529 * also supports self and broadcast delivery modes
4530 * specified via the Destination Shorthand(DSH)
4531 * field of the ICRL. Logical and physical APIC ID
4532 * formats are supported. All other IPI types cause
4533 * a #VMEXIT, which needs to emulated.
4534 */
4535 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4536 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4537 break;
4538 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004539 int i;
4540 struct kvm_vcpu *vcpu;
4541 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004542 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4543
4544 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004545 * At this point, we expect that the AVIC HW has already
4546 * set the appropriate IRR bits on the valid target
4547 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004548 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004549 kvm_for_each_vcpu(i, vcpu, kvm) {
4550 bool m = kvm_apic_match_dest(vcpu, apic,
4551 icrl & KVM_APIC_SHORT_MASK,
4552 GET_APIC_DEST_FIELD(icrh),
4553 icrl & KVM_APIC_DEST_MASK);
4554
4555 if (m && !avic_vcpu_is_running(vcpu))
4556 kvm_vcpu_wake_up(vcpu);
4557 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004558 break;
4559 }
4560 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004561 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4562 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004563 break;
4564 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4565 WARN_ONCE(1, "Invalid backing page\n");
4566 break;
4567 default:
4568 pr_err("Unknown IPI interception\n");
4569 }
4570
4571 return 1;
4572}
4573
4574static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4575{
Sean Christopherson81811c12018-03-20 12:17:21 -07004576 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004577 int index;
4578 u32 *logical_apic_id_table;
4579 int dlid = GET_APIC_LOGICAL_ID(ldr);
4580
4581 if (!dlid)
4582 return NULL;
4583
4584 if (flat) { /* flat */
4585 index = ffs(dlid) - 1;
4586 if (index > 7)
4587 return NULL;
4588 } else { /* cluster */
4589 int cluster = (dlid & 0xf0) >> 4;
4590 int apic = ffs(dlid & 0x0f) - 1;
4591
4592 if ((apic < 0) || (apic > 7) ||
4593 (cluster >= 0xf))
4594 return NULL;
4595 index = (cluster << 2) + apic;
4596 }
4597
Sean Christopherson81811c12018-03-20 12:17:21 -07004598 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004599
4600 return &logical_apic_id_table[index];
4601}
4602
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004603static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004604{
4605 bool flat;
4606 u32 *entry, new_entry;
4607
4608 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4609 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4610 if (!entry)
4611 return -EINVAL;
4612
4613 new_entry = READ_ONCE(*entry);
4614 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4615 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004616 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004617 WRITE_ONCE(*entry, new_entry);
4618
4619 return 0;
4620}
4621
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004622static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4623{
4624 struct vcpu_svm *svm = to_svm(vcpu);
4625 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4626 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4627
4628 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004629 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004630}
4631
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004632static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4633{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004634 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004635 struct vcpu_svm *svm = to_svm(vcpu);
4636 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4637
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004638 if (ldr == svm->ldr_reg)
4639 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004640
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004641 avic_invalidate_logical_id_entry(vcpu);
4642
4643 if (ldr)
4644 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr);
4645
4646 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004647 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004648
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004649 return ret;
4650}
4651
4652static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4653{
4654 u64 *old, *new;
4655 struct vcpu_svm *svm = to_svm(vcpu);
4656 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4657 u32 id = (apic_id_reg >> 24) & 0xff;
4658
4659 if (vcpu->vcpu_id == id)
4660 return 0;
4661
4662 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4663 new = avic_get_physical_id_entry(vcpu, id);
4664 if (!new || !old)
4665 return 1;
4666
4667 /* We need to move physical_id_entry to new offset */
4668 *new = *old;
4669 *old = 0ULL;
4670 to_svm(vcpu)->avic_physical_id_cache = new;
4671
4672 /*
4673 * Also update the guest physical APIC ID in the logical
4674 * APIC ID table entry if already setup the LDR.
4675 */
4676 if (svm->ldr_reg)
4677 avic_handle_ldr_update(vcpu);
4678
4679 return 0;
4680}
4681
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004682static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004683{
4684 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004685 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004686
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004687 if (svm->dfr_reg == dfr)
4688 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004689
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004690 avic_invalidate_logical_id_entry(vcpu);
4691 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004692}
4693
4694static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4695{
4696 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4697 u32 offset = svm->vmcb->control.exit_info_1 &
4698 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4699
4700 switch (offset) {
4701 case APIC_ID:
4702 if (avic_handle_apic_id_update(&svm->vcpu))
4703 return 0;
4704 break;
4705 case APIC_LDR:
4706 if (avic_handle_ldr_update(&svm->vcpu))
4707 return 0;
4708 break;
4709 case APIC_DFR:
4710 avic_handle_dfr_update(&svm->vcpu);
4711 break;
4712 default:
4713 break;
4714 }
4715
4716 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4717
4718 return 1;
4719}
4720
4721static bool is_avic_unaccelerated_access_trap(u32 offset)
4722{
4723 bool ret = false;
4724
4725 switch (offset) {
4726 case APIC_ID:
4727 case APIC_EOI:
4728 case APIC_RRR:
4729 case APIC_LDR:
4730 case APIC_DFR:
4731 case APIC_SPIV:
4732 case APIC_ESR:
4733 case APIC_ICR:
4734 case APIC_LVTT:
4735 case APIC_LVTTHMR:
4736 case APIC_LVTPC:
4737 case APIC_LVT0:
4738 case APIC_LVT1:
4739 case APIC_LVTERR:
4740 case APIC_TMICT:
4741 case APIC_TDCR:
4742 ret = true;
4743 break;
4744 default:
4745 break;
4746 }
4747 return ret;
4748}
4749
4750static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4751{
4752 int ret = 0;
4753 u32 offset = svm->vmcb->control.exit_info_1 &
4754 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4755 u32 vector = svm->vmcb->control.exit_info_2 &
4756 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4757 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4758 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4759 bool trap = is_avic_unaccelerated_access_trap(offset);
4760
4761 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4762 trap, write, vector);
4763 if (trap) {
4764 /* Handling Trap */
4765 WARN_ONCE(!write, "svm: Handling trap read.\n");
4766 ret = avic_unaccel_trap_write(svm);
4767 } else {
4768 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004769 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004770 }
4771
4772 return ret;
4773}
4774
Mathias Krause09941fb2012-08-30 01:30:20 +02004775static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004776 [SVM_EXIT_READ_CR0] = cr_interception,
4777 [SVM_EXIT_READ_CR3] = cr_interception,
4778 [SVM_EXIT_READ_CR4] = cr_interception,
4779 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004780 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004781 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004782 [SVM_EXIT_WRITE_CR3] = cr_interception,
4783 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004784 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004785 [SVM_EXIT_READ_DR0] = dr_interception,
4786 [SVM_EXIT_READ_DR1] = dr_interception,
4787 [SVM_EXIT_READ_DR2] = dr_interception,
4788 [SVM_EXIT_READ_DR3] = dr_interception,
4789 [SVM_EXIT_READ_DR4] = dr_interception,
4790 [SVM_EXIT_READ_DR5] = dr_interception,
4791 [SVM_EXIT_READ_DR6] = dr_interception,
4792 [SVM_EXIT_READ_DR7] = dr_interception,
4793 [SVM_EXIT_WRITE_DR0] = dr_interception,
4794 [SVM_EXIT_WRITE_DR1] = dr_interception,
4795 [SVM_EXIT_WRITE_DR2] = dr_interception,
4796 [SVM_EXIT_WRITE_DR3] = dr_interception,
4797 [SVM_EXIT_WRITE_DR4] = dr_interception,
4798 [SVM_EXIT_WRITE_DR5] = dr_interception,
4799 [SVM_EXIT_WRITE_DR6] = dr_interception,
4800 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004801 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4802 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004803 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004804 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004805 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004806 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004807 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004808 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004809 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004810 [SVM_EXIT_SMI] = nop_on_interception,
4811 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004812 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004813 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004814 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004815 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004816 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004817 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004818 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004819 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004820 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004821 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822 [SVM_EXIT_MSR] = msr_interception,
4823 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004824 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004825 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004826 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004827 [SVM_EXIT_VMLOAD] = vmload_interception,
4828 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004829 [SVM_EXIT_STGI] = stgi_interception,
4830 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004831 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004832 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004833 [SVM_EXIT_MONITOR] = monitor_interception,
4834 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004835 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004836 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004837 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004838 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4839 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004840};
4841
Joe Perchesae8cc052011-04-24 22:00:50 -07004842static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004843{
4844 struct vcpu_svm *svm = to_svm(vcpu);
4845 struct vmcb_control_area *control = &svm->vmcb->control;
4846 struct vmcb_save_area *save = &svm->vmcb->save;
4847
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004848 if (!dump_invalid_vmcb) {
4849 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4850 return;
4851 }
4852
Joerg Roedel3f10c842010-05-05 16:04:42 +02004853 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004854 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4855 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4856 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4857 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4858 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4859 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4860 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004861 pr_err("%-20s%d\n", "pause filter threshold:",
4862 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004863 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4864 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4865 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4866 pr_err("%-20s%d\n", "asid:", control->asid);
4867 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4868 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4869 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4870 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4871 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4872 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4873 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4874 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4875 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4876 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4877 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004878 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004879 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4880 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004881 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004882 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004883 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4884 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4885 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004886 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004887 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4888 "es:",
4889 save->es.selector, save->es.attrib,
4890 save->es.limit, save->es.base);
4891 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4892 "cs:",
4893 save->cs.selector, save->cs.attrib,
4894 save->cs.limit, save->cs.base);
4895 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4896 "ss:",
4897 save->ss.selector, save->ss.attrib,
4898 save->ss.limit, save->ss.base);
4899 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4900 "ds:",
4901 save->ds.selector, save->ds.attrib,
4902 save->ds.limit, save->ds.base);
4903 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4904 "fs:",
4905 save->fs.selector, save->fs.attrib,
4906 save->fs.limit, save->fs.base);
4907 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4908 "gs:",
4909 save->gs.selector, save->gs.attrib,
4910 save->gs.limit, save->gs.base);
4911 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4912 "gdtr:",
4913 save->gdtr.selector, save->gdtr.attrib,
4914 save->gdtr.limit, save->gdtr.base);
4915 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4916 "ldtr:",
4917 save->ldtr.selector, save->ldtr.attrib,
4918 save->ldtr.limit, save->ldtr.base);
4919 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4920 "idtr:",
4921 save->idtr.selector, save->idtr.attrib,
4922 save->idtr.limit, save->idtr.base);
4923 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4924 "tr:",
4925 save->tr.selector, save->tr.attrib,
4926 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004927 pr_err("cpl: %d efer: %016llx\n",
4928 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004929 pr_err("%-15s %016llx %-13s %016llx\n",
4930 "cr0:", save->cr0, "cr2:", save->cr2);
4931 pr_err("%-15s %016llx %-13s %016llx\n",
4932 "cr3:", save->cr3, "cr4:", save->cr4);
4933 pr_err("%-15s %016llx %-13s %016llx\n",
4934 "dr6:", save->dr6, "dr7:", save->dr7);
4935 pr_err("%-15s %016llx %-13s %016llx\n",
4936 "rip:", save->rip, "rflags:", save->rflags);
4937 pr_err("%-15s %016llx %-13s %016llx\n",
4938 "rsp:", save->rsp, "rax:", save->rax);
4939 pr_err("%-15s %016llx %-13s %016llx\n",
4940 "star:", save->star, "lstar:", save->lstar);
4941 pr_err("%-15s %016llx %-13s %016llx\n",
4942 "cstar:", save->cstar, "sfmask:", save->sfmask);
4943 pr_err("%-15s %016llx %-13s %016llx\n",
4944 "kernel_gs_base:", save->kernel_gs_base,
4945 "sysenter_cs:", save->sysenter_cs);
4946 pr_err("%-15s %016llx %-13s %016llx\n",
4947 "sysenter_esp:", save->sysenter_esp,
4948 "sysenter_eip:", save->sysenter_eip);
4949 pr_err("%-15s %016llx %-13s %016llx\n",
4950 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4951 pr_err("%-15s %016llx %-13s %016llx\n",
4952 "br_from:", save->br_from, "br_to:", save->br_to);
4953 pr_err("%-15s %016llx %-13s %016llx\n",
4954 "excp_from:", save->last_excp_from,
4955 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004956}
4957
Avi Kivity586f9602010-11-18 13:09:54 +02004958static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4959{
4960 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4961
4962 *info1 = control->exit_info_1;
4963 *info2 = control->exit_info_2;
4964}
4965
Avi Kivity851ba692009-08-24 11:10:17 +03004966static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004967{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004968 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004969 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004970 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004971
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004972 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4973
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004974 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004975 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4976 if (npt_enabled)
4977 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004978
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004979 if (unlikely(svm->nested.exit_required)) {
4980 nested_svm_vmexit(svm);
4981 svm->nested.exit_required = false;
4982
4983 return 1;
4984 }
4985
Joerg Roedel20307532010-11-29 17:51:48 +01004986 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004987 int vmexit;
4988
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004989 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4990 svm->vmcb->control.exit_info_1,
4991 svm->vmcb->control.exit_info_2,
4992 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004993 svm->vmcb->control.exit_int_info_err,
4994 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004995
Joerg Roedel410e4d52009-08-07 11:49:44 +02004996 vmexit = nested_svm_exit_special(svm);
4997
4998 if (vmexit == NESTED_EXIT_CONTINUE)
4999 vmexit = nested_svm_exit_handled(svm);
5000
5001 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01005002 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01005003 }
5004
Joerg Roedela5c38322009-08-07 11:49:32 +02005005 svm_complete_interrupts(svm);
5006
Avi Kivity04d2cc72007-09-10 18:10:54 +03005007 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5008 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5009 kvm_run->fail_entry.hardware_entry_failure_reason
5010 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005011 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005012 return 0;
5013 }
5014
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005015 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005016 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005017 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5018 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005019 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005020 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005021 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005022 exit_code);
5023
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02005024 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005025 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04005026 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005027 kvm_queue_exception(vcpu, UD_VECTOR);
5028 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005029 }
5030
Avi Kivity851ba692009-08-24 11:10:17 +03005031 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005032}
5033
5034static void reload_tss(struct kvm_vcpu *vcpu)
5035{
5036 int cpu = raw_smp_processor_id();
5037
Tejun Heo0fe1e002009-10-29 22:34:14 +09005038 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5039 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005040 load_TR_desc();
5041}
5042
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005043static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5044{
5045 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5046 int asid = sev_get_asid(svm->vcpu.kvm);
5047
5048 /* Assign the asid allocated with this SEV guest */
5049 svm->vmcb->control.asid = asid;
5050
5051 /*
5052 * Flush guest TLB:
5053 *
5054 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5055 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5056 */
5057 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5058 svm->last_cpu == cpu)
5059 return;
5060
5061 svm->last_cpu = cpu;
5062 sd->sev_vmcbs[asid] = svm->vmcb;
5063 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5064 mark_dirty(svm->vmcb, VMCB_ASID);
5065}
5066
Rusty Russelle756fc62007-07-30 20:07:08 +10005067static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005068{
5069 int cpu = raw_smp_processor_id();
5070
Tejun Heo0fe1e002009-10-29 22:34:14 +09005071 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005072
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005073 if (sev_guest(svm->vcpu.kvm))
5074 return pre_sev_run(svm, cpu);
5075
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005076 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005077 if (svm->asid_generation != sd->asid_generation)
5078 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005079}
5080
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005081static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5082{
5083 struct vcpu_svm *svm = to_svm(vcpu);
5084
5085 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5086 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005087 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005088 ++vcpu->stat.nmi_injections;
5089}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005090
Eddie Dong85f455f2007-07-06 12:20:49 +03005091static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005092{
5093 struct vmcb_control_area *control;
5094
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005095 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005096 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005097 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005098 control->int_ctl &= ~V_INTR_PRIO_MASK;
5099 control->int_ctl |= V_IRQ_MASK |
5100 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005101 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005102}
5103
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005104static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005105{
5106 struct vcpu_svm *svm = to_svm(vcpu);
5107
Joerg Roedel2af91942009-08-07 11:49:28 +02005108 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005109
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005110 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5111 ++vcpu->stat.irq_injections;
5112
Alexander Graf219b65d2009-06-15 15:21:25 +02005113 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5114 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005115}
5116
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005117static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5118{
5119 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5120}
5121
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005122static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5123{
5124 struct vcpu_svm *svm = to_svm(vcpu);
5125
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005126 if (svm_nested_virtualize_tpr(vcpu) ||
5127 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005128 return;
5129
Radim Krčmář596f3142014-03-11 19:11:18 +01005130 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5131
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005132 if (irr == -1)
5133 return;
5134
5135 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005136 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005137}
5138
Jim Mattson8d860bb2018-05-09 16:56:05 -04005139static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005140{
5141 return;
5142}
5143
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005144static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005145{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005146 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005147}
5148
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005149static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5150{
5151}
5152
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005153static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005154{
5155}
5156
5157/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005158static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5159{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005160 struct vcpu_svm *svm = to_svm(vcpu);
5161 struct vmcb *vmcb = svm->vmcb;
5162
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005163 if (kvm_vcpu_apicv_active(vcpu))
5164 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
5165 else
5166 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5167 mark_dirty(vmcb, VMCB_AVIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005168}
5169
Andrey Smetanin63086302015-11-10 15:36:32 +03005170static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005171{
5172 return;
5173}
5174
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005175static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5176{
5177 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5178 smp_mb__after_atomic();
5179
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005180 if (avic_vcpu_is_running(vcpu)) {
5181 int cpuid = vcpu->cpu;
5182
5183 if (cpuid != get_cpu())
5184 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5185 put_cpu();
5186 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005187 kvm_vcpu_wake_up(vcpu);
5188}
5189
Wanpeng Li17e433b2019-08-05 10:03:19 +08005190static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5191{
5192 return false;
5193}
5194
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005195static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5196{
5197 unsigned long flags;
5198 struct amd_svm_iommu_ir *cur;
5199
5200 spin_lock_irqsave(&svm->ir_list_lock, flags);
5201 list_for_each_entry(cur, &svm->ir_list, node) {
5202 if (cur->data != pi->ir_data)
5203 continue;
5204 list_del(&cur->node);
5205 kfree(cur);
5206 break;
5207 }
5208 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5209}
5210
5211static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5212{
5213 int ret = 0;
5214 unsigned long flags;
5215 struct amd_svm_iommu_ir *ir;
5216
5217 /**
5218 * In some cases, the existing irte is updaed and re-set,
5219 * so we need to check here if it's already been * added
5220 * to the ir_list.
5221 */
5222 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5223 struct kvm *kvm = svm->vcpu.kvm;
5224 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5225 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5226 struct vcpu_svm *prev_svm;
5227
5228 if (!prev_vcpu) {
5229 ret = -EINVAL;
5230 goto out;
5231 }
5232
5233 prev_svm = to_svm(prev_vcpu);
5234 svm_ir_list_del(prev_svm, pi);
5235 }
5236
5237 /**
5238 * Allocating new amd_iommu_pi_data, which will get
5239 * add to the per-vcpu ir_list.
5240 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005241 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005242 if (!ir) {
5243 ret = -ENOMEM;
5244 goto out;
5245 }
5246 ir->data = pi->ir_data;
5247
5248 spin_lock_irqsave(&svm->ir_list_lock, flags);
5249 list_add(&ir->node, &svm->ir_list);
5250 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5251out:
5252 return ret;
5253}
5254
5255/**
5256 * Note:
5257 * The HW cannot support posting multicast/broadcast
5258 * interrupts to a vCPU. So, we still use legacy interrupt
5259 * remapping for these kind of interrupts.
5260 *
5261 * For lowest-priority interrupts, we only support
5262 * those with single CPU as the destination, e.g. user
5263 * configures the interrupts via /proc/irq or uses
5264 * irqbalance to make the interrupts single-CPU.
5265 */
5266static int
5267get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5268 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5269{
5270 struct kvm_lapic_irq irq;
5271 struct kvm_vcpu *vcpu = NULL;
5272
5273 kvm_set_msi_irq(kvm, e, &irq);
5274
5275 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5276 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5277 __func__, irq.vector);
5278 return -1;
5279 }
5280
5281 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5282 irq.vector);
5283 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005284 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005285 vcpu_info->vector = irq.vector;
5286
5287 return 0;
5288}
5289
5290/*
5291 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5292 *
5293 * @kvm: kvm
5294 * @host_irq: host irq of the interrupt
5295 * @guest_irq: gsi of the interrupt
5296 * @set: set or unset PI
5297 * returns 0 on success, < 0 on failure
5298 */
5299static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5300 uint32_t guest_irq, bool set)
5301{
5302 struct kvm_kernel_irq_routing_entry *e;
5303 struct kvm_irq_routing_table *irq_rt;
5304 int idx, ret = -EINVAL;
5305
5306 if (!kvm_arch_has_assigned_device(kvm) ||
5307 !irq_remapping_cap(IRQ_POSTING_CAP))
5308 return 0;
5309
5310 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5311 __func__, host_irq, guest_irq, set);
5312
5313 idx = srcu_read_lock(&kvm->irq_srcu);
5314 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5315 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5316
5317 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5318 struct vcpu_data vcpu_info;
5319 struct vcpu_svm *svm = NULL;
5320
5321 if (e->type != KVM_IRQ_ROUTING_MSI)
5322 continue;
5323
5324 /**
5325 * Here, we setup with legacy mode in the following cases:
5326 * 1. When cannot target interrupt to a specific vcpu.
5327 * 2. Unsetting posted interrupt.
5328 * 3. APIC virtialization is disabled for the vcpu.
5329 */
5330 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5331 kvm_vcpu_apicv_active(&svm->vcpu)) {
5332 struct amd_iommu_pi_data pi;
5333
5334 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005335 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5336 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005337 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005338 svm->vcpu.vcpu_id);
5339 pi.is_guest_mode = true;
5340 pi.vcpu_data = &vcpu_info;
5341 ret = irq_set_vcpu_affinity(host_irq, &pi);
5342
5343 /**
5344 * Here, we successfully setting up vcpu affinity in
5345 * IOMMU guest mode. Now, we need to store the posted
5346 * interrupt information in a per-vcpu ir_list so that
5347 * we can reference to them directly when we update vcpu
5348 * scheduling information in IOMMU irte.
5349 */
5350 if (!ret && pi.is_guest_mode)
5351 svm_ir_list_add(svm, &pi);
5352 } else {
5353 /* Use legacy mode in IRTE */
5354 struct amd_iommu_pi_data pi;
5355
5356 /**
5357 * Here, pi is used to:
5358 * - Tell IOMMU to use legacy mode for this interrupt.
5359 * - Retrieve ga_tag of prior interrupt remapping data.
5360 */
5361 pi.is_guest_mode = false;
5362 ret = irq_set_vcpu_affinity(host_irq, &pi);
5363
5364 /**
5365 * Check if the posted interrupt was previously
5366 * setup with the guest_mode by checking if the ga_tag
5367 * was cached. If so, we need to clean up the per-vcpu
5368 * ir_list.
5369 */
5370 if (!ret && pi.prev_ga_tag) {
5371 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5372 struct kvm_vcpu *vcpu;
5373
5374 vcpu = kvm_get_vcpu_by_id(kvm, id);
5375 if (vcpu)
5376 svm_ir_list_del(to_svm(vcpu), &pi);
5377 }
5378 }
5379
5380 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005381 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5382 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005383 vcpu_info.pi_desc_addr, set);
5384 }
5385
5386 if (ret < 0) {
5387 pr_err("%s: failed to update PI IRTE\n", __func__);
5388 goto out;
5389 }
5390 }
5391
5392 ret = 0;
5393out:
5394 srcu_read_unlock(&kvm->irq_srcu, idx);
5395 return ret;
5396}
5397
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005398static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005399{
5400 struct vcpu_svm *svm = to_svm(vcpu);
5401 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005402 int ret;
5403 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5404 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5405 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5406
5407 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005408}
5409
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005410static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5411{
5412 struct vcpu_svm *svm = to_svm(vcpu);
5413
5414 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5415}
5416
5417static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5418{
5419 struct vcpu_svm *svm = to_svm(vcpu);
5420
5421 if (masked) {
5422 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005423 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005424 } else {
5425 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005426 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005427 }
5428}
5429
Gleb Natapov78646122009-03-23 12:12:11 +02005430static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5431{
5432 struct vcpu_svm *svm = to_svm(vcpu);
5433 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005434 int ret;
5435
5436 if (!gif_set(svm) ||
5437 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5438 return 0;
5439
Avi Kivityf6e78472010-08-02 15:30:20 +03005440 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005441
Joerg Roedel20307532010-11-29 17:51:48 +01005442 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005443 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5444
5445 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005446}
5447
Jan Kiszkac9a79532014-03-07 20:03:15 +01005448static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005449{
Alexander Graf219b65d2009-06-15 15:21:25 +02005450 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005451
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005452 if (kvm_vcpu_apicv_active(vcpu))
5453 return;
5454
Joerg Roedele0231712010-02-24 18:59:10 +01005455 /*
5456 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5457 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5458 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005459 * we'll get the vintr intercept. However, if the vGIF feature is
5460 * enabled, the STGI interception will not occur. Enable the irq
5461 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005462 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005463 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005464 svm_set_vintr(svm);
5465 svm_inject_irq(svm, 0x0);
5466 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005467}
5468
Jan Kiszkac9a79532014-03-07 20:03:15 +01005469static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005470{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005471 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005472
Gleb Natapov44c11432009-05-11 13:35:52 +03005473 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5474 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005475 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005476
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005477 if (!gif_set(svm)) {
5478 if (vgif_enabled(svm))
5479 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005480 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005481 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005482
5483 if (svm->nested.exit_required)
5484 return; /* we're not going to run the guest yet */
5485
Joerg Roedele0231712010-02-24 18:59:10 +01005486 /*
5487 * Something prevents NMI from been injected. Single step over possible
5488 * problem (IRET or exception injection or interrupt shadow)
5489 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005490 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005491 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005492 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005493}
5494
Izik Eiduscbc94022007-10-25 00:29:55 +02005495static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5496{
5497 return 0;
5498}
5499
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005500static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5501{
5502 return 0;
5503}
5504
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005505static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005506{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005507 struct vcpu_svm *svm = to_svm(vcpu);
5508
5509 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5510 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5511 else
5512 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005513}
5514
Junaid Shahidfaff8752018-06-29 13:10:05 -07005515static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5516{
5517 struct vcpu_svm *svm = to_svm(vcpu);
5518
5519 invlpga(gva, svm->vmcb->control.asid);
5520}
5521
Avi Kivity04d2cc72007-09-10 18:10:54 +03005522static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5523{
5524}
5525
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005526static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5527{
5528 struct vcpu_svm *svm = to_svm(vcpu);
5529
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005530 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005531 return;
5532
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005533 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005534 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005535 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005536 }
5537}
5538
Joerg Roedel649d6862008-04-16 16:51:15 +02005539static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5540{
5541 struct vcpu_svm *svm = to_svm(vcpu);
5542 u64 cr8;
5543
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005544 if (svm_nested_virtualize_tpr(vcpu) ||
5545 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005546 return;
5547
Joerg Roedel649d6862008-04-16 16:51:15 +02005548 cr8 = kvm_get_cr8(vcpu);
5549 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5550 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5551}
5552
Gleb Natapov9222be12009-04-23 17:14:37 +03005553static void svm_complete_interrupts(struct vcpu_svm *svm)
5554{
5555 u8 vector;
5556 int type;
5557 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005558 unsigned int3_injected = svm->int3_injected;
5559
5560 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005561
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005562 /*
5563 * If we've made progress since setting HF_IRET_MASK, we've
5564 * executed an IRET and can allow NMI injection.
5565 */
5566 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5567 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005568 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005569 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5570 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005571
Gleb Natapov9222be12009-04-23 17:14:37 +03005572 svm->vcpu.arch.nmi_injected = false;
5573 kvm_clear_exception_queue(&svm->vcpu);
5574 kvm_clear_interrupt_queue(&svm->vcpu);
5575
5576 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5577 return;
5578
Avi Kivity3842d132010-07-27 12:30:24 +03005579 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5580
Gleb Natapov9222be12009-04-23 17:14:37 +03005581 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5582 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5583
5584 switch (type) {
5585 case SVM_EXITINTINFO_TYPE_NMI:
5586 svm->vcpu.arch.nmi_injected = true;
5587 break;
5588 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005589 /*
5590 * In case of software exceptions, do not reinject the vector,
5591 * but re-execute the instruction instead. Rewind RIP first
5592 * if we emulated INT3 before.
5593 */
5594 if (kvm_exception_is_soft(vector)) {
5595 if (vector == BP_VECTOR && int3_injected &&
5596 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5597 kvm_rip_write(&svm->vcpu,
5598 kvm_rip_read(&svm->vcpu) -
5599 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005600 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005601 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005602 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5603 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005604 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005605
5606 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005607 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005608 break;
5609 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005610 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005611 break;
5612 default:
5613 break;
5614 }
5615}
5616
Avi Kivityb463a6f2010-07-20 15:06:17 +03005617static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5618{
5619 struct vcpu_svm *svm = to_svm(vcpu);
5620 struct vmcb_control_area *control = &svm->vmcb->control;
5621
5622 control->exit_int_info = control->event_inj;
5623 control->exit_int_info_err = control->event_inj_err;
5624 control->event_inj = 0;
5625 svm_complete_interrupts(svm);
5626}
5627
Avi Kivity851ba692009-08-24 11:10:17 +03005628static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005629{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005630 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005631
Joerg Roedel2041a062010-04-22 12:33:08 +02005632 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5633 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5634 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5635
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005636 /*
5637 * A vmexit emulation is required before the vcpu can be executed
5638 * again.
5639 */
5640 if (unlikely(svm->nested.exit_required))
5641 return;
5642
Ladi Proseka12713c2017-06-21 09:07:00 +02005643 /*
5644 * Disable singlestep if we're injecting an interrupt/exception.
5645 * We don't want our modified rflags to be pushed on the stack where
5646 * we might not be able to easily reset them if we disabled NMI
5647 * singlestep later.
5648 */
5649 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5650 /*
5651 * Event injection happens before external interrupts cause a
5652 * vmexit and interrupts are disabled here, so smp_send_reschedule
5653 * is enough to force an immediate vmexit.
5654 */
5655 disable_nmi_singlestep(svm);
5656 smp_send_reschedule(vcpu->cpu);
5657 }
5658
Rusty Russelle756fc62007-07-30 20:07:08 +10005659 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005660
Joerg Roedel649d6862008-04-16 16:51:15 +02005661 sync_lapic_to_cr8(vcpu);
5662
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005663 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005664
Avi Kivity04d2cc72007-09-10 18:10:54 +03005665 clgi();
WANG Chao1811d972019-04-12 15:55:39 +08005666 kvm_load_guest_xcr0(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005667
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005668 if (lapic_in_kernel(vcpu) &&
5669 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5670 kvm_wait_lapic_expire(vcpu);
5671
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005672 /*
5673 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5674 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5675 * is no need to worry about the conditional branch over the wrmsr
5676 * being speculatively taken.
5677 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005678 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005679
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005680 local_irq_enable();
5681
Avi Kivity6aa8b732006-12-10 02:21:36 -08005682 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005683 "push %%" _ASM_BP "; \n\t"
5684 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5685 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5686 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5687 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5688 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5689 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005690#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005691 "mov %c[r8](%[svm]), %%r8 \n\t"
5692 "mov %c[r9](%[svm]), %%r9 \n\t"
5693 "mov %c[r10](%[svm]), %%r10 \n\t"
5694 "mov %c[r11](%[svm]), %%r11 \n\t"
5695 "mov %c[r12](%[svm]), %%r12 \n\t"
5696 "mov %c[r13](%[svm]), %%r13 \n\t"
5697 "mov %c[r14](%[svm]), %%r14 \n\t"
5698 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005699#endif
5700
Avi Kivity6aa8b732006-12-10 02:21:36 -08005701 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005702 "push %%" _ASM_AX " \n\t"
5703 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005704 __ex("vmload %%" _ASM_AX) "\n\t"
5705 __ex("vmrun %%" _ASM_AX) "\n\t"
5706 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005707 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708
5709 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005710 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5711 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5712 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5713 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5714 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5715 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005716#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005717 "mov %%r8, %c[r8](%[svm]) \n\t"
5718 "mov %%r9, %c[r9](%[svm]) \n\t"
5719 "mov %%r10, %c[r10](%[svm]) \n\t"
5720 "mov %%r11, %c[r11](%[svm]) \n\t"
5721 "mov %%r12, %c[r12](%[svm]) \n\t"
5722 "mov %%r13, %c[r13](%[svm]) \n\t"
5723 "mov %%r14, %c[r14](%[svm]) \n\t"
5724 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005725 /*
5726 * Clear host registers marked as clobbered to prevent
5727 * speculative use.
5728 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005729 "xor %%r8d, %%r8d \n\t"
5730 "xor %%r9d, %%r9d \n\t"
5731 "xor %%r10d, %%r10d \n\t"
5732 "xor %%r11d, %%r11d \n\t"
5733 "xor %%r12d, %%r12d \n\t"
5734 "xor %%r13d, %%r13d \n\t"
5735 "xor %%r14d, %%r14d \n\t"
5736 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005737#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005738 "xor %%ebx, %%ebx \n\t"
5739 "xor %%ecx, %%ecx \n\t"
5740 "xor %%edx, %%edx \n\t"
5741 "xor %%esi, %%esi \n\t"
5742 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005743 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005744 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005745 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005746 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005747 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5748 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5749 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5750 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5751 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5752 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005753#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005754 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5755 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5756 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5757 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5758 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5759 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5760 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5761 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005762#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005763 : "cc", "memory"
5764#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005765 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005766 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005767#else
5768 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005769#endif
5770 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005771
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005772 /* Eliminate branch target predictions from guest mode */
5773 vmexit_fill_RSB();
5774
5775#ifdef CONFIG_X86_64
5776 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5777#else
5778 loadsegment(fs, svm->host.fs);
5779#ifndef CONFIG_X86_32_LAZY_GS
5780 loadsegment(gs, svm->host.gs);
5781#endif
5782#endif
5783
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005784 /*
5785 * We do not use IBRS in the kernel. If this vCPU has used the
5786 * SPEC_CTRL MSR it may have left it on; save the value and
5787 * turn it off. This is much more efficient than blindly adding
5788 * it to the atomic save/restore list. Especially as the former
5789 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5790 *
5791 * For non-nested case:
5792 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5793 * save it.
5794 *
5795 * For nested case:
5796 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5797 * save it.
5798 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005799 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005800 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005801
Avi Kivity6aa8b732006-12-10 02:21:36 -08005802 reload_tss(vcpu);
5803
Avi Kivity56ba47d2007-11-07 17:14:18 +02005804 local_irq_disable();
5805
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005806 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5807
Avi Kivity13c34e02010-10-21 12:20:31 +02005808 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5809 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5810 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5811 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5812
Joerg Roedel3781c012011-01-14 16:45:02 +01005813 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005814 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005815
WANG Chao1811d972019-04-12 15:55:39 +08005816 kvm_put_guest_xcr0(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005817 stgi();
5818
5819 /* Any pending NMI will happen here */
5820
5821 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005822 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005823
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005824 sync_cr8_to_lapic(vcpu);
5825
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005826 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005827
Joerg Roedel38e5e922010-12-03 15:25:16 +01005828 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5829
Gleb Natapov631bc482010-10-14 11:22:52 +02005830 /* if exit due to PF check for async PF */
5831 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005832 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005833
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005834 if (npt_enabled) {
5835 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5836 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5837 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005838
5839 /*
5840 * We need to handle MC intercepts here before the vcpu has a chance to
5841 * change the physical cpu
5842 */
5843 if (unlikely(svm->vmcb->control.exit_code ==
5844 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5845 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005846
5847 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005848}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005849STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005850
Avi Kivity6aa8b732006-12-10 02:21:36 -08005851static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5852{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005853 struct vcpu_svm *svm = to_svm(vcpu);
5854
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005855 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005856 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857}
5858
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005859static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5860{
5861 struct vcpu_svm *svm = to_svm(vcpu);
5862
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005863 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005864 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005865
5866 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005867 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005868 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005869}
5870
Avi Kivity6aa8b732006-12-10 02:21:36 -08005871static int is_disabled(void)
5872{
Joerg Roedel6031a612007-06-22 12:29:50 +03005873 u64 vm_cr;
5874
5875 rdmsrl(MSR_VM_CR, vm_cr);
5876 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5877 return 1;
5878
Avi Kivity6aa8b732006-12-10 02:21:36 -08005879 return 0;
5880}
5881
Ingo Molnar102d8322007-02-19 14:37:47 +02005882static void
5883svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5884{
5885 /*
5886 * Patch in the VMMCALL instruction:
5887 */
5888 hypercall[0] = 0x0f;
5889 hypercall[1] = 0x01;
5890 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005891}
5892
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005893static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005894{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005895 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005896}
5897
Avi Kivity774ead32007-12-26 13:57:04 +02005898static bool svm_cpu_has_accelerated_tpr(void)
5899{
5900 return false;
5901}
5902
Tom Lendackybc226f02018-05-10 22:06:39 +02005903static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005904{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005905 switch (index) {
5906 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02005907 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005908 return false;
5909 default:
5910 break;
5911 }
5912
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005913 return true;
5914}
5915
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005916static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5917{
5918 return 0;
5919}
5920
Sheng Yang0e851882009-12-18 16:48:46 +08005921static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5922{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005923 struct vcpu_svm *svm = to_svm(vcpu);
5924
5925 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005926 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005927
5928 if (!kvm_vcpu_apicv_active(vcpu))
5929 return;
5930
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005931 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005932}
5933
Paolo Bonzini50896de2019-08-15 09:17:31 +02005934#define F(x) bit(X86_FEATURE_##x)
5935
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005936static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5937{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005938 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005939 case 0x1:
5940 if (avic)
5941 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5942 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005943 case 0x80000001:
5944 if (nested)
5945 entry->ecx |= (1 << 2); /* Set SVM bit */
5946 break;
Paolo Bonzini50896de2019-08-15 09:17:31 +02005947 case 0x80000008:
5948 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) ||
5949 boot_cpu_has(X86_FEATURE_AMD_SSBD))
5950 entry->ebx |= F(VIRT_SSBD);
5951 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005952 case 0x8000000A:
5953 entry->eax = 1; /* SVM revision 1 */
5954 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5955 ASID emulation to nested SVM */
5956 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005957 entry->edx = 0; /* Per default do not support any
5958 additional features */
5959
5960 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005961 if (boot_cpu_has(X86_FEATURE_NRIPS))
Paolo Bonzini50896de2019-08-15 09:17:31 +02005962 entry->edx |= F(NRIPS);
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005963
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005964 /* Support NPT for the guest if enabled */
5965 if (npt_enabled)
Paolo Bonzini50896de2019-08-15 09:17:31 +02005966 entry->edx |= F(NPT);
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005967
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005968 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005969 case 0x8000001F:
5970 /* Support memory encryption cpuid if host supports it */
5971 if (boot_cpu_has(X86_FEATURE_SEV))
5972 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5973 &entry->ecx, &entry->edx);
5974
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005975 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005976}
5977
Sheng Yang17cc3932010-01-05 19:02:27 +08005978static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005979{
Sheng Yang17cc3932010-01-05 19:02:27 +08005980 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005981}
5982
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005983static bool svm_rdtscp_supported(void)
5984{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005985 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005986}
5987
Mao, Junjiead756a12012-07-02 01:18:48 +00005988static bool svm_invpcid_supported(void)
5989{
5990 return false;
5991}
5992
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005993static bool svm_mpx_supported(void)
5994{
5995 return false;
5996}
5997
Wanpeng Li55412b22014-12-02 19:21:30 +08005998static bool svm_xsaves_supported(void)
5999{
6000 return false;
6001}
6002
Paolo Bonzini66336ca2016-07-12 10:36:41 +02006003static bool svm_umip_emulated(void)
6004{
6005 return false;
6006}
6007
Chao Peng86f52012018-10-24 16:05:11 +08006008static bool svm_pt_supported(void)
6009{
6010 return false;
6011}
6012
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006013static bool svm_has_wbinvd_exit(void)
6014{
6015 return true;
6016}
6017
Joerg Roedel80612522011-04-04 12:39:33 +02006018#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006019 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006020#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006021 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006022#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006023 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006024
Mathias Krause09941fb2012-08-30 01:30:20 +02006025static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006026 u32 exit_code;
6027 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006028} x86_intercept_map[] = {
6029 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6030 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6031 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6032 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6033 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006034 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6035 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006036 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6037 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6038 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6039 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6040 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6041 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6042 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6043 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006044 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6045 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6046 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6047 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6048 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6049 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6050 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6051 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006052 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6053 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6054 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006055 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6056 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6057 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6058 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6059 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6060 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6061 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6062 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6063 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006064 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6065 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6066 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6067 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6068 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6069 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6070 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006071 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6072 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6073 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6074 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006075};
6076
Joerg Roedel80612522011-04-04 12:39:33 +02006077#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006078#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006079#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006080
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006081static int svm_check_intercept(struct kvm_vcpu *vcpu,
6082 struct x86_instruction_info *info,
6083 enum x86_intercept_stage stage)
6084{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006085 struct vcpu_svm *svm = to_svm(vcpu);
6086 int vmexit, ret = X86EMUL_CONTINUE;
6087 struct __x86_intercept icpt_info;
6088 struct vmcb *vmcb = svm->vmcb;
6089
6090 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6091 goto out;
6092
6093 icpt_info = x86_intercept_map[info->intercept];
6094
Avi Kivity40e19b52011-04-21 12:35:41 +03006095 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006096 goto out;
6097
6098 switch (icpt_info.exit_code) {
6099 case SVM_EXIT_READ_CR0:
6100 if (info->intercept == x86_intercept_cr_read)
6101 icpt_info.exit_code += info->modrm_reg;
6102 break;
6103 case SVM_EXIT_WRITE_CR0: {
6104 unsigned long cr0, val;
6105 u64 intercept;
6106
6107 if (info->intercept == x86_intercept_cr_write)
6108 icpt_info.exit_code += info->modrm_reg;
6109
Jan Kiszka62baf442014-06-29 21:55:53 +02006110 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6111 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006112 break;
6113
6114 intercept = svm->nested.intercept;
6115
6116 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6117 break;
6118
6119 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6120 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6121
6122 if (info->intercept == x86_intercept_lmsw) {
6123 cr0 &= 0xfUL;
6124 val &= 0xfUL;
6125 /* lmsw can't clear PE - catch this here */
6126 if (cr0 & X86_CR0_PE)
6127 val |= X86_CR0_PE;
6128 }
6129
6130 if (cr0 ^ val)
6131 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6132
6133 break;
6134 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006135 case SVM_EXIT_READ_DR0:
6136 case SVM_EXIT_WRITE_DR0:
6137 icpt_info.exit_code += info->modrm_reg;
6138 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006139 case SVM_EXIT_MSR:
6140 if (info->intercept == x86_intercept_wrmsr)
6141 vmcb->control.exit_info_1 = 1;
6142 else
6143 vmcb->control.exit_info_1 = 0;
6144 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006145 case SVM_EXIT_PAUSE:
6146 /*
6147 * We get this for NOP only, but pause
6148 * is rep not, check this here
6149 */
6150 if (info->rep_prefix != REPE_PREFIX)
6151 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006152 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006153 case SVM_EXIT_IOIO: {
6154 u64 exit_info;
6155 u32 bytes;
6156
Joerg Roedelf6511932011-04-04 12:39:35 +02006157 if (info->intercept == x86_intercept_in ||
6158 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006159 exit_info = ((info->src_val & 0xffff) << 16) |
6160 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006161 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006162 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006163 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006164 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006165 }
6166
6167 if (info->intercept == x86_intercept_outs ||
6168 info->intercept == x86_intercept_ins)
6169 exit_info |= SVM_IOIO_STR_MASK;
6170
6171 if (info->rep_prefix)
6172 exit_info |= SVM_IOIO_REP_MASK;
6173
6174 bytes = min(bytes, 4u);
6175
6176 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6177
6178 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6179
6180 vmcb->control.exit_info_1 = exit_info;
6181 vmcb->control.exit_info_2 = info->next_rip;
6182
6183 break;
6184 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006185 default:
6186 break;
6187 }
6188
Bandan Dasf1047652015-06-11 02:05:33 -04006189 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6190 if (static_cpu_has(X86_FEATURE_NRIPS))
6191 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006192 vmcb->control.exit_code = icpt_info.exit_code;
6193 vmexit = nested_svm_exit_handled(svm);
6194
6195 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6196 : X86EMUL_CONTINUE;
6197
6198out:
6199 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006200}
6201
Sean Christopherson95b5a482019-04-19 22:50:59 -07006202static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006203{
Sean Christophersond7a08882019-07-10 09:07:34 -07006204
Yang Zhanga547c6d2013-04-11 19:25:10 +08006205}
6206
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006207static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6208{
Babu Moger8566ac82018-03-16 16:37:26 -04006209 if (pause_filter_thresh)
6210 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006211}
6212
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006213static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6214{
6215 if (avic_handle_apic_id_update(vcpu) != 0)
6216 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006217 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006218 avic_handle_ldr_update(vcpu);
6219}
6220
Borislav Petkov74f16902017-03-26 23:51:24 +02006221static void svm_setup_mce(struct kvm_vcpu *vcpu)
6222{
6223 /* [63:9] are reserved. */
6224 vcpu->arch.mcg_cap &= 0x1ff;
6225}
6226
Ladi Prosek72d7b372017-10-11 16:54:41 +02006227static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6228{
Ladi Prosek05cade72017-10-11 16:54:45 +02006229 struct vcpu_svm *svm = to_svm(vcpu);
6230
6231 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6232 if (!gif_set(svm))
6233 return 0;
6234
6235 if (is_guest_mode(&svm->vcpu) &&
6236 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6237 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6238 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6239 svm->nested.exit_required = true;
6240 return 0;
6241 }
6242
Ladi Prosek72d7b372017-10-11 16:54:41 +02006243 return 1;
6244}
6245
Ladi Prosek0234bf82017-10-11 16:54:40 +02006246static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6247{
Ladi Prosek05cade72017-10-11 16:54:45 +02006248 struct vcpu_svm *svm = to_svm(vcpu);
6249 int ret;
6250
6251 if (is_guest_mode(vcpu)) {
6252 /* FED8h - SVM Guest */
6253 put_smstate(u64, smstate, 0x7ed8, 1);
6254 /* FEE0h - SVM Guest VMCB Physical Address */
6255 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6256
6257 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6258 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6259 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6260
6261 ret = nested_svm_vmexit(svm);
6262 if (ret)
6263 return ret;
6264 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006265 return 0;
6266}
6267
Sean Christophersoned193212019-04-02 08:03:09 -07006268static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006269{
Ladi Prosek05cade72017-10-11 16:54:45 +02006270 struct vcpu_svm *svm = to_svm(vcpu);
6271 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006272 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006273 u64 guest;
6274 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006275
Sean Christophersoned193212019-04-02 08:03:09 -07006276 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6277 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006278
Sean Christophersoned193212019-04-02 08:03:09 -07006279 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006280 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006281 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006282 nested_vmcb = map.hva;
6283 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006284 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006285 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006286}
6287
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006288static int enable_smi_window(struct kvm_vcpu *vcpu)
6289{
6290 struct vcpu_svm *svm = to_svm(vcpu);
6291
6292 if (!gif_set(svm)) {
6293 if (vgif_enabled(svm))
6294 set_intercept(svm, INTERCEPT_STGI);
6295 /* STGI will cause a vm exit */
6296 return 1;
6297 }
6298 return 0;
6299}
6300
Brijesh Singh1654efc2017-12-04 10:57:34 -06006301static int sev_asid_new(void)
6302{
6303 int pos;
6304
6305 /*
6306 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6307 */
6308 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6309 if (pos >= max_sev_asid)
6310 return -EBUSY;
6311
6312 set_bit(pos, sev_asid_bitmap);
6313 return pos + 1;
6314}
6315
6316static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6317{
Sean Christopherson81811c12018-03-20 12:17:21 -07006318 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006319 int asid, ret;
6320
6321 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006322 if (unlikely(sev->active))
6323 return ret;
6324
Brijesh Singh1654efc2017-12-04 10:57:34 -06006325 asid = sev_asid_new();
6326 if (asid < 0)
6327 return ret;
6328
6329 ret = sev_platform_init(&argp->error);
6330 if (ret)
6331 goto e_free;
6332
6333 sev->active = true;
6334 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006335 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006336
6337 return 0;
6338
6339e_free:
6340 __sev_asid_free(asid);
6341 return ret;
6342}
6343
Brijesh Singh59414c92017-12-04 10:57:35 -06006344static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6345{
6346 struct sev_data_activate *data;
6347 int asid = sev_get_asid(kvm);
6348 int ret;
6349
6350 wbinvd_on_all_cpus();
6351
6352 ret = sev_guest_df_flush(error);
6353 if (ret)
6354 return ret;
6355
Ben Gardon1ec69642019-02-11 11:02:51 -08006356 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006357 if (!data)
6358 return -ENOMEM;
6359
6360 /* activate ASID on the given handle */
6361 data->handle = handle;
6362 data->asid = asid;
6363 ret = sev_guest_activate(data, error);
6364 kfree(data);
6365
6366 return ret;
6367}
6368
Brijesh Singh89c50582017-12-04 10:57:35 -06006369static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006370{
6371 struct fd f;
6372 int ret;
6373
6374 f = fdget(fd);
6375 if (!f.file)
6376 return -EBADF;
6377
6378 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6379
6380 fdput(f);
6381 return ret;
6382}
6383
Brijesh Singh89c50582017-12-04 10:57:35 -06006384static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6385{
Sean Christopherson81811c12018-03-20 12:17:21 -07006386 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006387
6388 return __sev_issue_cmd(sev->fd, id, data, error);
6389}
6390
Brijesh Singh59414c92017-12-04 10:57:35 -06006391static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6392{
Sean Christopherson81811c12018-03-20 12:17:21 -07006393 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006394 struct sev_data_launch_start *start;
6395 struct kvm_sev_launch_start params;
6396 void *dh_blob, *session_blob;
6397 int *error = &argp->error;
6398 int ret;
6399
6400 if (!sev_guest(kvm))
6401 return -ENOTTY;
6402
6403 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6404 return -EFAULT;
6405
Ben Gardon1ec69642019-02-11 11:02:51 -08006406 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006407 if (!start)
6408 return -ENOMEM;
6409
6410 dh_blob = NULL;
6411 if (params.dh_uaddr) {
6412 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6413 if (IS_ERR(dh_blob)) {
6414 ret = PTR_ERR(dh_blob);
6415 goto e_free;
6416 }
6417
6418 start->dh_cert_address = __sme_set(__pa(dh_blob));
6419 start->dh_cert_len = params.dh_len;
6420 }
6421
6422 session_blob = NULL;
6423 if (params.session_uaddr) {
6424 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6425 if (IS_ERR(session_blob)) {
6426 ret = PTR_ERR(session_blob);
6427 goto e_free_dh;
6428 }
6429
6430 start->session_address = __sme_set(__pa(session_blob));
6431 start->session_len = params.session_len;
6432 }
6433
6434 start->handle = params.handle;
6435 start->policy = params.policy;
6436
6437 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006438 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006439 if (ret)
6440 goto e_free_session;
6441
6442 /* Bind ASID to this guest */
6443 ret = sev_bind_asid(kvm, start->handle, error);
6444 if (ret)
6445 goto e_free_session;
6446
6447 /* return handle to userspace */
6448 params.handle = start->handle;
6449 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6450 sev_unbind_asid(kvm, start->handle);
6451 ret = -EFAULT;
6452 goto e_free_session;
6453 }
6454
6455 sev->handle = start->handle;
6456 sev->fd = argp->sev_fd;
6457
6458e_free_session:
6459 kfree(session_blob);
6460e_free_dh:
6461 kfree(dh_blob);
6462e_free:
6463 kfree(start);
6464 return ret;
6465}
6466
David Rientjesede885e2019-03-19 15:19:56 -07006467static unsigned long get_num_contig_pages(unsigned long idx,
6468 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006469{
6470 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006471 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006472
6473 /* find the number of contiguous pages starting from idx */
6474 paddr = __sme_page_pa(inpages[idx]);
6475 while (i < npages) {
6476 next_paddr = __sme_page_pa(inpages[i++]);
6477 if ((paddr + PAGE_SIZE) == next_paddr) {
6478 pages++;
6479 paddr = next_paddr;
6480 continue;
6481 }
6482 break;
6483 }
6484
6485 return pages;
6486}
6487
6488static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6489{
David Rientjesede885e2019-03-19 15:19:56 -07006490 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006491 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006492 struct kvm_sev_launch_update_data params;
6493 struct sev_data_launch_update_data *data;
6494 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006495 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006496
6497 if (!sev_guest(kvm))
6498 return -ENOTTY;
6499
6500 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6501 return -EFAULT;
6502
Ben Gardon1ec69642019-02-11 11:02:51 -08006503 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006504 if (!data)
6505 return -ENOMEM;
6506
6507 vaddr = params.uaddr;
6508 size = params.len;
6509 vaddr_end = vaddr + size;
6510
6511 /* Lock the user memory. */
6512 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6513 if (!inpages) {
6514 ret = -ENOMEM;
6515 goto e_free;
6516 }
6517
6518 /*
6519 * The LAUNCH_UPDATE command will perform in-place encryption of the
6520 * memory content (i.e it will write the same memory region with C=1).
6521 * It's possible that the cache may contain the data with C=0, i.e.,
6522 * unencrypted so invalidate it first.
6523 */
6524 sev_clflush_pages(inpages, npages);
6525
6526 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6527 int offset, len;
6528
6529 /*
6530 * If the user buffer is not page-aligned, calculate the offset
6531 * within the page.
6532 */
6533 offset = vaddr & (PAGE_SIZE - 1);
6534
6535 /* Calculate the number of pages that can be encrypted in one go. */
6536 pages = get_num_contig_pages(i, inpages, npages);
6537
6538 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6539
6540 data->handle = sev->handle;
6541 data->len = len;
6542 data->address = __sme_page_pa(inpages[i]) + offset;
6543 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6544 if (ret)
6545 goto e_unpin;
6546
6547 size -= len;
6548 next_vaddr = vaddr + len;
6549 }
6550
6551e_unpin:
6552 /* content of memory is updated, mark pages dirty */
6553 for (i = 0; i < npages; i++) {
6554 set_page_dirty_lock(inpages[i]);
6555 mark_page_accessed(inpages[i]);
6556 }
6557 /* unlock the user pages */
6558 sev_unpin_memory(kvm, inpages, npages);
6559e_free:
6560 kfree(data);
6561 return ret;
6562}
6563
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006564static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6565{
Brijesh Singh3e233382018-02-23 12:36:50 -06006566 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006567 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006568 struct sev_data_launch_measure *data;
6569 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006570 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006571 void *blob = NULL;
6572 int ret;
6573
6574 if (!sev_guest(kvm))
6575 return -ENOTTY;
6576
Brijesh Singh3e233382018-02-23 12:36:50 -06006577 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006578 return -EFAULT;
6579
Ben Gardon1ec69642019-02-11 11:02:51 -08006580 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006581 if (!data)
6582 return -ENOMEM;
6583
6584 /* User wants to query the blob length */
6585 if (!params.len)
6586 goto cmd;
6587
Brijesh Singh3e233382018-02-23 12:36:50 -06006588 p = (void __user *)(uintptr_t)params.uaddr;
6589 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006590 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6591 ret = -EINVAL;
6592 goto e_free;
6593 }
6594
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006595 ret = -ENOMEM;
6596 blob = kmalloc(params.len, GFP_KERNEL);
6597 if (!blob)
6598 goto e_free;
6599
6600 data->address = __psp_pa(blob);
6601 data->len = params.len;
6602 }
6603
6604cmd:
6605 data->handle = sev->handle;
6606 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6607
6608 /*
6609 * If we query the session length, FW responded with expected data.
6610 */
6611 if (!params.len)
6612 goto done;
6613
6614 if (ret)
6615 goto e_free_blob;
6616
6617 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006618 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006619 ret = -EFAULT;
6620 }
6621
6622done:
6623 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006624 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006625 ret = -EFAULT;
6626e_free_blob:
6627 kfree(blob);
6628e_free:
6629 kfree(data);
6630 return ret;
6631}
6632
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006633static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6634{
Sean Christopherson81811c12018-03-20 12:17:21 -07006635 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006636 struct sev_data_launch_finish *data;
6637 int ret;
6638
6639 if (!sev_guest(kvm))
6640 return -ENOTTY;
6641
Ben Gardon1ec69642019-02-11 11:02:51 -08006642 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006643 if (!data)
6644 return -ENOMEM;
6645
6646 data->handle = sev->handle;
6647 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6648
6649 kfree(data);
6650 return ret;
6651}
6652
Brijesh Singh255d9e72017-12-04 10:57:37 -06006653static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6654{
Sean Christopherson81811c12018-03-20 12:17:21 -07006655 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006656 struct kvm_sev_guest_status params;
6657 struct sev_data_guest_status *data;
6658 int ret;
6659
6660 if (!sev_guest(kvm))
6661 return -ENOTTY;
6662
Ben Gardon1ec69642019-02-11 11:02:51 -08006663 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006664 if (!data)
6665 return -ENOMEM;
6666
6667 data->handle = sev->handle;
6668 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6669 if (ret)
6670 goto e_free;
6671
6672 params.policy = data->policy;
6673 params.state = data->state;
6674 params.handle = data->handle;
6675
6676 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6677 ret = -EFAULT;
6678e_free:
6679 kfree(data);
6680 return ret;
6681}
6682
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006683static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6684 unsigned long dst, int size,
6685 int *error, bool enc)
6686{
Sean Christopherson81811c12018-03-20 12:17:21 -07006687 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006688 struct sev_data_dbg *data;
6689 int ret;
6690
Ben Gardon1ec69642019-02-11 11:02:51 -08006691 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006692 if (!data)
6693 return -ENOMEM;
6694
6695 data->handle = sev->handle;
6696 data->dst_addr = dst;
6697 data->src_addr = src;
6698 data->len = size;
6699
6700 ret = sev_issue_cmd(kvm,
6701 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6702 data, error);
6703 kfree(data);
6704 return ret;
6705}
6706
6707static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6708 unsigned long dst_paddr, int sz, int *err)
6709{
6710 int offset;
6711
6712 /*
6713 * Its safe to read more than we are asked, caller should ensure that
6714 * destination has enough space.
6715 */
6716 src_paddr = round_down(src_paddr, 16);
6717 offset = src_paddr & 15;
6718 sz = round_up(sz + offset, 16);
6719
6720 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6721}
6722
6723static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6724 unsigned long __user dst_uaddr,
6725 unsigned long dst_paddr,
6726 int size, int *err)
6727{
6728 struct page *tpage = NULL;
6729 int ret, offset;
6730
6731 /* if inputs are not 16-byte then use intermediate buffer */
6732 if (!IS_ALIGNED(dst_paddr, 16) ||
6733 !IS_ALIGNED(paddr, 16) ||
6734 !IS_ALIGNED(size, 16)) {
6735 tpage = (void *)alloc_page(GFP_KERNEL);
6736 if (!tpage)
6737 return -ENOMEM;
6738
6739 dst_paddr = __sme_page_pa(tpage);
6740 }
6741
6742 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6743 if (ret)
6744 goto e_free;
6745
6746 if (tpage) {
6747 offset = paddr & 15;
6748 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6749 page_address(tpage) + offset, size))
6750 ret = -EFAULT;
6751 }
6752
6753e_free:
6754 if (tpage)
6755 __free_page(tpage);
6756
6757 return ret;
6758}
6759
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006760static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6761 unsigned long __user vaddr,
6762 unsigned long dst_paddr,
6763 unsigned long __user dst_vaddr,
6764 int size, int *error)
6765{
6766 struct page *src_tpage = NULL;
6767 struct page *dst_tpage = NULL;
6768 int ret, len = size;
6769
6770 /* If source buffer is not aligned then use an intermediate buffer */
6771 if (!IS_ALIGNED(vaddr, 16)) {
6772 src_tpage = alloc_page(GFP_KERNEL);
6773 if (!src_tpage)
6774 return -ENOMEM;
6775
6776 if (copy_from_user(page_address(src_tpage),
6777 (void __user *)(uintptr_t)vaddr, size)) {
6778 __free_page(src_tpage);
6779 return -EFAULT;
6780 }
6781
6782 paddr = __sme_page_pa(src_tpage);
6783 }
6784
6785 /*
6786 * If destination buffer or length is not aligned then do read-modify-write:
6787 * - decrypt destination in an intermediate buffer
6788 * - copy the source buffer in an intermediate buffer
6789 * - use the intermediate buffer as source buffer
6790 */
6791 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6792 int dst_offset;
6793
6794 dst_tpage = alloc_page(GFP_KERNEL);
6795 if (!dst_tpage) {
6796 ret = -ENOMEM;
6797 goto e_free;
6798 }
6799
6800 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6801 __sme_page_pa(dst_tpage), size, error);
6802 if (ret)
6803 goto e_free;
6804
6805 /*
6806 * If source is kernel buffer then use memcpy() otherwise
6807 * copy_from_user().
6808 */
6809 dst_offset = dst_paddr & 15;
6810
6811 if (src_tpage)
6812 memcpy(page_address(dst_tpage) + dst_offset,
6813 page_address(src_tpage), size);
6814 else {
6815 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6816 (void __user *)(uintptr_t)vaddr, size)) {
6817 ret = -EFAULT;
6818 goto e_free;
6819 }
6820 }
6821
6822 paddr = __sme_page_pa(dst_tpage);
6823 dst_paddr = round_down(dst_paddr, 16);
6824 len = round_up(size, 16);
6825 }
6826
6827 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6828
6829e_free:
6830 if (src_tpage)
6831 __free_page(src_tpage);
6832 if (dst_tpage)
6833 __free_page(dst_tpage);
6834 return ret;
6835}
6836
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006837static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6838{
6839 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006840 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006841 struct page **src_p, **dst_p;
6842 struct kvm_sev_dbg debug;
6843 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006844 unsigned int size;
6845 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006846
6847 if (!sev_guest(kvm))
6848 return -ENOTTY;
6849
6850 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6851 return -EFAULT;
6852
David Rientjesb86bc282019-03-25 11:47:31 -07006853 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6854 return -EINVAL;
6855 if (!debug.dst_uaddr)
6856 return -EINVAL;
6857
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006858 vaddr = debug.src_uaddr;
6859 size = debug.len;
6860 vaddr_end = vaddr + size;
6861 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006862
6863 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6864 int len, s_off, d_off;
6865
6866 /* lock userspace source and destination page */
6867 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6868 if (!src_p)
6869 return -EFAULT;
6870
6871 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6872 if (!dst_p) {
6873 sev_unpin_memory(kvm, src_p, n);
6874 return -EFAULT;
6875 }
6876
6877 /*
6878 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6879 * memory content (i.e it will write the same memory region with C=1).
6880 * It's possible that the cache may contain the data with C=0, i.e.,
6881 * unencrypted so invalidate it first.
6882 */
6883 sev_clflush_pages(src_p, 1);
6884 sev_clflush_pages(dst_p, 1);
6885
6886 /*
6887 * Since user buffer may not be page aligned, calculate the
6888 * offset within the page.
6889 */
6890 s_off = vaddr & ~PAGE_MASK;
6891 d_off = dst_vaddr & ~PAGE_MASK;
6892 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6893
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006894 if (dec)
6895 ret = __sev_dbg_decrypt_user(kvm,
6896 __sme_page_pa(src_p[0]) + s_off,
6897 dst_vaddr,
6898 __sme_page_pa(dst_p[0]) + d_off,
6899 len, &argp->error);
6900 else
6901 ret = __sev_dbg_encrypt_user(kvm,
6902 __sme_page_pa(src_p[0]) + s_off,
6903 vaddr,
6904 __sme_page_pa(dst_p[0]) + d_off,
6905 dst_vaddr,
6906 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006907
David Rientjesb86bc282019-03-25 11:47:31 -07006908 sev_unpin_memory(kvm, src_p, n);
6909 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006910
6911 if (ret)
6912 goto err;
6913
6914 next_vaddr = vaddr + len;
6915 dst_vaddr = dst_vaddr + len;
6916 size -= len;
6917 }
6918err:
6919 return ret;
6920}
6921
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006922static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6923{
Sean Christopherson81811c12018-03-20 12:17:21 -07006924 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006925 struct sev_data_launch_secret *data;
6926 struct kvm_sev_launch_secret params;
6927 struct page **pages;
6928 void *blob, *hdr;
6929 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006930 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006931
6932 if (!sev_guest(kvm))
6933 return -ENOTTY;
6934
6935 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6936 return -EFAULT;
6937
6938 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6939 if (!pages)
6940 return -ENOMEM;
6941
6942 /*
6943 * The secret must be copied into contiguous memory region, lets verify
6944 * that userspace memory pages are contiguous before we issue command.
6945 */
6946 if (get_num_contig_pages(0, pages, n) != n) {
6947 ret = -EINVAL;
6948 goto e_unpin_memory;
6949 }
6950
6951 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08006952 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006953 if (!data)
6954 goto e_unpin_memory;
6955
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006956 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6957 data->guest_address = __sme_page_pa(pages[0]) + offset;
6958 data->guest_len = params.guest_len;
6959
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006960 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6961 if (IS_ERR(blob)) {
6962 ret = PTR_ERR(blob);
6963 goto e_free;
6964 }
6965
6966 data->trans_address = __psp_pa(blob);
6967 data->trans_len = params.trans_len;
6968
6969 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6970 if (IS_ERR(hdr)) {
6971 ret = PTR_ERR(hdr);
6972 goto e_free_blob;
6973 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006974 data->hdr_address = __psp_pa(hdr);
6975 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006976
6977 data->handle = sev->handle;
6978 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6979
6980 kfree(hdr);
6981
6982e_free_blob:
6983 kfree(blob);
6984e_free:
6985 kfree(data);
6986e_unpin_memory:
6987 sev_unpin_memory(kvm, pages, n);
6988 return ret;
6989}
6990
Brijesh Singh1654efc2017-12-04 10:57:34 -06006991static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6992{
6993 struct kvm_sev_cmd sev_cmd;
6994 int r;
6995
6996 if (!svm_sev_enabled())
6997 return -ENOTTY;
6998
6999 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7000 return -EFAULT;
7001
7002 mutex_lock(&kvm->lock);
7003
7004 switch (sev_cmd.id) {
7005 case KVM_SEV_INIT:
7006 r = sev_guest_init(kvm, &sev_cmd);
7007 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007008 case KVM_SEV_LAUNCH_START:
7009 r = sev_launch_start(kvm, &sev_cmd);
7010 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007011 case KVM_SEV_LAUNCH_UPDATE_DATA:
7012 r = sev_launch_update_data(kvm, &sev_cmd);
7013 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007014 case KVM_SEV_LAUNCH_MEASURE:
7015 r = sev_launch_measure(kvm, &sev_cmd);
7016 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007017 case KVM_SEV_LAUNCH_FINISH:
7018 r = sev_launch_finish(kvm, &sev_cmd);
7019 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007020 case KVM_SEV_GUEST_STATUS:
7021 r = sev_guest_status(kvm, &sev_cmd);
7022 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007023 case KVM_SEV_DBG_DECRYPT:
7024 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7025 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007026 case KVM_SEV_DBG_ENCRYPT:
7027 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7028 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007029 case KVM_SEV_LAUNCH_SECRET:
7030 r = sev_launch_secret(kvm, &sev_cmd);
7031 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007032 default:
7033 r = -EINVAL;
7034 goto out;
7035 }
7036
7037 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7038 r = -EFAULT;
7039
7040out:
7041 mutex_unlock(&kvm->lock);
7042 return r;
7043}
7044
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007045static int svm_register_enc_region(struct kvm *kvm,
7046 struct kvm_enc_region *range)
7047{
Sean Christopherson81811c12018-03-20 12:17:21 -07007048 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007049 struct enc_region *region;
7050 int ret = 0;
7051
7052 if (!sev_guest(kvm))
7053 return -ENOTTY;
7054
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007055 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7056 return -EINVAL;
7057
Ben Gardon1ec69642019-02-11 11:02:51 -08007058 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007059 if (!region)
7060 return -ENOMEM;
7061
7062 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7063 if (!region->pages) {
7064 ret = -ENOMEM;
7065 goto e_free;
7066 }
7067
7068 /*
7069 * The guest may change the memory encryption attribute from C=0 -> C=1
7070 * or vice versa for this memory range. Lets make sure caches are
7071 * flushed to ensure that guest data gets written into memory with
7072 * correct C-bit.
7073 */
7074 sev_clflush_pages(region->pages, region->npages);
7075
7076 region->uaddr = range->addr;
7077 region->size = range->size;
7078
7079 mutex_lock(&kvm->lock);
7080 list_add_tail(&region->list, &sev->regions_list);
7081 mutex_unlock(&kvm->lock);
7082
7083 return ret;
7084
7085e_free:
7086 kfree(region);
7087 return ret;
7088}
7089
7090static struct enc_region *
7091find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7092{
Sean Christopherson81811c12018-03-20 12:17:21 -07007093 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007094 struct list_head *head = &sev->regions_list;
7095 struct enc_region *i;
7096
7097 list_for_each_entry(i, head, list) {
7098 if (i->uaddr == range->addr &&
7099 i->size == range->size)
7100 return i;
7101 }
7102
7103 return NULL;
7104}
7105
7106
7107static int svm_unregister_enc_region(struct kvm *kvm,
7108 struct kvm_enc_region *range)
7109{
7110 struct enc_region *region;
7111 int ret;
7112
7113 mutex_lock(&kvm->lock);
7114
7115 if (!sev_guest(kvm)) {
7116 ret = -ENOTTY;
7117 goto failed;
7118 }
7119
7120 region = find_enc_region(kvm, range);
7121 if (!region) {
7122 ret = -EINVAL;
7123 goto failed;
7124 }
7125
7126 __unregister_enc_region_locked(kvm, region);
7127
7128 mutex_unlock(&kvm->lock);
7129 return 0;
7130
7131failed:
7132 mutex_unlock(&kvm->lock);
7133 return ret;
7134}
7135
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007136static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
7137{
7138 /* Not supported */
7139 return 0;
7140}
7141
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007142static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
7143 uint16_t *vmcs_version)
7144{
7145 /* Intel-only feature */
7146 return -ENODEV;
7147}
7148
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007149static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7150{
Liran Alon118154b2019-07-17 02:56:58 +03007151 unsigned long cr4 = kvm_read_cr4(vcpu);
7152 bool smep = cr4 & X86_CR4_SMEP;
7153 bool smap = cr4 & X86_CR4_SMAP;
7154 bool is_user = svm_get_cpl(vcpu) == 3;
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007155
7156 /*
Liran Alon118154b2019-07-17 02:56:58 +03007157 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7158 *
7159 * Errata:
7160 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7161 * possible that CPU microcode implementing DecodeAssist will fail
7162 * to read bytes of instruction which caused #NPF. In this case,
7163 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7164 * return 0 instead of the correct guest instruction bytes.
7165 *
7166 * This happens because CPU microcode reading instruction bytes
7167 * uses a special opcode which attempts to read data using CPL=0
7168 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7169 * fault, it gives up and returns no instruction bytes.
7170 *
7171 * Detection:
7172 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7173 * returned 0 in GuestIntrBytes field of the VMCB.
7174 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7175 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7176 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7177 * a SMEP fault instead of #NPF).
7178 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7179 * As most guests enable SMAP if they have also enabled SMEP, use above
7180 * logic in order to attempt minimize false-positive of detecting errata
7181 * while still preserving all cases semantic correctness.
7182 *
7183 * Workaround:
7184 * To determine what instruction the guest was executing, the hypervisor
7185 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007186 *
7187 * In non SEV guest, hypervisor will be able to read the guest
7188 * memory to decode the instruction pointer when insn_len is zero
7189 * so we return true to indicate that decoding is possible.
7190 *
7191 * But in the SEV guest, the guest memory is encrypted with the
7192 * guest specific key and hypervisor will not be able to decode the
7193 * instruction pointer so we will not able to workaround it. Lets
7194 * print the error and request to kill the guest.
7195 */
Liran Alon118154b2019-07-17 02:56:58 +03007196 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007197 if (!sev_guest(vcpu->kvm))
7198 return true;
7199
Liran Alon118154b2019-07-17 02:56:58 +03007200 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007201 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7202 }
7203
7204 return false;
7205}
7206
Kees Cook404f6aa2016-08-08 16:29:06 -07007207static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007208 .cpu_has_kvm_support = has_svm,
7209 .disabled_by_bios = is_disabled,
7210 .hardware_setup = svm_hardware_setup,
7211 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007212 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007213 .hardware_enable = svm_hardware_enable,
7214 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007215 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007216 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007217
7218 .vcpu_create = svm_create_vcpu,
7219 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007220 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007221
Sean Christopherson434a1e92018-03-20 12:17:18 -07007222 .vm_alloc = svm_vm_alloc,
7223 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007224 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007225 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007226
Avi Kivity04d2cc72007-09-10 18:10:54 +03007227 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007228 .vcpu_load = svm_vcpu_load,
7229 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007230 .vcpu_blocking = svm_vcpu_blocking,
7231 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007232
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007233 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007234 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007235 .get_msr = svm_get_msr,
7236 .set_msr = svm_set_msr,
7237 .get_segment_base = svm_get_segment_base,
7238 .get_segment = svm_get_segment,
7239 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007240 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007241 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007242 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007243 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007244 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007245 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007246 .set_cr3 = svm_set_cr3,
7247 .set_cr4 = svm_set_cr4,
7248 .set_efer = svm_set_efer,
7249 .get_idt = svm_get_idt,
7250 .set_idt = svm_set_idt,
7251 .get_gdt = svm_get_gdt,
7252 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007253 .get_dr6 = svm_get_dr6,
7254 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007255 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007256 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007257 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007258 .get_rflags = svm_get_rflags,
7259 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007260
Avi Kivity6aa8b732006-12-10 02:21:36 -08007261 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007262 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007263
Avi Kivity6aa8b732006-12-10 02:21:36 -08007264 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007265 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007266 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007267 .set_interrupt_shadow = svm_set_interrupt_shadow,
7268 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007269 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007270 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007271 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007272 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007273 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007274 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007275 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007276 .get_nmi_mask = svm_get_nmi_mask,
7277 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007278 .enable_nmi_window = enable_nmi_window,
7279 .enable_irq_window = enable_irq_window,
7280 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007281 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007282 .get_enable_apicv = svm_get_enable_apicv,
7283 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007284 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007285 .hwapic_irr_update = svm_hwapic_irr_update,
7286 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007287 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007288 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007289
7290 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007291 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007292 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007293 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007294
Avi Kivity586f9602010-11-18 13:09:54 +02007295 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007296
Sheng Yang17cc3932010-01-05 19:02:27 +08007297 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007298
7299 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007300
7301 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007302 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007303 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007304 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007305 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007306 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007307
7308 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007309
7310 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007311
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007312 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007313 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007314
7315 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007316
7317 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007318 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007319
Sean Christophersond264ee02018-08-27 15:21:12 -07007320 .request_immediate_exit = __kvm_request_immediate_exit,
7321
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007322 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007323
7324 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007325 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08007326 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007327 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007328 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007329
Ladi Prosek72d7b372017-10-11 16:54:41 +02007330 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007331 .pre_enter_smm = svm_pre_enter_smm,
7332 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007333 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007334
7335 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007336 .mem_enc_reg_region = svm_register_enc_region,
7337 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007338
7339 .nested_enable_evmcs = nested_enable_evmcs,
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007340 .nested_get_evmcs_version = nested_get_evmcs_version,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007341
7342 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007343};
7344
7345static int __init svm_init(void)
7346{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007347 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007348 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007349}
7350
7351static void __exit svm_exit(void)
7352{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007353 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007354}
7355
7356module_init(svm_init)
7357module_exit(svm_exit)