blob: d685491fce4d1091f0b0bf0382cfa5d0fe77796e [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_NPT (1 << 0)
72#define SVM_FEATURE_LBRV (1 << 1)
73#define SVM_FEATURE_SVML (1 << 2)
74#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010075#define SVM_FEATURE_TSC_RATE (1 << 4)
76#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
77#define SVM_FEATURE_FLUSH_ASID (1 << 6)
78#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020079#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030080
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050081#define SVM_AVIC_DOORBELL 0xc001011b
82
Joerg Roedel410e4d52009-08-07 11:49:44 +020083#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
84#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
85#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
86
Joerg Roedel24e09cb2008-02-13 18:58:47 +010087#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
88
Joerg Roedelfbc0db72011-03-25 09:44:46 +010089#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010090#define TSC_RATIO_MIN 0x0000000000000001ULL
91#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010092
Dan Carpenter5446a972016-05-23 13:20:10 +030093#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050094
95/*
96 * 0xff is broadcast, so the max index allowed for physical APIC ID
97 * table is 0xfe. APIC IDs above 0xff are reserved.
98 */
99#define AVIC_MAX_PHYSICAL_ID_COUNT 255
100
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500101#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
102#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
103#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
104
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500105/* AVIC GATAG is encoded using VM and VCPU IDs */
106#define AVIC_VCPU_ID_BITS 8
107#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
108
109#define AVIC_VM_ID_BITS 24
110#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
111#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
112
113#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
114 (y & AVIC_VCPU_ID_MASK))
115#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
116#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
117
Joerg Roedel67ec6602010-05-17 14:43:35 +0200118static bool erratum_383_found __read_mostly;
119
Avi Kivity6c8166a2009-05-31 18:15:37 +0300120static const u32 host_save_user_msrs[] = {
121#ifdef CONFIG_X86_64
122 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
123 MSR_FS_BASE,
124#endif
125 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100126 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300127};
128
129#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
130
Sean Christopherson81811c12018-03-20 12:17:21 -0700131struct kvm_sev_info {
132 bool active; /* SEV enabled guest */
133 unsigned int asid; /* ASID used for this guest */
134 unsigned int handle; /* SEV firmware handle */
135 int fd; /* SEV device fd */
136 unsigned long pages_locked; /* Number of pages locked */
137 struct list_head regions_list; /* List of registered regions */
138};
139
140struct kvm_svm {
141 struct kvm kvm;
142
143 /* Struct members for AVIC */
144 u32 avic_vm_id;
Sean Christopherson81811c12018-03-20 12:17:21 -0700145 struct page *avic_logical_id_table_page;
146 struct page *avic_physical_id_table_page;
147 struct hlist_node hnode;
148
149 struct kvm_sev_info sev_info;
150};
151
Avi Kivity6c8166a2009-05-31 18:15:37 +0300152struct kvm_vcpu;
153
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200154struct nested_state {
155 struct vmcb *hsave;
156 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100157 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200158 u64 vmcb;
159
160 /* These are the merged vectors */
161 u32 *msrpm;
162
163 /* gpa pointers to the real vectors */
164 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100165 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200166
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200167 /* A VMEXIT is required but not yet emulated */
168 bool exit_required;
169
Joerg Roedelaad42c62009-08-07 11:49:34 +0200170 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100171 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100172 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200173 u32 intercept_exceptions;
174 u64 intercept;
175
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200176 /* Nested Paging related state */
177 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200178};
179
Joerg Roedel323c3d82010-03-01 15:34:37 +0100180#define MSRPM_OFFSETS 16
181static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
182
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500183/*
184 * Set osvw_len to higher value when updated Revision Guides
185 * are published and we know what the new status bits are
186 */
187static uint64_t osvw_len = 4, osvw_status;
188
Avi Kivity6c8166a2009-05-31 18:15:37 +0300189struct vcpu_svm {
190 struct kvm_vcpu vcpu;
191 struct vmcb *vmcb;
192 unsigned long vmcb_pa;
193 struct svm_cpu_data *svm_data;
194 uint64_t asid_generation;
195 uint64_t sysenter_esp;
196 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100197 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300198
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100199 u64 msr_decfg;
200
Avi Kivity6c8166a2009-05-31 18:15:37 +0300201 u64 next_rip;
202
203 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200204 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200205 u16 fs;
206 u16 gs;
207 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200208 u64 gs_base;
209 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300210
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100211 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200212 /*
213 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
214 * translated into the appropriate L2_CFG bits on the host to
215 * perform speculative control.
216 */
217 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100218
Avi Kivity6c8166a2009-05-31 18:15:37 +0300219 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300220
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200221 ulong nmi_iret_rip;
222
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200223 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200224
225 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200226 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100227
228 unsigned int3_injected;
229 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100230
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200231 /* cached guest cpuid flags for faster access */
232 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500233
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500234 u32 ldr_reg;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +0000235 u32 dfr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500236 struct page *avic_backing_page;
237 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500238 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500239
240 /*
241 * Per-vcpu list of struct amd_svm_iommu_ir:
242 * This is used mainly to store interrupt remapping information used
243 * when update the vcpu affinity. This avoids the need to scan for
244 * IRTE and try to match ga_tag in the IOMMU driver.
245 */
246 struct list_head ir_list;
247 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600248
249 /* which host CPU was used for running this vcpu */
250 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500251};
252
253/*
254 * This is a wrapper of struct amd_iommu_ir_data.
255 */
256struct amd_svm_iommu_ir {
257 struct list_head node; /* Used by SVM for per-vcpu ir_list */
258 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300259};
260
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500261#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +0000262#define AVIC_LOGICAL_ID_ENTRY_VALID_BIT 31
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500263#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
264
265#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
266#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
267#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
268#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
269
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100270static DEFINE_PER_CPU(u64, current_tsc_ratio);
271#define TSC_RATIO_DEFAULT 0x0100000000ULL
272
Joerg Roedel455716f2010-03-01 15:34:35 +0100273#define MSR_INVALID 0xffffffffU
274
Mathias Krause09941fb2012-08-30 01:30:20 +0200275static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100276 u32 index; /* Index of the MSR */
277 bool always; /* True if intercept is always on */
278} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400279 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100280 { .index = MSR_IA32_SYSENTER_CS, .always = true },
281#ifdef CONFIG_X86_64
282 { .index = MSR_GS_BASE, .always = true },
283 { .index = MSR_FS_BASE, .always = true },
284 { .index = MSR_KERNEL_GS_BASE, .always = true },
285 { .index = MSR_LSTAR, .always = true },
286 { .index = MSR_CSTAR, .always = true },
287 { .index = MSR_SYSCALL_MASK, .always = true },
288#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100289 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100290 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100291 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
292 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
293 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
294 { .index = MSR_IA32_LASTINTTOIP, .always = false },
295 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800296};
297
298/* enable NPT for AMD64 and X86 with PAE */
299#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
300static bool npt_enabled = true;
301#else
Joerg Roedele0231712010-02-24 18:59:10 +0100302static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800303#endif
304
Babu Moger8566ac82018-03-16 16:37:26 -0400305/*
306 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
307 * pause_filter_count: On processors that support Pause filtering(indicated
308 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
309 * count value. On VMRUN this value is loaded into an internal counter.
310 * Each time a pause instruction is executed, this counter is decremented
311 * until it reaches zero at which time a #VMEXIT is generated if pause
312 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
313 * Intercept Filtering for more details.
314 * This also indicate if ple logic enabled.
315 *
316 * pause_filter_thresh: In addition, some processor families support advanced
317 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
318 * the amount of time a guest is allowed to execute in a pause loop.
319 * In this mode, a 16-bit pause filter threshold field is added in the
320 * VMCB. The threshold value is a cycle count that is used to reset the
321 * pause counter. As with simple pause filtering, VMRUN loads the pause
322 * count value from VMCB into an internal counter. Then, on each pause
323 * instruction the hardware checks the elapsed number of cycles since
324 * the most recent pause instruction against the pause filter threshold.
325 * If the elapsed cycle count is greater than the pause filter threshold,
326 * then the internal pause count is reloaded from the VMCB and execution
327 * continues. If the elapsed cycle count is less than the pause filter
328 * threshold, then the internal pause count is decremented. If the count
329 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
330 * triggered. If advanced pause filtering is supported and pause filter
331 * threshold field is set to zero, the filter will operate in the simpler,
332 * count only mode.
333 */
334
335static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
336module_param(pause_filter_thresh, ushort, 0444);
337
338static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
339module_param(pause_filter_count, ushort, 0444);
340
341/* Default doubles per-vcpu window every exit. */
342static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
343module_param(pause_filter_count_grow, ushort, 0444);
344
345/* Default resets per-vcpu window every exit to pause_filter_count. */
346static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
347module_param(pause_filter_count_shrink, ushort, 0444);
348
349/* Default is to compute the maximum so we can never overflow. */
350static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
351module_param(pause_filter_count_max, ushort, 0444);
352
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100353/* allow nested paging (virtualized MMU) for all guests */
354static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800355module_param(npt, int, S_IRUGO);
356
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100357/* allow nested virtualization in KVM/SVM */
358static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359module_param(nested, int, S_IRUGO);
360
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500361/* enable / disable AVIC */
362static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500363#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500364module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500365#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500366
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200367/* enable/disable Next RIP Save */
368static int nrips = true;
369module_param(nrips, int, 0444);
370
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500371/* enable/disable Virtual VMLOAD VMSAVE */
372static int vls = true;
373module_param(vls, int, 0444);
374
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500375/* enable/disable Virtual GIF */
376static int vgif = true;
377module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500378
Brijesh Singhe9df0942017-12-04 10:57:33 -0600379/* enable/disable SEV support */
380static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
381module_param(sev, int, 0444);
382
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200383static bool __read_mostly dump_invalid_vmcb = 0;
384module_param(dump_invalid_vmcb, bool, 0644);
385
Brijesh Singh7607b712018-02-19 10:14:44 -0600386static u8 rsm_ins_bytes[] = "\x0f\xaa";
387
Paolo Bonzini79a80592015-09-21 07:46:55 +0200388static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800389static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200390static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391
Joerg Roedel410e4d52009-08-07 11:49:44 +0200392static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100393static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800395static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
396 bool has_error_code, u32 error_code);
397
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100398enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100399 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
400 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100401 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100402 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100403 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100404 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100405 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100406 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100407 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100408 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100409 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100410 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500411 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
412 * AVIC PHYSICAL_TABLE pointer,
413 * AVIC LOGICAL_TABLE pointer
414 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100415 VMCB_DIRTY_MAX,
416};
417
Joerg Roedel0574dec2010-12-03 11:45:58 +0100418/* TPR and CR2 are always written before VMRUN */
419#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100420
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500421#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
422
Brijesh Singhed3cd232017-12-04 10:57:32 -0600423static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600424static unsigned int min_sev_asid;
425static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600426#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600427
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600428struct enc_region {
429 struct list_head list;
430 unsigned long npages;
431 struct page **pages;
432 unsigned long uaddr;
433 unsigned long size;
434};
435
Sean Christopherson81811c12018-03-20 12:17:21 -0700436
437static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
438{
439 return container_of(kvm, struct kvm_svm, kvm);
440}
441
Brijesh Singh1654efc2017-12-04 10:57:34 -0600442static inline bool svm_sev_enabled(void)
443{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200444 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600445}
446
447static inline bool sev_guest(struct kvm *kvm)
448{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200449#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700450 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600451
452 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200453#else
454 return false;
455#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600456}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600457
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600458static inline int sev_get_asid(struct kvm *kvm)
459{
Sean Christopherson81811c12018-03-20 12:17:21 -0700460 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600461
462 return sev->asid;
463}
464
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100465static inline void mark_all_dirty(struct vmcb *vmcb)
466{
467 vmcb->control.clean = 0;
468}
469
470static inline void mark_all_clean(struct vmcb *vmcb)
471{
472 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
473 & ~VMCB_ALWAYS_DIRTY_MASK;
474}
475
476static inline void mark_dirty(struct vmcb *vmcb, int bit)
477{
478 vmcb->control.clean &= ~(1 << bit);
479}
480
Avi Kivity6aa8b732006-12-10 02:21:36 -0800481static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
482{
483 return container_of(vcpu, struct vcpu_svm, vcpu);
484}
485
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500486static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
487{
488 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
489 mark_dirty(svm->vmcb, VMCB_AVIC);
490}
491
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500492static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
493{
494 struct vcpu_svm *svm = to_svm(vcpu);
495 u64 *entry = svm->avic_physical_id_cache;
496
497 if (!entry)
498 return false;
499
500 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
501}
502
Joerg Roedel384c6362010-11-30 18:03:56 +0100503static void recalc_intercepts(struct vcpu_svm *svm)
504{
505 struct vmcb_control_area *c, *h;
506 struct nested_state *g;
507
Joerg Roedel116a0a22010-12-03 11:45:49 +0100508 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
509
Joerg Roedel384c6362010-11-30 18:03:56 +0100510 if (!is_guest_mode(&svm->vcpu))
511 return;
512
513 c = &svm->vmcb->control;
514 h = &svm->nested.hsave->control;
515 g = &svm->nested;
516
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100517 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100518 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100519 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100520 c->intercept = h->intercept | g->intercept;
521}
522
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100523static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
524{
525 if (is_guest_mode(&svm->vcpu))
526 return svm->nested.hsave;
527 else
528 return svm->vmcb;
529}
530
531static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
532{
533 struct vmcb *vmcb = get_host_vmcb(svm);
534
535 vmcb->control.intercept_cr |= (1U << bit);
536
537 recalc_intercepts(svm);
538}
539
540static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
541{
542 struct vmcb *vmcb = get_host_vmcb(svm);
543
544 vmcb->control.intercept_cr &= ~(1U << bit);
545
546 recalc_intercepts(svm);
547}
548
549static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
550{
551 struct vmcb *vmcb = get_host_vmcb(svm);
552
553 return vmcb->control.intercept_cr & (1U << bit);
554}
555
Paolo Bonzini5315c712014-03-03 13:08:29 +0100556static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100557{
558 struct vmcb *vmcb = get_host_vmcb(svm);
559
Paolo Bonzini5315c712014-03-03 13:08:29 +0100560 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
561 | (1 << INTERCEPT_DR1_READ)
562 | (1 << INTERCEPT_DR2_READ)
563 | (1 << INTERCEPT_DR3_READ)
564 | (1 << INTERCEPT_DR4_READ)
565 | (1 << INTERCEPT_DR5_READ)
566 | (1 << INTERCEPT_DR6_READ)
567 | (1 << INTERCEPT_DR7_READ)
568 | (1 << INTERCEPT_DR0_WRITE)
569 | (1 << INTERCEPT_DR1_WRITE)
570 | (1 << INTERCEPT_DR2_WRITE)
571 | (1 << INTERCEPT_DR3_WRITE)
572 | (1 << INTERCEPT_DR4_WRITE)
573 | (1 << INTERCEPT_DR5_WRITE)
574 | (1 << INTERCEPT_DR6_WRITE)
575 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100576
577 recalc_intercepts(svm);
578}
579
Paolo Bonzini5315c712014-03-03 13:08:29 +0100580static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100581{
582 struct vmcb *vmcb = get_host_vmcb(svm);
583
Paolo Bonzini5315c712014-03-03 13:08:29 +0100584 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100585
586 recalc_intercepts(svm);
587}
588
Joerg Roedel18c918c2010-11-30 18:03:59 +0100589static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
590{
591 struct vmcb *vmcb = get_host_vmcb(svm);
592
593 vmcb->control.intercept_exceptions |= (1U << bit);
594
595 recalc_intercepts(svm);
596}
597
598static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
599{
600 struct vmcb *vmcb = get_host_vmcb(svm);
601
602 vmcb->control.intercept_exceptions &= ~(1U << bit);
603
604 recalc_intercepts(svm);
605}
606
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100607static inline void set_intercept(struct vcpu_svm *svm, int bit)
608{
609 struct vmcb *vmcb = get_host_vmcb(svm);
610
611 vmcb->control.intercept |= (1ULL << bit);
612
613 recalc_intercepts(svm);
614}
615
616static inline void clr_intercept(struct vcpu_svm *svm, int bit)
617{
618 struct vmcb *vmcb = get_host_vmcb(svm);
619
620 vmcb->control.intercept &= ~(1ULL << bit);
621
622 recalc_intercepts(svm);
623}
624
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500625static inline bool vgif_enabled(struct vcpu_svm *svm)
626{
627 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
628}
629
Joerg Roedel2af91942009-08-07 11:49:28 +0200630static inline void enable_gif(struct vcpu_svm *svm)
631{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500632 if (vgif_enabled(svm))
633 svm->vmcb->control.int_ctl |= V_GIF_MASK;
634 else
635 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200636}
637
638static inline void disable_gif(struct vcpu_svm *svm)
639{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500640 if (vgif_enabled(svm))
641 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
642 else
643 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200644}
645
646static inline bool gif_set(struct vcpu_svm *svm)
647{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500648 if (vgif_enabled(svm))
649 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
650 else
651 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200652}
653
Avi Kivity6aa8b732006-12-10 02:21:36 -0800654static unsigned long iopm_base;
655
656struct kvm_ldttss_desc {
657 u16 limit0;
658 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100659 unsigned base1:8, type:5, dpl:2, p:1;
660 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800661 u32 base3;
662 u32 zero1;
663} __attribute__((packed));
664
665struct svm_cpu_data {
666 int cpu;
667
Avi Kivity5008fdf2007-04-02 13:05:50 +0300668 u64 asid_generation;
669 u32 max_asid;
670 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600671 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800672 struct kvm_ldttss_desc *tss_desc;
673
674 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100675 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600676
677 /* index = sev_asid, value = vmcb pointer */
678 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679};
680
681static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
682
Mathias Krause09941fb2012-08-30 01:30:20 +0200683static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200685#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686#define MSRS_RANGE_SIZE 2048
687#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
688
Joerg Roedel455716f2010-03-01 15:34:35 +0100689static u32 svm_msrpm_offset(u32 msr)
690{
691 u32 offset;
692 int i;
693
694 for (i = 0; i < NUM_MSR_MAPS; i++) {
695 if (msr < msrpm_ranges[i] ||
696 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
697 continue;
698
699 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
700 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
701
702 /* Now we have the u8 offset - but need the u32 offset */
703 return offset / 4;
704 }
705
706 /* MSR not in any range */
707 return MSR_INVALID;
708}
709
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710#define MAX_INST_SIZE 15
711
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712static inline void clgi(void)
713{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100714 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715}
716
717static inline void stgi(void)
718{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100719 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720}
721
722static inline void invlpga(unsigned long addr, u32 asid)
723{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100724 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725}
726
Yu Zhang855feb62017-08-24 20:27:55 +0800727static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200728{
729#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800730 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200731#else
732 return PT32E_ROOT_LEVEL;
733#endif
734}
735
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
737{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000738 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100739 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600740 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741
Alexander Graf9962d032008-11-25 20:17:02 +0100742 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100743 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744}
745
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746static int is_external_interrupt(u32 info)
747{
748 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
749 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
750}
751
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200752static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400753{
754 struct vcpu_svm *svm = to_svm(vcpu);
755 u32 ret = 0;
756
757 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200758 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
759 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400760}
761
762static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
763{
764 struct vcpu_svm *svm = to_svm(vcpu);
765
766 if (mask == 0)
767 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
768 else
769 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
770
771}
772
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
774{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400775 struct vcpu_svm *svm = to_svm(vcpu);
776
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200777 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200778 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200779 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400780 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200781
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400782 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700783 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300784 EMULATE_DONE)
785 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 return;
787 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300788 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
789 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
790 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300792 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400793 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800794}
795
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700796static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100797{
798 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700799 unsigned nr = vcpu->arch.exception.nr;
800 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700801 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700802 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100803
Joerg Roedele0231712010-02-24 18:59:10 +0100804 /*
805 * If we are within a nested VM we'd better #VMEXIT and let the guest
806 * handle the exception
807 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200808 if (!reinject &&
809 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100810 return;
811
Jim Mattsonda998b42018-10-16 14:29:22 -0700812 kvm_deliver_exception_payload(&svm->vcpu);
813
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200814 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100815 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
816
817 /*
818 * For guest debugging where we have to reinject #BP if some
819 * INT3 is guest-owned:
820 * Emulate nRIP by moving RIP forward. Will fail if injection
821 * raises a fault that is not intercepted. Still better than
822 * failing in all cases.
823 */
824 skip_emulated_instruction(&svm->vcpu);
825 rip = kvm_rip_read(&svm->vcpu);
826 svm->int3_rip = rip + svm->vmcb->save.cs.base;
827 svm->int3_injected = rip - old_rip;
828 }
829
Jan Kiszka116a4752010-02-23 17:47:54 +0100830 svm->vmcb->control.event_inj = nr
831 | SVM_EVTINJ_VALID
832 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
833 | SVM_EVTINJ_TYPE_EXEPT;
834 svm->vmcb->control.event_inj_err = error_code;
835}
836
Joerg Roedel67ec6602010-05-17 14:43:35 +0200837static void svm_init_erratum_383(void)
838{
839 u32 low, high;
840 int err;
841 u64 val;
842
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100843 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200844 return;
845
846 /* Use _safe variants to not break nested virtualization */
847 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
848 if (err)
849 return;
850
851 val |= (1ULL << 47);
852
853 low = lower_32_bits(val);
854 high = upper_32_bits(val);
855
856 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
857
858 erratum_383_found = true;
859}
860
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500861static void svm_init_osvw(struct kvm_vcpu *vcpu)
862{
863 /*
864 * Guests should see errata 400 and 415 as fixed (assuming that
865 * HLT and IO instructions are intercepted).
866 */
867 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
868 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
869
870 /*
871 * By increasing VCPU's osvw.length to 3 we are telling the guest that
872 * all osvw.status bits inside that length, including bit 0 (which is
873 * reserved for erratum 298), are valid. However, if host processor's
874 * osvw_len is 0 then osvw_status[0] carries no information. We need to
875 * be conservative here and therefore we tell the guest that erratum 298
876 * is present (because we really don't know).
877 */
878 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
879 vcpu->arch.osvw.status |= 1;
880}
881
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882static int has_svm(void)
883{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200884 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885
Eduardo Habkost63d11422008-11-17 19:03:20 -0200886 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800887 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888 return 0;
889 }
890
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 return 1;
892}
893
Radim Krčmář13a34e02014-08-28 15:13:03 +0200894static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100896 /* Make sure we clean up behind us */
897 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
898 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
899
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200900 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100901
902 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800903}
904
Radim Krčmář13a34e02014-08-28 15:13:03 +0200905static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906{
907
Tejun Heo0fe1e002009-10-29 22:34:14 +0900908 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910 struct desc_struct *gdt;
911 int me = raw_smp_processor_id();
912
Alexander Graf10474ae2009-09-15 11:37:46 +0200913 rdmsrl(MSR_EFER, efer);
914 if (efer & EFER_SVME)
915 return -EBUSY;
916
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200918 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200919 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900921 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900922 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200923 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200924 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925 }
926
Tejun Heo0fe1e002009-10-29 22:34:14 +0900927 sd->asid_generation = 1;
928 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
929 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600930 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931
Thomas Garnier45fc8752017-03-14 10:05:08 -0700932 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900933 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934
Alexander Graf9962d032008-11-25 20:17:02 +0100935 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800936
Linus Torvaldsd0316552009-12-14 09:58:24 -0800937 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200938
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100939 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
940 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500941 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100942 }
943
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500944
945 /*
946 * Get OSVW bits.
947 *
948 * Note that it is possible to have a system with mixed processor
949 * revisions and therefore different OSVW bits. If bits are not the same
950 * on different processors then choose the worst case (i.e. if erratum
951 * is present on one processor and not on another then assume that the
952 * erratum is present everywhere).
953 */
954 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
955 uint64_t len, status = 0;
956 int err;
957
958 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
959 if (!err)
960 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
961 &err);
962
963 if (err)
964 osvw_status = osvw_len = 0;
965 else {
966 if (len < osvw_len)
967 osvw_len = len;
968 osvw_status |= status;
969 osvw_status &= (1ULL << osvw_len) - 1;
970 }
971 } else
972 osvw_status = osvw_len = 0;
973
Joerg Roedel67ec6602010-05-17 14:43:35 +0200974 svm_init_erratum_383();
975
Joerg Roedel1018faa2012-02-29 14:57:32 +0100976 amd_pmu_enable_virt();
977
Alexander Graf10474ae2009-09-15 11:37:46 +0200978 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979}
980
Joerg Roedel0da1db752008-07-02 16:02:11 +0200981static void svm_cpu_uninit(int cpu)
982{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900983 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200984
Tejun Heo0fe1e002009-10-29 22:34:14 +0900985 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200986 return;
987
988 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600989 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900990 __free_page(sd->save_area);
991 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200992}
993
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994static int svm_cpu_init(int cpu)
995{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900996 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 int r;
998
Tejun Heo0fe1e002009-10-29 22:34:14 +0900999 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1000 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001002 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001004 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001005 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 goto err_1;
1007
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001008 if (svm_sev_enabled()) {
1009 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001010 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1011 sizeof(void *),
1012 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001013 if (!sd->sev_vmcbs)
1014 goto err_1;
1015 }
1016
Tejun Heo0fe1e002009-10-29 22:34:14 +09001017 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018
1019 return 0;
1020
1021err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001022 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023 return r;
1024
1025}
1026
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001027static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028{
1029 int i;
1030
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001031 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1032 if (direct_access_msrs[i].index == index)
1033 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001035 return false;
1036}
1037
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001038static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1039{
1040 u8 bit_write;
1041 unsigned long tmp;
1042 u32 offset;
1043 u32 *msrpm;
1044
1045 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1046 to_svm(vcpu)->msrpm;
1047
1048 offset = svm_msrpm_offset(msr);
1049 bit_write = 2 * (msr & 0x0f) + 1;
1050 tmp = msrpm[offset];
1051
1052 BUG_ON(offset == MSR_INVALID);
1053
1054 return !!test_bit(bit_write, &tmp);
1055}
1056
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057static void set_msr_interception(u32 *msrpm, unsigned msr,
1058 int read, int write)
1059{
Joerg Roedel455716f2010-03-01 15:34:35 +01001060 u8 bit_read, bit_write;
1061 unsigned long tmp;
1062 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001063
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001064 /*
1065 * If this warning triggers extend the direct_access_msrs list at the
1066 * beginning of the file
1067 */
1068 WARN_ON(!valid_msr_intercept(msr));
1069
Joerg Roedel455716f2010-03-01 15:34:35 +01001070 offset = svm_msrpm_offset(msr);
1071 bit_read = 2 * (msr & 0x0f);
1072 bit_write = 2 * (msr & 0x0f) + 1;
1073 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074
Joerg Roedel455716f2010-03-01 15:34:35 +01001075 BUG_ON(offset == MSR_INVALID);
1076
1077 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1078 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1079
1080 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081}
1082
Joerg Roedelf65c2292008-02-13 18:58:46 +01001083static void svm_vcpu_init_msrpm(u32 *msrpm)
1084{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001085 int i;
1086
Joerg Roedelf65c2292008-02-13 18:58:46 +01001087 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1088
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001089 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1090 if (!direct_access_msrs[i].always)
1091 continue;
1092
1093 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1094 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001095}
1096
Joerg Roedel323c3d82010-03-01 15:34:37 +01001097static void add_msr_offset(u32 offset)
1098{
1099 int i;
1100
1101 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1102
1103 /* Offset already in list? */
1104 if (msrpm_offsets[i] == offset)
1105 return;
1106
1107 /* Slot used by another offset? */
1108 if (msrpm_offsets[i] != MSR_INVALID)
1109 continue;
1110
1111 /* Add offset to list */
1112 msrpm_offsets[i] = offset;
1113
1114 return;
1115 }
1116
1117 /*
1118 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1119 * increase MSRPM_OFFSETS in this case.
1120 */
1121 BUG();
1122}
1123
1124static void init_msrpm_offsets(void)
1125{
1126 int i;
1127
1128 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1129
1130 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1131 u32 offset;
1132
1133 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1134 BUG_ON(offset == MSR_INVALID);
1135
1136 add_msr_offset(offset);
1137 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138}
1139
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001140static void svm_enable_lbrv(struct vcpu_svm *svm)
1141{
1142 u32 *msrpm = svm->msrpm;
1143
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001144 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001145 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1146 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1147 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1148 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1149}
1150
1151static void svm_disable_lbrv(struct vcpu_svm *svm)
1152{
1153 u32 *msrpm = svm->msrpm;
1154
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001155 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001156 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1157 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1158 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1159 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1160}
1161
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001162static void disable_nmi_singlestep(struct vcpu_svm *svm)
1163{
1164 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001165
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001166 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1167 /* Clear our flags if they were not set by the guest */
1168 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1169 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1170 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1171 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1172 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001173}
1174
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001175/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001176 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001177 * when handling AMD IOMMU GALOG notification to schedule in
1178 * a particular vCPU.
1179 */
1180#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001181static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001182static u32 next_vm_id = 0;
1183static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001184static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001185
1186/* Note:
1187 * This function is called from IOMMU driver to notify
1188 * SVM to schedule in a particular vCPU of a particular VM.
1189 */
1190static int avic_ga_log_notifier(u32 ga_tag)
1191{
1192 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001193 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001194 struct kvm_vcpu *vcpu = NULL;
1195 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1196 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1197
1198 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1199
1200 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001201 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1202 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001203 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001204 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001205 break;
1206 }
1207 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1208
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001209 /* Note:
1210 * At this point, the IOMMU should have already set the pending
1211 * bit in the vAPIC backing page. So, we just need to schedule
1212 * in the vcpu.
1213 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001214 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001215 kvm_vcpu_wake_up(vcpu);
1216
1217 return 0;
1218}
1219
Brijesh Singhe9df0942017-12-04 10:57:33 -06001220static __init int sev_hardware_setup(void)
1221{
1222 struct sev_user_data_status *status;
1223 int rc;
1224
1225 /* Maximum number of encrypted guests supported simultaneously */
1226 max_sev_asid = cpuid_ecx(0x8000001F);
1227
1228 if (!max_sev_asid)
1229 return 1;
1230
Brijesh Singh1654efc2017-12-04 10:57:34 -06001231 /* Minimum ASID value that should be used for SEV guest */
1232 min_sev_asid = cpuid_edx(0x8000001F);
1233
1234 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001235 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001236 if (!sev_asid_bitmap)
1237 return 1;
1238
Brijesh Singhe9df0942017-12-04 10:57:33 -06001239 status = kmalloc(sizeof(*status), GFP_KERNEL);
1240 if (!status)
1241 return 1;
1242
1243 /*
1244 * Check SEV platform status.
1245 *
1246 * PLATFORM_STATUS can be called in any state, if we failed to query
1247 * the PLATFORM status then either PSP firmware does not support SEV
1248 * feature or SEV firmware is dead.
1249 */
1250 rc = sev_platform_status(status, NULL);
1251 if (rc)
1252 goto err;
1253
1254 pr_info("SEV supported\n");
1255
1256err:
1257 kfree(status);
1258 return rc;
1259}
1260
Babu Moger8566ac82018-03-16 16:37:26 -04001261static void grow_ple_window(struct kvm_vcpu *vcpu)
1262{
1263 struct vcpu_svm *svm = to_svm(vcpu);
1264 struct vmcb_control_area *control = &svm->vmcb->control;
1265 int old = control->pause_filter_count;
1266
1267 control->pause_filter_count = __grow_ple_window(old,
1268 pause_filter_count,
1269 pause_filter_count_grow,
1270 pause_filter_count_max);
1271
1272 if (control->pause_filter_count != old)
1273 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1274
1275 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1276 control->pause_filter_count, old);
1277}
1278
1279static void shrink_ple_window(struct kvm_vcpu *vcpu)
1280{
1281 struct vcpu_svm *svm = to_svm(vcpu);
1282 struct vmcb_control_area *control = &svm->vmcb->control;
1283 int old = control->pause_filter_count;
1284
1285 control->pause_filter_count =
1286 __shrink_ple_window(old,
1287 pause_filter_count,
1288 pause_filter_count_shrink,
1289 pause_filter_count);
1290 if (control->pause_filter_count != old)
1291 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1292
1293 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1294 control->pause_filter_count, old);
1295}
1296
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297static __init int svm_hardware_setup(void)
1298{
1299 int cpu;
1300 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001301 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001302 int r;
1303
Avi Kivity6aa8b732006-12-10 02:21:36 -08001304 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1305
1306 if (!iopm_pages)
1307 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001308
1309 iopm_va = page_address(iopm_pages);
1310 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001311 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1312
Joerg Roedel323c3d82010-03-01 15:34:37 +01001313 init_msrpm_offsets();
1314
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001315 if (boot_cpu_has(X86_FEATURE_NX))
1316 kvm_enable_efer_bits(EFER_NX);
1317
Alexander Graf1b2fd702009-02-02 16:23:51 +01001318 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1319 kvm_enable_efer_bits(EFER_FFXSR);
1320
Joerg Roedel92a1f122011-03-25 09:44:51 +01001321 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001322 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001323 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1324 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001325 }
1326
Babu Moger8566ac82018-03-16 16:37:26 -04001327 /* Check for pause filtering support */
1328 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1329 pause_filter_count = 0;
1330 pause_filter_thresh = 0;
1331 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1332 pause_filter_thresh = 0;
1333 }
1334
Alexander Graf236de052008-11-25 20:17:10 +01001335 if (nested) {
1336 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001337 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001338 }
1339
Brijesh Singhe9df0942017-12-04 10:57:33 -06001340 if (sev) {
1341 if (boot_cpu_has(X86_FEATURE_SEV) &&
1342 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1343 r = sev_hardware_setup();
1344 if (r)
1345 sev = false;
1346 } else {
1347 sev = false;
1348 }
1349 }
1350
Zachary Amsden3230bb42009-09-29 11:38:37 -10001351 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001352 r = svm_cpu_init(cpu);
1353 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001354 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001355 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001356
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001357 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001358 npt_enabled = false;
1359
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001360 if (npt_enabled && !npt) {
1361 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1362 npt_enabled = false;
1363 }
1364
Joerg Roedel18552672008-02-07 13:47:41 +01001365 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001366 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001367 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001368 } else
1369 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001370
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001371 if (nrips) {
1372 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1373 nrips = false;
1374 }
1375
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001376 if (avic) {
1377 if (!npt_enabled ||
1378 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001379 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001380 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001381 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001382 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001383
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001384 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1385 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001386 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001387
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001388 if (vls) {
1389 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001390 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001391 !IS_ENABLED(CONFIG_X86_64)) {
1392 vls = false;
1393 } else {
1394 pr_info("Virtual VMLOAD VMSAVE supported\n");
1395 }
1396 }
1397
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001398 if (vgif) {
1399 if (!boot_cpu_has(X86_FEATURE_VGIF))
1400 vgif = false;
1401 else
1402 pr_info("Virtual GIF supported\n");
1403 }
1404
Avi Kivity6aa8b732006-12-10 02:21:36 -08001405 return 0;
1406
Joerg Roedelf65c2292008-02-13 18:58:46 +01001407err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1409 iopm_base = 0;
1410 return r;
1411}
1412
1413static __exit void svm_hardware_unsetup(void)
1414{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001415 int cpu;
1416
Brijesh Singh1654efc2017-12-04 10:57:34 -06001417 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001418 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001419
Zachary Amsden3230bb42009-09-29 11:38:37 -10001420 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001421 svm_cpu_uninit(cpu);
1422
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001424 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425}
1426
1427static void init_seg(struct vmcb_seg *seg)
1428{
1429 seg->selector = 0;
1430 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001431 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432 seg->limit = 0xffff;
1433 seg->base = 0;
1434}
1435
1436static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1437{
1438 seg->selector = 0;
1439 seg->attrib = SVM_SELECTOR_P_MASK | type;
1440 seg->limit = 0xffff;
1441 seg->base = 0;
1442}
1443
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001444static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1445{
1446 struct vcpu_svm *svm = to_svm(vcpu);
1447
1448 if (is_guest_mode(vcpu))
1449 return svm->nested.hsave->control.tsc_offset;
1450
1451 return vcpu->arch.tsc_offset;
1452}
1453
Leonid Shatz326e7422018-11-06 12:14:25 +02001454static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001455{
1456 struct vcpu_svm *svm = to_svm(vcpu);
1457 u64 g_tsc_offset = 0;
1458
Joerg Roedel20307532010-11-29 17:51:48 +01001459 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001460 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001461 g_tsc_offset = svm->vmcb->control.tsc_offset -
1462 svm->nested.hsave->control.tsc_offset;
1463 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001464 }
1465
1466 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1467 svm->vmcb->control.tsc_offset - g_tsc_offset,
1468 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001469
1470 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001471
1472 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001473 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001474}
1475
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001476static void avic_init_vmcb(struct vcpu_svm *svm)
1477{
1478 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001479 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001480 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001481 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1482 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001483
1484 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1485 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1486 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1487 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1488 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001489}
1490
Paolo Bonzini56908912015-10-19 11:30:19 +02001491static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492{
Joerg Roedele6101a92008-02-13 18:58:45 +01001493 struct vmcb_control_area *control = &svm->vmcb->control;
1494 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001496 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001497
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001498 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1499 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1500 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1501 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1502 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1503 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001504 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1505 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506
Paolo Bonzini5315c712014-03-03 13:08:29 +01001507 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508
Joerg Roedel18c918c2010-11-30 18:03:59 +01001509 set_exception_intercept(svm, PF_VECTOR);
1510 set_exception_intercept(svm, UD_VECTOR);
1511 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001512 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001513 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001514 /*
1515 * Guest access to VMware backdoor ports could legitimately
1516 * trigger #GP because of TSS I/O permission bitmap.
1517 * We intercept those #GP and allow access to them anyway
1518 * as VMware does.
1519 */
1520 if (enable_vmware_backdoor)
1521 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001523 set_intercept(svm, INTERCEPT_INTR);
1524 set_intercept(svm, INTERCEPT_NMI);
1525 set_intercept(svm, INTERCEPT_SMI);
1526 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001527 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001528 set_intercept(svm, INTERCEPT_CPUID);
1529 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001530 set_intercept(svm, INTERCEPT_INVLPG);
1531 set_intercept(svm, INTERCEPT_INVLPGA);
1532 set_intercept(svm, INTERCEPT_IOIO_PROT);
1533 set_intercept(svm, INTERCEPT_MSR_PROT);
1534 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1535 set_intercept(svm, INTERCEPT_SHUTDOWN);
1536 set_intercept(svm, INTERCEPT_VMRUN);
1537 set_intercept(svm, INTERCEPT_VMMCALL);
1538 set_intercept(svm, INTERCEPT_VMLOAD);
1539 set_intercept(svm, INTERCEPT_VMSAVE);
1540 set_intercept(svm, INTERCEPT_STGI);
1541 set_intercept(svm, INTERCEPT_CLGI);
1542 set_intercept(svm, INTERCEPT_SKINIT);
1543 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001544 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001545 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001546
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001547 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001548 set_intercept(svm, INTERCEPT_MONITOR);
1549 set_intercept(svm, INTERCEPT_MWAIT);
1550 }
1551
Wanpeng Licaa057a2018-03-12 04:53:03 -07001552 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1553 set_intercept(svm, INTERCEPT_HLT);
1554
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001555 control->iopm_base_pa = __sme_set(iopm_base);
1556 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557 control->int_ctl = V_INTR_MASKING_MASK;
1558
1559 init_seg(&save->es);
1560 init_seg(&save->ss);
1561 init_seg(&save->ds);
1562 init_seg(&save->fs);
1563 init_seg(&save->gs);
1564
1565 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001566 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567 /* Executable/Readable Code Segment */
1568 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1569 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1570 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571
1572 save->gdtr.limit = 0xffff;
1573 save->idtr.limit = 0xffff;
1574
1575 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1576 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1577
Paolo Bonzini56908912015-10-19 11:30:19 +02001578 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001579 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001580 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001581 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001582 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583
Joerg Roedele0231712010-02-24 18:59:10 +01001584 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001585 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001586 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001588 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001589 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001590
Rusty Russell66aee912007-07-17 23:34:16 +10001591 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001592 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001593
1594 if (npt_enabled) {
1595 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001596 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001597 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001598 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001599 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1600 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001601 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001602 save->cr3 = 0;
1603 save->cr4 = 0;
1604 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001605 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001606
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001607 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001608 svm->vcpu.arch.hflags = 0;
1609
Babu Moger8566ac82018-03-16 16:37:26 -04001610 if (pause_filter_count) {
1611 control->pause_filter_count = pause_filter_count;
1612 if (pause_filter_thresh)
1613 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001614 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001615 } else {
1616 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001617 }
1618
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001619 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001620 avic_init_vmcb(svm);
1621
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001622 /*
1623 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1624 * in VMCB and clear intercepts to avoid #VMEXIT.
1625 */
1626 if (vls) {
1627 clr_intercept(svm, INTERCEPT_VMLOAD);
1628 clr_intercept(svm, INTERCEPT_VMSAVE);
1629 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1630 }
1631
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001632 if (vgif) {
1633 clr_intercept(svm, INTERCEPT_STGI);
1634 clr_intercept(svm, INTERCEPT_CLGI);
1635 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1636 }
1637
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001638 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001639 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001640 clr_exception_intercept(svm, UD_VECTOR);
1641 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001642
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001643 mark_all_dirty(svm->vmcb);
1644
Joerg Roedel2af91942009-08-07 11:49:28 +02001645 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001646
1647}
1648
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001649static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1650 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001651{
1652 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001653 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001654
1655 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1656 return NULL;
1657
Sean Christopherson81811c12018-03-20 12:17:21 -07001658 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001659
1660 return &avic_physical_id_table[index];
1661}
1662
1663/**
1664 * Note:
1665 * AVIC hardware walks the nested page table to check permissions,
1666 * but does not use the SPA address specified in the leaf page
1667 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1668 * field of the VMCB. Therefore, we set up the
1669 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1670 */
1671static int avic_init_access_page(struct kvm_vcpu *vcpu)
1672{
1673 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001674 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001675
Wei Wang30510382018-11-12 12:23:14 +00001676 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001677 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001678 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001679
Wei Wang30510382018-11-12 12:23:14 +00001680 ret = __x86_set_memory_region(kvm,
1681 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1682 APIC_DEFAULT_PHYS_BASE,
1683 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001684 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001685 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001686
1687 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001688out:
1689 mutex_unlock(&kvm->slots_lock);
1690 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001691}
1692
1693static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1694{
1695 int ret;
1696 u64 *entry, new_entry;
1697 int id = vcpu->vcpu_id;
1698 struct vcpu_svm *svm = to_svm(vcpu);
1699
1700 ret = avic_init_access_page(vcpu);
1701 if (ret)
1702 return ret;
1703
1704 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1705 return -EINVAL;
1706
1707 if (!svm->vcpu.arch.apic->regs)
1708 return -EINVAL;
1709
1710 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1711
1712 /* Setting AVIC backing page address in the phy APIC ID table */
1713 entry = avic_get_physical_id_entry(vcpu, id);
1714 if (!entry)
1715 return -EINVAL;
1716
1717 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001718 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1719 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1720 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001721 WRITE_ONCE(*entry, new_entry);
1722
1723 svm->avic_physical_id_cache = entry;
1724
1725 return 0;
1726}
1727
Brijesh Singh1654efc2017-12-04 10:57:34 -06001728static void __sev_asid_free(int asid)
1729{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001730 struct svm_cpu_data *sd;
1731 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001732
1733 pos = asid - 1;
1734 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001735
1736 for_each_possible_cpu(cpu) {
1737 sd = per_cpu(svm_data, cpu);
1738 sd->sev_vmcbs[pos] = NULL;
1739 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001740}
1741
1742static void sev_asid_free(struct kvm *kvm)
1743{
Sean Christopherson81811c12018-03-20 12:17:21 -07001744 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001745
1746 __sev_asid_free(sev->asid);
1747}
1748
Brijesh Singh59414c92017-12-04 10:57:35 -06001749static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1750{
1751 struct sev_data_decommission *decommission;
1752 struct sev_data_deactivate *data;
1753
1754 if (!handle)
1755 return;
1756
1757 data = kzalloc(sizeof(*data), GFP_KERNEL);
1758 if (!data)
1759 return;
1760
1761 /* deactivate handle */
1762 data->handle = handle;
1763 sev_guest_deactivate(data, NULL);
1764
1765 wbinvd_on_all_cpus();
1766 sev_guest_df_flush(NULL);
1767 kfree(data);
1768
1769 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1770 if (!decommission)
1771 return;
1772
1773 /* decommission handle */
1774 decommission->handle = handle;
1775 sev_guest_decommission(decommission, NULL);
1776
1777 kfree(decommission);
1778}
1779
Brijesh Singh89c50582017-12-04 10:57:35 -06001780static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1781 unsigned long ulen, unsigned long *n,
1782 int write)
1783{
Sean Christopherson81811c12018-03-20 12:17:21 -07001784 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001785 unsigned long npages, npinned, size;
1786 unsigned long locked, lock_limit;
1787 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001788 unsigned long first, last;
1789
1790 if (ulen == 0 || uaddr + ulen < uaddr)
1791 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001792
1793 /* Calculate number of pages. */
1794 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1795 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1796 npages = (last - first + 1);
1797
1798 locked = sev->pages_locked + npages;
1799 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1800 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1801 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1802 return NULL;
1803 }
1804
1805 /* Avoid using vmalloc for smaller buffers. */
1806 size = npages * sizeof(struct page *);
1807 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001808 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1809 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001810 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001811 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001812
1813 if (!pages)
1814 return NULL;
1815
1816 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001817 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001818 if (npinned != npages) {
1819 pr_err("SEV: Failure locking %lu pages.\n", npages);
1820 goto err;
1821 }
1822
1823 *n = npages;
1824 sev->pages_locked = locked;
1825
1826 return pages;
1827
1828err:
1829 if (npinned > 0)
1830 release_pages(pages, npinned);
1831
1832 kvfree(pages);
1833 return NULL;
1834}
1835
1836static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1837 unsigned long npages)
1838{
Sean Christopherson81811c12018-03-20 12:17:21 -07001839 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001840
1841 release_pages(pages, npages);
1842 kvfree(pages);
1843 sev->pages_locked -= npages;
1844}
1845
1846static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1847{
1848 uint8_t *page_virtual;
1849 unsigned long i;
1850
1851 if (npages == 0 || pages == NULL)
1852 return;
1853
1854 for (i = 0; i < npages; i++) {
1855 page_virtual = kmap_atomic(pages[i]);
1856 clflush_cache_range(page_virtual, PAGE_SIZE);
1857 kunmap_atomic(page_virtual);
1858 }
1859}
1860
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001861static void __unregister_enc_region_locked(struct kvm *kvm,
1862 struct enc_region *region)
1863{
1864 /*
1865 * The guest may change the memory encryption attribute from C=0 -> C=1
1866 * or vice versa for this memory range. Lets make sure caches are
1867 * flushed to ensure that guest data gets written into memory with
1868 * correct C-bit.
1869 */
1870 sev_clflush_pages(region->pages, region->npages);
1871
1872 sev_unpin_memory(kvm, region->pages, region->npages);
1873 list_del(&region->list);
1874 kfree(region);
1875}
1876
Sean Christopherson434a1e92018-03-20 12:17:18 -07001877static struct kvm *svm_vm_alloc(void)
1878{
Ben Gardon1ec69642019-02-11 11:02:51 -08001879 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1880 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1881 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001882 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001883}
1884
1885static void svm_vm_free(struct kvm *kvm)
1886{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001887 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001888}
1889
Brijesh Singh1654efc2017-12-04 10:57:34 -06001890static void sev_vm_destroy(struct kvm *kvm)
1891{
Sean Christopherson81811c12018-03-20 12:17:21 -07001892 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001893 struct list_head *head = &sev->regions_list;
1894 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001895
Brijesh Singh1654efc2017-12-04 10:57:34 -06001896 if (!sev_guest(kvm))
1897 return;
1898
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001899 mutex_lock(&kvm->lock);
1900
1901 /*
1902 * if userspace was terminated before unregistering the memory regions
1903 * then lets unpin all the registered memory.
1904 */
1905 if (!list_empty(head)) {
1906 list_for_each_safe(pos, q, head) {
1907 __unregister_enc_region_locked(kvm,
1908 list_entry(pos, struct enc_region, list));
1909 }
1910 }
1911
1912 mutex_unlock(&kvm->lock);
1913
Brijesh Singh59414c92017-12-04 10:57:35 -06001914 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001915 sev_asid_free(kvm);
1916}
1917
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001918static void avic_vm_destroy(struct kvm *kvm)
1919{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001920 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001921 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001922
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001923 if (!avic)
1924 return;
1925
Sean Christopherson81811c12018-03-20 12:17:21 -07001926 if (kvm_svm->avic_logical_id_table_page)
1927 __free_page(kvm_svm->avic_logical_id_table_page);
1928 if (kvm_svm->avic_physical_id_table_page)
1929 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001930
1931 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001932 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001933 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001934}
1935
Brijesh Singh1654efc2017-12-04 10:57:34 -06001936static void svm_vm_destroy(struct kvm *kvm)
1937{
1938 avic_vm_destroy(kvm);
1939 sev_vm_destroy(kvm);
1940}
1941
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001942static int avic_vm_init(struct kvm *kvm)
1943{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001944 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001945 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001946 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1947 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001948 struct page *p_page;
1949 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001950 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001951
1952 if (!avic)
1953 return 0;
1954
1955 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001956 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001957 if (!p_page)
1958 goto free_avic;
1959
Sean Christopherson81811c12018-03-20 12:17:21 -07001960 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001961 clear_page(page_address(p_page));
1962
1963 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001964 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001965 if (!l_page)
1966 goto free_avic;
1967
Sean Christopherson81811c12018-03-20 12:17:21 -07001968 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001969 clear_page(page_address(l_page));
1970
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001971 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001972 again:
1973 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1974 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1975 next_vm_id_wrapped = 1;
1976 goto again;
1977 }
1978 /* Is it still in use? Only possible if wrapped at least once */
1979 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001980 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1981 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001982 goto again;
1983 }
1984 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001985 kvm_svm->avic_vm_id = vm_id;
1986 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001987 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1988
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001989 return 0;
1990
1991free_avic:
1992 avic_vm_destroy(kvm);
1993 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001994}
1995
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001996static inline int
1997avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001998{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001999 int ret = 0;
2000 unsigned long flags;
2001 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002002 struct vcpu_svm *svm = to_svm(vcpu);
2003
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002004 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2005 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002006
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002007 /*
2008 * Here, we go through the per-vcpu ir_list to update all existing
2009 * interrupt remapping table entry targeting this vcpu.
2010 */
2011 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002012
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002013 if (list_empty(&svm->ir_list))
2014 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002015
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002016 list_for_each_entry(ir, &svm->ir_list, node) {
2017 ret = amd_iommu_update_ga(cpu, r, ir->data);
2018 if (ret)
2019 break;
2020 }
2021out:
2022 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2023 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002024}
2025
2026static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2027{
2028 u64 entry;
2029 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002030 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002031 struct vcpu_svm *svm = to_svm(vcpu);
2032
2033 if (!kvm_vcpu_apicv_active(vcpu))
2034 return;
2035
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002036 /*
2037 * Since the host physical APIC id is 8 bits,
2038 * we can support host APIC ID upto 255.
2039 */
2040 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002041 return;
2042
2043 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2044 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2045
2046 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2047 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2048
2049 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2050 if (svm->avic_is_running)
2051 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2052
2053 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002054 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2055 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002056}
2057
2058static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2059{
2060 u64 entry;
2061 struct vcpu_svm *svm = to_svm(vcpu);
2062
2063 if (!kvm_vcpu_apicv_active(vcpu))
2064 return;
2065
2066 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002067 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2068 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2069
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002070 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2071 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072}
2073
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002074/**
2075 * This function is called during VCPU halt/unhalt.
2076 */
2077static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2078{
2079 struct vcpu_svm *svm = to_svm(vcpu);
2080
2081 svm->avic_is_running = is_run;
2082 if (is_run)
2083 avic_vcpu_load(vcpu, vcpu->cpu);
2084 else
2085 avic_vcpu_put(vcpu);
2086}
2087
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002088static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002089{
2090 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002091 u32 dummy;
2092 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002093
Wanpeng Li518e7b92018-02-28 14:03:31 +08002094 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002095 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002096 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002097
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002098 if (!init_event) {
2099 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2100 MSR_IA32_APICBASE_ENABLE;
2101 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2102 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2103 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002104 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002105
Yu Zhange911eb32017-08-24 20:27:52 +08002106 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002107 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002108
2109 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2110 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002111}
2112
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002113static int avic_init_vcpu(struct vcpu_svm *svm)
2114{
2115 int ret;
2116
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002117 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002118 return 0;
2119
2120 ret = avic_init_backing_page(&svm->vcpu);
2121 if (ret)
2122 return ret;
2123
2124 INIT_LIST_HEAD(&svm->ir_list);
2125 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002126 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002127
2128 return ret;
2129}
2130
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002131static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002132{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002133 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002135 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002136 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002137 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002138 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139
Ben Gardon1ec69642019-02-11 11:02:51 -08002140 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002141 if (!svm) {
2142 err = -ENOMEM;
2143 goto out;
2144 }
2145
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002146 svm->vcpu.arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
2147 GFP_KERNEL_ACCOUNT);
2148 if (!svm->vcpu.arch.user_fpu) {
2149 printk(KERN_ERR "kvm: failed to allocate kvm userspace's fpu\n");
2150 err = -ENOMEM;
2151 goto free_partial_svm;
2152 }
2153
Ben Gardon1ec69642019-02-11 11:02:51 -08002154 svm->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
2155 GFP_KERNEL_ACCOUNT);
Marc Orrb666a4b2018-11-06 14:53:56 -08002156 if (!svm->vcpu.arch.guest_fpu) {
2157 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
2158 err = -ENOMEM;
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002159 goto free_user_fpu;
Marc Orrb666a4b2018-11-06 14:53:56 -08002160 }
2161
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002162 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2163 if (err)
2164 goto free_svm;
2165
Joerg Roedelf65c2292008-02-13 18:58:46 +01002166 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002167 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002168 if (!page)
2169 goto uninit;
2170
Ben Gardon1ec69642019-02-11 11:02:51 -08002171 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002172 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002173 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002174
Ben Gardon1ec69642019-02-11 11:02:51 -08002175 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002176 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002177 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002178
Ben Gardon1ec69642019-02-11 11:02:51 -08002179 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002180 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002181 goto free_page3;
2182
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002183 err = avic_init_vcpu(svm);
2184 if (err)
2185 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002186
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002187 /* We initialize this flag to true to make sure that the is_running
2188 * bit would be set the first time the vcpu is loaded.
2189 */
2190 svm->avic_is_running = true;
2191
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002192 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002193
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002194 svm->msrpm = page_address(msrpm_pages);
2195 svm_vcpu_init_msrpm(svm->msrpm);
2196
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002197 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002198 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002199
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002200 svm->vmcb = page_address(page);
2201 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002202 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002203 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002204 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002206 svm_init_osvw(&svm->vcpu);
2207
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002208 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002209
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002210free_page4:
2211 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002212free_page3:
2213 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2214free_page2:
2215 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2216free_page1:
2217 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002218uninit:
2219 kvm_vcpu_uninit(&svm->vcpu);
2220free_svm:
Marc Orrb666a4b2018-11-06 14:53:56 -08002221 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002222free_user_fpu:
2223 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.user_fpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002224free_partial_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002225 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002226out:
2227 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002228}
2229
Jim Mattsonfd65d312018-05-22 09:54:20 -07002230static void svm_clear_current_vmcb(struct vmcb *vmcb)
2231{
2232 int i;
2233
2234 for_each_online_cpu(i)
2235 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2236}
2237
Avi Kivity6aa8b732006-12-10 02:21:36 -08002238static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2239{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002240 struct vcpu_svm *svm = to_svm(vcpu);
2241
Jim Mattsonfd65d312018-05-22 09:54:20 -07002242 /*
2243 * The vmcb page can be recycled, causing a false negative in
2244 * svm_vcpu_load(). So, ensure that no logical CPU has this
2245 * vmcb page recorded as its current vmcb.
2246 */
2247 svm_clear_current_vmcb(svm->vmcb);
2248
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002249 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002250 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002251 __free_page(virt_to_page(svm->nested.hsave));
2252 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002253 kvm_vcpu_uninit(vcpu);
Wanpeng Lid9a710e2019-07-22 12:26:21 +08002254 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.user_fpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002255 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10002256 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257}
2258
Avi Kivity15ad7142007-07-11 18:17:21 +03002259static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002261 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002262 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002263 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002264
Avi Kivity0cc50642007-03-25 12:07:27 +02002265 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002266 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002267 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002268 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002269
Avi Kivity82ca2d12010-10-21 12:20:34 +02002270#ifdef CONFIG_X86_64
2271 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2272#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002273 savesegment(fs, svm->host.fs);
2274 savesegment(gs, svm->host.gs);
2275 svm->host.ldt = kvm_read_ldt();
2276
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002277 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002278 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002279
Haozhong Zhangad7218832015-10-20 15:39:02 +08002280 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2281 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2282 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2283 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2284 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2285 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002286 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002287 /* This assumes that the kernel never uses MSR_TSC_AUX */
2288 if (static_cpu_has(X86_FEATURE_RDTSCP))
2289 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002290
Ashok Raj15d45072018-02-01 22:59:43 +01002291 if (sd->current_vmcb != svm->vmcb) {
2292 sd->current_vmcb = svm->vmcb;
2293 indirect_branch_prediction_barrier();
2294 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002295 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296}
2297
2298static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2299{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002300 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002301 int i;
2302
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002303 avic_vcpu_put(vcpu);
2304
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002305 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002306 kvm_load_ldt(svm->host.ldt);
2307#ifdef CONFIG_X86_64
2308 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002309 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002310 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002311#else
Avi Kivity831ca602011-03-08 16:09:51 +02002312#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002313 loadsegment(gs, svm->host.gs);
2314#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002315#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002316 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002317 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318}
2319
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002320static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2321{
2322 avic_set_running(vcpu, false);
2323}
2324
2325static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2326{
2327 avic_set_running(vcpu, true);
2328}
2329
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2331{
Ladi Prosek9b611742017-06-21 09:06:59 +02002332 struct vcpu_svm *svm = to_svm(vcpu);
2333 unsigned long rflags = svm->vmcb->save.rflags;
2334
2335 if (svm->nmi_singlestep) {
2336 /* Hide our flags if they were not set by the guest */
2337 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2338 rflags &= ~X86_EFLAGS_TF;
2339 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2340 rflags &= ~X86_EFLAGS_RF;
2341 }
2342 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343}
2344
2345static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2346{
Ladi Prosek9b611742017-06-21 09:06:59 +02002347 if (to_svm(vcpu)->nmi_singlestep)
2348 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2349
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002350 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002351 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002352 * (caused by either a task switch or an inter-privilege IRET),
2353 * so we do not need to update the CPL here.
2354 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002355 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002356}
2357
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002358static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2359{
2360 switch (reg) {
2361 case VCPU_EXREG_PDPTR:
2362 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002363 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002364 break;
2365 default:
2366 BUG();
2367 }
2368}
2369
Alexander Graff0b85052008-11-25 20:17:01 +01002370static void svm_set_vintr(struct vcpu_svm *svm)
2371{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002372 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002373}
2374
2375static void svm_clear_vintr(struct vcpu_svm *svm)
2376{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002377 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002378}
2379
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2381{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002382 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383
2384 switch (seg) {
2385 case VCPU_SREG_CS: return &save->cs;
2386 case VCPU_SREG_DS: return &save->ds;
2387 case VCPU_SREG_ES: return &save->es;
2388 case VCPU_SREG_FS: return &save->fs;
2389 case VCPU_SREG_GS: return &save->gs;
2390 case VCPU_SREG_SS: return &save->ss;
2391 case VCPU_SREG_TR: return &save->tr;
2392 case VCPU_SREG_LDTR: return &save->ldtr;
2393 }
2394 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002395 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396}
2397
2398static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2399{
2400 struct vmcb_seg *s = svm_seg(vcpu, seg);
2401
2402 return s->base;
2403}
2404
2405static void svm_get_segment(struct kvm_vcpu *vcpu,
2406 struct kvm_segment *var, int seg)
2407{
2408 struct vmcb_seg *s = svm_seg(vcpu, seg);
2409
2410 var->base = s->base;
2411 var->limit = s->limit;
2412 var->selector = s->selector;
2413 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2414 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2415 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2416 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2417 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2418 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2419 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302420
2421 /*
2422 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2423 * However, the SVM spec states that the G bit is not observed by the
2424 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2425 * So let's synthesize a legal G bit for all segments, this helps
2426 * running KVM nested. It also helps cross-vendor migration, because
2427 * Intel's vmentry has a check on the 'G' bit.
2428 */
2429 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002430
Joerg Roedele0231712010-02-24 18:59:10 +01002431 /*
2432 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002433 * for cross vendor migration purposes by "not present"
2434 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002435 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002436
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002437 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002438 case VCPU_SREG_TR:
2439 /*
2440 * Work around a bug where the busy flag in the tr selector
2441 * isn't exposed
2442 */
Amit Shahc0d09822008-10-27 09:04:18 +00002443 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002444 break;
2445 case VCPU_SREG_DS:
2446 case VCPU_SREG_ES:
2447 case VCPU_SREG_FS:
2448 case VCPU_SREG_GS:
2449 /*
2450 * The accessed bit must always be set in the segment
2451 * descriptor cache, although it can be cleared in the
2452 * descriptor, the cached bit always remains at 1. Since
2453 * Intel has a check on this, set it here to support
2454 * cross-vendor migration.
2455 */
2456 if (!var->unusable)
2457 var->type |= 0x1;
2458 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002459 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002460 /*
2461 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002462 * descriptor is left as 1, although the whole segment has
2463 * been made unusable. Clear it here to pass an Intel VMX
2464 * entry check when cross vendor migrating.
2465 */
2466 if (var->unusable)
2467 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002468 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002469 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002470 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002471 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472}
2473
Izik Eidus2e4d2652008-03-24 19:38:34 +02002474static int svm_get_cpl(struct kvm_vcpu *vcpu)
2475{
2476 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2477
2478 return save->cpl;
2479}
2480
Gleb Natapov89a27f42010-02-16 10:51:48 +02002481static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002482{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002483 struct vcpu_svm *svm = to_svm(vcpu);
2484
Gleb Natapov89a27f42010-02-16 10:51:48 +02002485 dt->size = svm->vmcb->save.idtr.limit;
2486 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002487}
2488
Gleb Natapov89a27f42010-02-16 10:51:48 +02002489static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002490{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002491 struct vcpu_svm *svm = to_svm(vcpu);
2492
Gleb Natapov89a27f42010-02-16 10:51:48 +02002493 svm->vmcb->save.idtr.limit = dt->size;
2494 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002495 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496}
2497
Gleb Natapov89a27f42010-02-16 10:51:48 +02002498static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002499{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002500 struct vcpu_svm *svm = to_svm(vcpu);
2501
Gleb Natapov89a27f42010-02-16 10:51:48 +02002502 dt->size = svm->vmcb->save.gdtr.limit;
2503 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504}
2505
Gleb Natapov89a27f42010-02-16 10:51:48 +02002506static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002507{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002508 struct vcpu_svm *svm = to_svm(vcpu);
2509
Gleb Natapov89a27f42010-02-16 10:51:48 +02002510 svm->vmcb->save.gdtr.limit = dt->size;
2511 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002512 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002513}
2514
Avi Kivitye8467fd2009-12-29 18:43:06 +02002515static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2516{
2517}
2518
Avi Kivityaff48ba2010-12-05 18:56:11 +02002519static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2520{
2521}
2522
Anthony Liguori25c4c272007-04-27 09:29:21 +03002523static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002524{
2525}
2526
Avi Kivityd2251572010-01-06 10:55:27 +02002527static void update_cr0_intercept(struct vcpu_svm *svm)
2528{
2529 ulong gcr0 = svm->vcpu.arch.cr0;
2530 u64 *hcr0 = &svm->vmcb->save.cr0;
2531
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002532 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2533 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002534
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002535 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002536
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002537 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002538 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2539 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002540 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002541 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2542 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002543 }
2544}
2545
Avi Kivity6aa8b732006-12-10 02:21:36 -08002546static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2547{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002548 struct vcpu_svm *svm = to_svm(vcpu);
2549
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002550#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002551 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002552 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002553 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002554 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555 }
2556
Mike Dayd77c26f2007-10-08 09:02:08 -04002557 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002558 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002559 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002560 }
2561 }
2562#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002563 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002564
2565 if (!npt_enabled)
2566 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002567
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002568 /*
2569 * re-enable caching here because the QEMU bios
2570 * does not do it - this results in some delay at
2571 * reboot
2572 */
2573 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2574 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002575 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002576 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002577 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578}
2579
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002580static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002582 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002583 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2584
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002585 if (cr4 & X86_CR4_VMXE)
2586 return 1;
2587
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002588 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002589 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002590
Joerg Roedelec077262008-04-09 14:15:28 +02002591 vcpu->arch.cr4 = cr4;
2592 if (!npt_enabled)
2593 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002594 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002595 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002596 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002597 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002598}
2599
2600static void svm_set_segment(struct kvm_vcpu *vcpu,
2601 struct kvm_segment *var, int seg)
2602{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002603 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002604 struct vmcb_seg *s = svm_seg(vcpu, seg);
2605
2606 s->base = var->base;
2607 s->limit = var->limit;
2608 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002609 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2610 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2611 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2612 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2613 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2614 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2615 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2616 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002617
2618 /*
2619 * This is always accurate, except if SYSRET returned to a segment
2620 * with SS.DPL != 3. Intel does not have this quirk, and always
2621 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2622 * would entail passing the CPL to userspace and back.
2623 */
2624 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002625 /* This is symmetric with svm_get_segment() */
2626 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002627
Joerg Roedel060d0c92010-12-03 11:45:57 +01002628 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629}
2630
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002631static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002633 struct vcpu_svm *svm = to_svm(vcpu);
2634
Joerg Roedel18c918c2010-11-30 18:03:59 +01002635 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002636
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002637 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002638 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002639 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002640 } else
2641 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002642}
2643
Tejun Heo0fe1e002009-10-29 22:34:14 +09002644static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002646 if (sd->next_asid > sd->max_asid) {
2647 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002648 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002649 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650 }
2651
Tejun Heo0fe1e002009-10-29 22:34:14 +09002652 svm->asid_generation = sd->asid_generation;
2653 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002654
2655 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656}
2657
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002658static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2659{
2660 return to_svm(vcpu)->vmcb->save.dr6;
2661}
2662
2663static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2664{
2665 struct vcpu_svm *svm = to_svm(vcpu);
2666
2667 svm->vmcb->save.dr6 = value;
2668 mark_dirty(svm->vmcb, VMCB_DR);
2669}
2670
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002671static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2672{
2673 struct vcpu_svm *svm = to_svm(vcpu);
2674
2675 get_debugreg(vcpu->arch.db[0], 0);
2676 get_debugreg(vcpu->arch.db[1], 1);
2677 get_debugreg(vcpu->arch.db[2], 2);
2678 get_debugreg(vcpu->arch.db[3], 3);
2679 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2680 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2681
2682 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2683 set_dr_intercepts(svm);
2684}
2685
Gleb Natapov020df072010-04-13 10:05:23 +03002686static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002687{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002688 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002689
Gleb Natapov020df072010-04-13 10:05:23 +03002690 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002691 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692}
2693
Avi Kivity851ba692009-08-24 11:10:17 +03002694static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002696 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002697 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002698
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002699 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002700 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2701 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002702 svm->vmcb->control.insn_len);
2703}
2704
2705static int npf_interception(struct vcpu_svm *svm)
2706{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002707 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002708 u64 error_code = svm->vmcb->control.exit_info_1;
2709
2710 trace_kvm_page_fault(fault_address, error_code);
2711 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002712 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2713 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002714 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715}
2716
Avi Kivity851ba692009-08-24 11:10:17 +03002717static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002718{
Avi Kivity851ba692009-08-24 11:10:17 +03002719 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002720 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002721
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002722 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002723 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002724 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002725 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2726 return 1;
2727 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002728
Jan Kiszka6be7d302009-10-18 13:24:54 +02002729 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002730 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002731 /* Make sure we check for pending NMIs upon entry */
2732 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002733 }
2734
2735 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002736 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002737 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2738 kvm_run->debug.arch.pc =
2739 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2740 kvm_run->debug.arch.exception = DB_VECTOR;
2741 return 0;
2742 }
2743
2744 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002745}
2746
Avi Kivity851ba692009-08-24 11:10:17 +03002747static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002748{
Avi Kivity851ba692009-08-24 11:10:17 +03002749 struct kvm_run *kvm_run = svm->vcpu.run;
2750
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002751 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2752 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2753 kvm_run->debug.arch.exception = BP_VECTOR;
2754 return 0;
2755}
2756
Avi Kivity851ba692009-08-24 11:10:17 +03002757static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002758{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002759 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002760}
2761
Eric Northup54a20552015-11-03 18:03:53 +01002762static int ac_interception(struct vcpu_svm *svm)
2763{
2764 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2765 return 1;
2766}
2767
Liran Alon97184202018-03-12 13:12:52 +02002768static int gp_interception(struct vcpu_svm *svm)
2769{
2770 struct kvm_vcpu *vcpu = &svm->vcpu;
2771 u32 error_code = svm->vmcb->control.exit_info_1;
2772 int er;
2773
2774 WARN_ON_ONCE(!enable_vmware_backdoor);
2775
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002776 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002777 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2778 if (er == EMULATE_USER_EXIT)
2779 return 0;
2780 else if (er != EMULATE_DONE)
2781 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2782 return 1;
2783}
2784
Joerg Roedel67ec6602010-05-17 14:43:35 +02002785static bool is_erratum_383(void)
2786{
2787 int err, i;
2788 u64 value;
2789
2790 if (!erratum_383_found)
2791 return false;
2792
2793 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2794 if (err)
2795 return false;
2796
2797 /* Bit 62 may or may not be set for this mce */
2798 value &= ~(1ULL << 62);
2799
2800 if (value != 0xb600000000010015ULL)
2801 return false;
2802
2803 /* Clear MCi_STATUS registers */
2804 for (i = 0; i < 6; ++i)
2805 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2806
2807 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2808 if (!err) {
2809 u32 low, high;
2810
2811 value &= ~(1ULL << 2);
2812 low = lower_32_bits(value);
2813 high = upper_32_bits(value);
2814
2815 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2816 }
2817
2818 /* Flush tlb to evict multi-match entries */
2819 __flush_tlb_all();
2820
2821 return true;
2822}
2823
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002824static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002825{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002826 if (is_erratum_383()) {
2827 /*
2828 * Erratum 383 triggered. Guest state is corrupt so kill the
2829 * guest.
2830 */
2831 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2832
Avi Kivitya8eeb042010-05-10 12:34:53 +03002833 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002834
2835 return;
2836 }
2837
Joerg Roedel53371b52008-04-09 14:15:30 +02002838 /*
2839 * On an #MC intercept the MCE handler is not called automatically in
2840 * the host. So do it by hand here.
2841 */
2842 asm volatile (
2843 "int $0x12\n");
2844 /* not sure if we ever come back to this point */
2845
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002846 return;
2847}
2848
2849static int mc_interception(struct vcpu_svm *svm)
2850{
Joerg Roedel53371b52008-04-09 14:15:30 +02002851 return 1;
2852}
2853
Avi Kivity851ba692009-08-24 11:10:17 +03002854static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002855{
Avi Kivity851ba692009-08-24 11:10:17 +03002856 struct kvm_run *kvm_run = svm->vcpu.run;
2857
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002858 /*
2859 * VMCB is undefined after a SHUTDOWN intercept
2860 * so reinitialize it.
2861 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002862 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002863 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002864
2865 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2866 return 0;
2867}
2868
Avi Kivity851ba692009-08-24 11:10:17 +03002869static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002870{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002871 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002872 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002873 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002874 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002875
Rusty Russelle756fc62007-07-30 20:07:08 +10002876 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002877 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002878 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002879 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002880 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002881
Avi Kivity039576c2007-03-20 12:46:50 +02002882 port = io_info >> 16;
2883 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002884 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002885
Sean Christophersondca7f122018-03-08 08:57:27 -08002886 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887}
2888
Avi Kivity851ba692009-08-24 11:10:17 +03002889static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002890{
2891 return 1;
2892}
2893
Avi Kivity851ba692009-08-24 11:10:17 +03002894static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002895{
2896 ++svm->vcpu.stat.irq_exits;
2897 return 1;
2898}
2899
Avi Kivity851ba692009-08-24 11:10:17 +03002900static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901{
2902 return 1;
2903}
2904
Avi Kivity851ba692009-08-24 11:10:17 +03002905static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002907 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002908 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909}
2910
Avi Kivity851ba692009-08-24 11:10:17 +03002911static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002912{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002913 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002914 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002915}
2916
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002917static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2918{
2919 struct vcpu_svm *svm = to_svm(vcpu);
2920
2921 return svm->nested.nested_cr3;
2922}
2923
Avi Kivitye4e517b2011-07-28 11:36:17 +03002924static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2925{
2926 struct vcpu_svm *svm = to_svm(vcpu);
2927 u64 cr3 = svm->nested.nested_cr3;
2928 u64 pdpte;
2929 int ret;
2930
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002931 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002932 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002933 if (ret)
2934 return 0;
2935 return pdpte;
2936}
2937
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002938static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2939 unsigned long root)
2940{
2941 struct vcpu_svm *svm = to_svm(vcpu);
2942
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002943 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002944 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002945}
2946
Avi Kivity6389ee92010-11-29 16:12:30 +02002947static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2948 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002949{
2950 struct vcpu_svm *svm = to_svm(vcpu);
2951
Paolo Bonzini5e352512014-09-02 13:18:37 +02002952 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2953 /*
2954 * TODO: track the cause of the nested page fault, and
2955 * correctly fill in the high bits of exit_info_1.
2956 */
2957 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2958 svm->vmcb->control.exit_code_hi = 0;
2959 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2960 svm->vmcb->control.exit_info_2 = fault->address;
2961 }
2962
2963 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2964 svm->vmcb->control.exit_info_1 |= fault->error_code;
2965
2966 /*
2967 * The present bit is always zero for page structure faults on real
2968 * hardware.
2969 */
2970 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2971 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002972
2973 nested_svm_vmexit(svm);
2974}
2975
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002976static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002977{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002978 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002979
2980 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02002981 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002982 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
2983 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
2984 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
2985 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
2986 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
2987 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002988 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002989}
2990
2991static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2992{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002993 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002994 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002995}
2996
Alexander Grafc0725422008-11-25 20:17:03 +01002997static int nested_svm_check_permissions(struct vcpu_svm *svm)
2998{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002999 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3000 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01003001 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3002 return 1;
3003 }
3004
3005 if (svm->vmcb->save.cpl) {
3006 kvm_inject_gp(&svm->vcpu, 0);
3007 return 1;
3008 }
3009
Dan Carpentere9196ce2017-05-18 10:39:53 +03003010 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003011}
3012
Alexander Grafcf74a782008-11-25 20:17:08 +01003013static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3014 bool has_error_code, u32 error_code)
3015{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003016 int vmexit;
3017
Joerg Roedel20307532010-11-29 17:51:48 +01003018 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003019 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003020
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003021 vmexit = nested_svm_intercept(svm);
3022 if (vmexit != NESTED_EXIT_DONE)
3023 return 0;
3024
Joerg Roedel0295ad72009-08-07 11:49:37 +02003025 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3026 svm->vmcb->control.exit_code_hi = 0;
3027 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003028
3029 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003030 * EXITINFO2 is undefined for all exception intercepts other
3031 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003032 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003033 if (svm->vcpu.arch.exception.nested_apf)
3034 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003035 else if (svm->vcpu.arch.exception.has_payload)
3036 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003037 else
3038 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003039
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003040 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003041 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003042}
3043
Joerg Roedel8fe54652010-02-19 16:23:01 +01003044/* This function returns true if it is save to enable the irq window */
3045static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003046{
Joerg Roedel20307532010-11-29 17:51:48 +01003047 if (!is_guest_mode(&svm->vcpu))
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_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003051 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003052
Joerg Roedel26666952009-08-07 11:49:46 +02003053 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003054 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003055
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003056 /*
3057 * if vmexit was already requested (by intercepted exception
3058 * for instance) do not overwrite it with "external interrupt"
3059 * vmexit.
3060 */
3061 if (svm->nested.exit_required)
3062 return false;
3063
Joerg Roedel197717d2010-02-24 18:59:19 +01003064 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3065 svm->vmcb->control.exit_info_1 = 0;
3066 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003067
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003068 if (svm->nested.intercept & 1ULL) {
3069 /*
3070 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003071 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003072 * #vmexit emulation might sleep. Only signal request for
3073 * the #vmexit here.
3074 */
3075 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003076 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003077 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003078 }
3079
Joerg Roedel8fe54652010-02-19 16:23:01 +01003080 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003081}
3082
Joerg Roedel887f5002010-02-24 18:59:12 +01003083/* This function returns true if it is save to enable the nmi window */
3084static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3085{
Joerg Roedel20307532010-11-29 17:51:48 +01003086 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003087 return true;
3088
3089 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3090 return true;
3091
3092 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3093 svm->nested.exit_required = true;
3094
3095 return false;
3096}
3097
Joerg Roedelce2ac082010-03-01 15:34:39 +01003098static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003099{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003100 unsigned port, size, iopm_len;
3101 u16 val, mask;
3102 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003103 u64 gpa;
3104
3105 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3106 return NESTED_EXIT_HOST;
3107
3108 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003109 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3110 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003111 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003112 start_bit = port % 8;
3113 iopm_len = (start_bit + size > 8) ? 2 : 1;
3114 mask = (0xf >> (4 - size)) << start_bit;
3115 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003116
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003117 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003118 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003119
Jan Kiszka9bf41832014-06-30 10:54:17 +02003120 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003121}
3122
Joerg Roedeld2477822010-03-01 15:34:34 +01003123static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003124{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003125 u32 offset, msr, value;
3126 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003127
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003128 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003129 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003130
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003131 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3132 offset = svm_msrpm_offset(msr);
3133 write = svm->vmcb->control.exit_info_1 & 1;
3134 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003135
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003136 if (offset == MSR_INVALID)
3137 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003138
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003139 /* Offset is in 32 bit units but need in 8 bit units */
3140 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003141
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003142 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003143 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003144
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003145 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003146}
3147
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003148/* DB exceptions for our internal use must not cause vmexit */
3149static int nested_svm_intercept_db(struct vcpu_svm *svm)
3150{
3151 unsigned long dr6;
3152
3153 /* if we're not singlestepping, it's not ours */
3154 if (!svm->nmi_singlestep)
3155 return NESTED_EXIT_DONE;
3156
3157 /* if it's not a singlestep exception, it's not ours */
3158 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3159 return NESTED_EXIT_DONE;
3160 if (!(dr6 & DR6_BS))
3161 return NESTED_EXIT_DONE;
3162
3163 /* if the guest is singlestepping, it should get the vmexit */
3164 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3165 disable_nmi_singlestep(svm);
3166 return NESTED_EXIT_DONE;
3167 }
3168
3169 /* it's ours, the nested hypervisor must not see this one */
3170 return NESTED_EXIT_HOST;
3171}
3172
Joerg Roedel410e4d52009-08-07 11:49:44 +02003173static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003174{
Alexander Grafcf74a782008-11-25 20:17:08 +01003175 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003176
Joerg Roedel410e4d52009-08-07 11:49:44 +02003177 switch (exit_code) {
3178 case SVM_EXIT_INTR:
3179 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003180 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003181 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003182 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003183 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003184 if (npt_enabled)
3185 return NESTED_EXIT_HOST;
3186 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003187 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003188 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003189 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003190 return NESTED_EXIT_HOST;
3191 break;
3192 default:
3193 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003194 }
3195
Joerg Roedel410e4d52009-08-07 11:49:44 +02003196 return NESTED_EXIT_CONTINUE;
3197}
3198
3199/*
3200 * If this function returns true, this #vmexit was already handled
3201 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003202static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003203{
3204 u32 exit_code = svm->vmcb->control.exit_code;
3205 int vmexit = NESTED_EXIT_HOST;
3206
Alexander Grafcf74a782008-11-25 20:17:08 +01003207 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003208 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003209 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003210 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003211 case SVM_EXIT_IOIO:
3212 vmexit = nested_svm_intercept_ioio(svm);
3213 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003214 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3215 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3216 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003217 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003218 break;
3219 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003220 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3221 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3222 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003223 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003224 break;
3225 }
3226 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3227 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003228 if (svm->nested.intercept_exceptions & excp_bits) {
3229 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3230 vmexit = nested_svm_intercept_db(svm);
3231 else
3232 vmexit = NESTED_EXIT_DONE;
3233 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003234 /* async page fault always cause vmexit */
3235 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003236 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003237 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003238 break;
3239 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003240 case SVM_EXIT_ERR: {
3241 vmexit = NESTED_EXIT_DONE;
3242 break;
3243 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003244 default: {
3245 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003246 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003247 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003248 }
3249 }
3250
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003251 return vmexit;
3252}
3253
3254static int nested_svm_exit_handled(struct vcpu_svm *svm)
3255{
3256 int vmexit;
3257
3258 vmexit = nested_svm_intercept(svm);
3259
3260 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003261 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003262
3263 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003264}
3265
Joerg Roedel0460a972009-08-07 11:49:31 +02003266static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3267{
3268 struct vmcb_control_area *dst = &dst_vmcb->control;
3269 struct vmcb_control_area *from = &from_vmcb->control;
3270
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003271 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003272 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003273 dst->intercept_exceptions = from->intercept_exceptions;
3274 dst->intercept = from->intercept;
3275 dst->iopm_base_pa = from->iopm_base_pa;
3276 dst->msrpm_base_pa = from->msrpm_base_pa;
3277 dst->tsc_offset = from->tsc_offset;
3278 dst->asid = from->asid;
3279 dst->tlb_ctl = from->tlb_ctl;
3280 dst->int_ctl = from->int_ctl;
3281 dst->int_vector = from->int_vector;
3282 dst->int_state = from->int_state;
3283 dst->exit_code = from->exit_code;
3284 dst->exit_code_hi = from->exit_code_hi;
3285 dst->exit_info_1 = from->exit_info_1;
3286 dst->exit_info_2 = from->exit_info_2;
3287 dst->exit_int_info = from->exit_int_info;
3288 dst->exit_int_info_err = from->exit_int_info_err;
3289 dst->nested_ctl = from->nested_ctl;
3290 dst->event_inj = from->event_inj;
3291 dst->event_inj_err = from->event_inj_err;
3292 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003293 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003294 dst->pause_filter_count = from->pause_filter_count;
3295 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003296}
3297
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003298static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003299{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003300 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003301 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003302 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003303 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003304 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003305
Joerg Roedel17897f32009-10-09 16:08:29 +02003306 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3307 vmcb->control.exit_info_1,
3308 vmcb->control.exit_info_2,
3309 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003310 vmcb->control.exit_int_info_err,
3311 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003312
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003313 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003314 if (rc) {
3315 if (rc == -EINVAL)
3316 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003317 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003318 }
3319
3320 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003321
Joerg Roedel20307532010-11-29 17:51:48 +01003322 /* Exit Guest-Mode */
3323 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003324 svm->nested.vmcb = 0;
3325
Alexander Grafcf74a782008-11-25 20:17:08 +01003326 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003327 disable_gif(svm);
3328
3329 nested_vmcb->save.es = vmcb->save.es;
3330 nested_vmcb->save.cs = vmcb->save.cs;
3331 nested_vmcb->save.ss = vmcb->save.ss;
3332 nested_vmcb->save.ds = vmcb->save.ds;
3333 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3334 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003335 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003336 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003337 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003338 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003339 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003340 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003341 nested_vmcb->save.rip = vmcb->save.rip;
3342 nested_vmcb->save.rsp = vmcb->save.rsp;
3343 nested_vmcb->save.rax = vmcb->save.rax;
3344 nested_vmcb->save.dr7 = vmcb->save.dr7;
3345 nested_vmcb->save.dr6 = vmcb->save.dr6;
3346 nested_vmcb->save.cpl = vmcb->save.cpl;
3347
3348 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3349 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3350 nested_vmcb->control.int_state = vmcb->control.int_state;
3351 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3352 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3353 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3354 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3355 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3356 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003357
3358 if (svm->nrips_enabled)
3359 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003360
3361 /*
3362 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3363 * to make sure that we do not lose injected events. So check event_inj
3364 * here and copy it to exit_int_info if it is valid.
3365 * Exit_int_info and event_inj can't be both valid because the case
3366 * below only happens on a VMRUN instruction intercept which has
3367 * no valid exit_int_info set.
3368 */
3369 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3370 struct vmcb_control_area *nc = &nested_vmcb->control;
3371
3372 nc->exit_int_info = vmcb->control.event_inj;
3373 nc->exit_int_info_err = vmcb->control.event_inj_err;
3374 }
3375
Joerg Roedel33740e42009-08-07 11:49:29 +02003376 nested_vmcb->control.tlb_ctl = 0;
3377 nested_vmcb->control.event_inj = 0;
3378 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003379
Tambe, Williame0813542018-11-13 16:51:20 +00003380 nested_vmcb->control.pause_filter_count =
3381 svm->vmcb->control.pause_filter_count;
3382 nested_vmcb->control.pause_filter_thresh =
3383 svm->vmcb->control.pause_filter_thresh;
3384
Alexander Grafcf74a782008-11-25 20:17:08 +01003385 /* We always set V_INTR_MASKING and remember the old value in hflags */
3386 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3387 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3388
Alexander Grafcf74a782008-11-25 20:17:08 +01003389 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003390 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003391
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003392 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003393 kvm_clear_exception_queue(&svm->vcpu);
3394 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003395
Joerg Roedel4b161842010-09-10 17:31:03 +02003396 svm->nested.nested_cr3 = 0;
3397
Alexander Grafcf74a782008-11-25 20:17:08 +01003398 /* Restore selected save entries */
3399 svm->vmcb->save.es = hsave->save.es;
3400 svm->vmcb->save.cs = hsave->save.cs;
3401 svm->vmcb->save.ss = hsave->save.ss;
3402 svm->vmcb->save.ds = hsave->save.ds;
3403 svm->vmcb->save.gdtr = hsave->save.gdtr;
3404 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003405 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003406 svm_set_efer(&svm->vcpu, hsave->save.efer);
3407 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3408 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3409 if (npt_enabled) {
3410 svm->vmcb->save.cr3 = hsave->save.cr3;
3411 svm->vcpu.arch.cr3 = hsave->save.cr3;
3412 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003413 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003414 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003415 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003416 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3417 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003418 svm->vmcb->save.dr7 = 0;
3419 svm->vmcb->save.cpl = 0;
3420 svm->vmcb->control.exit_int_info = 0;
3421
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003422 mark_all_dirty(svm->vmcb);
3423
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003424 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003425
Joerg Roedel4b161842010-09-10 17:31:03 +02003426 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003427 kvm_mmu_reset_context(&svm->vcpu);
3428 kvm_mmu_load(&svm->vcpu);
3429
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003430 /*
3431 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3432 * doesn't end up in L1.
3433 */
3434 svm->vcpu.arch.nmi_injected = false;
3435 kvm_clear_exception_queue(&svm->vcpu);
3436 kvm_clear_interrupt_queue(&svm->vcpu);
3437
Alexander Grafcf74a782008-11-25 20:17:08 +01003438 return 0;
3439}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003440
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003441static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003442{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003443 /*
3444 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003445 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003446 * the kvm msr permission bitmap may contain zero bits
3447 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003448 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003449
Joerg Roedel323c3d82010-03-01 15:34:37 +01003450 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3451 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003452
Joerg Roedel323c3d82010-03-01 15:34:37 +01003453 for (i = 0; i < MSRPM_OFFSETS; i++) {
3454 u32 value, p;
3455 u64 offset;
3456
3457 if (msrpm_offsets[i] == 0xffffffff)
3458 break;
3459
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003460 p = msrpm_offsets[i];
3461 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003462
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003463 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003464 return false;
3465
3466 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3467 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003468
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003469 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003470
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003471 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003472}
3473
Joerg Roedel52c65a302010-08-02 16:46:44 +02003474static bool nested_vmcb_checks(struct vmcb *vmcb)
3475{
3476 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3477 return false;
3478
Joerg Roedeldbe77582010-08-02 16:46:45 +02003479 if (vmcb->control.asid == 0)
3480 return false;
3481
Tom Lendackycea3a192017-12-04 10:57:24 -06003482 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3483 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003484 return false;
3485
Joerg Roedel52c65a302010-08-02 16:46:44 +02003486 return true;
3487}
3488
Ladi Prosekc2634062017-10-11 16:54:44 +02003489static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003490 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003491{
Avi Kivityf6e78472010-08-02 15:30:20 +03003492 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003493 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3494 else
3495 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3496
Tom Lendackycea3a192017-12-04 10:57:24 -06003497 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003498 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3499 nested_svm_init_mmu_context(&svm->vcpu);
3500 }
3501
Alexander Graf3d6368e2008-11-25 20:17:07 +01003502 /* Load the nested guest state */
3503 svm->vmcb->save.es = nested_vmcb->save.es;
3504 svm->vmcb->save.cs = nested_vmcb->save.cs;
3505 svm->vmcb->save.ss = nested_vmcb->save.ss;
3506 svm->vmcb->save.ds = nested_vmcb->save.ds;
3507 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3508 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003509 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003510 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3511 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3512 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3513 if (npt_enabled) {
3514 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3515 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003516 } else
Avi Kivity23902182010-06-10 17:02:16 +03003517 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003518
3519 /* Guest paging mode is active - reset mmu */
3520 kvm_mmu_reset_context(&svm->vcpu);
3521
Joerg Roedeldefbba52009-08-07 11:49:30 +02003522 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003523 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003524 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3525 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003526
Alexander Graf3d6368e2008-11-25 20:17:07 +01003527 /* In case we don't even reach vcpu_run, the fields are not updated */
3528 svm->vmcb->save.rax = nested_vmcb->save.rax;
3529 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3530 svm->vmcb->save.rip = nested_vmcb->save.rip;
3531 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3532 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3533 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3534
Joerg Roedelf7138532010-03-01 15:34:40 +01003535 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003536 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003537
Joerg Roedelaad42c62009-08-07 11:49:34 +02003538 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003539 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003540 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003541 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3542 svm->nested.intercept = nested_vmcb->control.intercept;
3543
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003544 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003545 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003546 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3547 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3548 else
3549 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3550
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003551 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3552 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003553 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3554 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003555 }
3556
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003557 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003558 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003559
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003560 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3561 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3562
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003563 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003564 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3565 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003566 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3567 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3568
Tambe, Williame0813542018-11-13 16:51:20 +00003569 svm->vmcb->control.pause_filter_count =
3570 nested_vmcb->control.pause_filter_count;
3571 svm->vmcb->control.pause_filter_thresh =
3572 nested_vmcb->control.pause_filter_thresh;
3573
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003574 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003575
Joerg Roedel20307532010-11-29 17:51:48 +01003576 /* Enter Guest-Mode */
3577 enter_guest_mode(&svm->vcpu);
3578
Joerg Roedel384c6362010-11-30 18:03:56 +01003579 /*
3580 * Merge guest and host intercepts - must be called with vcpu in
3581 * guest-mode to take affect here
3582 */
3583 recalc_intercepts(svm);
3584
Joerg Roedel06fc77722010-02-19 16:23:07 +01003585 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003586
Joerg Roedel2af91942009-08-07 11:49:28 +02003587 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003588
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003589 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003590}
3591
3592static bool nested_svm_vmrun(struct vcpu_svm *svm)
3593{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003594 int rc;
Ladi Prosekc2634062017-10-11 16:54:44 +02003595 struct vmcb *nested_vmcb;
3596 struct vmcb *hsave = svm->nested.hsave;
3597 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003598 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003599 u64 vmcb_gpa;
3600
3601 vmcb_gpa = svm->vmcb->save.rax;
3602
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003603 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003604 if (rc) {
3605 if (rc == -EINVAL)
3606 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekc2634062017-10-11 16:54:44 +02003607 return false;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003608 }
3609
3610 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003611
3612 if (!nested_vmcb_checks(nested_vmcb)) {
3613 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3614 nested_vmcb->control.exit_code_hi = 0;
3615 nested_vmcb->control.exit_info_1 = 0;
3616 nested_vmcb->control.exit_info_2 = 0;
3617
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003618 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003619
3620 return false;
3621 }
3622
3623 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3624 nested_vmcb->save.rip,
3625 nested_vmcb->control.int_ctl,
3626 nested_vmcb->control.event_inj,
3627 nested_vmcb->control.nested_ctl);
3628
3629 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3630 nested_vmcb->control.intercept_cr >> 16,
3631 nested_vmcb->control.intercept_exceptions,
3632 nested_vmcb->control.intercept);
3633
3634 /* Clear internal status */
3635 kvm_clear_exception_queue(&svm->vcpu);
3636 kvm_clear_interrupt_queue(&svm->vcpu);
3637
3638 /*
3639 * Save the old vmcb, so we don't need to pick what we save, but can
3640 * restore everything when a VMEXIT occurs
3641 */
3642 hsave->save.es = vmcb->save.es;
3643 hsave->save.cs = vmcb->save.cs;
3644 hsave->save.ss = vmcb->save.ss;
3645 hsave->save.ds = vmcb->save.ds;
3646 hsave->save.gdtr = vmcb->save.gdtr;
3647 hsave->save.idtr = vmcb->save.idtr;
3648 hsave->save.efer = svm->vcpu.arch.efer;
3649 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3650 hsave->save.cr4 = svm->vcpu.arch.cr4;
3651 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3652 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3653 hsave->save.rsp = vmcb->save.rsp;
3654 hsave->save.rax = vmcb->save.rax;
3655 if (npt_enabled)
3656 hsave->save.cr3 = vmcb->save.cr3;
3657 else
3658 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3659
3660 copy_vmcb_control_area(hsave, vmcb);
3661
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003662 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003663
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003664 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003665}
3666
Joerg Roedel9966bf62009-08-07 11:49:40 +02003667static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003668{
3669 to_vmcb->save.fs = from_vmcb->save.fs;
3670 to_vmcb->save.gs = from_vmcb->save.gs;
3671 to_vmcb->save.tr = from_vmcb->save.tr;
3672 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3673 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3674 to_vmcb->save.star = from_vmcb->save.star;
3675 to_vmcb->save.lstar = from_vmcb->save.lstar;
3676 to_vmcb->save.cstar = from_vmcb->save.cstar;
3677 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3678 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3679 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3680 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003681}
3682
Avi Kivity851ba692009-08-24 11:10:17 +03003683static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003684{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003685 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003686 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003687 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003688
Alexander Graf55426752008-11-25 20:17:06 +01003689 if (nested_svm_check_permissions(svm))
3690 return 1;
3691
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003692 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3693 if (ret) {
3694 if (ret == -EINVAL)
3695 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003696 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003697 }
3698
3699 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003700
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003701 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003702 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003703
Joerg Roedel9966bf62009-08-07 11:49:40 +02003704 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003705 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003706
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003707 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003708}
3709
Avi Kivity851ba692009-08-24 11:10:17 +03003710static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003711{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003712 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003713 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003714 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003715
Alexander Graf55426752008-11-25 20:17:06 +01003716 if (nested_svm_check_permissions(svm))
3717 return 1;
3718
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003719 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3720 if (ret) {
3721 if (ret == -EINVAL)
3722 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003723 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003724 }
3725
3726 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003727
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003728 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003729 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003730
Joerg Roedel9966bf62009-08-07 11:49:40 +02003731 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003732 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003733
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003734 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003735}
3736
Avi Kivity851ba692009-08-24 11:10:17 +03003737static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003738{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003739 if (nested_svm_check_permissions(svm))
3740 return 1;
3741
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003742 /* Save rip after vmrun instruction */
3743 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003744
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003745 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003746 return 1;
3747
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003748 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003749 goto failed;
3750
3751 return 1;
3752
3753failed:
3754
3755 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3756 svm->vmcb->control.exit_code_hi = 0;
3757 svm->vmcb->control.exit_info_1 = 0;
3758 svm->vmcb->control.exit_info_2 = 0;
3759
3760 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003761
3762 return 1;
3763}
3764
Avi Kivity851ba692009-08-24 11:10:17 +03003765static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003766{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003767 int ret;
3768
Alexander Graf1371d902008-11-25 20:17:04 +01003769 if (nested_svm_check_permissions(svm))
3770 return 1;
3771
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003772 /*
3773 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003774 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003775 */
3776 if (vgif_enabled(svm))
3777 clr_intercept(svm, INTERCEPT_STGI);
3778
Alexander Graf1371d902008-11-25 20:17:04 +01003779 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003780 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003781 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003782
Joerg Roedel2af91942009-08-07 11:49:28 +02003783 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003784
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003785 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003786}
3787
Avi Kivity851ba692009-08-24 11:10:17 +03003788static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003789{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003790 int ret;
3791
Alexander Graf1371d902008-11-25 20:17:04 +01003792 if (nested_svm_check_permissions(svm))
3793 return 1;
3794
3795 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003796 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003797
Joerg Roedel2af91942009-08-07 11:49:28 +02003798 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003799
3800 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003801 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3802 svm_clear_vintr(svm);
3803 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3804 mark_dirty(svm->vmcb, VMCB_INTR);
3805 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003806
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003807 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003808}
3809
Avi Kivity851ba692009-08-24 11:10:17 +03003810static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003811{
3812 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003813
Sean Christophersonde3cd112019-04-30 10:36:17 -07003814 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3815 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003816
Alexander Grafff092382009-06-15 15:21:24 +02003817 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003818 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003819
3820 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003821 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003822}
3823
Joerg Roedel532a46b2009-10-09 16:08:32 +02003824static int skinit_interception(struct vcpu_svm *svm)
3825{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003826 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003827
3828 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3829 return 1;
3830}
3831
David Kaplandab429a2015-03-02 13:43:37 -06003832static int wbinvd_interception(struct vcpu_svm *svm)
3833{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003834 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003835}
3836
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003837static int xsetbv_interception(struct vcpu_svm *svm)
3838{
3839 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003840 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003841
3842 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3843 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003844 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003845 }
3846
3847 return 1;
3848}
3849
Avi Kivity851ba692009-08-24 11:10:17 +03003850static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003851{
Izik Eidus37817f22008-03-24 23:14:53 +02003852 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003853 int reason;
3854 int int_type = svm->vmcb->control.exit_int_info &
3855 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003856 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003857 uint32_t type =
3858 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3859 uint32_t idt_v =
3860 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003861 bool has_error_code = false;
3862 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003863
3864 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003865
Izik Eidus37817f22008-03-24 23:14:53 +02003866 if (svm->vmcb->control.exit_info_2 &
3867 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003868 reason = TASK_SWITCH_IRET;
3869 else if (svm->vmcb->control.exit_info_2 &
3870 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3871 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003872 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003873 reason = TASK_SWITCH_GATE;
3874 else
3875 reason = TASK_SWITCH_CALL;
3876
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003877 if (reason == TASK_SWITCH_GATE) {
3878 switch (type) {
3879 case SVM_EXITINTINFO_TYPE_NMI:
3880 svm->vcpu.arch.nmi_injected = false;
3881 break;
3882 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003883 if (svm->vmcb->control.exit_info_2 &
3884 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3885 has_error_code = true;
3886 error_code =
3887 (u32)svm->vmcb->control.exit_info_2;
3888 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003889 kvm_clear_exception_queue(&svm->vcpu);
3890 break;
3891 case SVM_EXITINTINFO_TYPE_INTR:
3892 kvm_clear_interrupt_queue(&svm->vcpu);
3893 break;
3894 default:
3895 break;
3896 }
3897 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003898
Gleb Natapov8317c292009-04-12 13:37:02 +03003899 if (reason != TASK_SWITCH_GATE ||
3900 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3901 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003902 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3903 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003904
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003905 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3906 int_vec = -1;
3907
3908 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003909 has_error_code, error_code) == EMULATE_FAIL) {
3910 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3911 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3912 svm->vcpu.run->internal.ndata = 0;
3913 return 0;
3914 }
3915 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003916}
3917
Avi Kivity851ba692009-08-24 11:10:17 +03003918static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003919{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003920 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003921 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003922}
3923
Avi Kivity851ba692009-08-24 11:10:17 +03003924static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003925{
3926 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003927 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003928 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003929 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003930 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003931 return 1;
3932}
3933
Avi Kivity851ba692009-08-24 11:10:17 +03003934static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003935{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003936 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003937 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003938
3939 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003940 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003941}
3942
Avi Kivity851ba692009-08-24 11:10:17 +03003943static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003945 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946}
3947
Brijesh Singh7607b712018-02-19 10:14:44 -06003948static int rsm_interception(struct vcpu_svm *svm)
3949{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003950 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3951 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003952}
3953
Avi Kivity332b56e2011-11-10 14:57:24 +02003954static int rdpmc_interception(struct vcpu_svm *svm)
3955{
3956 int err;
3957
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003958 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003959 return emulate_on_interception(svm);
3960
3961 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003962 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003963}
3964
Xiubo Li52eb5a62015-03-13 17:39:45 +08003965static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3966 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003967{
3968 unsigned long cr0 = svm->vcpu.arch.cr0;
3969 bool ret = false;
3970 u64 intercept;
3971
3972 intercept = svm->nested.intercept;
3973
3974 if (!is_guest_mode(&svm->vcpu) ||
3975 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3976 return false;
3977
3978 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3979 val &= ~SVM_CR0_SELECTIVE_MASK;
3980
3981 if (cr0 ^ val) {
3982 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3983 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3984 }
3985
3986 return ret;
3987}
3988
Andre Przywara7ff76d52010-12-21 11:12:04 +01003989#define CR_VALID (1ULL << 63)
3990
3991static int cr_interception(struct vcpu_svm *svm)
3992{
3993 int reg, cr;
3994 unsigned long val;
3995 int err;
3996
3997 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3998 return emulate_on_interception(svm);
3999
4000 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4001 return emulate_on_interception(svm);
4002
4003 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004004 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4005 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4006 else
4007 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004008
4009 err = 0;
4010 if (cr >= 16) { /* mov to cr */
4011 cr -= 16;
4012 val = kvm_register_read(&svm->vcpu, reg);
4013 switch (cr) {
4014 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004015 if (!check_selective_cr0_intercepted(svm, val))
4016 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004017 else
4018 return 1;
4019
Andre Przywara7ff76d52010-12-21 11:12:04 +01004020 break;
4021 case 3:
4022 err = kvm_set_cr3(&svm->vcpu, val);
4023 break;
4024 case 4:
4025 err = kvm_set_cr4(&svm->vcpu, val);
4026 break;
4027 case 8:
4028 err = kvm_set_cr8(&svm->vcpu, val);
4029 break;
4030 default:
4031 WARN(1, "unhandled write to CR%d", cr);
4032 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4033 return 1;
4034 }
4035 } else { /* mov from cr */
4036 switch (cr) {
4037 case 0:
4038 val = kvm_read_cr0(&svm->vcpu);
4039 break;
4040 case 2:
4041 val = svm->vcpu.arch.cr2;
4042 break;
4043 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004044 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004045 break;
4046 case 4:
4047 val = kvm_read_cr4(&svm->vcpu);
4048 break;
4049 case 8:
4050 val = kvm_get_cr8(&svm->vcpu);
4051 break;
4052 default:
4053 WARN(1, "unhandled read from CR%d", cr);
4054 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4055 return 1;
4056 }
4057 kvm_register_write(&svm->vcpu, reg, val);
4058 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004059 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004060}
4061
Andre Przywaracae37972010-12-21 11:12:05 +01004062static int dr_interception(struct vcpu_svm *svm)
4063{
4064 int reg, dr;
4065 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004066
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004067 if (svm->vcpu.guest_debug == 0) {
4068 /*
4069 * No more DR vmexits; force a reload of the debug registers
4070 * and reenter on this instruction. The next vmexit will
4071 * retrieve the full state of the debug registers.
4072 */
4073 clr_dr_intercepts(svm);
4074 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4075 return 1;
4076 }
4077
Andre Przywaracae37972010-12-21 11:12:05 +01004078 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4079 return emulate_on_interception(svm);
4080
4081 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4082 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4083
4084 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004085 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4086 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004087 val = kvm_register_read(&svm->vcpu, reg);
4088 kvm_set_dr(&svm->vcpu, dr - 16, val);
4089 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004090 if (!kvm_require_dr(&svm->vcpu, dr))
4091 return 1;
4092 kvm_get_dr(&svm->vcpu, dr, &val);
4093 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004094 }
4095
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004096 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004097}
4098
Avi Kivity851ba692009-08-24 11:10:17 +03004099static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004100{
Avi Kivity851ba692009-08-24 11:10:17 +03004101 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004102 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004103
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004104 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4105 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004106 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004107 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004108 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004109 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004110 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004111 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4112 return 0;
4113}
4114
Tom Lendacky801e4592018-02-21 13:39:51 -06004115static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4116{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004117 msr->data = 0;
4118
4119 switch (msr->index) {
4120 case MSR_F10H_DECFG:
4121 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4122 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4123 break;
4124 default:
4125 return 1;
4126 }
4127
4128 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004129}
4130
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004131static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004133 struct vcpu_svm *svm = to_svm(vcpu);
4134
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004135 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004136 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004137 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004138 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004139#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004140 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004141 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142 break;
4143 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004144 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004145 break;
4146 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004147 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004148 break;
4149 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004150 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004151 break;
4152#endif
4153 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004154 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155 break;
4156 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004157 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004158 break;
4159 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004160 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004162 case MSR_TSC_AUX:
4163 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4164 return 1;
4165 msr_info->data = svm->tsc_aux;
4166 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004167 /*
4168 * Nobody will change the following 5 values in the VMCB so we can
4169 * safely return them on rdmsr. They will always be 0 until LBRV is
4170 * implemented.
4171 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004172 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004173 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004174 break;
4175 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004176 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004177 break;
4178 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004179 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004180 break;
4181 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004182 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004183 break;
4184 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004185 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004186 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004187 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004188 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004189 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004190 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004191 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004192 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004193 case MSR_IA32_SPEC_CTRL:
4194 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004195 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4196 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004197 return 1;
4198
4199 msr_info->data = svm->spec_ctrl;
4200 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004201 case MSR_AMD64_VIRT_SPEC_CTRL:
4202 if (!msr_info->host_initiated &&
4203 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4204 return 1;
4205
4206 msr_info->data = svm->virt_spec_ctrl;
4207 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004208 case MSR_F15H_IC_CFG: {
4209
4210 int family, model;
4211
4212 family = guest_cpuid_family(vcpu);
4213 model = guest_cpuid_model(vcpu);
4214
4215 if (family < 0 || model < 0)
4216 return kvm_get_msr_common(vcpu, msr_info);
4217
4218 msr_info->data = 0;
4219
4220 if (family == 0x15 &&
4221 (model >= 0x2 && model < 0x20))
4222 msr_info->data = 0x1E;
4223 }
4224 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004225 case MSR_F10H_DECFG:
4226 msr_info->data = svm->msr_decfg;
4227 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004228 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004229 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004230 }
4231 return 0;
4232}
4233
Avi Kivity851ba692009-08-24 11:10:17 +03004234static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004235{
Sean Christophersonde3cd112019-04-30 10:36:17 -07004236 u32 ecx = kvm_rcx_read(&svm->vcpu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004237 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004238
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004239 msr_info.index = ecx;
4240 msr_info.host_initiated = false;
4241 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004242 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004243 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004244 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004245 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004246 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004247
Sean Christophersonde3cd112019-04-30 10:36:17 -07004248 kvm_rax_write(&svm->vcpu, msr_info.data & 0xffffffff);
4249 kvm_rdx_write(&svm->vcpu, msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004250 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004251 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004253}
4254
Joerg Roedel4a810182010-02-24 18:59:15 +01004255static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4256{
4257 struct vcpu_svm *svm = to_svm(vcpu);
4258 int svm_dis, chg_mask;
4259
4260 if (data & ~SVM_VM_CR_VALID_MASK)
4261 return 1;
4262
4263 chg_mask = SVM_VM_CR_VALID_MASK;
4264
4265 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4266 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4267
4268 svm->nested.vm_cr_msr &= ~chg_mask;
4269 svm->nested.vm_cr_msr |= (data & chg_mask);
4270
4271 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4272
4273 /* check for svm_disable while efer.svme is set */
4274 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4275 return 1;
4276
4277 return 0;
4278}
4279
Will Auld8fe8ab42012-11-29 12:42:12 -08004280static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004281{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004282 struct vcpu_svm *svm = to_svm(vcpu);
4283
Will Auld8fe8ab42012-11-29 12:42:12 -08004284 u32 ecx = msr->index;
4285 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004286 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004287 case MSR_IA32_CR_PAT:
4288 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4289 return 1;
4290 vcpu->arch.pat = data;
4291 svm->vmcb->save.g_pat = data;
4292 mark_dirty(svm->vmcb, VMCB_NPT);
4293 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004294 case MSR_IA32_SPEC_CTRL:
4295 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004296 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4297 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004298 return 1;
4299
4300 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004301 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004302 return 1;
4303
4304 svm->spec_ctrl = data;
4305
4306 if (!data)
4307 break;
4308
4309 /*
4310 * For non-nested:
4311 * When it's written (to non-zero) for the first time, pass
4312 * it through.
4313 *
4314 * For nested:
4315 * The handling of the MSR bitmap for L2 guests is done in
4316 * nested_svm_vmrun_msrpm.
4317 * We update the L1 MSR bit as well since it will end up
4318 * touching the MSR anyway now.
4319 */
4320 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4321 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004322 case MSR_IA32_PRED_CMD:
4323 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004324 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004325 return 1;
4326
4327 if (data & ~PRED_CMD_IBPB)
4328 return 1;
4329
4330 if (!data)
4331 break;
4332
4333 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4334 if (is_guest_mode(vcpu))
4335 break;
4336 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4337 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004338 case MSR_AMD64_VIRT_SPEC_CTRL:
4339 if (!msr->host_initiated &&
4340 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4341 return 1;
4342
4343 if (data & ~SPEC_CTRL_SSBD)
4344 return 1;
4345
4346 svm->virt_spec_ctrl = data;
4347 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004348 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004349 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004351#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004352 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004353 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354 break;
4355 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004356 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004357 break;
4358 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004359 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004360 break;
4361 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004362 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004363 break;
4364#endif
4365 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004366 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 break;
4368 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004369 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004370 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004371 break;
4372 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004373 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004374 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004375 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004376 case MSR_TSC_AUX:
4377 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4378 return 1;
4379
4380 /*
4381 * This is rare, so we update the MSR here instead of using
4382 * direct_access_msrs. Doing that would require a rdmsr in
4383 * svm_vcpu_put.
4384 */
4385 svm->tsc_aux = data;
4386 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4387 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004388 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004389 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004390 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4391 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004392 break;
4393 }
4394 if (data & DEBUGCTL_RESERVED_BITS)
4395 return 1;
4396
4397 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004398 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004399 if (data & (1ULL<<0))
4400 svm_enable_lbrv(svm);
4401 else
4402 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004403 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004404 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004405 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004406 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004407 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004408 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004409 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004410 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004411 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004412 case MSR_F10H_DECFG: {
4413 struct kvm_msr_entry msr_entry;
4414
4415 msr_entry.index = msr->index;
4416 if (svm_get_msr_feature(&msr_entry))
4417 return 1;
4418
4419 /* Check the supported bits */
4420 if (data & ~msr_entry.data)
4421 return 1;
4422
4423 /* Don't allow the guest to change a bit, #GP */
4424 if (!msr->host_initiated && (data ^ msr_entry.data))
4425 return 1;
4426
4427 svm->msr_decfg = data;
4428 break;
4429 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004430 case MSR_IA32_APICBASE:
4431 if (kvm_vcpu_apicv_active(vcpu))
4432 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004433 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004434 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004435 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004436 }
4437 return 0;
4438}
4439
Avi Kivity851ba692009-08-24 11:10:17 +03004440static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441{
Will Auld8fe8ab42012-11-29 12:42:12 -08004442 struct msr_data msr;
Sean Christophersonde3cd112019-04-30 10:36:17 -07004443 u32 ecx = kvm_rcx_read(&svm->vcpu);
David Kaplan668f1982015-02-20 16:02:10 -06004444 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004445
Will Auld8fe8ab42012-11-29 12:42:12 -08004446 msr.data = data;
4447 msr.index = ecx;
4448 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004449
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004450 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004451 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004452 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004453 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004454 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004455 } else {
4456 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004457 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004458 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459}
4460
Avi Kivity851ba692009-08-24 11:10:17 +03004461static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462{
Rusty Russelle756fc62007-07-30 20:07:08 +10004463 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004464 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004465 else
Avi Kivity851ba692009-08-24 11:10:17 +03004466 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004467}
4468
Avi Kivity851ba692009-08-24 11:10:17 +03004469static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004470{
Avi Kivity3842d132010-07-27 12:30:24 +03004471 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004472 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004473 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004474 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004475 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004476 return 1;
4477}
4478
Mark Langsdorf565d0992009-10-06 14:25:02 -05004479static int pause_interception(struct vcpu_svm *svm)
4480{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004481 struct kvm_vcpu *vcpu = &svm->vcpu;
4482 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4483
Babu Moger8566ac82018-03-16 16:37:26 -04004484 if (pause_filter_thresh)
4485 grow_ple_window(vcpu);
4486
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004487 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004488 return 1;
4489}
4490
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004491static int nop_interception(struct vcpu_svm *svm)
4492{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004493 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004494}
4495
4496static int monitor_interception(struct vcpu_svm *svm)
4497{
4498 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4499 return nop_interception(svm);
4500}
4501
4502static int mwait_interception(struct vcpu_svm *svm)
4503{
4504 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4505 return nop_interception(svm);
4506}
4507
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004508enum avic_ipi_failure_cause {
4509 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4510 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4511 AVIC_IPI_FAILURE_INVALID_TARGET,
4512 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4513};
4514
4515static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4516{
4517 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4518 u32 icrl = svm->vmcb->control.exit_info_1;
4519 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004520 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004521 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4522
4523 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4524
4525 switch (id) {
4526 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4527 /*
4528 * AVIC hardware handles the generation of
4529 * IPIs when the specified Message Type is Fixed
4530 * (also known as fixed delivery mode) and
4531 * the Trigger Mode is edge-triggered. The hardware
4532 * also supports self and broadcast delivery modes
4533 * specified via the Destination Shorthand(DSH)
4534 * field of the ICRL. Logical and physical APIC ID
4535 * formats are supported. All other IPI types cause
4536 * a #VMEXIT, which needs to emulated.
4537 */
4538 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4539 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4540 break;
4541 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004542 int i;
4543 struct kvm_vcpu *vcpu;
4544 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004545 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4546
4547 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004548 * At this point, we expect that the AVIC HW has already
4549 * set the appropriate IRR bits on the valid target
4550 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004551 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004552 kvm_for_each_vcpu(i, vcpu, kvm) {
4553 bool m = kvm_apic_match_dest(vcpu, apic,
4554 icrl & KVM_APIC_SHORT_MASK,
4555 GET_APIC_DEST_FIELD(icrh),
4556 icrl & KVM_APIC_DEST_MASK);
4557
4558 if (m && !avic_vcpu_is_running(vcpu))
4559 kvm_vcpu_wake_up(vcpu);
4560 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004561 break;
4562 }
4563 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004564 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4565 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004566 break;
4567 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4568 WARN_ONCE(1, "Invalid backing page\n");
4569 break;
4570 default:
4571 pr_err("Unknown IPI interception\n");
4572 }
4573
4574 return 1;
4575}
4576
4577static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4578{
Sean Christopherson81811c12018-03-20 12:17:21 -07004579 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004580 int index;
4581 u32 *logical_apic_id_table;
4582 int dlid = GET_APIC_LOGICAL_ID(ldr);
4583
4584 if (!dlid)
4585 return NULL;
4586
4587 if (flat) { /* flat */
4588 index = ffs(dlid) - 1;
4589 if (index > 7)
4590 return NULL;
4591 } else { /* cluster */
4592 int cluster = (dlid & 0xf0) >> 4;
4593 int apic = ffs(dlid & 0x0f) - 1;
4594
4595 if ((apic < 0) || (apic > 7) ||
4596 (cluster >= 0xf))
4597 return NULL;
4598 index = (cluster << 2) + apic;
4599 }
4600
Sean Christopherson81811c12018-03-20 12:17:21 -07004601 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004602
4603 return &logical_apic_id_table[index];
4604}
4605
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004606static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004607{
4608 bool flat;
4609 u32 *entry, new_entry;
4610
4611 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4612 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4613 if (!entry)
4614 return -EINVAL;
4615
4616 new_entry = READ_ONCE(*entry);
4617 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4618 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004619 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004620 WRITE_ONCE(*entry, new_entry);
4621
4622 return 0;
4623}
4624
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004625static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4626{
4627 struct vcpu_svm *svm = to_svm(vcpu);
4628 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4629 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4630
4631 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004632 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004633}
4634
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004635static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4636{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004637 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004638 struct vcpu_svm *svm = to_svm(vcpu);
4639 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4640
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004641 if (ldr == svm->ldr_reg)
4642 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004643
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004644 avic_invalidate_logical_id_entry(vcpu);
4645
4646 if (ldr)
4647 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr);
4648
4649 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004650 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004651
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004652 return ret;
4653}
4654
4655static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4656{
4657 u64 *old, *new;
4658 struct vcpu_svm *svm = to_svm(vcpu);
4659 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4660 u32 id = (apic_id_reg >> 24) & 0xff;
4661
4662 if (vcpu->vcpu_id == id)
4663 return 0;
4664
4665 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4666 new = avic_get_physical_id_entry(vcpu, id);
4667 if (!new || !old)
4668 return 1;
4669
4670 /* We need to move physical_id_entry to new offset */
4671 *new = *old;
4672 *old = 0ULL;
4673 to_svm(vcpu)->avic_physical_id_cache = new;
4674
4675 /*
4676 * Also update the guest physical APIC ID in the logical
4677 * APIC ID table entry if already setup the LDR.
4678 */
4679 if (svm->ldr_reg)
4680 avic_handle_ldr_update(vcpu);
4681
4682 return 0;
4683}
4684
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004685static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004686{
4687 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004688 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004689
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004690 if (svm->dfr_reg == dfr)
4691 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004692
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004693 avic_invalidate_logical_id_entry(vcpu);
4694 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004695}
4696
4697static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4698{
4699 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4700 u32 offset = svm->vmcb->control.exit_info_1 &
4701 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4702
4703 switch (offset) {
4704 case APIC_ID:
4705 if (avic_handle_apic_id_update(&svm->vcpu))
4706 return 0;
4707 break;
4708 case APIC_LDR:
4709 if (avic_handle_ldr_update(&svm->vcpu))
4710 return 0;
4711 break;
4712 case APIC_DFR:
4713 avic_handle_dfr_update(&svm->vcpu);
4714 break;
4715 default:
4716 break;
4717 }
4718
4719 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4720
4721 return 1;
4722}
4723
4724static bool is_avic_unaccelerated_access_trap(u32 offset)
4725{
4726 bool ret = false;
4727
4728 switch (offset) {
4729 case APIC_ID:
4730 case APIC_EOI:
4731 case APIC_RRR:
4732 case APIC_LDR:
4733 case APIC_DFR:
4734 case APIC_SPIV:
4735 case APIC_ESR:
4736 case APIC_ICR:
4737 case APIC_LVTT:
4738 case APIC_LVTTHMR:
4739 case APIC_LVTPC:
4740 case APIC_LVT0:
4741 case APIC_LVT1:
4742 case APIC_LVTERR:
4743 case APIC_TMICT:
4744 case APIC_TDCR:
4745 ret = true;
4746 break;
4747 default:
4748 break;
4749 }
4750 return ret;
4751}
4752
4753static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4754{
4755 int ret = 0;
4756 u32 offset = svm->vmcb->control.exit_info_1 &
4757 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4758 u32 vector = svm->vmcb->control.exit_info_2 &
4759 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4760 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4761 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4762 bool trap = is_avic_unaccelerated_access_trap(offset);
4763
4764 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4765 trap, write, vector);
4766 if (trap) {
4767 /* Handling Trap */
4768 WARN_ONCE(!write, "svm: Handling trap read.\n");
4769 ret = avic_unaccel_trap_write(svm);
4770 } else {
4771 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004772 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004773 }
4774
4775 return ret;
4776}
4777
Mathias Krause09941fb2012-08-30 01:30:20 +02004778static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004779 [SVM_EXIT_READ_CR0] = cr_interception,
4780 [SVM_EXIT_READ_CR3] = cr_interception,
4781 [SVM_EXIT_READ_CR4] = cr_interception,
4782 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004783 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004784 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004785 [SVM_EXIT_WRITE_CR3] = cr_interception,
4786 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004787 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004788 [SVM_EXIT_READ_DR0] = dr_interception,
4789 [SVM_EXIT_READ_DR1] = dr_interception,
4790 [SVM_EXIT_READ_DR2] = dr_interception,
4791 [SVM_EXIT_READ_DR3] = dr_interception,
4792 [SVM_EXIT_READ_DR4] = dr_interception,
4793 [SVM_EXIT_READ_DR5] = dr_interception,
4794 [SVM_EXIT_READ_DR6] = dr_interception,
4795 [SVM_EXIT_READ_DR7] = dr_interception,
4796 [SVM_EXIT_WRITE_DR0] = dr_interception,
4797 [SVM_EXIT_WRITE_DR1] = dr_interception,
4798 [SVM_EXIT_WRITE_DR2] = dr_interception,
4799 [SVM_EXIT_WRITE_DR3] = dr_interception,
4800 [SVM_EXIT_WRITE_DR4] = dr_interception,
4801 [SVM_EXIT_WRITE_DR5] = dr_interception,
4802 [SVM_EXIT_WRITE_DR6] = dr_interception,
4803 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004804 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4805 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004806 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004807 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004808 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004809 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004810 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004811 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004812 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813 [SVM_EXIT_SMI] = nop_on_interception,
4814 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004815 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004816 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004818 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004819 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004820 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004821 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004822 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004823 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004824 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825 [SVM_EXIT_MSR] = msr_interception,
4826 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004827 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004828 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004829 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004830 [SVM_EXIT_VMLOAD] = vmload_interception,
4831 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004832 [SVM_EXIT_STGI] = stgi_interception,
4833 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004834 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004835 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004836 [SVM_EXIT_MONITOR] = monitor_interception,
4837 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004838 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004839 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004840 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004841 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4842 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004843};
4844
Joe Perchesae8cc052011-04-24 22:00:50 -07004845static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004846{
4847 struct vcpu_svm *svm = to_svm(vcpu);
4848 struct vmcb_control_area *control = &svm->vmcb->control;
4849 struct vmcb_save_area *save = &svm->vmcb->save;
4850
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004851 if (!dump_invalid_vmcb) {
4852 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4853 return;
4854 }
4855
Joerg Roedel3f10c842010-05-05 16:04:42 +02004856 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004857 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4858 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4859 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4860 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4861 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4862 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4863 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004864 pr_err("%-20s%d\n", "pause filter threshold:",
4865 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004866 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4867 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4868 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4869 pr_err("%-20s%d\n", "asid:", control->asid);
4870 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4871 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4872 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4873 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4874 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4875 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4876 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4877 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4878 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4879 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4880 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004881 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004882 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4883 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004884 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004885 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004886 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4887 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4888 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004889 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004890 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4891 "es:",
4892 save->es.selector, save->es.attrib,
4893 save->es.limit, save->es.base);
4894 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4895 "cs:",
4896 save->cs.selector, save->cs.attrib,
4897 save->cs.limit, save->cs.base);
4898 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4899 "ss:",
4900 save->ss.selector, save->ss.attrib,
4901 save->ss.limit, save->ss.base);
4902 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4903 "ds:",
4904 save->ds.selector, save->ds.attrib,
4905 save->ds.limit, save->ds.base);
4906 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4907 "fs:",
4908 save->fs.selector, save->fs.attrib,
4909 save->fs.limit, save->fs.base);
4910 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4911 "gs:",
4912 save->gs.selector, save->gs.attrib,
4913 save->gs.limit, save->gs.base);
4914 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4915 "gdtr:",
4916 save->gdtr.selector, save->gdtr.attrib,
4917 save->gdtr.limit, save->gdtr.base);
4918 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4919 "ldtr:",
4920 save->ldtr.selector, save->ldtr.attrib,
4921 save->ldtr.limit, save->ldtr.base);
4922 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4923 "idtr:",
4924 save->idtr.selector, save->idtr.attrib,
4925 save->idtr.limit, save->idtr.base);
4926 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4927 "tr:",
4928 save->tr.selector, save->tr.attrib,
4929 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004930 pr_err("cpl: %d efer: %016llx\n",
4931 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004932 pr_err("%-15s %016llx %-13s %016llx\n",
4933 "cr0:", save->cr0, "cr2:", save->cr2);
4934 pr_err("%-15s %016llx %-13s %016llx\n",
4935 "cr3:", save->cr3, "cr4:", save->cr4);
4936 pr_err("%-15s %016llx %-13s %016llx\n",
4937 "dr6:", save->dr6, "dr7:", save->dr7);
4938 pr_err("%-15s %016llx %-13s %016llx\n",
4939 "rip:", save->rip, "rflags:", save->rflags);
4940 pr_err("%-15s %016llx %-13s %016llx\n",
4941 "rsp:", save->rsp, "rax:", save->rax);
4942 pr_err("%-15s %016llx %-13s %016llx\n",
4943 "star:", save->star, "lstar:", save->lstar);
4944 pr_err("%-15s %016llx %-13s %016llx\n",
4945 "cstar:", save->cstar, "sfmask:", save->sfmask);
4946 pr_err("%-15s %016llx %-13s %016llx\n",
4947 "kernel_gs_base:", save->kernel_gs_base,
4948 "sysenter_cs:", save->sysenter_cs);
4949 pr_err("%-15s %016llx %-13s %016llx\n",
4950 "sysenter_esp:", save->sysenter_esp,
4951 "sysenter_eip:", save->sysenter_eip);
4952 pr_err("%-15s %016llx %-13s %016llx\n",
4953 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4954 pr_err("%-15s %016llx %-13s %016llx\n",
4955 "br_from:", save->br_from, "br_to:", save->br_to);
4956 pr_err("%-15s %016llx %-13s %016llx\n",
4957 "excp_from:", save->last_excp_from,
4958 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004959}
4960
Avi Kivity586f9602010-11-18 13:09:54 +02004961static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4962{
4963 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4964
4965 *info1 = control->exit_info_1;
4966 *info2 = control->exit_info_2;
4967}
4968
Avi Kivity851ba692009-08-24 11:10:17 +03004969static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004970{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004971 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004972 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004973 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004974
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004975 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4976
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004977 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004978 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4979 if (npt_enabled)
4980 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004981
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004982 if (unlikely(svm->nested.exit_required)) {
4983 nested_svm_vmexit(svm);
4984 svm->nested.exit_required = false;
4985
4986 return 1;
4987 }
4988
Joerg Roedel20307532010-11-29 17:51:48 +01004989 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004990 int vmexit;
4991
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004992 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4993 svm->vmcb->control.exit_info_1,
4994 svm->vmcb->control.exit_info_2,
4995 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004996 svm->vmcb->control.exit_int_info_err,
4997 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004998
Joerg Roedel410e4d52009-08-07 11:49:44 +02004999 vmexit = nested_svm_exit_special(svm);
5000
5001 if (vmexit == NESTED_EXIT_CONTINUE)
5002 vmexit = nested_svm_exit_handled(svm);
5003
5004 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01005005 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01005006 }
5007
Joerg Roedela5c38322009-08-07 11:49:32 +02005008 svm_complete_interrupts(svm);
5009
Avi Kivity04d2cc72007-09-10 18:10:54 +03005010 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5011 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5012 kvm_run->fail_entry.hardware_entry_failure_reason
5013 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005014 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005015 return 0;
5016 }
5017
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005018 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005019 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005020 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5021 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005022 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005023 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005024 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005025 exit_code);
5026
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02005027 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005028 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04005029 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005030 kvm_queue_exception(vcpu, UD_VECTOR);
5031 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005032 }
5033
Avi Kivity851ba692009-08-24 11:10:17 +03005034 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035}
5036
5037static void reload_tss(struct kvm_vcpu *vcpu)
5038{
5039 int cpu = raw_smp_processor_id();
5040
Tejun Heo0fe1e002009-10-29 22:34:14 +09005041 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5042 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005043 load_TR_desc();
5044}
5045
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005046static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5047{
5048 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5049 int asid = sev_get_asid(svm->vcpu.kvm);
5050
5051 /* Assign the asid allocated with this SEV guest */
5052 svm->vmcb->control.asid = asid;
5053
5054 /*
5055 * Flush guest TLB:
5056 *
5057 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5058 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5059 */
5060 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5061 svm->last_cpu == cpu)
5062 return;
5063
5064 svm->last_cpu = cpu;
5065 sd->sev_vmcbs[asid] = svm->vmcb;
5066 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5067 mark_dirty(svm->vmcb, VMCB_ASID);
5068}
5069
Rusty Russelle756fc62007-07-30 20:07:08 +10005070static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005071{
5072 int cpu = raw_smp_processor_id();
5073
Tejun Heo0fe1e002009-10-29 22:34:14 +09005074 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005075
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005076 if (sev_guest(svm->vcpu.kvm))
5077 return pre_sev_run(svm, cpu);
5078
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005079 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005080 if (svm->asid_generation != sd->asid_generation)
5081 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005082}
5083
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005084static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5085{
5086 struct vcpu_svm *svm = to_svm(vcpu);
5087
5088 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5089 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005090 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005091 ++vcpu->stat.nmi_injections;
5092}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005093
Eddie Dong85f455f2007-07-06 12:20:49 +03005094static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005095{
5096 struct vmcb_control_area *control;
5097
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005098 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005099 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005100 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005101 control->int_ctl &= ~V_INTR_PRIO_MASK;
5102 control->int_ctl |= V_IRQ_MASK |
5103 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005104 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005105}
5106
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005107static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005108{
5109 struct vcpu_svm *svm = to_svm(vcpu);
5110
Joerg Roedel2af91942009-08-07 11:49:28 +02005111 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005112
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005113 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5114 ++vcpu->stat.irq_injections;
5115
Alexander Graf219b65d2009-06-15 15:21:25 +02005116 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5117 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005118}
5119
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005120static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5121{
5122 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5123}
5124
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005125static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5126{
5127 struct vcpu_svm *svm = to_svm(vcpu);
5128
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005129 if (svm_nested_virtualize_tpr(vcpu) ||
5130 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005131 return;
5132
Radim Krčmář596f3142014-03-11 19:11:18 +01005133 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5134
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005135 if (irr == -1)
5136 return;
5137
5138 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005139 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005140}
5141
Jim Mattson8d860bb2018-05-09 16:56:05 -04005142static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005143{
5144 return;
5145}
5146
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005147static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005148{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005149 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005150}
5151
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005152static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5153{
5154}
5155
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005156static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005157{
5158}
5159
5160/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005161static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5162{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005163 struct vcpu_svm *svm = to_svm(vcpu);
5164 struct vmcb *vmcb = svm->vmcb;
5165
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005166 if (kvm_vcpu_apicv_active(vcpu))
5167 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
5168 else
5169 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5170 mark_dirty(vmcb, VMCB_AVIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005171}
5172
Andrey Smetanin63086302015-11-10 15:36:32 +03005173static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005174{
5175 return;
5176}
5177
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005178static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5179{
5180 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5181 smp_mb__after_atomic();
5182
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005183 if (avic_vcpu_is_running(vcpu)) {
5184 int cpuid = vcpu->cpu;
5185
5186 if (cpuid != get_cpu())
5187 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5188 put_cpu();
5189 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005190 kvm_vcpu_wake_up(vcpu);
5191}
5192
Wanpeng Li17e433b2019-08-05 10:03:19 +08005193static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5194{
5195 return false;
5196}
5197
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005198static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5199{
5200 unsigned long flags;
5201 struct amd_svm_iommu_ir *cur;
5202
5203 spin_lock_irqsave(&svm->ir_list_lock, flags);
5204 list_for_each_entry(cur, &svm->ir_list, node) {
5205 if (cur->data != pi->ir_data)
5206 continue;
5207 list_del(&cur->node);
5208 kfree(cur);
5209 break;
5210 }
5211 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5212}
5213
5214static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5215{
5216 int ret = 0;
5217 unsigned long flags;
5218 struct amd_svm_iommu_ir *ir;
5219
5220 /**
5221 * In some cases, the existing irte is updaed and re-set,
5222 * so we need to check here if it's already been * added
5223 * to the ir_list.
5224 */
5225 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5226 struct kvm *kvm = svm->vcpu.kvm;
5227 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5228 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5229 struct vcpu_svm *prev_svm;
5230
5231 if (!prev_vcpu) {
5232 ret = -EINVAL;
5233 goto out;
5234 }
5235
5236 prev_svm = to_svm(prev_vcpu);
5237 svm_ir_list_del(prev_svm, pi);
5238 }
5239
5240 /**
5241 * Allocating new amd_iommu_pi_data, which will get
5242 * add to the per-vcpu ir_list.
5243 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005244 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005245 if (!ir) {
5246 ret = -ENOMEM;
5247 goto out;
5248 }
5249 ir->data = pi->ir_data;
5250
5251 spin_lock_irqsave(&svm->ir_list_lock, flags);
5252 list_add(&ir->node, &svm->ir_list);
5253 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5254out:
5255 return ret;
5256}
5257
5258/**
5259 * Note:
5260 * The HW cannot support posting multicast/broadcast
5261 * interrupts to a vCPU. So, we still use legacy interrupt
5262 * remapping for these kind of interrupts.
5263 *
5264 * For lowest-priority interrupts, we only support
5265 * those with single CPU as the destination, e.g. user
5266 * configures the interrupts via /proc/irq or uses
5267 * irqbalance to make the interrupts single-CPU.
5268 */
5269static int
5270get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5271 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5272{
5273 struct kvm_lapic_irq irq;
5274 struct kvm_vcpu *vcpu = NULL;
5275
5276 kvm_set_msi_irq(kvm, e, &irq);
5277
5278 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5279 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5280 __func__, irq.vector);
5281 return -1;
5282 }
5283
5284 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5285 irq.vector);
5286 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005287 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005288 vcpu_info->vector = irq.vector;
5289
5290 return 0;
5291}
5292
5293/*
5294 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5295 *
5296 * @kvm: kvm
5297 * @host_irq: host irq of the interrupt
5298 * @guest_irq: gsi of the interrupt
5299 * @set: set or unset PI
5300 * returns 0 on success, < 0 on failure
5301 */
5302static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5303 uint32_t guest_irq, bool set)
5304{
5305 struct kvm_kernel_irq_routing_entry *e;
5306 struct kvm_irq_routing_table *irq_rt;
5307 int idx, ret = -EINVAL;
5308
5309 if (!kvm_arch_has_assigned_device(kvm) ||
5310 !irq_remapping_cap(IRQ_POSTING_CAP))
5311 return 0;
5312
5313 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5314 __func__, host_irq, guest_irq, set);
5315
5316 idx = srcu_read_lock(&kvm->irq_srcu);
5317 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5318 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5319
5320 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5321 struct vcpu_data vcpu_info;
5322 struct vcpu_svm *svm = NULL;
5323
5324 if (e->type != KVM_IRQ_ROUTING_MSI)
5325 continue;
5326
5327 /**
5328 * Here, we setup with legacy mode in the following cases:
5329 * 1. When cannot target interrupt to a specific vcpu.
5330 * 2. Unsetting posted interrupt.
5331 * 3. APIC virtialization is disabled for the vcpu.
5332 */
5333 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5334 kvm_vcpu_apicv_active(&svm->vcpu)) {
5335 struct amd_iommu_pi_data pi;
5336
5337 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005338 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5339 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005340 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005341 svm->vcpu.vcpu_id);
5342 pi.is_guest_mode = true;
5343 pi.vcpu_data = &vcpu_info;
5344 ret = irq_set_vcpu_affinity(host_irq, &pi);
5345
5346 /**
5347 * Here, we successfully setting up vcpu affinity in
5348 * IOMMU guest mode. Now, we need to store the posted
5349 * interrupt information in a per-vcpu ir_list so that
5350 * we can reference to them directly when we update vcpu
5351 * scheduling information in IOMMU irte.
5352 */
5353 if (!ret && pi.is_guest_mode)
5354 svm_ir_list_add(svm, &pi);
5355 } else {
5356 /* Use legacy mode in IRTE */
5357 struct amd_iommu_pi_data pi;
5358
5359 /**
5360 * Here, pi is used to:
5361 * - Tell IOMMU to use legacy mode for this interrupt.
5362 * - Retrieve ga_tag of prior interrupt remapping data.
5363 */
5364 pi.is_guest_mode = false;
5365 ret = irq_set_vcpu_affinity(host_irq, &pi);
5366
5367 /**
5368 * Check if the posted interrupt was previously
5369 * setup with the guest_mode by checking if the ga_tag
5370 * was cached. If so, we need to clean up the per-vcpu
5371 * ir_list.
5372 */
5373 if (!ret && pi.prev_ga_tag) {
5374 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5375 struct kvm_vcpu *vcpu;
5376
5377 vcpu = kvm_get_vcpu_by_id(kvm, id);
5378 if (vcpu)
5379 svm_ir_list_del(to_svm(vcpu), &pi);
5380 }
5381 }
5382
5383 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005384 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5385 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005386 vcpu_info.pi_desc_addr, set);
5387 }
5388
5389 if (ret < 0) {
5390 pr_err("%s: failed to update PI IRTE\n", __func__);
5391 goto out;
5392 }
5393 }
5394
5395 ret = 0;
5396out:
5397 srcu_read_unlock(&kvm->irq_srcu, idx);
5398 return ret;
5399}
5400
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005401static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005402{
5403 struct vcpu_svm *svm = to_svm(vcpu);
5404 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005405 int ret;
5406 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5407 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5408 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5409
5410 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005411}
5412
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005413static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5414{
5415 struct vcpu_svm *svm = to_svm(vcpu);
5416
5417 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5418}
5419
5420static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5421{
5422 struct vcpu_svm *svm = to_svm(vcpu);
5423
5424 if (masked) {
5425 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005426 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005427 } else {
5428 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005429 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005430 }
5431}
5432
Gleb Natapov78646122009-03-23 12:12:11 +02005433static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5434{
5435 struct vcpu_svm *svm = to_svm(vcpu);
5436 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005437 int ret;
5438
5439 if (!gif_set(svm) ||
5440 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5441 return 0;
5442
Avi Kivityf6e78472010-08-02 15:30:20 +03005443 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005444
Joerg Roedel20307532010-11-29 17:51:48 +01005445 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005446 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5447
5448 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005449}
5450
Jan Kiszkac9a79532014-03-07 20:03:15 +01005451static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005452{
Alexander Graf219b65d2009-06-15 15:21:25 +02005453 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005454
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005455 if (kvm_vcpu_apicv_active(vcpu))
5456 return;
5457
Joerg Roedele0231712010-02-24 18:59:10 +01005458 /*
5459 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5460 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5461 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005462 * we'll get the vintr intercept. However, if the vGIF feature is
5463 * enabled, the STGI interception will not occur. Enable the irq
5464 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005465 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005466 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005467 svm_set_vintr(svm);
5468 svm_inject_irq(svm, 0x0);
5469 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005470}
5471
Jan Kiszkac9a79532014-03-07 20:03:15 +01005472static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005473{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005474 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005475
Gleb Natapov44c11432009-05-11 13:35:52 +03005476 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5477 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005478 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005479
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005480 if (!gif_set(svm)) {
5481 if (vgif_enabled(svm))
5482 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005483 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005484 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005485
5486 if (svm->nested.exit_required)
5487 return; /* we're not going to run the guest yet */
5488
Joerg Roedele0231712010-02-24 18:59:10 +01005489 /*
5490 * Something prevents NMI from been injected. Single step over possible
5491 * problem (IRET or exception injection or interrupt shadow)
5492 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005493 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005494 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005495 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005496}
5497
Izik Eiduscbc94022007-10-25 00:29:55 +02005498static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5499{
5500 return 0;
5501}
5502
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005503static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5504{
5505 return 0;
5506}
5507
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005508static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005509{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005510 struct vcpu_svm *svm = to_svm(vcpu);
5511
5512 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5513 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5514 else
5515 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005516}
5517
Junaid Shahidfaff8752018-06-29 13:10:05 -07005518static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5519{
5520 struct vcpu_svm *svm = to_svm(vcpu);
5521
5522 invlpga(gva, svm->vmcb->control.asid);
5523}
5524
Avi Kivity04d2cc72007-09-10 18:10:54 +03005525static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5526{
5527}
5528
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005529static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5530{
5531 struct vcpu_svm *svm = to_svm(vcpu);
5532
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005533 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005534 return;
5535
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005536 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005537 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005538 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005539 }
5540}
5541
Joerg Roedel649d6862008-04-16 16:51:15 +02005542static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5543{
5544 struct vcpu_svm *svm = to_svm(vcpu);
5545 u64 cr8;
5546
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005547 if (svm_nested_virtualize_tpr(vcpu) ||
5548 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005549 return;
5550
Joerg Roedel649d6862008-04-16 16:51:15 +02005551 cr8 = kvm_get_cr8(vcpu);
5552 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5553 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5554}
5555
Gleb Natapov9222be12009-04-23 17:14:37 +03005556static void svm_complete_interrupts(struct vcpu_svm *svm)
5557{
5558 u8 vector;
5559 int type;
5560 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005561 unsigned int3_injected = svm->int3_injected;
5562
5563 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005564
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005565 /*
5566 * If we've made progress since setting HF_IRET_MASK, we've
5567 * executed an IRET and can allow NMI injection.
5568 */
5569 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5570 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005571 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005572 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5573 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005574
Gleb Natapov9222be12009-04-23 17:14:37 +03005575 svm->vcpu.arch.nmi_injected = false;
5576 kvm_clear_exception_queue(&svm->vcpu);
5577 kvm_clear_interrupt_queue(&svm->vcpu);
5578
5579 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5580 return;
5581
Avi Kivity3842d132010-07-27 12:30:24 +03005582 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5583
Gleb Natapov9222be12009-04-23 17:14:37 +03005584 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5585 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5586
5587 switch (type) {
5588 case SVM_EXITINTINFO_TYPE_NMI:
5589 svm->vcpu.arch.nmi_injected = true;
5590 break;
5591 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005592 /*
5593 * In case of software exceptions, do not reinject the vector,
5594 * but re-execute the instruction instead. Rewind RIP first
5595 * if we emulated INT3 before.
5596 */
5597 if (kvm_exception_is_soft(vector)) {
5598 if (vector == BP_VECTOR && int3_injected &&
5599 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5600 kvm_rip_write(&svm->vcpu,
5601 kvm_rip_read(&svm->vcpu) -
5602 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005603 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005604 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005605 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5606 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005607 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005608
5609 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005610 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005611 break;
5612 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005613 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005614 break;
5615 default:
5616 break;
5617 }
5618}
5619
Avi Kivityb463a6f2010-07-20 15:06:17 +03005620static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5621{
5622 struct vcpu_svm *svm = to_svm(vcpu);
5623 struct vmcb_control_area *control = &svm->vmcb->control;
5624
5625 control->exit_int_info = control->event_inj;
5626 control->exit_int_info_err = control->event_inj_err;
5627 control->event_inj = 0;
5628 svm_complete_interrupts(svm);
5629}
5630
Avi Kivity851ba692009-08-24 11:10:17 +03005631static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005632{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005633 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005634
Joerg Roedel2041a062010-04-22 12:33:08 +02005635 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5636 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5637 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5638
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005639 /*
5640 * A vmexit emulation is required before the vcpu can be executed
5641 * again.
5642 */
5643 if (unlikely(svm->nested.exit_required))
5644 return;
5645
Ladi Proseka12713c2017-06-21 09:07:00 +02005646 /*
5647 * Disable singlestep if we're injecting an interrupt/exception.
5648 * We don't want our modified rflags to be pushed on the stack where
5649 * we might not be able to easily reset them if we disabled NMI
5650 * singlestep later.
5651 */
5652 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5653 /*
5654 * Event injection happens before external interrupts cause a
5655 * vmexit and interrupts are disabled here, so smp_send_reschedule
5656 * is enough to force an immediate vmexit.
5657 */
5658 disable_nmi_singlestep(svm);
5659 smp_send_reschedule(vcpu->cpu);
5660 }
5661
Rusty Russelle756fc62007-07-30 20:07:08 +10005662 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005663
Joerg Roedel649d6862008-04-16 16:51:15 +02005664 sync_lapic_to_cr8(vcpu);
5665
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005666 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005667
Avi Kivity04d2cc72007-09-10 18:10:54 +03005668 clgi();
WANG Chao1811d972019-04-12 15:55:39 +08005669 kvm_load_guest_xcr0(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005670
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005671 if (lapic_in_kernel(vcpu) &&
5672 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5673 kvm_wait_lapic_expire(vcpu);
5674
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005675 /*
5676 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5677 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5678 * is no need to worry about the conditional branch over the wrmsr
5679 * being speculatively taken.
5680 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005681 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005682
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005683 local_irq_enable();
5684
Avi Kivity6aa8b732006-12-10 02:21:36 -08005685 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005686 "push %%" _ASM_BP "; \n\t"
5687 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5688 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5689 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5690 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5691 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5692 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005693#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005694 "mov %c[r8](%[svm]), %%r8 \n\t"
5695 "mov %c[r9](%[svm]), %%r9 \n\t"
5696 "mov %c[r10](%[svm]), %%r10 \n\t"
5697 "mov %c[r11](%[svm]), %%r11 \n\t"
5698 "mov %c[r12](%[svm]), %%r12 \n\t"
5699 "mov %c[r13](%[svm]), %%r13 \n\t"
5700 "mov %c[r14](%[svm]), %%r14 \n\t"
5701 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005702#endif
5703
Avi Kivity6aa8b732006-12-10 02:21:36 -08005704 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005705 "push %%" _ASM_AX " \n\t"
5706 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005707 __ex("vmload %%" _ASM_AX) "\n\t"
5708 __ex("vmrun %%" _ASM_AX) "\n\t"
5709 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005710 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005711
5712 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005713 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5714 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5715 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5716 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5717 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5718 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005719#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005720 "mov %%r8, %c[r8](%[svm]) \n\t"
5721 "mov %%r9, %c[r9](%[svm]) \n\t"
5722 "mov %%r10, %c[r10](%[svm]) \n\t"
5723 "mov %%r11, %c[r11](%[svm]) \n\t"
5724 "mov %%r12, %c[r12](%[svm]) \n\t"
5725 "mov %%r13, %c[r13](%[svm]) \n\t"
5726 "mov %%r14, %c[r14](%[svm]) \n\t"
5727 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005728 /*
5729 * Clear host registers marked as clobbered to prevent
5730 * speculative use.
5731 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005732 "xor %%r8d, %%r8d \n\t"
5733 "xor %%r9d, %%r9d \n\t"
5734 "xor %%r10d, %%r10d \n\t"
5735 "xor %%r11d, %%r11d \n\t"
5736 "xor %%r12d, %%r12d \n\t"
5737 "xor %%r13d, %%r13d \n\t"
5738 "xor %%r14d, %%r14d \n\t"
5739 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005740#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005741 "xor %%ebx, %%ebx \n\t"
5742 "xor %%ecx, %%ecx \n\t"
5743 "xor %%edx, %%edx \n\t"
5744 "xor %%esi, %%esi \n\t"
5745 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005746 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005747 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005748 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005749 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005750 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5751 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5752 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5753 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5754 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5755 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005756#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005757 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5758 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5759 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5760 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5761 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5762 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5763 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5764 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005765#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005766 : "cc", "memory"
5767#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005768 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005769 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005770#else
5771 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005772#endif
5773 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005774
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005775 /* Eliminate branch target predictions from guest mode */
5776 vmexit_fill_RSB();
5777
5778#ifdef CONFIG_X86_64
5779 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5780#else
5781 loadsegment(fs, svm->host.fs);
5782#ifndef CONFIG_X86_32_LAZY_GS
5783 loadsegment(gs, svm->host.gs);
5784#endif
5785#endif
5786
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005787 /*
5788 * We do not use IBRS in the kernel. If this vCPU has used the
5789 * SPEC_CTRL MSR it may have left it on; save the value and
5790 * turn it off. This is much more efficient than blindly adding
5791 * it to the atomic save/restore list. Especially as the former
5792 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5793 *
5794 * For non-nested case:
5795 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5796 * save it.
5797 *
5798 * For nested case:
5799 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5800 * save it.
5801 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005802 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005803 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005804
Avi Kivity6aa8b732006-12-10 02:21:36 -08005805 reload_tss(vcpu);
5806
Avi Kivity56ba47d2007-11-07 17:14:18 +02005807 local_irq_disable();
5808
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005809 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5810
Avi Kivity13c34e02010-10-21 12:20:31 +02005811 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5812 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5813 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5814 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5815
Joerg Roedel3781c012011-01-14 16:45:02 +01005816 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005817 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005818
WANG Chao1811d972019-04-12 15:55:39 +08005819 kvm_put_guest_xcr0(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005820 stgi();
5821
5822 /* Any pending NMI will happen here */
5823
5824 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005825 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005826
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005827 sync_cr8_to_lapic(vcpu);
5828
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005829 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005830
Joerg Roedel38e5e922010-12-03 15:25:16 +01005831 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5832
Gleb Natapov631bc482010-10-14 11:22:52 +02005833 /* if exit due to PF check for async PF */
5834 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005835 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005836
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005837 if (npt_enabled) {
5838 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5839 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5840 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005841
5842 /*
5843 * We need to handle MC intercepts here before the vcpu has a chance to
5844 * change the physical cpu
5845 */
5846 if (unlikely(svm->vmcb->control.exit_code ==
5847 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5848 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005849
5850 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005851}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005852STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005853
Avi Kivity6aa8b732006-12-10 02:21:36 -08005854static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5855{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005856 struct vcpu_svm *svm = to_svm(vcpu);
5857
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005858 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005859 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005860}
5861
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005862static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5863{
5864 struct vcpu_svm *svm = to_svm(vcpu);
5865
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005866 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005867 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005868
5869 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005870 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005871 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005872}
5873
Avi Kivity6aa8b732006-12-10 02:21:36 -08005874static int is_disabled(void)
5875{
Joerg Roedel6031a612007-06-22 12:29:50 +03005876 u64 vm_cr;
5877
5878 rdmsrl(MSR_VM_CR, vm_cr);
5879 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5880 return 1;
5881
Avi Kivity6aa8b732006-12-10 02:21:36 -08005882 return 0;
5883}
5884
Ingo Molnar102d8322007-02-19 14:37:47 +02005885static void
5886svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5887{
5888 /*
5889 * Patch in the VMMCALL instruction:
5890 */
5891 hypercall[0] = 0x0f;
5892 hypercall[1] = 0x01;
5893 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005894}
5895
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005896static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005897{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005898 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005899}
5900
Avi Kivity774ead32007-12-26 13:57:04 +02005901static bool svm_cpu_has_accelerated_tpr(void)
5902{
5903 return false;
5904}
5905
Tom Lendackybc226f02018-05-10 22:06:39 +02005906static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005907{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005908 switch (index) {
5909 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02005910 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005911 return false;
5912 default:
5913 break;
5914 }
5915
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005916 return true;
5917}
5918
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005919static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5920{
5921 return 0;
5922}
5923
Sheng Yang0e851882009-12-18 16:48:46 +08005924static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5925{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005926 struct vcpu_svm *svm = to_svm(vcpu);
5927
5928 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005929 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005930
5931 if (!kvm_vcpu_apicv_active(vcpu))
5932 return;
5933
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005934 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005935}
5936
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005937static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5938{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005939 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005940 case 0x1:
5941 if (avic)
5942 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5943 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005944 case 0x80000001:
5945 if (nested)
5946 entry->ecx |= (1 << 2); /* Set SVM bit */
5947 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005948 case 0x8000000A:
5949 entry->eax = 1; /* SVM revision 1 */
5950 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5951 ASID emulation to nested SVM */
5952 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005953 entry->edx = 0; /* Per default do not support any
5954 additional features */
5955
5956 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005957 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005958 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005959
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005960 /* Support NPT for the guest if enabled */
5961 if (npt_enabled)
5962 entry->edx |= SVM_FEATURE_NPT;
5963
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005964 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005965 case 0x8000001F:
5966 /* Support memory encryption cpuid if host supports it */
5967 if (boot_cpu_has(X86_FEATURE_SEV))
5968 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5969 &entry->ecx, &entry->edx);
5970
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005971 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005972}
5973
Sheng Yang17cc3932010-01-05 19:02:27 +08005974static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005975{
Sheng Yang17cc3932010-01-05 19:02:27 +08005976 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005977}
5978
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005979static bool svm_rdtscp_supported(void)
5980{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005981 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005982}
5983
Mao, Junjiead756a12012-07-02 01:18:48 +00005984static bool svm_invpcid_supported(void)
5985{
5986 return false;
5987}
5988
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005989static bool svm_mpx_supported(void)
5990{
5991 return false;
5992}
5993
Wanpeng Li55412b22014-12-02 19:21:30 +08005994static bool svm_xsaves_supported(void)
5995{
5996 return false;
5997}
5998
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005999static bool svm_umip_emulated(void)
6000{
6001 return false;
6002}
6003
Chao Peng86f52012018-10-24 16:05:11 +08006004static bool svm_pt_supported(void)
6005{
6006 return false;
6007}
6008
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006009static bool svm_has_wbinvd_exit(void)
6010{
6011 return true;
6012}
6013
Joerg Roedel80612522011-04-04 12:39:33 +02006014#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006015 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006016#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006017 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006018#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006019 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006020
Mathias Krause09941fb2012-08-30 01:30:20 +02006021static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006022 u32 exit_code;
6023 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006024} x86_intercept_map[] = {
6025 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6026 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6027 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6028 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6029 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006030 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6031 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006032 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6033 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6034 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6035 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6036 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6037 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6038 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6039 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006040 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6041 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6042 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6043 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6044 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6045 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6046 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6047 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006048 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6049 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6050 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006051 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6052 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6053 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6054 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6055 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6056 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6057 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6058 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6059 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006060 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6061 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6062 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6063 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6064 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6065 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6066 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006067 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6068 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6069 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6070 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006071};
6072
Joerg Roedel80612522011-04-04 12:39:33 +02006073#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006074#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006075#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006076
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006077static int svm_check_intercept(struct kvm_vcpu *vcpu,
6078 struct x86_instruction_info *info,
6079 enum x86_intercept_stage stage)
6080{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006081 struct vcpu_svm *svm = to_svm(vcpu);
6082 int vmexit, ret = X86EMUL_CONTINUE;
6083 struct __x86_intercept icpt_info;
6084 struct vmcb *vmcb = svm->vmcb;
6085
6086 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6087 goto out;
6088
6089 icpt_info = x86_intercept_map[info->intercept];
6090
Avi Kivity40e19b52011-04-21 12:35:41 +03006091 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006092 goto out;
6093
6094 switch (icpt_info.exit_code) {
6095 case SVM_EXIT_READ_CR0:
6096 if (info->intercept == x86_intercept_cr_read)
6097 icpt_info.exit_code += info->modrm_reg;
6098 break;
6099 case SVM_EXIT_WRITE_CR0: {
6100 unsigned long cr0, val;
6101 u64 intercept;
6102
6103 if (info->intercept == x86_intercept_cr_write)
6104 icpt_info.exit_code += info->modrm_reg;
6105
Jan Kiszka62baf442014-06-29 21:55:53 +02006106 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6107 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006108 break;
6109
6110 intercept = svm->nested.intercept;
6111
6112 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6113 break;
6114
6115 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6116 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6117
6118 if (info->intercept == x86_intercept_lmsw) {
6119 cr0 &= 0xfUL;
6120 val &= 0xfUL;
6121 /* lmsw can't clear PE - catch this here */
6122 if (cr0 & X86_CR0_PE)
6123 val |= X86_CR0_PE;
6124 }
6125
6126 if (cr0 ^ val)
6127 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6128
6129 break;
6130 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006131 case SVM_EXIT_READ_DR0:
6132 case SVM_EXIT_WRITE_DR0:
6133 icpt_info.exit_code += info->modrm_reg;
6134 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006135 case SVM_EXIT_MSR:
6136 if (info->intercept == x86_intercept_wrmsr)
6137 vmcb->control.exit_info_1 = 1;
6138 else
6139 vmcb->control.exit_info_1 = 0;
6140 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006141 case SVM_EXIT_PAUSE:
6142 /*
6143 * We get this for NOP only, but pause
6144 * is rep not, check this here
6145 */
6146 if (info->rep_prefix != REPE_PREFIX)
6147 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006148 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006149 case SVM_EXIT_IOIO: {
6150 u64 exit_info;
6151 u32 bytes;
6152
Joerg Roedelf6511932011-04-04 12:39:35 +02006153 if (info->intercept == x86_intercept_in ||
6154 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006155 exit_info = ((info->src_val & 0xffff) << 16) |
6156 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006157 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006158 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006159 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006160 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006161 }
6162
6163 if (info->intercept == x86_intercept_outs ||
6164 info->intercept == x86_intercept_ins)
6165 exit_info |= SVM_IOIO_STR_MASK;
6166
6167 if (info->rep_prefix)
6168 exit_info |= SVM_IOIO_REP_MASK;
6169
6170 bytes = min(bytes, 4u);
6171
6172 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6173
6174 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6175
6176 vmcb->control.exit_info_1 = exit_info;
6177 vmcb->control.exit_info_2 = info->next_rip;
6178
6179 break;
6180 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006181 default:
6182 break;
6183 }
6184
Bandan Dasf1047652015-06-11 02:05:33 -04006185 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6186 if (static_cpu_has(X86_FEATURE_NRIPS))
6187 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006188 vmcb->control.exit_code = icpt_info.exit_code;
6189 vmexit = nested_svm_exit_handled(svm);
6190
6191 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6192 : X86EMUL_CONTINUE;
6193
6194out:
6195 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006196}
6197
Sean Christopherson95b5a482019-04-19 22:50:59 -07006198static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006199{
Sean Christophersond7a08882019-07-10 09:07:34 -07006200
Yang Zhanga547c6d2013-04-11 19:25:10 +08006201}
6202
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006203static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6204{
Babu Moger8566ac82018-03-16 16:37:26 -04006205 if (pause_filter_thresh)
6206 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006207}
6208
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006209static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6210{
6211 if (avic_handle_apic_id_update(vcpu) != 0)
6212 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006213 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006214 avic_handle_ldr_update(vcpu);
6215}
6216
Borislav Petkov74f16902017-03-26 23:51:24 +02006217static void svm_setup_mce(struct kvm_vcpu *vcpu)
6218{
6219 /* [63:9] are reserved. */
6220 vcpu->arch.mcg_cap &= 0x1ff;
6221}
6222
Ladi Prosek72d7b372017-10-11 16:54:41 +02006223static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6224{
Ladi Prosek05cade72017-10-11 16:54:45 +02006225 struct vcpu_svm *svm = to_svm(vcpu);
6226
6227 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6228 if (!gif_set(svm))
6229 return 0;
6230
6231 if (is_guest_mode(&svm->vcpu) &&
6232 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6233 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6234 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6235 svm->nested.exit_required = true;
6236 return 0;
6237 }
6238
Ladi Prosek72d7b372017-10-11 16:54:41 +02006239 return 1;
6240}
6241
Ladi Prosek0234bf82017-10-11 16:54:40 +02006242static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6243{
Ladi Prosek05cade72017-10-11 16:54:45 +02006244 struct vcpu_svm *svm = to_svm(vcpu);
6245 int ret;
6246
6247 if (is_guest_mode(vcpu)) {
6248 /* FED8h - SVM Guest */
6249 put_smstate(u64, smstate, 0x7ed8, 1);
6250 /* FEE0h - SVM Guest VMCB Physical Address */
6251 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6252
6253 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6254 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6255 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6256
6257 ret = nested_svm_vmexit(svm);
6258 if (ret)
6259 return ret;
6260 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006261 return 0;
6262}
6263
Sean Christophersoned193212019-04-02 08:03:09 -07006264static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006265{
Ladi Prosek05cade72017-10-11 16:54:45 +02006266 struct vcpu_svm *svm = to_svm(vcpu);
6267 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006268 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006269 u64 guest;
6270 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006271
Sean Christophersoned193212019-04-02 08:03:09 -07006272 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6273 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006274
Sean Christophersoned193212019-04-02 08:03:09 -07006275 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006276 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006277 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006278 nested_vmcb = map.hva;
6279 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006280 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006281 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006282}
6283
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006284static int enable_smi_window(struct kvm_vcpu *vcpu)
6285{
6286 struct vcpu_svm *svm = to_svm(vcpu);
6287
6288 if (!gif_set(svm)) {
6289 if (vgif_enabled(svm))
6290 set_intercept(svm, INTERCEPT_STGI);
6291 /* STGI will cause a vm exit */
6292 return 1;
6293 }
6294 return 0;
6295}
6296
Brijesh Singh1654efc2017-12-04 10:57:34 -06006297static int sev_asid_new(void)
6298{
6299 int pos;
6300
6301 /*
6302 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6303 */
6304 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6305 if (pos >= max_sev_asid)
6306 return -EBUSY;
6307
6308 set_bit(pos, sev_asid_bitmap);
6309 return pos + 1;
6310}
6311
6312static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6313{
Sean Christopherson81811c12018-03-20 12:17:21 -07006314 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006315 int asid, ret;
6316
6317 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006318 if (unlikely(sev->active))
6319 return ret;
6320
Brijesh Singh1654efc2017-12-04 10:57:34 -06006321 asid = sev_asid_new();
6322 if (asid < 0)
6323 return ret;
6324
6325 ret = sev_platform_init(&argp->error);
6326 if (ret)
6327 goto e_free;
6328
6329 sev->active = true;
6330 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006331 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006332
6333 return 0;
6334
6335e_free:
6336 __sev_asid_free(asid);
6337 return ret;
6338}
6339
Brijesh Singh59414c92017-12-04 10:57:35 -06006340static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6341{
6342 struct sev_data_activate *data;
6343 int asid = sev_get_asid(kvm);
6344 int ret;
6345
6346 wbinvd_on_all_cpus();
6347
6348 ret = sev_guest_df_flush(error);
6349 if (ret)
6350 return ret;
6351
Ben Gardon1ec69642019-02-11 11:02:51 -08006352 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006353 if (!data)
6354 return -ENOMEM;
6355
6356 /* activate ASID on the given handle */
6357 data->handle = handle;
6358 data->asid = asid;
6359 ret = sev_guest_activate(data, error);
6360 kfree(data);
6361
6362 return ret;
6363}
6364
Brijesh Singh89c50582017-12-04 10:57:35 -06006365static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006366{
6367 struct fd f;
6368 int ret;
6369
6370 f = fdget(fd);
6371 if (!f.file)
6372 return -EBADF;
6373
6374 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6375
6376 fdput(f);
6377 return ret;
6378}
6379
Brijesh Singh89c50582017-12-04 10:57:35 -06006380static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6381{
Sean Christopherson81811c12018-03-20 12:17:21 -07006382 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006383
6384 return __sev_issue_cmd(sev->fd, id, data, error);
6385}
6386
Brijesh Singh59414c92017-12-04 10:57:35 -06006387static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6388{
Sean Christopherson81811c12018-03-20 12:17:21 -07006389 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006390 struct sev_data_launch_start *start;
6391 struct kvm_sev_launch_start params;
6392 void *dh_blob, *session_blob;
6393 int *error = &argp->error;
6394 int ret;
6395
6396 if (!sev_guest(kvm))
6397 return -ENOTTY;
6398
6399 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6400 return -EFAULT;
6401
Ben Gardon1ec69642019-02-11 11:02:51 -08006402 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006403 if (!start)
6404 return -ENOMEM;
6405
6406 dh_blob = NULL;
6407 if (params.dh_uaddr) {
6408 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6409 if (IS_ERR(dh_blob)) {
6410 ret = PTR_ERR(dh_blob);
6411 goto e_free;
6412 }
6413
6414 start->dh_cert_address = __sme_set(__pa(dh_blob));
6415 start->dh_cert_len = params.dh_len;
6416 }
6417
6418 session_blob = NULL;
6419 if (params.session_uaddr) {
6420 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6421 if (IS_ERR(session_blob)) {
6422 ret = PTR_ERR(session_blob);
6423 goto e_free_dh;
6424 }
6425
6426 start->session_address = __sme_set(__pa(session_blob));
6427 start->session_len = params.session_len;
6428 }
6429
6430 start->handle = params.handle;
6431 start->policy = params.policy;
6432
6433 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006434 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006435 if (ret)
6436 goto e_free_session;
6437
6438 /* Bind ASID to this guest */
6439 ret = sev_bind_asid(kvm, start->handle, error);
6440 if (ret)
6441 goto e_free_session;
6442
6443 /* return handle to userspace */
6444 params.handle = start->handle;
6445 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6446 sev_unbind_asid(kvm, start->handle);
6447 ret = -EFAULT;
6448 goto e_free_session;
6449 }
6450
6451 sev->handle = start->handle;
6452 sev->fd = argp->sev_fd;
6453
6454e_free_session:
6455 kfree(session_blob);
6456e_free_dh:
6457 kfree(dh_blob);
6458e_free:
6459 kfree(start);
6460 return ret;
6461}
6462
David Rientjesede885e2019-03-19 15:19:56 -07006463static unsigned long get_num_contig_pages(unsigned long idx,
6464 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006465{
6466 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006467 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006468
6469 /* find the number of contiguous pages starting from idx */
6470 paddr = __sme_page_pa(inpages[idx]);
6471 while (i < npages) {
6472 next_paddr = __sme_page_pa(inpages[i++]);
6473 if ((paddr + PAGE_SIZE) == next_paddr) {
6474 pages++;
6475 paddr = next_paddr;
6476 continue;
6477 }
6478 break;
6479 }
6480
6481 return pages;
6482}
6483
6484static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6485{
David Rientjesede885e2019-03-19 15:19:56 -07006486 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006487 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006488 struct kvm_sev_launch_update_data params;
6489 struct sev_data_launch_update_data *data;
6490 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006491 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006492
6493 if (!sev_guest(kvm))
6494 return -ENOTTY;
6495
6496 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6497 return -EFAULT;
6498
Ben Gardon1ec69642019-02-11 11:02:51 -08006499 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006500 if (!data)
6501 return -ENOMEM;
6502
6503 vaddr = params.uaddr;
6504 size = params.len;
6505 vaddr_end = vaddr + size;
6506
6507 /* Lock the user memory. */
6508 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6509 if (!inpages) {
6510 ret = -ENOMEM;
6511 goto e_free;
6512 }
6513
6514 /*
6515 * The LAUNCH_UPDATE command will perform in-place encryption of the
6516 * memory content (i.e it will write the same memory region with C=1).
6517 * It's possible that the cache may contain the data with C=0, i.e.,
6518 * unencrypted so invalidate it first.
6519 */
6520 sev_clflush_pages(inpages, npages);
6521
6522 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6523 int offset, len;
6524
6525 /*
6526 * If the user buffer is not page-aligned, calculate the offset
6527 * within the page.
6528 */
6529 offset = vaddr & (PAGE_SIZE - 1);
6530
6531 /* Calculate the number of pages that can be encrypted in one go. */
6532 pages = get_num_contig_pages(i, inpages, npages);
6533
6534 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6535
6536 data->handle = sev->handle;
6537 data->len = len;
6538 data->address = __sme_page_pa(inpages[i]) + offset;
6539 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6540 if (ret)
6541 goto e_unpin;
6542
6543 size -= len;
6544 next_vaddr = vaddr + len;
6545 }
6546
6547e_unpin:
6548 /* content of memory is updated, mark pages dirty */
6549 for (i = 0; i < npages; i++) {
6550 set_page_dirty_lock(inpages[i]);
6551 mark_page_accessed(inpages[i]);
6552 }
6553 /* unlock the user pages */
6554 sev_unpin_memory(kvm, inpages, npages);
6555e_free:
6556 kfree(data);
6557 return ret;
6558}
6559
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006560static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6561{
Brijesh Singh3e233382018-02-23 12:36:50 -06006562 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006563 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006564 struct sev_data_launch_measure *data;
6565 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006566 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006567 void *blob = NULL;
6568 int ret;
6569
6570 if (!sev_guest(kvm))
6571 return -ENOTTY;
6572
Brijesh Singh3e233382018-02-23 12:36:50 -06006573 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006574 return -EFAULT;
6575
Ben Gardon1ec69642019-02-11 11:02:51 -08006576 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006577 if (!data)
6578 return -ENOMEM;
6579
6580 /* User wants to query the blob length */
6581 if (!params.len)
6582 goto cmd;
6583
Brijesh Singh3e233382018-02-23 12:36:50 -06006584 p = (void __user *)(uintptr_t)params.uaddr;
6585 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006586 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6587 ret = -EINVAL;
6588 goto e_free;
6589 }
6590
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006591 ret = -ENOMEM;
6592 blob = kmalloc(params.len, GFP_KERNEL);
6593 if (!blob)
6594 goto e_free;
6595
6596 data->address = __psp_pa(blob);
6597 data->len = params.len;
6598 }
6599
6600cmd:
6601 data->handle = sev->handle;
6602 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6603
6604 /*
6605 * If we query the session length, FW responded with expected data.
6606 */
6607 if (!params.len)
6608 goto done;
6609
6610 if (ret)
6611 goto e_free_blob;
6612
6613 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006614 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006615 ret = -EFAULT;
6616 }
6617
6618done:
6619 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006620 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006621 ret = -EFAULT;
6622e_free_blob:
6623 kfree(blob);
6624e_free:
6625 kfree(data);
6626 return ret;
6627}
6628
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006629static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6630{
Sean Christopherson81811c12018-03-20 12:17:21 -07006631 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006632 struct sev_data_launch_finish *data;
6633 int ret;
6634
6635 if (!sev_guest(kvm))
6636 return -ENOTTY;
6637
Ben Gardon1ec69642019-02-11 11:02:51 -08006638 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006639 if (!data)
6640 return -ENOMEM;
6641
6642 data->handle = sev->handle;
6643 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6644
6645 kfree(data);
6646 return ret;
6647}
6648
Brijesh Singh255d9e72017-12-04 10:57:37 -06006649static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6650{
Sean Christopherson81811c12018-03-20 12:17:21 -07006651 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006652 struct kvm_sev_guest_status params;
6653 struct sev_data_guest_status *data;
6654 int ret;
6655
6656 if (!sev_guest(kvm))
6657 return -ENOTTY;
6658
Ben Gardon1ec69642019-02-11 11:02:51 -08006659 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006660 if (!data)
6661 return -ENOMEM;
6662
6663 data->handle = sev->handle;
6664 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6665 if (ret)
6666 goto e_free;
6667
6668 params.policy = data->policy;
6669 params.state = data->state;
6670 params.handle = data->handle;
6671
6672 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6673 ret = -EFAULT;
6674e_free:
6675 kfree(data);
6676 return ret;
6677}
6678
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006679static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6680 unsigned long dst, int size,
6681 int *error, bool enc)
6682{
Sean Christopherson81811c12018-03-20 12:17:21 -07006683 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006684 struct sev_data_dbg *data;
6685 int ret;
6686
Ben Gardon1ec69642019-02-11 11:02:51 -08006687 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006688 if (!data)
6689 return -ENOMEM;
6690
6691 data->handle = sev->handle;
6692 data->dst_addr = dst;
6693 data->src_addr = src;
6694 data->len = size;
6695
6696 ret = sev_issue_cmd(kvm,
6697 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6698 data, error);
6699 kfree(data);
6700 return ret;
6701}
6702
6703static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6704 unsigned long dst_paddr, int sz, int *err)
6705{
6706 int offset;
6707
6708 /*
6709 * Its safe to read more than we are asked, caller should ensure that
6710 * destination has enough space.
6711 */
6712 src_paddr = round_down(src_paddr, 16);
6713 offset = src_paddr & 15;
6714 sz = round_up(sz + offset, 16);
6715
6716 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6717}
6718
6719static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6720 unsigned long __user dst_uaddr,
6721 unsigned long dst_paddr,
6722 int size, int *err)
6723{
6724 struct page *tpage = NULL;
6725 int ret, offset;
6726
6727 /* if inputs are not 16-byte then use intermediate buffer */
6728 if (!IS_ALIGNED(dst_paddr, 16) ||
6729 !IS_ALIGNED(paddr, 16) ||
6730 !IS_ALIGNED(size, 16)) {
6731 tpage = (void *)alloc_page(GFP_KERNEL);
6732 if (!tpage)
6733 return -ENOMEM;
6734
6735 dst_paddr = __sme_page_pa(tpage);
6736 }
6737
6738 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6739 if (ret)
6740 goto e_free;
6741
6742 if (tpage) {
6743 offset = paddr & 15;
6744 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6745 page_address(tpage) + offset, size))
6746 ret = -EFAULT;
6747 }
6748
6749e_free:
6750 if (tpage)
6751 __free_page(tpage);
6752
6753 return ret;
6754}
6755
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006756static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6757 unsigned long __user vaddr,
6758 unsigned long dst_paddr,
6759 unsigned long __user dst_vaddr,
6760 int size, int *error)
6761{
6762 struct page *src_tpage = NULL;
6763 struct page *dst_tpage = NULL;
6764 int ret, len = size;
6765
6766 /* If source buffer is not aligned then use an intermediate buffer */
6767 if (!IS_ALIGNED(vaddr, 16)) {
6768 src_tpage = alloc_page(GFP_KERNEL);
6769 if (!src_tpage)
6770 return -ENOMEM;
6771
6772 if (copy_from_user(page_address(src_tpage),
6773 (void __user *)(uintptr_t)vaddr, size)) {
6774 __free_page(src_tpage);
6775 return -EFAULT;
6776 }
6777
6778 paddr = __sme_page_pa(src_tpage);
6779 }
6780
6781 /*
6782 * If destination buffer or length is not aligned then do read-modify-write:
6783 * - decrypt destination in an intermediate buffer
6784 * - copy the source buffer in an intermediate buffer
6785 * - use the intermediate buffer as source buffer
6786 */
6787 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6788 int dst_offset;
6789
6790 dst_tpage = alloc_page(GFP_KERNEL);
6791 if (!dst_tpage) {
6792 ret = -ENOMEM;
6793 goto e_free;
6794 }
6795
6796 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6797 __sme_page_pa(dst_tpage), size, error);
6798 if (ret)
6799 goto e_free;
6800
6801 /*
6802 * If source is kernel buffer then use memcpy() otherwise
6803 * copy_from_user().
6804 */
6805 dst_offset = dst_paddr & 15;
6806
6807 if (src_tpage)
6808 memcpy(page_address(dst_tpage) + dst_offset,
6809 page_address(src_tpage), size);
6810 else {
6811 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6812 (void __user *)(uintptr_t)vaddr, size)) {
6813 ret = -EFAULT;
6814 goto e_free;
6815 }
6816 }
6817
6818 paddr = __sme_page_pa(dst_tpage);
6819 dst_paddr = round_down(dst_paddr, 16);
6820 len = round_up(size, 16);
6821 }
6822
6823 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6824
6825e_free:
6826 if (src_tpage)
6827 __free_page(src_tpage);
6828 if (dst_tpage)
6829 __free_page(dst_tpage);
6830 return ret;
6831}
6832
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006833static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6834{
6835 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006836 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006837 struct page **src_p, **dst_p;
6838 struct kvm_sev_dbg debug;
6839 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006840 unsigned int size;
6841 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006842
6843 if (!sev_guest(kvm))
6844 return -ENOTTY;
6845
6846 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6847 return -EFAULT;
6848
David Rientjesb86bc282019-03-25 11:47:31 -07006849 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6850 return -EINVAL;
6851 if (!debug.dst_uaddr)
6852 return -EINVAL;
6853
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006854 vaddr = debug.src_uaddr;
6855 size = debug.len;
6856 vaddr_end = vaddr + size;
6857 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006858
6859 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6860 int len, s_off, d_off;
6861
6862 /* lock userspace source and destination page */
6863 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6864 if (!src_p)
6865 return -EFAULT;
6866
6867 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6868 if (!dst_p) {
6869 sev_unpin_memory(kvm, src_p, n);
6870 return -EFAULT;
6871 }
6872
6873 /*
6874 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6875 * memory content (i.e it will write the same memory region with C=1).
6876 * It's possible that the cache may contain the data with C=0, i.e.,
6877 * unencrypted so invalidate it first.
6878 */
6879 sev_clflush_pages(src_p, 1);
6880 sev_clflush_pages(dst_p, 1);
6881
6882 /*
6883 * Since user buffer may not be page aligned, calculate the
6884 * offset within the page.
6885 */
6886 s_off = vaddr & ~PAGE_MASK;
6887 d_off = dst_vaddr & ~PAGE_MASK;
6888 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6889
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006890 if (dec)
6891 ret = __sev_dbg_decrypt_user(kvm,
6892 __sme_page_pa(src_p[0]) + s_off,
6893 dst_vaddr,
6894 __sme_page_pa(dst_p[0]) + d_off,
6895 len, &argp->error);
6896 else
6897 ret = __sev_dbg_encrypt_user(kvm,
6898 __sme_page_pa(src_p[0]) + s_off,
6899 vaddr,
6900 __sme_page_pa(dst_p[0]) + d_off,
6901 dst_vaddr,
6902 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006903
David Rientjesb86bc282019-03-25 11:47:31 -07006904 sev_unpin_memory(kvm, src_p, n);
6905 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006906
6907 if (ret)
6908 goto err;
6909
6910 next_vaddr = vaddr + len;
6911 dst_vaddr = dst_vaddr + len;
6912 size -= len;
6913 }
6914err:
6915 return ret;
6916}
6917
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006918static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6919{
Sean Christopherson81811c12018-03-20 12:17:21 -07006920 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006921 struct sev_data_launch_secret *data;
6922 struct kvm_sev_launch_secret params;
6923 struct page **pages;
6924 void *blob, *hdr;
6925 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006926 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006927
6928 if (!sev_guest(kvm))
6929 return -ENOTTY;
6930
6931 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6932 return -EFAULT;
6933
6934 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6935 if (!pages)
6936 return -ENOMEM;
6937
6938 /*
6939 * The secret must be copied into contiguous memory region, lets verify
6940 * that userspace memory pages are contiguous before we issue command.
6941 */
6942 if (get_num_contig_pages(0, pages, n) != n) {
6943 ret = -EINVAL;
6944 goto e_unpin_memory;
6945 }
6946
6947 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08006948 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006949 if (!data)
6950 goto e_unpin_memory;
6951
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006952 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6953 data->guest_address = __sme_page_pa(pages[0]) + offset;
6954 data->guest_len = params.guest_len;
6955
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006956 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6957 if (IS_ERR(blob)) {
6958 ret = PTR_ERR(blob);
6959 goto e_free;
6960 }
6961
6962 data->trans_address = __psp_pa(blob);
6963 data->trans_len = params.trans_len;
6964
6965 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6966 if (IS_ERR(hdr)) {
6967 ret = PTR_ERR(hdr);
6968 goto e_free_blob;
6969 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006970 data->hdr_address = __psp_pa(hdr);
6971 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006972
6973 data->handle = sev->handle;
6974 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6975
6976 kfree(hdr);
6977
6978e_free_blob:
6979 kfree(blob);
6980e_free:
6981 kfree(data);
6982e_unpin_memory:
6983 sev_unpin_memory(kvm, pages, n);
6984 return ret;
6985}
6986
Brijesh Singh1654efc2017-12-04 10:57:34 -06006987static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6988{
6989 struct kvm_sev_cmd sev_cmd;
6990 int r;
6991
6992 if (!svm_sev_enabled())
6993 return -ENOTTY;
6994
6995 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6996 return -EFAULT;
6997
6998 mutex_lock(&kvm->lock);
6999
7000 switch (sev_cmd.id) {
7001 case KVM_SEV_INIT:
7002 r = sev_guest_init(kvm, &sev_cmd);
7003 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007004 case KVM_SEV_LAUNCH_START:
7005 r = sev_launch_start(kvm, &sev_cmd);
7006 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007007 case KVM_SEV_LAUNCH_UPDATE_DATA:
7008 r = sev_launch_update_data(kvm, &sev_cmd);
7009 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007010 case KVM_SEV_LAUNCH_MEASURE:
7011 r = sev_launch_measure(kvm, &sev_cmd);
7012 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007013 case KVM_SEV_LAUNCH_FINISH:
7014 r = sev_launch_finish(kvm, &sev_cmd);
7015 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007016 case KVM_SEV_GUEST_STATUS:
7017 r = sev_guest_status(kvm, &sev_cmd);
7018 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007019 case KVM_SEV_DBG_DECRYPT:
7020 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7021 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007022 case KVM_SEV_DBG_ENCRYPT:
7023 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7024 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007025 case KVM_SEV_LAUNCH_SECRET:
7026 r = sev_launch_secret(kvm, &sev_cmd);
7027 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007028 default:
7029 r = -EINVAL;
7030 goto out;
7031 }
7032
7033 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7034 r = -EFAULT;
7035
7036out:
7037 mutex_unlock(&kvm->lock);
7038 return r;
7039}
7040
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007041static int svm_register_enc_region(struct kvm *kvm,
7042 struct kvm_enc_region *range)
7043{
Sean Christopherson81811c12018-03-20 12:17:21 -07007044 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007045 struct enc_region *region;
7046 int ret = 0;
7047
7048 if (!sev_guest(kvm))
7049 return -ENOTTY;
7050
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007051 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7052 return -EINVAL;
7053
Ben Gardon1ec69642019-02-11 11:02:51 -08007054 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007055 if (!region)
7056 return -ENOMEM;
7057
7058 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7059 if (!region->pages) {
7060 ret = -ENOMEM;
7061 goto e_free;
7062 }
7063
7064 /*
7065 * The guest may change the memory encryption attribute from C=0 -> C=1
7066 * or vice versa for this memory range. Lets make sure caches are
7067 * flushed to ensure that guest data gets written into memory with
7068 * correct C-bit.
7069 */
7070 sev_clflush_pages(region->pages, region->npages);
7071
7072 region->uaddr = range->addr;
7073 region->size = range->size;
7074
7075 mutex_lock(&kvm->lock);
7076 list_add_tail(&region->list, &sev->regions_list);
7077 mutex_unlock(&kvm->lock);
7078
7079 return ret;
7080
7081e_free:
7082 kfree(region);
7083 return ret;
7084}
7085
7086static struct enc_region *
7087find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7088{
Sean Christopherson81811c12018-03-20 12:17:21 -07007089 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007090 struct list_head *head = &sev->regions_list;
7091 struct enc_region *i;
7092
7093 list_for_each_entry(i, head, list) {
7094 if (i->uaddr == range->addr &&
7095 i->size == range->size)
7096 return i;
7097 }
7098
7099 return NULL;
7100}
7101
7102
7103static int svm_unregister_enc_region(struct kvm *kvm,
7104 struct kvm_enc_region *range)
7105{
7106 struct enc_region *region;
7107 int ret;
7108
7109 mutex_lock(&kvm->lock);
7110
7111 if (!sev_guest(kvm)) {
7112 ret = -ENOTTY;
7113 goto failed;
7114 }
7115
7116 region = find_enc_region(kvm, range);
7117 if (!region) {
7118 ret = -EINVAL;
7119 goto failed;
7120 }
7121
7122 __unregister_enc_region_locked(kvm, region);
7123
7124 mutex_unlock(&kvm->lock);
7125 return 0;
7126
7127failed:
7128 mutex_unlock(&kvm->lock);
7129 return ret;
7130}
7131
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007132static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
7133{
7134 /* Not supported */
7135 return 0;
7136}
7137
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007138static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
7139 uint16_t *vmcs_version)
7140{
7141 /* Intel-only feature */
7142 return -ENODEV;
7143}
7144
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007145static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7146{
Liran Alon118154b2019-07-17 02:56:58 +03007147 unsigned long cr4 = kvm_read_cr4(vcpu);
7148 bool smep = cr4 & X86_CR4_SMEP;
7149 bool smap = cr4 & X86_CR4_SMAP;
7150 bool is_user = svm_get_cpl(vcpu) == 3;
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007151
7152 /*
Liran Alon118154b2019-07-17 02:56:58 +03007153 * Detect and workaround Errata 1096 Fam_17h_00_0Fh.
7154 *
7155 * Errata:
7156 * When CPU raise #NPF on guest data access and vCPU CR4.SMAP=1, it is
7157 * possible that CPU microcode implementing DecodeAssist will fail
7158 * to read bytes of instruction which caused #NPF. In this case,
7159 * GuestIntrBytes field of the VMCB on a VMEXIT will incorrectly
7160 * return 0 instead of the correct guest instruction bytes.
7161 *
7162 * This happens because CPU microcode reading instruction bytes
7163 * uses a special opcode which attempts to read data using CPL=0
7164 * priviledges. The microcode reads CS:RIP and if it hits a SMAP
7165 * fault, it gives up and returns no instruction bytes.
7166 *
7167 * Detection:
7168 * We reach here in case CPU supports DecodeAssist, raised #NPF and
7169 * returned 0 in GuestIntrBytes field of the VMCB.
7170 * First, errata can only be triggered in case vCPU CR4.SMAP=1.
7171 * Second, if vCPU CR4.SMEP=1, errata could only be triggered
7172 * in case vCPU CPL==3 (Because otherwise guest would have triggered
7173 * a SMEP fault instead of #NPF).
7174 * Otherwise, vCPU CR4.SMEP=0, errata could be triggered by any vCPU CPL.
7175 * As most guests enable SMAP if they have also enabled SMEP, use above
7176 * logic in order to attempt minimize false-positive of detecting errata
7177 * while still preserving all cases semantic correctness.
7178 *
7179 * Workaround:
7180 * To determine what instruction the guest was executing, the hypervisor
7181 * will have to decode the instruction at the instruction pointer.
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007182 *
7183 * In non SEV guest, hypervisor will be able to read the guest
7184 * memory to decode the instruction pointer when insn_len is zero
7185 * so we return true to indicate that decoding is possible.
7186 *
7187 * But in the SEV guest, the guest memory is encrypted with the
7188 * guest specific key and hypervisor will not be able to decode the
7189 * instruction pointer so we will not able to workaround it. Lets
7190 * print the error and request to kill the guest.
7191 */
Liran Alon118154b2019-07-17 02:56:58 +03007192 if (smap && (!smep || is_user)) {
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007193 if (!sev_guest(vcpu->kvm))
7194 return true;
7195
Liran Alon118154b2019-07-17 02:56:58 +03007196 pr_err_ratelimited("KVM: SEV Guest triggered AMD Erratum 1096\n");
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007197 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7198 }
7199
7200 return false;
7201}
7202
Kees Cook404f6aa2016-08-08 16:29:06 -07007203static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007204 .cpu_has_kvm_support = has_svm,
7205 .disabled_by_bios = is_disabled,
7206 .hardware_setup = svm_hardware_setup,
7207 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007208 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007209 .hardware_enable = svm_hardware_enable,
7210 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007211 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007212 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007213
7214 .vcpu_create = svm_create_vcpu,
7215 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007216 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007217
Sean Christopherson434a1e92018-03-20 12:17:18 -07007218 .vm_alloc = svm_vm_alloc,
7219 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007220 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007221 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007222
Avi Kivity04d2cc72007-09-10 18:10:54 +03007223 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007224 .vcpu_load = svm_vcpu_load,
7225 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007226 .vcpu_blocking = svm_vcpu_blocking,
7227 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007228
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007229 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007230 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007231 .get_msr = svm_get_msr,
7232 .set_msr = svm_set_msr,
7233 .get_segment_base = svm_get_segment_base,
7234 .get_segment = svm_get_segment,
7235 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007236 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007237 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007238 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007239 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007240 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007241 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007242 .set_cr3 = svm_set_cr3,
7243 .set_cr4 = svm_set_cr4,
7244 .set_efer = svm_set_efer,
7245 .get_idt = svm_get_idt,
7246 .set_idt = svm_set_idt,
7247 .get_gdt = svm_get_gdt,
7248 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007249 .get_dr6 = svm_get_dr6,
7250 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007251 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007252 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007253 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007254 .get_rflags = svm_get_rflags,
7255 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007256
Avi Kivity6aa8b732006-12-10 02:21:36 -08007257 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007258 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007259
Avi Kivity6aa8b732006-12-10 02:21:36 -08007260 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007261 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007262 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007263 .set_interrupt_shadow = svm_set_interrupt_shadow,
7264 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007265 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007266 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007267 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007268 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007269 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007270 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007271 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007272 .get_nmi_mask = svm_get_nmi_mask,
7273 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007274 .enable_nmi_window = enable_nmi_window,
7275 .enable_irq_window = enable_irq_window,
7276 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007277 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007278 .get_enable_apicv = svm_get_enable_apicv,
7279 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007280 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007281 .hwapic_irr_update = svm_hwapic_irr_update,
7282 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007283 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007284 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007285
7286 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007287 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007288 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007289 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007290
Avi Kivity586f9602010-11-18 13:09:54 +02007291 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007292
Sheng Yang17cc3932010-01-05 19:02:27 +08007293 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007294
7295 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007296
7297 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007298 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007299 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007300 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007301 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007302 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007303
7304 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007305
7306 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007307
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007308 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007309 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007310
7311 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007312
7313 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007314 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007315
Sean Christophersond264ee02018-08-27 15:21:12 -07007316 .request_immediate_exit = __kvm_request_immediate_exit,
7317
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007318 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007319
7320 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007321 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li17e433b2019-08-05 10:03:19 +08007322 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007323 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007324 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007325
Ladi Prosek72d7b372017-10-11 16:54:41 +02007326 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007327 .pre_enter_smm = svm_pre_enter_smm,
7328 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007329 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007330
7331 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007332 .mem_enc_reg_region = svm_register_enc_region,
7333 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007334
7335 .nested_enable_evmcs = nested_enable_evmcs,
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007336 .nested_get_evmcs_version = nested_get_evmcs_version,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007337
7338 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007339};
7340
7341static int __init svm_init(void)
7342{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007343 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007344 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007345}
7346
7347static void __exit svm_exit(void)
7348{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007349 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007350}
7351
7352module_init(svm_init)
7353module_exit(svm_exit)