blob: 5270711e787fae9004841f4e358b862b5f49f7af [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02007 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08008 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050017
18#define pr_fmt(fmt) "SVM: " fmt
19
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
21
Eddie Dong85f455f2007-07-06 12:20:49 +030022#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080023#include "mmu.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030024#include "kvm_cache_regs.h"
Gleb Natapovfe4c7b12009-03-23 11:23:18 +020025#include "x86.h"
Julian Stecklina66f7b722012-12-05 15:26:19 +010026#include "cpuid.h"
Wei Huang25462f72015-06-19 15:45:05 +020027#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040028
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070030#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020031#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/vmalloc.h>
33#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040034#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040035#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050037#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050039#include <linux/frame.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060040#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060041#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060042#include <linux/pagemap.h>
43#include <linux/swap.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080044
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050045#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010046#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020047#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010049#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020050#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050051#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020052#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Eduardo Habkost63d11422008-11-17 19:03:20 -020054#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030055#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
58
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplettae759542012-03-28 11:32:28 -070062static const struct x86_cpu_id svm_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_SVM),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
67
Avi Kivity6aa8b732006-12-10 02:21:36 -080068#define IOPM_ALLOC_ORDER 2
69#define MSRPM_ALLOC_ORDER 1
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071#define SEG_TYPE_LDT 2
72#define SEG_TYPE_BUSY_TSS16 3
73
Andre Przywara6bc31bd2010-04-11 23:07:28 +020074#define SVM_FEATURE_NPT (1 << 0)
75#define SVM_FEATURE_LBRV (1 << 1)
76#define SVM_FEATURE_SVML (1 << 2)
77#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010078#define SVM_FEATURE_TSC_RATE (1 << 4)
79#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
80#define SVM_FEATURE_FLUSH_ASID (1 << 6)
81#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020082#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030083
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050084#define SVM_AVIC_DOORBELL 0xc001011b
85
Joerg Roedel410e4d52009-08-07 11:49:44 +020086#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
87#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
88#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
89
Joerg Roedel24e09cb2008-02-13 18:58:47 +010090#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
91
Joerg Roedelfbc0db72011-03-25 09:44:46 +010092#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010093#define TSC_RATIO_MIN 0x0000000000000001ULL
94#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010095
Dan Carpenter5446a972016-05-23 13:20:10 +030096#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050097
98/*
99 * 0xff is broadcast, so the max index allowed for physical APIC ID
100 * table is 0xfe. APIC IDs above 0xff are reserved.
101 */
102#define AVIC_MAX_PHYSICAL_ID_COUNT 255
103
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500104#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
105#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
106#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
107
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500108/* AVIC GATAG is encoded using VM and VCPU IDs */
109#define AVIC_VCPU_ID_BITS 8
110#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
111
112#define AVIC_VM_ID_BITS 24
113#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
114#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
115
116#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
117 (y & AVIC_VCPU_ID_MASK))
118#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
119#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
120
Joerg Roedel67ec6602010-05-17 14:43:35 +0200121static bool erratum_383_found __read_mostly;
122
Avi Kivity6c8166a2009-05-31 18:15:37 +0300123static const u32 host_save_user_msrs[] = {
124#ifdef CONFIG_X86_64
125 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
126 MSR_FS_BASE,
127#endif
128 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100129 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300130};
131
132#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
133
Sean Christopherson81811c12018-03-20 12:17:21 -0700134struct kvm_sev_info {
135 bool active; /* SEV enabled guest */
136 unsigned int asid; /* ASID used for this guest */
137 unsigned int handle; /* SEV firmware handle */
138 int fd; /* SEV device fd */
139 unsigned long pages_locked; /* Number of pages locked */
140 struct list_head regions_list; /* List of registered regions */
141};
142
143struct kvm_svm {
144 struct kvm kvm;
145
146 /* Struct members for AVIC */
147 u32 avic_vm_id;
Sean Christopherson81811c12018-03-20 12:17:21 -0700148 struct page *avic_logical_id_table_page;
149 struct page *avic_physical_id_table_page;
150 struct hlist_node hnode;
151
152 struct kvm_sev_info sev_info;
153};
154
Avi Kivity6c8166a2009-05-31 18:15:37 +0300155struct kvm_vcpu;
156
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200157struct nested_state {
158 struct vmcb *hsave;
159 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100160 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200161 u64 vmcb;
162
163 /* These are the merged vectors */
164 u32 *msrpm;
165
166 /* gpa pointers to the real vectors */
167 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100168 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200169
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200170 /* A VMEXIT is required but not yet emulated */
171 bool exit_required;
172
Joerg Roedelaad42c62009-08-07 11:49:34 +0200173 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100174 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100175 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200176 u32 intercept_exceptions;
177 u64 intercept;
178
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200179 /* Nested Paging related state */
180 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200181};
182
Joerg Roedel323c3d82010-03-01 15:34:37 +0100183#define MSRPM_OFFSETS 16
184static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
185
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500186/*
187 * Set osvw_len to higher value when updated Revision Guides
188 * are published and we know what the new status bits are
189 */
190static uint64_t osvw_len = 4, osvw_status;
191
Avi Kivity6c8166a2009-05-31 18:15:37 +0300192struct vcpu_svm {
193 struct kvm_vcpu vcpu;
194 struct vmcb *vmcb;
195 unsigned long vmcb_pa;
196 struct svm_cpu_data *svm_data;
197 uint64_t asid_generation;
198 uint64_t sysenter_esp;
199 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100200 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300201
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100202 u64 msr_decfg;
203
Avi Kivity6c8166a2009-05-31 18:15:37 +0300204 u64 next_rip;
205
206 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200207 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200208 u16 fs;
209 u16 gs;
210 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200211 u64 gs_base;
212 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300213
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100214 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200215 /*
216 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
217 * translated into the appropriate L2_CFG bits on the host to
218 * perform speculative control.
219 */
220 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100221
Avi Kivity6c8166a2009-05-31 18:15:37 +0300222 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300223
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200224 ulong nmi_iret_rip;
225
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200226 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200227
228 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200229 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100230
231 unsigned int3_injected;
232 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100233
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200234 /* cached guest cpuid flags for faster access */
235 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500236
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500237 u32 ldr_reg;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +0000238 u32 dfr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500239 struct page *avic_backing_page;
240 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500241 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500242
243 /*
244 * Per-vcpu list of struct amd_svm_iommu_ir:
245 * This is used mainly to store interrupt remapping information used
246 * when update the vcpu affinity. This avoids the need to scan for
247 * IRTE and try to match ga_tag in the IOMMU driver.
248 */
249 struct list_head ir_list;
250 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600251
252 /* which host CPU was used for running this vcpu */
253 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500254};
255
256/*
257 * This is a wrapper of struct amd_iommu_ir_data.
258 */
259struct amd_svm_iommu_ir {
260 struct list_head node; /* Used by SVM for per-vcpu ir_list */
261 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300262};
263
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500264#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +0000265#define AVIC_LOGICAL_ID_ENTRY_VALID_BIT 31
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500266#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
267
268#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
269#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
270#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
271#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
272
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100273static DEFINE_PER_CPU(u64, current_tsc_ratio);
274#define TSC_RATIO_DEFAULT 0x0100000000ULL
275
Joerg Roedel455716f2010-03-01 15:34:35 +0100276#define MSR_INVALID 0xffffffffU
277
Mathias Krause09941fb2012-08-30 01:30:20 +0200278static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100279 u32 index; /* Index of the MSR */
280 bool always; /* True if intercept is always on */
281} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400282 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100283 { .index = MSR_IA32_SYSENTER_CS, .always = true },
284#ifdef CONFIG_X86_64
285 { .index = MSR_GS_BASE, .always = true },
286 { .index = MSR_FS_BASE, .always = true },
287 { .index = MSR_KERNEL_GS_BASE, .always = true },
288 { .index = MSR_LSTAR, .always = true },
289 { .index = MSR_CSTAR, .always = true },
290 { .index = MSR_SYSCALL_MASK, .always = true },
291#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100292 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100293 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100294 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
295 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
296 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
297 { .index = MSR_IA32_LASTINTTOIP, .always = false },
298 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299};
300
301/* enable NPT for AMD64 and X86 with PAE */
302#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
303static bool npt_enabled = true;
304#else
Joerg Roedele0231712010-02-24 18:59:10 +0100305static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800306#endif
307
Babu Moger8566ac82018-03-16 16:37:26 -0400308/*
309 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
310 * pause_filter_count: On processors that support Pause filtering(indicated
311 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
312 * count value. On VMRUN this value is loaded into an internal counter.
313 * Each time a pause instruction is executed, this counter is decremented
314 * until it reaches zero at which time a #VMEXIT is generated if pause
315 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
316 * Intercept Filtering for more details.
317 * This also indicate if ple logic enabled.
318 *
319 * pause_filter_thresh: In addition, some processor families support advanced
320 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
321 * the amount of time a guest is allowed to execute in a pause loop.
322 * In this mode, a 16-bit pause filter threshold field is added in the
323 * VMCB. The threshold value is a cycle count that is used to reset the
324 * pause counter. As with simple pause filtering, VMRUN loads the pause
325 * count value from VMCB into an internal counter. Then, on each pause
326 * instruction the hardware checks the elapsed number of cycles since
327 * the most recent pause instruction against the pause filter threshold.
328 * If the elapsed cycle count is greater than the pause filter threshold,
329 * then the internal pause count is reloaded from the VMCB and execution
330 * continues. If the elapsed cycle count is less than the pause filter
331 * threshold, then the internal pause count is decremented. If the count
332 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
333 * triggered. If advanced pause filtering is supported and pause filter
334 * threshold field is set to zero, the filter will operate in the simpler,
335 * count only mode.
336 */
337
338static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
339module_param(pause_filter_thresh, ushort, 0444);
340
341static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
342module_param(pause_filter_count, ushort, 0444);
343
344/* Default doubles per-vcpu window every exit. */
345static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
346module_param(pause_filter_count_grow, ushort, 0444);
347
348/* Default resets per-vcpu window every exit to pause_filter_count. */
349static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
350module_param(pause_filter_count_shrink, ushort, 0444);
351
352/* Default is to compute the maximum so we can never overflow. */
353static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
354module_param(pause_filter_count_max, ushort, 0444);
355
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100356/* allow nested paging (virtualized MMU) for all guests */
357static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800358module_param(npt, int, S_IRUGO);
359
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100360/* allow nested virtualization in KVM/SVM */
361static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800362module_param(nested, int, S_IRUGO);
363
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500364/* enable / disable AVIC */
365static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500366#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500367module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500368#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500369
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200370/* enable/disable Next RIP Save */
371static int nrips = true;
372module_param(nrips, int, 0444);
373
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500374/* enable/disable Virtual VMLOAD VMSAVE */
375static int vls = true;
376module_param(vls, int, 0444);
377
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500378/* enable/disable Virtual GIF */
379static int vgif = true;
380module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500381
Brijesh Singhe9df0942017-12-04 10:57:33 -0600382/* enable/disable SEV support */
383static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
384module_param(sev, int, 0444);
385
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200386static bool __read_mostly dump_invalid_vmcb = 0;
387module_param(dump_invalid_vmcb, bool, 0644);
388
Brijesh Singh7607b712018-02-19 10:14:44 -0600389static u8 rsm_ins_bytes[] = "\x0f\xaa";
390
Paolo Bonzini79a80592015-09-21 07:46:55 +0200391static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800392static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200393static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394
Joerg Roedel410e4d52009-08-07 11:49:44 +0200395static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100396static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800397static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800398static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
399 bool has_error_code, u32 error_code);
400
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100401enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100402 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
403 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100404 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100405 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100406 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100407 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100408 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100409 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100410 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100411 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100412 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100413 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500414 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
415 * AVIC PHYSICAL_TABLE pointer,
416 * AVIC LOGICAL_TABLE pointer
417 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100418 VMCB_DIRTY_MAX,
419};
420
Joerg Roedel0574dec2010-12-03 11:45:58 +0100421/* TPR and CR2 are always written before VMRUN */
422#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100423
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500424#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
425
Brijesh Singhed3cd232017-12-04 10:57:32 -0600426static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600427static unsigned int min_sev_asid;
428static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600429#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600430
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600431struct enc_region {
432 struct list_head list;
433 unsigned long npages;
434 struct page **pages;
435 unsigned long uaddr;
436 unsigned long size;
437};
438
Sean Christopherson81811c12018-03-20 12:17:21 -0700439
440static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
441{
442 return container_of(kvm, struct kvm_svm, kvm);
443}
444
Brijesh Singh1654efc2017-12-04 10:57:34 -0600445static inline bool svm_sev_enabled(void)
446{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200447 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600448}
449
450static inline bool sev_guest(struct kvm *kvm)
451{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200452#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700453 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600454
455 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200456#else
457 return false;
458#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600459}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600460
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600461static inline int sev_get_asid(struct kvm *kvm)
462{
Sean Christopherson81811c12018-03-20 12:17:21 -0700463 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600464
465 return sev->asid;
466}
467
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100468static inline void mark_all_dirty(struct vmcb *vmcb)
469{
470 vmcb->control.clean = 0;
471}
472
473static inline void mark_all_clean(struct vmcb *vmcb)
474{
475 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
476 & ~VMCB_ALWAYS_DIRTY_MASK;
477}
478
479static inline void mark_dirty(struct vmcb *vmcb, int bit)
480{
481 vmcb->control.clean &= ~(1 << bit);
482}
483
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
485{
486 return container_of(vcpu, struct vcpu_svm, vcpu);
487}
488
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500489static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
490{
491 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
492 mark_dirty(svm->vmcb, VMCB_AVIC);
493}
494
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500495static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
496{
497 struct vcpu_svm *svm = to_svm(vcpu);
498 u64 *entry = svm->avic_physical_id_cache;
499
500 if (!entry)
501 return false;
502
503 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
504}
505
Joerg Roedel384c6362010-11-30 18:03:56 +0100506static void recalc_intercepts(struct vcpu_svm *svm)
507{
508 struct vmcb_control_area *c, *h;
509 struct nested_state *g;
510
Joerg Roedel116a0a22010-12-03 11:45:49 +0100511 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
512
Joerg Roedel384c6362010-11-30 18:03:56 +0100513 if (!is_guest_mode(&svm->vcpu))
514 return;
515
516 c = &svm->vmcb->control;
517 h = &svm->nested.hsave->control;
518 g = &svm->nested;
519
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100520 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100521 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100522 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100523 c->intercept = h->intercept | g->intercept;
524}
525
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100526static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
527{
528 if (is_guest_mode(&svm->vcpu))
529 return svm->nested.hsave;
530 else
531 return svm->vmcb;
532}
533
534static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
535{
536 struct vmcb *vmcb = get_host_vmcb(svm);
537
538 vmcb->control.intercept_cr |= (1U << bit);
539
540 recalc_intercepts(svm);
541}
542
543static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
544{
545 struct vmcb *vmcb = get_host_vmcb(svm);
546
547 vmcb->control.intercept_cr &= ~(1U << bit);
548
549 recalc_intercepts(svm);
550}
551
552static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
553{
554 struct vmcb *vmcb = get_host_vmcb(svm);
555
556 return vmcb->control.intercept_cr & (1U << bit);
557}
558
Paolo Bonzini5315c712014-03-03 13:08:29 +0100559static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100560{
561 struct vmcb *vmcb = get_host_vmcb(svm);
562
Paolo Bonzini5315c712014-03-03 13:08:29 +0100563 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
564 | (1 << INTERCEPT_DR1_READ)
565 | (1 << INTERCEPT_DR2_READ)
566 | (1 << INTERCEPT_DR3_READ)
567 | (1 << INTERCEPT_DR4_READ)
568 | (1 << INTERCEPT_DR5_READ)
569 | (1 << INTERCEPT_DR6_READ)
570 | (1 << INTERCEPT_DR7_READ)
571 | (1 << INTERCEPT_DR0_WRITE)
572 | (1 << INTERCEPT_DR1_WRITE)
573 | (1 << INTERCEPT_DR2_WRITE)
574 | (1 << INTERCEPT_DR3_WRITE)
575 | (1 << INTERCEPT_DR4_WRITE)
576 | (1 << INTERCEPT_DR5_WRITE)
577 | (1 << INTERCEPT_DR6_WRITE)
578 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100579
580 recalc_intercepts(svm);
581}
582
Paolo Bonzini5315c712014-03-03 13:08:29 +0100583static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100584{
585 struct vmcb *vmcb = get_host_vmcb(svm);
586
Paolo Bonzini5315c712014-03-03 13:08:29 +0100587 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100588
589 recalc_intercepts(svm);
590}
591
Joerg Roedel18c918c2010-11-30 18:03:59 +0100592static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
593{
594 struct vmcb *vmcb = get_host_vmcb(svm);
595
596 vmcb->control.intercept_exceptions |= (1U << bit);
597
598 recalc_intercepts(svm);
599}
600
601static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
602{
603 struct vmcb *vmcb = get_host_vmcb(svm);
604
605 vmcb->control.intercept_exceptions &= ~(1U << bit);
606
607 recalc_intercepts(svm);
608}
609
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100610static inline void set_intercept(struct vcpu_svm *svm, int bit)
611{
612 struct vmcb *vmcb = get_host_vmcb(svm);
613
614 vmcb->control.intercept |= (1ULL << bit);
615
616 recalc_intercepts(svm);
617}
618
619static inline void clr_intercept(struct vcpu_svm *svm, int bit)
620{
621 struct vmcb *vmcb = get_host_vmcb(svm);
622
623 vmcb->control.intercept &= ~(1ULL << bit);
624
625 recalc_intercepts(svm);
626}
627
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500628static inline bool vgif_enabled(struct vcpu_svm *svm)
629{
630 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
631}
632
Joerg Roedel2af91942009-08-07 11:49:28 +0200633static inline void enable_gif(struct vcpu_svm *svm)
634{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500635 if (vgif_enabled(svm))
636 svm->vmcb->control.int_ctl |= V_GIF_MASK;
637 else
638 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200639}
640
641static inline void disable_gif(struct vcpu_svm *svm)
642{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500643 if (vgif_enabled(svm))
644 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
645 else
646 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200647}
648
649static inline bool gif_set(struct vcpu_svm *svm)
650{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500651 if (vgif_enabled(svm))
652 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
653 else
654 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200655}
656
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657static unsigned long iopm_base;
658
659struct kvm_ldttss_desc {
660 u16 limit0;
661 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100662 unsigned base1:8, type:5, dpl:2, p:1;
663 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800664 u32 base3;
665 u32 zero1;
666} __attribute__((packed));
667
668struct svm_cpu_data {
669 int cpu;
670
Avi Kivity5008fdf2007-04-02 13:05:50 +0300671 u64 asid_generation;
672 u32 max_asid;
673 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600674 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675 struct kvm_ldttss_desc *tss_desc;
676
677 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100678 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600679
680 /* index = sev_asid, value = vmcb pointer */
681 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682};
683
684static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
685
Mathias Krause09941fb2012-08-30 01:30:20 +0200686static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800687
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200688#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800689#define MSRS_RANGE_SIZE 2048
690#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
691
Joerg Roedel455716f2010-03-01 15:34:35 +0100692static u32 svm_msrpm_offset(u32 msr)
693{
694 u32 offset;
695 int i;
696
697 for (i = 0; i < NUM_MSR_MAPS; i++) {
698 if (msr < msrpm_ranges[i] ||
699 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
700 continue;
701
702 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
703 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
704
705 /* Now we have the u8 offset - but need the u32 offset */
706 return offset / 4;
707 }
708
709 /* MSR not in any range */
710 return MSR_INVALID;
711}
712
Avi Kivity6aa8b732006-12-10 02:21:36 -0800713#define MAX_INST_SIZE 15
714
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715static inline void clgi(void)
716{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100717 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718}
719
720static inline void stgi(void)
721{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100722 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723}
724
725static inline void invlpga(unsigned long addr, u32 asid)
726{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100727 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728}
729
Yu Zhang855feb62017-08-24 20:27:55 +0800730static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200731{
732#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800733 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200734#else
735 return PT32E_ROOT_LEVEL;
736#endif
737}
738
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
740{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000741 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100742 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600743 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744
Alexander Graf9962d032008-11-25 20:17:02 +0100745 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100746 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747}
748
Avi Kivity6aa8b732006-12-10 02:21:36 -0800749static int is_external_interrupt(u32 info)
750{
751 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
752 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
753}
754
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200755static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400756{
757 struct vcpu_svm *svm = to_svm(vcpu);
758 u32 ret = 0;
759
760 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200761 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
762 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400763}
764
765static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
766{
767 struct vcpu_svm *svm = to_svm(vcpu);
768
769 if (mask == 0)
770 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
771 else
772 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
773
774}
775
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
777{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400778 struct vcpu_svm *svm = to_svm(vcpu);
779
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200780 if (nrips && svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200781 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200782 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400783 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200784
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400785 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700786 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300787 EMULATE_DONE)
788 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789 return;
790 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300791 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
792 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
793 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800794
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300795 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400796 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797}
798
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700799static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100800{
801 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700802 unsigned nr = vcpu->arch.exception.nr;
803 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700804 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700805 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100806
Joerg Roedele0231712010-02-24 18:59:10 +0100807 /*
808 * If we are within a nested VM we'd better #VMEXIT and let the guest
809 * handle the exception
810 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200811 if (!reinject &&
812 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100813 return;
814
Jim Mattsonda998b42018-10-16 14:29:22 -0700815 kvm_deliver_exception_payload(&svm->vcpu);
816
Paolo Bonzinid647eb62019-06-20 14:13:33 +0200817 if (nr == BP_VECTOR && !nrips) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100818 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
819
820 /*
821 * For guest debugging where we have to reinject #BP if some
822 * INT3 is guest-owned:
823 * Emulate nRIP by moving RIP forward. Will fail if injection
824 * raises a fault that is not intercepted. Still better than
825 * failing in all cases.
826 */
827 skip_emulated_instruction(&svm->vcpu);
828 rip = kvm_rip_read(&svm->vcpu);
829 svm->int3_rip = rip + svm->vmcb->save.cs.base;
830 svm->int3_injected = rip - old_rip;
831 }
832
Jan Kiszka116a4752010-02-23 17:47:54 +0100833 svm->vmcb->control.event_inj = nr
834 | SVM_EVTINJ_VALID
835 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
836 | SVM_EVTINJ_TYPE_EXEPT;
837 svm->vmcb->control.event_inj_err = error_code;
838}
839
Joerg Roedel67ec6602010-05-17 14:43:35 +0200840static void svm_init_erratum_383(void)
841{
842 u32 low, high;
843 int err;
844 u64 val;
845
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100846 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200847 return;
848
849 /* Use _safe variants to not break nested virtualization */
850 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
851 if (err)
852 return;
853
854 val |= (1ULL << 47);
855
856 low = lower_32_bits(val);
857 high = upper_32_bits(val);
858
859 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
860
861 erratum_383_found = true;
862}
863
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500864static void svm_init_osvw(struct kvm_vcpu *vcpu)
865{
866 /*
867 * Guests should see errata 400 and 415 as fixed (assuming that
868 * HLT and IO instructions are intercepted).
869 */
870 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
871 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
872
873 /*
874 * By increasing VCPU's osvw.length to 3 we are telling the guest that
875 * all osvw.status bits inside that length, including bit 0 (which is
876 * reserved for erratum 298), are valid. However, if host processor's
877 * osvw_len is 0 then osvw_status[0] carries no information. We need to
878 * be conservative here and therefore we tell the guest that erratum 298
879 * is present (because we really don't know).
880 */
881 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
882 vcpu->arch.osvw.status |= 1;
883}
884
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885static int has_svm(void)
886{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200887 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888
Eduardo Habkost63d11422008-11-17 19:03:20 -0200889 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800890 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 return 0;
892 }
893
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894 return 1;
895}
896
Radim Krčmář13a34e02014-08-28 15:13:03 +0200897static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100899 /* Make sure we clean up behind us */
900 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
901 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
902
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200903 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100904
905 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906}
907
Radim Krčmář13a34e02014-08-28 15:13:03 +0200908static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909{
910
Tejun Heo0fe1e002009-10-29 22:34:14 +0900911 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 struct desc_struct *gdt;
914 int me = raw_smp_processor_id();
915
Alexander Graf10474ae2009-09-15 11:37:46 +0200916 rdmsrl(MSR_EFER, efer);
917 if (efer & EFER_SVME)
918 return -EBUSY;
919
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200921 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200922 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900924 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900925 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200926 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200927 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928 }
929
Tejun Heo0fe1e002009-10-29 22:34:14 +0900930 sd->asid_generation = 1;
931 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
932 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600933 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934
Thomas Garnier45fc8752017-03-14 10:05:08 -0700935 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900936 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937
Alexander Graf9962d032008-11-25 20:17:02 +0100938 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939
Linus Torvaldsd0316552009-12-14 09:58:24 -0800940 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200941
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100942 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
943 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500944 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100945 }
946
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500947
948 /*
949 * Get OSVW bits.
950 *
951 * Note that it is possible to have a system with mixed processor
952 * revisions and therefore different OSVW bits. If bits are not the same
953 * on different processors then choose the worst case (i.e. if erratum
954 * is present on one processor and not on another then assume that the
955 * erratum is present everywhere).
956 */
957 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
958 uint64_t len, status = 0;
959 int err;
960
961 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
962 if (!err)
963 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
964 &err);
965
966 if (err)
967 osvw_status = osvw_len = 0;
968 else {
969 if (len < osvw_len)
970 osvw_len = len;
971 osvw_status |= status;
972 osvw_status &= (1ULL << osvw_len) - 1;
973 }
974 } else
975 osvw_status = osvw_len = 0;
976
Joerg Roedel67ec6602010-05-17 14:43:35 +0200977 svm_init_erratum_383();
978
Joerg Roedel1018faa2012-02-29 14:57:32 +0100979 amd_pmu_enable_virt();
980
Alexander Graf10474ae2009-09-15 11:37:46 +0200981 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982}
983
Joerg Roedel0da1db752008-07-02 16:02:11 +0200984static void svm_cpu_uninit(int cpu)
985{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900986 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200987
Tejun Heo0fe1e002009-10-29 22:34:14 +0900988 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200989 return;
990
991 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600992 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900993 __free_page(sd->save_area);
994 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200995}
996
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997static int svm_cpu_init(int cpu)
998{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900999 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000 int r;
1001
Tejun Heo0fe1e002009-10-29 22:34:14 +09001002 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1003 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001005 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001007 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001008 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 goto err_1;
1010
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001011 if (svm_sev_enabled()) {
1012 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001013 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1014 sizeof(void *),
1015 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001016 if (!sd->sev_vmcbs)
1017 goto err_1;
1018 }
1019
Tejun Heo0fe1e002009-10-29 22:34:14 +09001020 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021
1022 return 0;
1023
1024err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001025 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 return r;
1027
1028}
1029
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001030static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031{
1032 int i;
1033
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001034 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1035 if (direct_access_msrs[i].index == index)
1036 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001038 return false;
1039}
1040
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001041static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1042{
1043 u8 bit_write;
1044 unsigned long tmp;
1045 u32 offset;
1046 u32 *msrpm;
1047
1048 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1049 to_svm(vcpu)->msrpm;
1050
1051 offset = svm_msrpm_offset(msr);
1052 bit_write = 2 * (msr & 0x0f) + 1;
1053 tmp = msrpm[offset];
1054
1055 BUG_ON(offset == MSR_INVALID);
1056
1057 return !!test_bit(bit_write, &tmp);
1058}
1059
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060static void set_msr_interception(u32 *msrpm, unsigned msr,
1061 int read, int write)
1062{
Joerg Roedel455716f2010-03-01 15:34:35 +01001063 u8 bit_read, bit_write;
1064 unsigned long tmp;
1065 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001067 /*
1068 * If this warning triggers extend the direct_access_msrs list at the
1069 * beginning of the file
1070 */
1071 WARN_ON(!valid_msr_intercept(msr));
1072
Joerg Roedel455716f2010-03-01 15:34:35 +01001073 offset = svm_msrpm_offset(msr);
1074 bit_read = 2 * (msr & 0x0f);
1075 bit_write = 2 * (msr & 0x0f) + 1;
1076 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077
Joerg Roedel455716f2010-03-01 15:34:35 +01001078 BUG_ON(offset == MSR_INVALID);
1079
1080 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1081 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1082
1083 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084}
1085
Joerg Roedelf65c2292008-02-13 18:58:46 +01001086static void svm_vcpu_init_msrpm(u32 *msrpm)
1087{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001088 int i;
1089
Joerg Roedelf65c2292008-02-13 18:58:46 +01001090 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1091
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001092 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1093 if (!direct_access_msrs[i].always)
1094 continue;
1095
1096 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1097 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001098}
1099
Joerg Roedel323c3d82010-03-01 15:34:37 +01001100static void add_msr_offset(u32 offset)
1101{
1102 int i;
1103
1104 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1105
1106 /* Offset already in list? */
1107 if (msrpm_offsets[i] == offset)
1108 return;
1109
1110 /* Slot used by another offset? */
1111 if (msrpm_offsets[i] != MSR_INVALID)
1112 continue;
1113
1114 /* Add offset to list */
1115 msrpm_offsets[i] = offset;
1116
1117 return;
1118 }
1119
1120 /*
1121 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1122 * increase MSRPM_OFFSETS in this case.
1123 */
1124 BUG();
1125}
1126
1127static void init_msrpm_offsets(void)
1128{
1129 int i;
1130
1131 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1132
1133 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1134 u32 offset;
1135
1136 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1137 BUG_ON(offset == MSR_INVALID);
1138
1139 add_msr_offset(offset);
1140 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001141}
1142
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001143static void svm_enable_lbrv(struct vcpu_svm *svm)
1144{
1145 u32 *msrpm = svm->msrpm;
1146
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001147 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001148 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1149 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1150 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1151 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1152}
1153
1154static void svm_disable_lbrv(struct vcpu_svm *svm)
1155{
1156 u32 *msrpm = svm->msrpm;
1157
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001158 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001159 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1160 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1161 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1162 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1163}
1164
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001165static void disable_nmi_singlestep(struct vcpu_svm *svm)
1166{
1167 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001168
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001169 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1170 /* Clear our flags if they were not set by the guest */
1171 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1172 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1173 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1174 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1175 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001176}
1177
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001178/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001179 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001180 * when handling AMD IOMMU GALOG notification to schedule in
1181 * a particular vCPU.
1182 */
1183#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001184static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001185static u32 next_vm_id = 0;
1186static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001187static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001188
1189/* Note:
1190 * This function is called from IOMMU driver to notify
1191 * SVM to schedule in a particular vCPU of a particular VM.
1192 */
1193static int avic_ga_log_notifier(u32 ga_tag)
1194{
1195 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001196 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001197 struct kvm_vcpu *vcpu = NULL;
1198 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1199 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1200
1201 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1202
1203 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001204 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1205 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001206 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001207 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001208 break;
1209 }
1210 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1211
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001212 /* Note:
1213 * At this point, the IOMMU should have already set the pending
1214 * bit in the vAPIC backing page. So, we just need to schedule
1215 * in the vcpu.
1216 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001217 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001218 kvm_vcpu_wake_up(vcpu);
1219
1220 return 0;
1221}
1222
Brijesh Singhe9df0942017-12-04 10:57:33 -06001223static __init int sev_hardware_setup(void)
1224{
1225 struct sev_user_data_status *status;
1226 int rc;
1227
1228 /* Maximum number of encrypted guests supported simultaneously */
1229 max_sev_asid = cpuid_ecx(0x8000001F);
1230
1231 if (!max_sev_asid)
1232 return 1;
1233
Brijesh Singh1654efc2017-12-04 10:57:34 -06001234 /* Minimum ASID value that should be used for SEV guest */
1235 min_sev_asid = cpuid_edx(0x8000001F);
1236
1237 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001238 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001239 if (!sev_asid_bitmap)
1240 return 1;
1241
Brijesh Singhe9df0942017-12-04 10:57:33 -06001242 status = kmalloc(sizeof(*status), GFP_KERNEL);
1243 if (!status)
1244 return 1;
1245
1246 /*
1247 * Check SEV platform status.
1248 *
1249 * PLATFORM_STATUS can be called in any state, if we failed to query
1250 * the PLATFORM status then either PSP firmware does not support SEV
1251 * feature or SEV firmware is dead.
1252 */
1253 rc = sev_platform_status(status, NULL);
1254 if (rc)
1255 goto err;
1256
1257 pr_info("SEV supported\n");
1258
1259err:
1260 kfree(status);
1261 return rc;
1262}
1263
Babu Moger8566ac82018-03-16 16:37:26 -04001264static void grow_ple_window(struct kvm_vcpu *vcpu)
1265{
1266 struct vcpu_svm *svm = to_svm(vcpu);
1267 struct vmcb_control_area *control = &svm->vmcb->control;
1268 int old = control->pause_filter_count;
1269
1270 control->pause_filter_count = __grow_ple_window(old,
1271 pause_filter_count,
1272 pause_filter_count_grow,
1273 pause_filter_count_max);
1274
1275 if (control->pause_filter_count != old)
1276 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1277
1278 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1279 control->pause_filter_count, old);
1280}
1281
1282static void shrink_ple_window(struct kvm_vcpu *vcpu)
1283{
1284 struct vcpu_svm *svm = to_svm(vcpu);
1285 struct vmcb_control_area *control = &svm->vmcb->control;
1286 int old = control->pause_filter_count;
1287
1288 control->pause_filter_count =
1289 __shrink_ple_window(old,
1290 pause_filter_count,
1291 pause_filter_count_shrink,
1292 pause_filter_count);
1293 if (control->pause_filter_count != old)
1294 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1295
1296 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1297 control->pause_filter_count, old);
1298}
1299
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300static __init int svm_hardware_setup(void)
1301{
1302 int cpu;
1303 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001304 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305 int r;
1306
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1308
1309 if (!iopm_pages)
1310 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001311
1312 iopm_va = page_address(iopm_pages);
1313 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1315
Joerg Roedel323c3d82010-03-01 15:34:37 +01001316 init_msrpm_offsets();
1317
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001318 if (boot_cpu_has(X86_FEATURE_NX))
1319 kvm_enable_efer_bits(EFER_NX);
1320
Alexander Graf1b2fd702009-02-02 16:23:51 +01001321 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1322 kvm_enable_efer_bits(EFER_FFXSR);
1323
Joerg Roedel92a1f122011-03-25 09:44:51 +01001324 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001325 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001326 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1327 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001328 }
1329
Babu Moger8566ac82018-03-16 16:37:26 -04001330 /* Check for pause filtering support */
1331 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1332 pause_filter_count = 0;
1333 pause_filter_thresh = 0;
1334 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1335 pause_filter_thresh = 0;
1336 }
1337
Alexander Graf236de052008-11-25 20:17:10 +01001338 if (nested) {
1339 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001340 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001341 }
1342
Brijesh Singhe9df0942017-12-04 10:57:33 -06001343 if (sev) {
1344 if (boot_cpu_has(X86_FEATURE_SEV) &&
1345 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1346 r = sev_hardware_setup();
1347 if (r)
1348 sev = false;
1349 } else {
1350 sev = false;
1351 }
1352 }
1353
Zachary Amsden3230bb42009-09-29 11:38:37 -10001354 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001355 r = svm_cpu_init(cpu);
1356 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001357 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001359
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001360 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001361 npt_enabled = false;
1362
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001363 if (npt_enabled && !npt) {
1364 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1365 npt_enabled = false;
1366 }
1367
Joerg Roedel18552672008-02-07 13:47:41 +01001368 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001369 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001370 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001371 } else
1372 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001373
Paolo Bonzinid647eb62019-06-20 14:13:33 +02001374 if (nrips) {
1375 if (!boot_cpu_has(X86_FEATURE_NRIPS))
1376 nrips = false;
1377 }
1378
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001379 if (avic) {
1380 if (!npt_enabled ||
1381 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001382 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001383 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001384 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001385 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001386
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001387 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1388 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001389 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001390
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001391 if (vls) {
1392 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001393 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001394 !IS_ENABLED(CONFIG_X86_64)) {
1395 vls = false;
1396 } else {
1397 pr_info("Virtual VMLOAD VMSAVE supported\n");
1398 }
1399 }
1400
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001401 if (vgif) {
1402 if (!boot_cpu_has(X86_FEATURE_VGIF))
1403 vgif = false;
1404 else
1405 pr_info("Virtual GIF supported\n");
1406 }
1407
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 return 0;
1409
Joerg Roedelf65c2292008-02-13 18:58:46 +01001410err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1412 iopm_base = 0;
1413 return r;
1414}
1415
1416static __exit void svm_hardware_unsetup(void)
1417{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001418 int cpu;
1419
Brijesh Singh1654efc2017-12-04 10:57:34 -06001420 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001421 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001422
Zachary Amsden3230bb42009-09-29 11:38:37 -10001423 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001424 svm_cpu_uninit(cpu);
1425
Avi Kivity6aa8b732006-12-10 02:21:36 -08001426 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001427 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428}
1429
1430static void init_seg(struct vmcb_seg *seg)
1431{
1432 seg->selector = 0;
1433 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001434 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001435 seg->limit = 0xffff;
1436 seg->base = 0;
1437}
1438
1439static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1440{
1441 seg->selector = 0;
1442 seg->attrib = SVM_SELECTOR_P_MASK | type;
1443 seg->limit = 0xffff;
1444 seg->base = 0;
1445}
1446
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001447static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1448{
1449 struct vcpu_svm *svm = to_svm(vcpu);
1450
1451 if (is_guest_mode(vcpu))
1452 return svm->nested.hsave->control.tsc_offset;
1453
1454 return vcpu->arch.tsc_offset;
1455}
1456
Leonid Shatz326e7422018-11-06 12:14:25 +02001457static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001458{
1459 struct vcpu_svm *svm = to_svm(vcpu);
1460 u64 g_tsc_offset = 0;
1461
Joerg Roedel20307532010-11-29 17:51:48 +01001462 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001463 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001464 g_tsc_offset = svm->vmcb->control.tsc_offset -
1465 svm->nested.hsave->control.tsc_offset;
1466 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001467 }
1468
1469 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1470 svm->vmcb->control.tsc_offset - g_tsc_offset,
1471 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001472
1473 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001474
1475 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001476 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001477}
1478
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001479static void avic_init_vmcb(struct vcpu_svm *svm)
1480{
1481 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001482 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001483 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001484 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1485 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001486
1487 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1488 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1489 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1490 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1491 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001492}
1493
Paolo Bonzini56908912015-10-19 11:30:19 +02001494static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495{
Joerg Roedele6101a92008-02-13 18:58:45 +01001496 struct vmcb_control_area *control = &svm->vmcb->control;
1497 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001499 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001500
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001501 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1502 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1503 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1504 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1505 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1506 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001507 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1508 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509
Paolo Bonzini5315c712014-03-03 13:08:29 +01001510 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511
Joerg Roedel18c918c2010-11-30 18:03:59 +01001512 set_exception_intercept(svm, PF_VECTOR);
1513 set_exception_intercept(svm, UD_VECTOR);
1514 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001515 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001516 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001517 /*
1518 * Guest access to VMware backdoor ports could legitimately
1519 * trigger #GP because of TSS I/O permission bitmap.
1520 * We intercept those #GP and allow access to them anyway
1521 * as VMware does.
1522 */
1523 if (enable_vmware_backdoor)
1524 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001525
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001526 set_intercept(svm, INTERCEPT_INTR);
1527 set_intercept(svm, INTERCEPT_NMI);
1528 set_intercept(svm, INTERCEPT_SMI);
1529 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001530 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001531 set_intercept(svm, INTERCEPT_CPUID);
1532 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001533 set_intercept(svm, INTERCEPT_INVLPG);
1534 set_intercept(svm, INTERCEPT_INVLPGA);
1535 set_intercept(svm, INTERCEPT_IOIO_PROT);
1536 set_intercept(svm, INTERCEPT_MSR_PROT);
1537 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1538 set_intercept(svm, INTERCEPT_SHUTDOWN);
1539 set_intercept(svm, INTERCEPT_VMRUN);
1540 set_intercept(svm, INTERCEPT_VMMCALL);
1541 set_intercept(svm, INTERCEPT_VMLOAD);
1542 set_intercept(svm, INTERCEPT_VMSAVE);
1543 set_intercept(svm, INTERCEPT_STGI);
1544 set_intercept(svm, INTERCEPT_CLGI);
1545 set_intercept(svm, INTERCEPT_SKINIT);
1546 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001547 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001548 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001550 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001551 set_intercept(svm, INTERCEPT_MONITOR);
1552 set_intercept(svm, INTERCEPT_MWAIT);
1553 }
1554
Wanpeng Licaa057a2018-03-12 04:53:03 -07001555 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1556 set_intercept(svm, INTERCEPT_HLT);
1557
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001558 control->iopm_base_pa = __sme_set(iopm_base);
1559 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560 control->int_ctl = V_INTR_MASKING_MASK;
1561
1562 init_seg(&save->es);
1563 init_seg(&save->ss);
1564 init_seg(&save->ds);
1565 init_seg(&save->fs);
1566 init_seg(&save->gs);
1567
1568 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001569 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 /* Executable/Readable Code Segment */
1571 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1572 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1573 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574
1575 save->gdtr.limit = 0xffff;
1576 save->idtr.limit = 0xffff;
1577
1578 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1579 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1580
Paolo Bonzini56908912015-10-19 11:30:19 +02001581 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001582 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001583 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001584 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001585 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586
Joerg Roedele0231712010-02-24 18:59:10 +01001587 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001588 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001589 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001591 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001592 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001593
Rusty Russell66aee912007-07-17 23:34:16 +10001594 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001596
1597 if (npt_enabled) {
1598 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001599 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001600 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001601 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001602 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1603 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001604 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001605 save->cr3 = 0;
1606 save->cr4 = 0;
1607 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001608 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001609
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001610 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001611 svm->vcpu.arch.hflags = 0;
1612
Babu Moger8566ac82018-03-16 16:37:26 -04001613 if (pause_filter_count) {
1614 control->pause_filter_count = pause_filter_count;
1615 if (pause_filter_thresh)
1616 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001617 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001618 } else {
1619 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001620 }
1621
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001622 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001623 avic_init_vmcb(svm);
1624
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001625 /*
1626 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1627 * in VMCB and clear intercepts to avoid #VMEXIT.
1628 */
1629 if (vls) {
1630 clr_intercept(svm, INTERCEPT_VMLOAD);
1631 clr_intercept(svm, INTERCEPT_VMSAVE);
1632 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1633 }
1634
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001635 if (vgif) {
1636 clr_intercept(svm, INTERCEPT_STGI);
1637 clr_intercept(svm, INTERCEPT_CLGI);
1638 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1639 }
1640
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001641 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001642 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001643 clr_exception_intercept(svm, UD_VECTOR);
1644 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001645
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001646 mark_all_dirty(svm->vmcb);
1647
Joerg Roedel2af91942009-08-07 11:49:28 +02001648 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001649
1650}
1651
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001652static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1653 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001654{
1655 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001656 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001657
1658 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1659 return NULL;
1660
Sean Christopherson81811c12018-03-20 12:17:21 -07001661 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001662
1663 return &avic_physical_id_table[index];
1664}
1665
1666/**
1667 * Note:
1668 * AVIC hardware walks the nested page table to check permissions,
1669 * but does not use the SPA address specified in the leaf page
1670 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1671 * field of the VMCB. Therefore, we set up the
1672 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1673 */
1674static int avic_init_access_page(struct kvm_vcpu *vcpu)
1675{
1676 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001677 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001678
Wei Wang30510382018-11-12 12:23:14 +00001679 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001680 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001681 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001682
Wei Wang30510382018-11-12 12:23:14 +00001683 ret = __x86_set_memory_region(kvm,
1684 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1685 APIC_DEFAULT_PHYS_BASE,
1686 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001687 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001688 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001689
1690 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001691out:
1692 mutex_unlock(&kvm->slots_lock);
1693 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001694}
1695
1696static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1697{
1698 int ret;
1699 u64 *entry, new_entry;
1700 int id = vcpu->vcpu_id;
1701 struct vcpu_svm *svm = to_svm(vcpu);
1702
1703 ret = avic_init_access_page(vcpu);
1704 if (ret)
1705 return ret;
1706
1707 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1708 return -EINVAL;
1709
1710 if (!svm->vcpu.arch.apic->regs)
1711 return -EINVAL;
1712
1713 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1714
1715 /* Setting AVIC backing page address in the phy APIC ID table */
1716 entry = avic_get_physical_id_entry(vcpu, id);
1717 if (!entry)
1718 return -EINVAL;
1719
1720 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001721 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1722 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1723 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001724 WRITE_ONCE(*entry, new_entry);
1725
1726 svm->avic_physical_id_cache = entry;
1727
1728 return 0;
1729}
1730
Brijesh Singh1654efc2017-12-04 10:57:34 -06001731static void __sev_asid_free(int asid)
1732{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001733 struct svm_cpu_data *sd;
1734 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001735
1736 pos = asid - 1;
1737 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001738
1739 for_each_possible_cpu(cpu) {
1740 sd = per_cpu(svm_data, cpu);
1741 sd->sev_vmcbs[pos] = NULL;
1742 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001743}
1744
1745static void sev_asid_free(struct kvm *kvm)
1746{
Sean Christopherson81811c12018-03-20 12:17:21 -07001747 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001748
1749 __sev_asid_free(sev->asid);
1750}
1751
Brijesh Singh59414c92017-12-04 10:57:35 -06001752static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1753{
1754 struct sev_data_decommission *decommission;
1755 struct sev_data_deactivate *data;
1756
1757 if (!handle)
1758 return;
1759
1760 data = kzalloc(sizeof(*data), GFP_KERNEL);
1761 if (!data)
1762 return;
1763
1764 /* deactivate handle */
1765 data->handle = handle;
1766 sev_guest_deactivate(data, NULL);
1767
1768 wbinvd_on_all_cpus();
1769 sev_guest_df_flush(NULL);
1770 kfree(data);
1771
1772 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1773 if (!decommission)
1774 return;
1775
1776 /* decommission handle */
1777 decommission->handle = handle;
1778 sev_guest_decommission(decommission, NULL);
1779
1780 kfree(decommission);
1781}
1782
Brijesh Singh89c50582017-12-04 10:57:35 -06001783static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1784 unsigned long ulen, unsigned long *n,
1785 int write)
1786{
Sean Christopherson81811c12018-03-20 12:17:21 -07001787 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001788 unsigned long npages, npinned, size;
1789 unsigned long locked, lock_limit;
1790 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001791 unsigned long first, last;
1792
1793 if (ulen == 0 || uaddr + ulen < uaddr)
1794 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001795
1796 /* Calculate number of pages. */
1797 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1798 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1799 npages = (last - first + 1);
1800
1801 locked = sev->pages_locked + npages;
1802 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1803 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1804 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1805 return NULL;
1806 }
1807
1808 /* Avoid using vmalloc for smaller buffers. */
1809 size = npages * sizeof(struct page *);
1810 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001811 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1812 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001813 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001814 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001815
1816 if (!pages)
1817 return NULL;
1818
1819 /* Pin the user virtual address. */
Ira Weiny73b01402019-05-13 17:17:11 -07001820 npinned = get_user_pages_fast(uaddr, npages, FOLL_WRITE, pages);
Brijesh Singh89c50582017-12-04 10:57:35 -06001821 if (npinned != npages) {
1822 pr_err("SEV: Failure locking %lu pages.\n", npages);
1823 goto err;
1824 }
1825
1826 *n = npages;
1827 sev->pages_locked = locked;
1828
1829 return pages;
1830
1831err:
1832 if (npinned > 0)
1833 release_pages(pages, npinned);
1834
1835 kvfree(pages);
1836 return NULL;
1837}
1838
1839static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1840 unsigned long npages)
1841{
Sean Christopherson81811c12018-03-20 12:17:21 -07001842 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001843
1844 release_pages(pages, npages);
1845 kvfree(pages);
1846 sev->pages_locked -= npages;
1847}
1848
1849static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1850{
1851 uint8_t *page_virtual;
1852 unsigned long i;
1853
1854 if (npages == 0 || pages == NULL)
1855 return;
1856
1857 for (i = 0; i < npages; i++) {
1858 page_virtual = kmap_atomic(pages[i]);
1859 clflush_cache_range(page_virtual, PAGE_SIZE);
1860 kunmap_atomic(page_virtual);
1861 }
1862}
1863
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001864static void __unregister_enc_region_locked(struct kvm *kvm,
1865 struct enc_region *region)
1866{
1867 /*
1868 * The guest may change the memory encryption attribute from C=0 -> C=1
1869 * or vice versa for this memory range. Lets make sure caches are
1870 * flushed to ensure that guest data gets written into memory with
1871 * correct C-bit.
1872 */
1873 sev_clflush_pages(region->pages, region->npages);
1874
1875 sev_unpin_memory(kvm, region->pages, region->npages);
1876 list_del(&region->list);
1877 kfree(region);
1878}
1879
Sean Christopherson434a1e92018-03-20 12:17:18 -07001880static struct kvm *svm_vm_alloc(void)
1881{
Ben Gardon1ec69642019-02-11 11:02:51 -08001882 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1883 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1884 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001885 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001886}
1887
1888static void svm_vm_free(struct kvm *kvm)
1889{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001890 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001891}
1892
Brijesh Singh1654efc2017-12-04 10:57:34 -06001893static void sev_vm_destroy(struct kvm *kvm)
1894{
Sean Christopherson81811c12018-03-20 12:17:21 -07001895 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001896 struct list_head *head = &sev->regions_list;
1897 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001898
Brijesh Singh1654efc2017-12-04 10:57:34 -06001899 if (!sev_guest(kvm))
1900 return;
1901
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001902 mutex_lock(&kvm->lock);
1903
1904 /*
1905 * if userspace was terminated before unregistering the memory regions
1906 * then lets unpin all the registered memory.
1907 */
1908 if (!list_empty(head)) {
1909 list_for_each_safe(pos, q, head) {
1910 __unregister_enc_region_locked(kvm,
1911 list_entry(pos, struct enc_region, list));
1912 }
1913 }
1914
1915 mutex_unlock(&kvm->lock);
1916
Brijesh Singh59414c92017-12-04 10:57:35 -06001917 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001918 sev_asid_free(kvm);
1919}
1920
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001921static void avic_vm_destroy(struct kvm *kvm)
1922{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001923 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001924 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001925
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001926 if (!avic)
1927 return;
1928
Sean Christopherson81811c12018-03-20 12:17:21 -07001929 if (kvm_svm->avic_logical_id_table_page)
1930 __free_page(kvm_svm->avic_logical_id_table_page);
1931 if (kvm_svm->avic_physical_id_table_page)
1932 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001933
1934 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001935 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001936 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001937}
1938
Brijesh Singh1654efc2017-12-04 10:57:34 -06001939static void svm_vm_destroy(struct kvm *kvm)
1940{
1941 avic_vm_destroy(kvm);
1942 sev_vm_destroy(kvm);
1943}
1944
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001945static int avic_vm_init(struct kvm *kvm)
1946{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001947 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001948 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001949 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1950 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001951 struct page *p_page;
1952 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001953 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001954
1955 if (!avic)
1956 return 0;
1957
1958 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001959 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001960 if (!p_page)
1961 goto free_avic;
1962
Sean Christopherson81811c12018-03-20 12:17:21 -07001963 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001964 clear_page(page_address(p_page));
1965
1966 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001967 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001968 if (!l_page)
1969 goto free_avic;
1970
Sean Christopherson81811c12018-03-20 12:17:21 -07001971 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001972 clear_page(page_address(l_page));
1973
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001974 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001975 again:
1976 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1977 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1978 next_vm_id_wrapped = 1;
1979 goto again;
1980 }
1981 /* Is it still in use? Only possible if wrapped at least once */
1982 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001983 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1984 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001985 goto again;
1986 }
1987 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001988 kvm_svm->avic_vm_id = vm_id;
1989 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001990 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1991
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001992 return 0;
1993
1994free_avic:
1995 avic_vm_destroy(kvm);
1996 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001997}
1998
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001999static inline int
2000avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002001{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002002 int ret = 0;
2003 unsigned long flags;
2004 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002005 struct vcpu_svm *svm = to_svm(vcpu);
2006
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002007 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2008 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002009
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002010 /*
2011 * Here, we go through the per-vcpu ir_list to update all existing
2012 * interrupt remapping table entry targeting this vcpu.
2013 */
2014 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002015
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002016 if (list_empty(&svm->ir_list))
2017 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002018
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002019 list_for_each_entry(ir, &svm->ir_list, node) {
2020 ret = amd_iommu_update_ga(cpu, r, ir->data);
2021 if (ret)
2022 break;
2023 }
2024out:
2025 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2026 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002027}
2028
2029static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2030{
2031 u64 entry;
2032 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002033 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002034 struct vcpu_svm *svm = to_svm(vcpu);
2035
2036 if (!kvm_vcpu_apicv_active(vcpu))
2037 return;
2038
Suthikulpanit, Suraveec9bcd3e2019-05-14 15:49:52 +00002039 /*
2040 * Since the host physical APIC id is 8 bits,
2041 * we can support host APIC ID upto 255.
2042 */
2043 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002044 return;
2045
2046 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2047 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2048
2049 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2050 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2051
2052 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2053 if (svm->avic_is_running)
2054 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2055
2056 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002057 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2058 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002059}
2060
2061static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2062{
2063 u64 entry;
2064 struct vcpu_svm *svm = to_svm(vcpu);
2065
2066 if (!kvm_vcpu_apicv_active(vcpu))
2067 return;
2068
2069 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002070 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2071 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2072
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002073 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2074 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002075}
2076
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002077/**
2078 * This function is called during VCPU halt/unhalt.
2079 */
2080static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2081{
2082 struct vcpu_svm *svm = to_svm(vcpu);
2083
2084 svm->avic_is_running = is_run;
2085 if (is_run)
2086 avic_vcpu_load(vcpu, vcpu->cpu);
2087 else
2088 avic_vcpu_put(vcpu);
2089}
2090
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002091static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002092{
2093 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002094 u32 dummy;
2095 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002096
Wanpeng Li518e7b92018-02-28 14:03:31 +08002097 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002098 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002099 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002100
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002101 if (!init_event) {
2102 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2103 MSR_IA32_APICBASE_ENABLE;
2104 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2105 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2106 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002107 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002108
Yu Zhange911eb32017-08-24 20:27:52 +08002109 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Sean Christophersonde3cd112019-04-30 10:36:17 -07002110 kvm_rdx_write(vcpu, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002111
2112 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2113 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002114}
2115
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002116static int avic_init_vcpu(struct vcpu_svm *svm)
2117{
2118 int ret;
2119
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002120 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002121 return 0;
2122
2123 ret = avic_init_backing_page(&svm->vcpu);
2124 if (ret)
2125 return ret;
2126
2127 INIT_LIST_HEAD(&svm->ir_list);
2128 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002129 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002130
2131 return ret;
2132}
2133
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002134static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002136 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002138 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002139 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002140 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002141 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142
Ben Gardon1ec69642019-02-11 11:02:51 -08002143 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002144 if (!svm) {
2145 err = -ENOMEM;
2146 goto out;
2147 }
2148
Ben Gardon1ec69642019-02-11 11:02:51 -08002149 svm->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
2150 GFP_KERNEL_ACCOUNT);
Marc Orrb666a4b2018-11-06 14:53:56 -08002151 if (!svm->vcpu.arch.guest_fpu) {
2152 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
2153 err = -ENOMEM;
2154 goto free_partial_svm;
2155 }
2156
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002157 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2158 if (err)
2159 goto free_svm;
2160
Joerg Roedelf65c2292008-02-13 18:58:46 +01002161 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002162 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002163 if (!page)
2164 goto uninit;
2165
Ben Gardon1ec69642019-02-11 11:02:51 -08002166 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002167 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002168 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002169
Ben Gardon1ec69642019-02-11 11:02:51 -08002170 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002171 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002172 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002173
Ben Gardon1ec69642019-02-11 11:02:51 -08002174 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002175 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002176 goto free_page3;
2177
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002178 err = avic_init_vcpu(svm);
2179 if (err)
2180 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002181
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002182 /* We initialize this flag to true to make sure that the is_running
2183 * bit would be set the first time the vcpu is loaded.
2184 */
2185 svm->avic_is_running = true;
2186
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002187 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002188
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002189 svm->msrpm = page_address(msrpm_pages);
2190 svm_vcpu_init_msrpm(svm->msrpm);
2191
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002192 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002193 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002194
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002195 svm->vmcb = page_address(page);
2196 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002197 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002198 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002199 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002200
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002201 svm_init_osvw(&svm->vcpu);
2202
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002203 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002204
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002205free_page4:
2206 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002207free_page3:
2208 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2209free_page2:
2210 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2211free_page1:
2212 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002213uninit:
2214 kvm_vcpu_uninit(&svm->vcpu);
2215free_svm:
Marc Orrb666a4b2018-11-06 14:53:56 -08002216 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
2217free_partial_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002218 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002219out:
2220 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221}
2222
Jim Mattsonfd65d312018-05-22 09:54:20 -07002223static void svm_clear_current_vmcb(struct vmcb *vmcb)
2224{
2225 int i;
2226
2227 for_each_online_cpu(i)
2228 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2229}
2230
Avi Kivity6aa8b732006-12-10 02:21:36 -08002231static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2232{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002233 struct vcpu_svm *svm = to_svm(vcpu);
2234
Jim Mattsonfd65d312018-05-22 09:54:20 -07002235 /*
2236 * The vmcb page can be recycled, causing a false negative in
2237 * svm_vcpu_load(). So, ensure that no logical CPU has this
2238 * vmcb page recorded as its current vmcb.
2239 */
2240 svm_clear_current_vmcb(svm->vmcb);
2241
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002242 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002243 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002244 __free_page(virt_to_page(svm->nested.hsave));
2245 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002246 kvm_vcpu_uninit(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002247 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10002248 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249}
2250
Avi Kivity15ad7142007-07-11 18:17:21 +03002251static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002253 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002254 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002255 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002256
Avi Kivity0cc50642007-03-25 12:07:27 +02002257 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002258 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002259 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002260 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002261
Avi Kivity82ca2d12010-10-21 12:20:34 +02002262#ifdef CONFIG_X86_64
2263 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2264#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002265 savesegment(fs, svm->host.fs);
2266 savesegment(gs, svm->host.gs);
2267 svm->host.ldt = kvm_read_ldt();
2268
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002269 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002270 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002271
Haozhong Zhangad7218832015-10-20 15:39:02 +08002272 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2273 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2274 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2275 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2276 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2277 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002278 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002279 /* This assumes that the kernel never uses MSR_TSC_AUX */
2280 if (static_cpu_has(X86_FEATURE_RDTSCP))
2281 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002282
Ashok Raj15d45072018-02-01 22:59:43 +01002283 if (sd->current_vmcb != svm->vmcb) {
2284 sd->current_vmcb = svm->vmcb;
2285 indirect_branch_prediction_barrier();
2286 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002287 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288}
2289
2290static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2291{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002292 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002293 int i;
2294
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002295 avic_vcpu_put(vcpu);
2296
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002297 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002298 kvm_load_ldt(svm->host.ldt);
2299#ifdef CONFIG_X86_64
2300 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002301 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002302 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002303#else
Avi Kivity831ca602011-03-08 16:09:51 +02002304#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002305 loadsegment(gs, svm->host.gs);
2306#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002307#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002308 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002309 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002310}
2311
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002312static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2313{
2314 avic_set_running(vcpu, false);
2315}
2316
2317static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2318{
2319 avic_set_running(vcpu, true);
2320}
2321
Avi Kivity6aa8b732006-12-10 02:21:36 -08002322static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2323{
Ladi Prosek9b611742017-06-21 09:06:59 +02002324 struct vcpu_svm *svm = to_svm(vcpu);
2325 unsigned long rflags = svm->vmcb->save.rflags;
2326
2327 if (svm->nmi_singlestep) {
2328 /* Hide our flags if they were not set by the guest */
2329 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2330 rflags &= ~X86_EFLAGS_TF;
2331 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2332 rflags &= ~X86_EFLAGS_RF;
2333 }
2334 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335}
2336
2337static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2338{
Ladi Prosek9b611742017-06-21 09:06:59 +02002339 if (to_svm(vcpu)->nmi_singlestep)
2340 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2341
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002342 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002343 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002344 * (caused by either a task switch or an inter-privilege IRET),
2345 * so we do not need to update the CPL here.
2346 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002347 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348}
2349
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002350static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2351{
2352 switch (reg) {
2353 case VCPU_EXREG_PDPTR:
2354 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002355 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002356 break;
2357 default:
2358 BUG();
2359 }
2360}
2361
Alexander Graff0b85052008-11-25 20:17:01 +01002362static void svm_set_vintr(struct vcpu_svm *svm)
2363{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002364 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002365}
2366
2367static void svm_clear_vintr(struct vcpu_svm *svm)
2368{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002369 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002370}
2371
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2373{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002374 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375
2376 switch (seg) {
2377 case VCPU_SREG_CS: return &save->cs;
2378 case VCPU_SREG_DS: return &save->ds;
2379 case VCPU_SREG_ES: return &save->es;
2380 case VCPU_SREG_FS: return &save->fs;
2381 case VCPU_SREG_GS: return &save->gs;
2382 case VCPU_SREG_SS: return &save->ss;
2383 case VCPU_SREG_TR: return &save->tr;
2384 case VCPU_SREG_LDTR: return &save->ldtr;
2385 }
2386 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002387 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388}
2389
2390static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2391{
2392 struct vmcb_seg *s = svm_seg(vcpu, seg);
2393
2394 return s->base;
2395}
2396
2397static void svm_get_segment(struct kvm_vcpu *vcpu,
2398 struct kvm_segment *var, int seg)
2399{
2400 struct vmcb_seg *s = svm_seg(vcpu, seg);
2401
2402 var->base = s->base;
2403 var->limit = s->limit;
2404 var->selector = s->selector;
2405 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2406 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2407 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2408 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2409 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2410 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2411 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302412
2413 /*
2414 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2415 * However, the SVM spec states that the G bit is not observed by the
2416 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2417 * So let's synthesize a legal G bit for all segments, this helps
2418 * running KVM nested. It also helps cross-vendor migration, because
2419 * Intel's vmentry has a check on the 'G' bit.
2420 */
2421 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002422
Joerg Roedele0231712010-02-24 18:59:10 +01002423 /*
2424 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002425 * for cross vendor migration purposes by "not present"
2426 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002427 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002428
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002429 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002430 case VCPU_SREG_TR:
2431 /*
2432 * Work around a bug where the busy flag in the tr selector
2433 * isn't exposed
2434 */
Amit Shahc0d09822008-10-27 09:04:18 +00002435 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002436 break;
2437 case VCPU_SREG_DS:
2438 case VCPU_SREG_ES:
2439 case VCPU_SREG_FS:
2440 case VCPU_SREG_GS:
2441 /*
2442 * The accessed bit must always be set in the segment
2443 * descriptor cache, although it can be cleared in the
2444 * descriptor, the cached bit always remains at 1. Since
2445 * Intel has a check on this, set it here to support
2446 * cross-vendor migration.
2447 */
2448 if (!var->unusable)
2449 var->type |= 0x1;
2450 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002451 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002452 /*
2453 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002454 * descriptor is left as 1, although the whole segment has
2455 * been made unusable. Clear it here to pass an Intel VMX
2456 * entry check when cross vendor migrating.
2457 */
2458 if (var->unusable)
2459 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002460 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002461 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002462 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002463 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002464}
2465
Izik Eidus2e4d2652008-03-24 19:38:34 +02002466static int svm_get_cpl(struct kvm_vcpu *vcpu)
2467{
2468 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2469
2470 return save->cpl;
2471}
2472
Gleb Natapov89a27f42010-02-16 10:51:48 +02002473static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002475 struct vcpu_svm *svm = to_svm(vcpu);
2476
Gleb Natapov89a27f42010-02-16 10:51:48 +02002477 dt->size = svm->vmcb->save.idtr.limit;
2478 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479}
2480
Gleb Natapov89a27f42010-02-16 10:51:48 +02002481static void svm_set_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 svm->vmcb->save.idtr.limit = dt->size;
2486 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002487 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488}
2489
Gleb Natapov89a27f42010-02-16 10:51:48 +02002490static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002491{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002492 struct vcpu_svm *svm = to_svm(vcpu);
2493
Gleb Natapov89a27f42010-02-16 10:51:48 +02002494 dt->size = svm->vmcb->save.gdtr.limit;
2495 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496}
2497
Gleb Natapov89a27f42010-02-16 10:51:48 +02002498static void svm_set_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 svm->vmcb->save.gdtr.limit = dt->size;
2503 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002504 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505}
2506
Avi Kivitye8467fd2009-12-29 18:43:06 +02002507static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2508{
2509}
2510
Avi Kivityaff48ba2010-12-05 18:56:11 +02002511static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2512{
2513}
2514
Anthony Liguori25c4c272007-04-27 09:29:21 +03002515static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002516{
2517}
2518
Avi Kivityd2251572010-01-06 10:55:27 +02002519static void update_cr0_intercept(struct vcpu_svm *svm)
2520{
2521 ulong gcr0 = svm->vcpu.arch.cr0;
2522 u64 *hcr0 = &svm->vmcb->save.cr0;
2523
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002524 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2525 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002526
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002527 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002528
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002529 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002530 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2531 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002532 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002533 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2534 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002535 }
2536}
2537
Avi Kivity6aa8b732006-12-10 02:21:36 -08002538static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2539{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002540 struct vcpu_svm *svm = to_svm(vcpu);
2541
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002542#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002543 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002544 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002545 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002546 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547 }
2548
Mike Dayd77c26f2007-10-08 09:02:08 -04002549 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002550 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002551 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552 }
2553 }
2554#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002555 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002556
2557 if (!npt_enabled)
2558 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002559
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002560 /*
2561 * re-enable caching here because the QEMU bios
2562 * does not do it - this results in some delay at
2563 * reboot
2564 */
2565 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2566 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002567 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002568 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002569 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570}
2571
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002572static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002574 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002575 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2576
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002577 if (cr4 & X86_CR4_VMXE)
2578 return 1;
2579
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002580 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002581 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002582
Joerg Roedelec077262008-04-09 14:15:28 +02002583 vcpu->arch.cr4 = cr4;
2584 if (!npt_enabled)
2585 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002586 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002587 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002588 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002589 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590}
2591
2592static void svm_set_segment(struct kvm_vcpu *vcpu,
2593 struct kvm_segment *var, int seg)
2594{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002595 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002596 struct vmcb_seg *s = svm_seg(vcpu, seg);
2597
2598 s->base = var->base;
2599 s->limit = var->limit;
2600 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002601 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2602 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2603 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2604 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2605 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2606 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2607 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2608 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002609
2610 /*
2611 * This is always accurate, except if SYSRET returned to a segment
2612 * with SS.DPL != 3. Intel does not have this quirk, and always
2613 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2614 * would entail passing the CPL to userspace and back.
2615 */
2616 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002617 /* This is symmetric with svm_get_segment() */
2618 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619
Joerg Roedel060d0c92010-12-03 11:45:57 +01002620 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621}
2622
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002623static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002625 struct vcpu_svm *svm = to_svm(vcpu);
2626
Joerg Roedel18c918c2010-11-30 18:03:59 +01002627 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002628
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002629 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002630 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002631 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002632 } else
2633 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002634}
2635
Tejun Heo0fe1e002009-10-29 22:34:14 +09002636static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002638 if (sd->next_asid > sd->max_asid) {
2639 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002640 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002641 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642 }
2643
Tejun Heo0fe1e002009-10-29 22:34:14 +09002644 svm->asid_generation = sd->asid_generation;
2645 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002646
2647 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648}
2649
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002650static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2651{
2652 return to_svm(vcpu)->vmcb->save.dr6;
2653}
2654
2655static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2656{
2657 struct vcpu_svm *svm = to_svm(vcpu);
2658
2659 svm->vmcb->save.dr6 = value;
2660 mark_dirty(svm->vmcb, VMCB_DR);
2661}
2662
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002663static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2664{
2665 struct vcpu_svm *svm = to_svm(vcpu);
2666
2667 get_debugreg(vcpu->arch.db[0], 0);
2668 get_debugreg(vcpu->arch.db[1], 1);
2669 get_debugreg(vcpu->arch.db[2], 2);
2670 get_debugreg(vcpu->arch.db[3], 3);
2671 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2672 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2673
2674 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2675 set_dr_intercepts(svm);
2676}
2677
Gleb Natapov020df072010-04-13 10:05:23 +03002678static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002680 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002681
Gleb Natapov020df072010-04-13 10:05:23 +03002682 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002683 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684}
2685
Avi Kivity851ba692009-08-24 11:10:17 +03002686static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002687{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002688 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002689 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002691 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002692 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2693 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002694 svm->vmcb->control.insn_len);
2695}
2696
2697static int npf_interception(struct vcpu_svm *svm)
2698{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002699 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002700 u64 error_code = svm->vmcb->control.exit_info_1;
2701
2702 trace_kvm_page_fault(fault_address, error_code);
2703 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002704 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2705 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002706 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002707}
2708
Avi Kivity851ba692009-08-24 11:10:17 +03002709static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002710{
Avi Kivity851ba692009-08-24 11:10:17 +03002711 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002712 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002713
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002714 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002715 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002716 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002717 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2718 return 1;
2719 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002720
Jan Kiszka6be7d302009-10-18 13:24:54 +02002721 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002722 disable_nmi_singlestep(svm);
Vitaly Kuznetsov99c22172019-04-03 16:06:42 +02002723 /* Make sure we check for pending NMIs upon entry */
2724 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002725 }
2726
2727 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002728 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002729 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2730 kvm_run->debug.arch.pc =
2731 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2732 kvm_run->debug.arch.exception = DB_VECTOR;
2733 return 0;
2734 }
2735
2736 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002737}
2738
Avi Kivity851ba692009-08-24 11:10:17 +03002739static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002740{
Avi Kivity851ba692009-08-24 11:10:17 +03002741 struct kvm_run *kvm_run = svm->vcpu.run;
2742
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002743 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2744 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2745 kvm_run->debug.arch.exception = BP_VECTOR;
2746 return 0;
2747}
2748
Avi Kivity851ba692009-08-24 11:10:17 +03002749static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002750{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002751 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002752}
2753
Eric Northup54a20552015-11-03 18:03:53 +01002754static int ac_interception(struct vcpu_svm *svm)
2755{
2756 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2757 return 1;
2758}
2759
Liran Alon97184202018-03-12 13:12:52 +02002760static int gp_interception(struct vcpu_svm *svm)
2761{
2762 struct kvm_vcpu *vcpu = &svm->vcpu;
2763 u32 error_code = svm->vmcb->control.exit_info_1;
2764 int er;
2765
2766 WARN_ON_ONCE(!enable_vmware_backdoor);
2767
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002768 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002769 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2770 if (er == EMULATE_USER_EXIT)
2771 return 0;
2772 else if (er != EMULATE_DONE)
2773 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2774 return 1;
2775}
2776
Joerg Roedel67ec6602010-05-17 14:43:35 +02002777static bool is_erratum_383(void)
2778{
2779 int err, i;
2780 u64 value;
2781
2782 if (!erratum_383_found)
2783 return false;
2784
2785 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2786 if (err)
2787 return false;
2788
2789 /* Bit 62 may or may not be set for this mce */
2790 value &= ~(1ULL << 62);
2791
2792 if (value != 0xb600000000010015ULL)
2793 return false;
2794
2795 /* Clear MCi_STATUS registers */
2796 for (i = 0; i < 6; ++i)
2797 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2798
2799 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2800 if (!err) {
2801 u32 low, high;
2802
2803 value &= ~(1ULL << 2);
2804 low = lower_32_bits(value);
2805 high = upper_32_bits(value);
2806
2807 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2808 }
2809
2810 /* Flush tlb to evict multi-match entries */
2811 __flush_tlb_all();
2812
2813 return true;
2814}
2815
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002816static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002817{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002818 if (is_erratum_383()) {
2819 /*
2820 * Erratum 383 triggered. Guest state is corrupt so kill the
2821 * guest.
2822 */
2823 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2824
Avi Kivitya8eeb042010-05-10 12:34:53 +03002825 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002826
2827 return;
2828 }
2829
Joerg Roedel53371b52008-04-09 14:15:30 +02002830 /*
2831 * On an #MC intercept the MCE handler is not called automatically in
2832 * the host. So do it by hand here.
2833 */
2834 asm volatile (
2835 "int $0x12\n");
2836 /* not sure if we ever come back to this point */
2837
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002838 return;
2839}
2840
2841static int mc_interception(struct vcpu_svm *svm)
2842{
Joerg Roedel53371b52008-04-09 14:15:30 +02002843 return 1;
2844}
2845
Avi Kivity851ba692009-08-24 11:10:17 +03002846static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002847{
Avi Kivity851ba692009-08-24 11:10:17 +03002848 struct kvm_run *kvm_run = svm->vcpu.run;
2849
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002850 /*
2851 * VMCB is undefined after a SHUTDOWN intercept
2852 * so reinitialize it.
2853 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002854 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002855 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002856
2857 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2858 return 0;
2859}
2860
Avi Kivity851ba692009-08-24 11:10:17 +03002861static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002863 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002864 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002865 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002866 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002867
Rusty Russelle756fc62007-07-30 20:07:08 +10002868 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002869 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002870 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002871 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002872 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002873
Avi Kivity039576c2007-03-20 12:46:50 +02002874 port = io_info >> 16;
2875 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002876 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002877
Sean Christophersondca7f122018-03-08 08:57:27 -08002878 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879}
2880
Avi Kivity851ba692009-08-24 11:10:17 +03002881static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002882{
2883 return 1;
2884}
2885
Avi Kivity851ba692009-08-24 11:10:17 +03002886static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002887{
2888 ++svm->vcpu.stat.irq_exits;
2889 return 1;
2890}
2891
Avi Kivity851ba692009-08-24 11:10:17 +03002892static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002893{
2894 return 1;
2895}
2896
Avi Kivity851ba692009-08-24 11:10:17 +03002897static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002899 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002900 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901}
2902
Avi Kivity851ba692009-08-24 11:10:17 +03002903static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002904{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002905 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002906 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002907}
2908
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002909static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2910{
2911 struct vcpu_svm *svm = to_svm(vcpu);
2912
2913 return svm->nested.nested_cr3;
2914}
2915
Avi Kivitye4e517b2011-07-28 11:36:17 +03002916static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2917{
2918 struct vcpu_svm *svm = to_svm(vcpu);
2919 u64 cr3 = svm->nested.nested_cr3;
2920 u64 pdpte;
2921 int ret;
2922
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002923 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002924 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002925 if (ret)
2926 return 0;
2927 return pdpte;
2928}
2929
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002930static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2931 unsigned long root)
2932{
2933 struct vcpu_svm *svm = to_svm(vcpu);
2934
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002935 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002936 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002937}
2938
Avi Kivity6389ee92010-11-29 16:12:30 +02002939static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2940 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002941{
2942 struct vcpu_svm *svm = to_svm(vcpu);
2943
Paolo Bonzini5e352512014-09-02 13:18:37 +02002944 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2945 /*
2946 * TODO: track the cause of the nested page fault, and
2947 * correctly fill in the high bits of exit_info_1.
2948 */
2949 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2950 svm->vmcb->control.exit_code_hi = 0;
2951 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2952 svm->vmcb->control.exit_info_2 = fault->address;
2953 }
2954
2955 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2956 svm->vmcb->control.exit_info_1 |= fault->error_code;
2957
2958 /*
2959 * The present bit is always zero for page structure faults on real
2960 * hardware.
2961 */
2962 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2963 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002964
2965 nested_svm_vmexit(svm);
2966}
2967
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002968static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002969{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002970 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002971
2972 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02002973 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002974 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
2975 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
2976 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
2977 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
2978 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
2979 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002980 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002981}
2982
2983static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2984{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002985 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002986 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002987}
2988
Alexander Grafc0725422008-11-25 20:17:03 +01002989static int nested_svm_check_permissions(struct vcpu_svm *svm)
2990{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002991 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2992 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002993 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2994 return 1;
2995 }
2996
2997 if (svm->vmcb->save.cpl) {
2998 kvm_inject_gp(&svm->vcpu, 0);
2999 return 1;
3000 }
3001
Dan Carpentere9196ce2017-05-18 10:39:53 +03003002 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003003}
3004
Alexander Grafcf74a782008-11-25 20:17:08 +01003005static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3006 bool has_error_code, u32 error_code)
3007{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003008 int vmexit;
3009
Joerg Roedel20307532010-11-29 17:51:48 +01003010 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003011 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003012
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003013 vmexit = nested_svm_intercept(svm);
3014 if (vmexit != NESTED_EXIT_DONE)
3015 return 0;
3016
Joerg Roedel0295ad72009-08-07 11:49:37 +02003017 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3018 svm->vmcb->control.exit_code_hi = 0;
3019 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003020
3021 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003022 * EXITINFO2 is undefined for all exception intercepts other
3023 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003024 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003025 if (svm->vcpu.arch.exception.nested_apf)
3026 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003027 else if (svm->vcpu.arch.exception.has_payload)
3028 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003029 else
3030 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003031
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003032 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003033 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003034}
3035
Joerg Roedel8fe54652010-02-19 16:23:01 +01003036/* This function returns true if it is save to enable the irq window */
3037static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003038{
Joerg Roedel20307532010-11-29 17:51:48 +01003039 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003040 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003041
Joerg Roedel26666952009-08-07 11:49:46 +02003042 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003043 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003044
Joerg Roedel26666952009-08-07 11:49:46 +02003045 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003046 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003047
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003048 /*
3049 * if vmexit was already requested (by intercepted exception
3050 * for instance) do not overwrite it with "external interrupt"
3051 * vmexit.
3052 */
3053 if (svm->nested.exit_required)
3054 return false;
3055
Joerg Roedel197717d2010-02-24 18:59:19 +01003056 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3057 svm->vmcb->control.exit_info_1 = 0;
3058 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003059
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003060 if (svm->nested.intercept & 1ULL) {
3061 /*
3062 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003063 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003064 * #vmexit emulation might sleep. Only signal request for
3065 * the #vmexit here.
3066 */
3067 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003068 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003069 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003070 }
3071
Joerg Roedel8fe54652010-02-19 16:23:01 +01003072 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003073}
3074
Joerg Roedel887f5002010-02-24 18:59:12 +01003075/* This function returns true if it is save to enable the nmi window */
3076static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3077{
Joerg Roedel20307532010-11-29 17:51:48 +01003078 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003079 return true;
3080
3081 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3082 return true;
3083
3084 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3085 svm->nested.exit_required = true;
3086
3087 return false;
3088}
3089
Joerg Roedelce2ac082010-03-01 15:34:39 +01003090static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003091{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003092 unsigned port, size, iopm_len;
3093 u16 val, mask;
3094 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003095 u64 gpa;
3096
3097 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3098 return NESTED_EXIT_HOST;
3099
3100 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003101 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3102 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003103 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003104 start_bit = port % 8;
3105 iopm_len = (start_bit + size > 8) ? 2 : 1;
3106 mask = (0xf >> (4 - size)) << start_bit;
3107 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003108
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003109 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003110 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003111
Jan Kiszka9bf41832014-06-30 10:54:17 +02003112 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003113}
3114
Joerg Roedeld2477822010-03-01 15:34:34 +01003115static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003116{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003117 u32 offset, msr, value;
3118 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003119
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003120 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003121 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003122
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003123 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3124 offset = svm_msrpm_offset(msr);
3125 write = svm->vmcb->control.exit_info_1 & 1;
3126 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003127
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003128 if (offset == MSR_INVALID)
3129 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003130
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003131 /* Offset is in 32 bit units but need in 8 bit units */
3132 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003133
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003134 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003135 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003136
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003137 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003138}
3139
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003140/* DB exceptions for our internal use must not cause vmexit */
3141static int nested_svm_intercept_db(struct vcpu_svm *svm)
3142{
3143 unsigned long dr6;
3144
3145 /* if we're not singlestepping, it's not ours */
3146 if (!svm->nmi_singlestep)
3147 return NESTED_EXIT_DONE;
3148
3149 /* if it's not a singlestep exception, it's not ours */
3150 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3151 return NESTED_EXIT_DONE;
3152 if (!(dr6 & DR6_BS))
3153 return NESTED_EXIT_DONE;
3154
3155 /* if the guest is singlestepping, it should get the vmexit */
3156 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3157 disable_nmi_singlestep(svm);
3158 return NESTED_EXIT_DONE;
3159 }
3160
3161 /* it's ours, the nested hypervisor must not see this one */
3162 return NESTED_EXIT_HOST;
3163}
3164
Joerg Roedel410e4d52009-08-07 11:49:44 +02003165static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003166{
Alexander Grafcf74a782008-11-25 20:17:08 +01003167 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003168
Joerg Roedel410e4d52009-08-07 11:49:44 +02003169 switch (exit_code) {
3170 case SVM_EXIT_INTR:
3171 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003172 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003173 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003174 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003175 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003176 if (npt_enabled)
3177 return NESTED_EXIT_HOST;
3178 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003179 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003180 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003181 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003182 return NESTED_EXIT_HOST;
3183 break;
3184 default:
3185 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003186 }
3187
Joerg Roedel410e4d52009-08-07 11:49:44 +02003188 return NESTED_EXIT_CONTINUE;
3189}
3190
3191/*
3192 * If this function returns true, this #vmexit was already handled
3193 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003194static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003195{
3196 u32 exit_code = svm->vmcb->control.exit_code;
3197 int vmexit = NESTED_EXIT_HOST;
3198
Alexander Grafcf74a782008-11-25 20:17:08 +01003199 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003200 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003201 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003202 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003203 case SVM_EXIT_IOIO:
3204 vmexit = nested_svm_intercept_ioio(svm);
3205 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003206 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3207 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3208 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003209 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003210 break;
3211 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003212 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3213 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3214 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003215 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003216 break;
3217 }
3218 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3219 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003220 if (svm->nested.intercept_exceptions & excp_bits) {
3221 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3222 vmexit = nested_svm_intercept_db(svm);
3223 else
3224 vmexit = NESTED_EXIT_DONE;
3225 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003226 /* async page fault always cause vmexit */
3227 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003228 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003229 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003230 break;
3231 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003232 case SVM_EXIT_ERR: {
3233 vmexit = NESTED_EXIT_DONE;
3234 break;
3235 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003236 default: {
3237 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003238 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003239 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003240 }
3241 }
3242
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003243 return vmexit;
3244}
3245
3246static int nested_svm_exit_handled(struct vcpu_svm *svm)
3247{
3248 int vmexit;
3249
3250 vmexit = nested_svm_intercept(svm);
3251
3252 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003253 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003254
3255 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003256}
3257
Joerg Roedel0460a972009-08-07 11:49:31 +02003258static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3259{
3260 struct vmcb_control_area *dst = &dst_vmcb->control;
3261 struct vmcb_control_area *from = &from_vmcb->control;
3262
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003263 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003264 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003265 dst->intercept_exceptions = from->intercept_exceptions;
3266 dst->intercept = from->intercept;
3267 dst->iopm_base_pa = from->iopm_base_pa;
3268 dst->msrpm_base_pa = from->msrpm_base_pa;
3269 dst->tsc_offset = from->tsc_offset;
3270 dst->asid = from->asid;
3271 dst->tlb_ctl = from->tlb_ctl;
3272 dst->int_ctl = from->int_ctl;
3273 dst->int_vector = from->int_vector;
3274 dst->int_state = from->int_state;
3275 dst->exit_code = from->exit_code;
3276 dst->exit_code_hi = from->exit_code_hi;
3277 dst->exit_info_1 = from->exit_info_1;
3278 dst->exit_info_2 = from->exit_info_2;
3279 dst->exit_int_info = from->exit_int_info;
3280 dst->exit_int_info_err = from->exit_int_info_err;
3281 dst->nested_ctl = from->nested_ctl;
3282 dst->event_inj = from->event_inj;
3283 dst->event_inj_err = from->event_inj_err;
3284 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003285 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003286 dst->pause_filter_count = from->pause_filter_count;
3287 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003288}
3289
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003290static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003291{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003292 int rc;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003293 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003294 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003295 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003296 struct kvm_host_map map;
Alexander Grafcf74a782008-11-25 20:17:08 +01003297
Joerg Roedel17897f32009-10-09 16:08:29 +02003298 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3299 vmcb->control.exit_info_1,
3300 vmcb->control.exit_info_2,
3301 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003302 vmcb->control.exit_int_info_err,
3303 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003304
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003305 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->nested.vmcb), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003306 if (rc) {
3307 if (rc == -EINVAL)
3308 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003309 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003310 }
3311
3312 nested_vmcb = map.hva;
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003313
Joerg Roedel20307532010-11-29 17:51:48 +01003314 /* Exit Guest-Mode */
3315 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003316 svm->nested.vmcb = 0;
3317
Alexander Grafcf74a782008-11-25 20:17:08 +01003318 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003319 disable_gif(svm);
3320
3321 nested_vmcb->save.es = vmcb->save.es;
3322 nested_vmcb->save.cs = vmcb->save.cs;
3323 nested_vmcb->save.ss = vmcb->save.ss;
3324 nested_vmcb->save.ds = vmcb->save.ds;
3325 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3326 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003327 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003328 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003329 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003330 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003331 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003332 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003333 nested_vmcb->save.rip = vmcb->save.rip;
3334 nested_vmcb->save.rsp = vmcb->save.rsp;
3335 nested_vmcb->save.rax = vmcb->save.rax;
3336 nested_vmcb->save.dr7 = vmcb->save.dr7;
3337 nested_vmcb->save.dr6 = vmcb->save.dr6;
3338 nested_vmcb->save.cpl = vmcb->save.cpl;
3339
3340 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3341 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3342 nested_vmcb->control.int_state = vmcb->control.int_state;
3343 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3344 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3345 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3346 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3347 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3348 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003349
3350 if (svm->nrips_enabled)
3351 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003352
3353 /*
3354 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3355 * to make sure that we do not lose injected events. So check event_inj
3356 * here and copy it to exit_int_info if it is valid.
3357 * Exit_int_info and event_inj can't be both valid because the case
3358 * below only happens on a VMRUN instruction intercept which has
3359 * no valid exit_int_info set.
3360 */
3361 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3362 struct vmcb_control_area *nc = &nested_vmcb->control;
3363
3364 nc->exit_int_info = vmcb->control.event_inj;
3365 nc->exit_int_info_err = vmcb->control.event_inj_err;
3366 }
3367
Joerg Roedel33740e42009-08-07 11:49:29 +02003368 nested_vmcb->control.tlb_ctl = 0;
3369 nested_vmcb->control.event_inj = 0;
3370 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003371
Tambe, Williame0813542018-11-13 16:51:20 +00003372 nested_vmcb->control.pause_filter_count =
3373 svm->vmcb->control.pause_filter_count;
3374 nested_vmcb->control.pause_filter_thresh =
3375 svm->vmcb->control.pause_filter_thresh;
3376
Alexander Grafcf74a782008-11-25 20:17:08 +01003377 /* We always set V_INTR_MASKING and remember the old value in hflags */
3378 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3379 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3380
Alexander Grafcf74a782008-11-25 20:17:08 +01003381 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003382 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003383
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003384 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003385 kvm_clear_exception_queue(&svm->vcpu);
3386 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003387
Joerg Roedel4b161842010-09-10 17:31:03 +02003388 svm->nested.nested_cr3 = 0;
3389
Alexander Grafcf74a782008-11-25 20:17:08 +01003390 /* Restore selected save entries */
3391 svm->vmcb->save.es = hsave->save.es;
3392 svm->vmcb->save.cs = hsave->save.cs;
3393 svm->vmcb->save.ss = hsave->save.ss;
3394 svm->vmcb->save.ds = hsave->save.ds;
3395 svm->vmcb->save.gdtr = hsave->save.gdtr;
3396 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003397 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003398 svm_set_efer(&svm->vcpu, hsave->save.efer);
3399 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3400 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3401 if (npt_enabled) {
3402 svm->vmcb->save.cr3 = hsave->save.cr3;
3403 svm->vcpu.arch.cr3 = hsave->save.cr3;
3404 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003405 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003406 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07003407 kvm_rax_write(&svm->vcpu, hsave->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003408 kvm_rsp_write(&svm->vcpu, hsave->save.rsp);
3409 kvm_rip_write(&svm->vcpu, hsave->save.rip);
Alexander Grafcf74a782008-11-25 20:17:08 +01003410 svm->vmcb->save.dr7 = 0;
3411 svm->vmcb->save.cpl = 0;
3412 svm->vmcb->control.exit_int_info = 0;
3413
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003414 mark_all_dirty(svm->vmcb);
3415
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003416 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Grafcf74a782008-11-25 20:17:08 +01003417
Joerg Roedel4b161842010-09-10 17:31:03 +02003418 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003419 kvm_mmu_reset_context(&svm->vcpu);
3420 kvm_mmu_load(&svm->vcpu);
3421
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003422 /*
3423 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3424 * doesn't end up in L1.
3425 */
3426 svm->vcpu.arch.nmi_injected = false;
3427 kvm_clear_exception_queue(&svm->vcpu);
3428 kvm_clear_interrupt_queue(&svm->vcpu);
3429
Alexander Grafcf74a782008-11-25 20:17:08 +01003430 return 0;
3431}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003432
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003433static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003434{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003435 /*
3436 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003437 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003438 * the kvm msr permission bitmap may contain zero bits
3439 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003440 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003441
Joerg Roedel323c3d82010-03-01 15:34:37 +01003442 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3443 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003444
Joerg Roedel323c3d82010-03-01 15:34:37 +01003445 for (i = 0; i < MSRPM_OFFSETS; i++) {
3446 u32 value, p;
3447 u64 offset;
3448
3449 if (msrpm_offsets[i] == 0xffffffff)
3450 break;
3451
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003452 p = msrpm_offsets[i];
3453 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003454
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003455 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003456 return false;
3457
3458 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3459 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003460
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003461 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003462
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003463 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003464}
3465
Joerg Roedel52c65a302010-08-02 16:46:44 +02003466static bool nested_vmcb_checks(struct vmcb *vmcb)
3467{
3468 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3469 return false;
3470
Joerg Roedeldbe77582010-08-02 16:46:45 +02003471 if (vmcb->control.asid == 0)
3472 return false;
3473
Tom Lendackycea3a192017-12-04 10:57:24 -06003474 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3475 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003476 return false;
3477
Joerg Roedel52c65a302010-08-02 16:46:44 +02003478 return true;
3479}
3480
Ladi Prosekc2634062017-10-11 16:54:44 +02003481static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003482 struct vmcb *nested_vmcb, struct kvm_host_map *map)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003483{
Avi Kivityf6e78472010-08-02 15:30:20 +03003484 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003485 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3486 else
3487 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3488
Tom Lendackycea3a192017-12-04 10:57:24 -06003489 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003490 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3491 nested_svm_init_mmu_context(&svm->vcpu);
3492 }
3493
Alexander Graf3d6368e2008-11-25 20:17:07 +01003494 /* Load the nested guest state */
3495 svm->vmcb->save.es = nested_vmcb->save.es;
3496 svm->vmcb->save.cs = nested_vmcb->save.cs;
3497 svm->vmcb->save.ss = nested_vmcb->save.ss;
3498 svm->vmcb->save.ds = nested_vmcb->save.ds;
3499 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3500 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003501 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003502 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3503 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3504 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3505 if (npt_enabled) {
3506 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3507 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003508 } else
Avi Kivity23902182010-06-10 17:02:16 +03003509 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003510
3511 /* Guest paging mode is active - reset mmu */
3512 kvm_mmu_reset_context(&svm->vcpu);
3513
Joerg Roedeldefbba52009-08-07 11:49:30 +02003514 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Sean Christophersonde3cd112019-04-30 10:36:17 -07003515 kvm_rax_write(&svm->vcpu, nested_vmcb->save.rax);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02003516 kvm_rsp_write(&svm->vcpu, nested_vmcb->save.rsp);
3517 kvm_rip_write(&svm->vcpu, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003518
Alexander Graf3d6368e2008-11-25 20:17:07 +01003519 /* In case we don't even reach vcpu_run, the fields are not updated */
3520 svm->vmcb->save.rax = nested_vmcb->save.rax;
3521 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3522 svm->vmcb->save.rip = nested_vmcb->save.rip;
3523 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3524 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3525 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3526
Joerg Roedelf7138532010-03-01 15:34:40 +01003527 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003528 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003529
Joerg Roedelaad42c62009-08-07 11:49:34 +02003530 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003531 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003532 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003533 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3534 svm->nested.intercept = nested_vmcb->control.intercept;
3535
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003536 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003537 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003538 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3539 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3540 else
3541 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3542
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003543 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3544 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003545 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3546 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003547 }
3548
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003549 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003550 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003551
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003552 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3553 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3554
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003555 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003556 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3557 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003558 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3559 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3560
Tambe, Williame0813542018-11-13 16:51:20 +00003561 svm->vmcb->control.pause_filter_count =
3562 nested_vmcb->control.pause_filter_count;
3563 svm->vmcb->control.pause_filter_thresh =
3564 nested_vmcb->control.pause_filter_thresh;
3565
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003566 kvm_vcpu_unmap(&svm->vcpu, map, true);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003567
Joerg Roedel20307532010-11-29 17:51:48 +01003568 /* Enter Guest-Mode */
3569 enter_guest_mode(&svm->vcpu);
3570
Joerg Roedel384c6362010-11-30 18:03:56 +01003571 /*
3572 * Merge guest and host intercepts - must be called with vcpu in
3573 * guest-mode to take affect here
3574 */
3575 recalc_intercepts(svm);
3576
Joerg Roedel06fc77722010-02-19 16:23:07 +01003577 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003578
Joerg Roedel2af91942009-08-07 11:49:28 +02003579 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003580
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003581 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003582}
3583
3584static bool nested_svm_vmrun(struct vcpu_svm *svm)
3585{
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003586 int rc;
Ladi Prosekc2634062017-10-11 16:54:44 +02003587 struct vmcb *nested_vmcb;
3588 struct vmcb *hsave = svm->nested.hsave;
3589 struct vmcb *vmcb = svm->vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003590 struct kvm_host_map map;
Ladi Prosekc2634062017-10-11 16:54:44 +02003591 u64 vmcb_gpa;
3592
3593 vmcb_gpa = svm->vmcb->save.rax;
3594
Vitaly Kuznetsov8f383022019-06-04 18:09:39 +02003595 rc = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb_gpa), &map);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003596 if (rc) {
3597 if (rc == -EINVAL)
3598 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekc2634062017-10-11 16:54:44 +02003599 return false;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003600 }
3601
3602 nested_vmcb = map.hva;
Ladi Prosekc2634062017-10-11 16:54:44 +02003603
3604 if (!nested_vmcb_checks(nested_vmcb)) {
3605 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3606 nested_vmcb->control.exit_code_hi = 0;
3607 nested_vmcb->control.exit_info_1 = 0;
3608 nested_vmcb->control.exit_info_2 = 0;
3609
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003610 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Ladi Prosekc2634062017-10-11 16:54:44 +02003611
3612 return false;
3613 }
3614
3615 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3616 nested_vmcb->save.rip,
3617 nested_vmcb->control.int_ctl,
3618 nested_vmcb->control.event_inj,
3619 nested_vmcb->control.nested_ctl);
3620
3621 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3622 nested_vmcb->control.intercept_cr >> 16,
3623 nested_vmcb->control.intercept_exceptions,
3624 nested_vmcb->control.intercept);
3625
3626 /* Clear internal status */
3627 kvm_clear_exception_queue(&svm->vcpu);
3628 kvm_clear_interrupt_queue(&svm->vcpu);
3629
3630 /*
3631 * Save the old vmcb, so we don't need to pick what we save, but can
3632 * restore everything when a VMEXIT occurs
3633 */
3634 hsave->save.es = vmcb->save.es;
3635 hsave->save.cs = vmcb->save.cs;
3636 hsave->save.ss = vmcb->save.ss;
3637 hsave->save.ds = vmcb->save.ds;
3638 hsave->save.gdtr = vmcb->save.gdtr;
3639 hsave->save.idtr = vmcb->save.idtr;
3640 hsave->save.efer = svm->vcpu.arch.efer;
3641 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3642 hsave->save.cr4 = svm->vcpu.arch.cr4;
3643 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3644 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3645 hsave->save.rsp = vmcb->save.rsp;
3646 hsave->save.rax = vmcb->save.rax;
3647 if (npt_enabled)
3648 hsave->save.cr3 = vmcb->save.cr3;
3649 else
3650 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3651
3652 copy_vmcb_control_area(hsave, vmcb);
3653
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003654 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, &map);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003655
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003656 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003657}
3658
Joerg Roedel9966bf62009-08-07 11:49:40 +02003659static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003660{
3661 to_vmcb->save.fs = from_vmcb->save.fs;
3662 to_vmcb->save.gs = from_vmcb->save.gs;
3663 to_vmcb->save.tr = from_vmcb->save.tr;
3664 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3665 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3666 to_vmcb->save.star = from_vmcb->save.star;
3667 to_vmcb->save.lstar = from_vmcb->save.lstar;
3668 to_vmcb->save.cstar = from_vmcb->save.cstar;
3669 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3670 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3671 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3672 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003673}
3674
Avi Kivity851ba692009-08-24 11:10:17 +03003675static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003676{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003677 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003678 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003679 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003680
Alexander Graf55426752008-11-25 20:17:06 +01003681 if (nested_svm_check_permissions(svm))
3682 return 1;
3683
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003684 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3685 if (ret) {
3686 if (ret == -EINVAL)
3687 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003688 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003689 }
3690
3691 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003692
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003693 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003694 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003695
Joerg Roedel9966bf62009-08-07 11:49:40 +02003696 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003697 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003698
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003699 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003700}
3701
Avi Kivity851ba692009-08-24 11:10:17 +03003702static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003703{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003704 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003705 struct kvm_host_map map;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003706 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003707
Alexander Graf55426752008-11-25 20:17:06 +01003708 if (nested_svm_check_permissions(svm))
3709 return 1;
3710
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003711 ret = kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(svm->vmcb->save.rax), &map);
3712 if (ret) {
3713 if (ret == -EINVAL)
3714 kvm_inject_gp(&svm->vcpu, 0);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003715 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003716 }
3717
3718 nested_vmcb = map.hva;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003719
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003720 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003721 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003722
Joerg Roedel9966bf62009-08-07 11:49:40 +02003723 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01003724 kvm_vcpu_unmap(&svm->vcpu, &map, true);
Alexander Graf55426752008-11-25 20:17:06 +01003725
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003726 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003727}
3728
Avi Kivity851ba692009-08-24 11:10:17 +03003729static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003730{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003731 if (nested_svm_check_permissions(svm))
3732 return 1;
3733
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003734 /* Save rip after vmrun instruction */
3735 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003736
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003737 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003738 return 1;
3739
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003740 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003741 goto failed;
3742
3743 return 1;
3744
3745failed:
3746
3747 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3748 svm->vmcb->control.exit_code_hi = 0;
3749 svm->vmcb->control.exit_info_1 = 0;
3750 svm->vmcb->control.exit_info_2 = 0;
3751
3752 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003753
3754 return 1;
3755}
3756
Avi Kivity851ba692009-08-24 11:10:17 +03003757static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003758{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003759 int ret;
3760
Alexander Graf1371d902008-11-25 20:17:04 +01003761 if (nested_svm_check_permissions(svm))
3762 return 1;
3763
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003764 /*
3765 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003766 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003767 */
3768 if (vgif_enabled(svm))
3769 clr_intercept(svm, INTERCEPT_STGI);
3770
Alexander Graf1371d902008-11-25 20:17:04 +01003771 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003772 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003773 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003774
Joerg Roedel2af91942009-08-07 11:49:28 +02003775 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003776
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003777 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003778}
3779
Avi Kivity851ba692009-08-24 11:10:17 +03003780static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003781{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003782 int ret;
3783
Alexander Graf1371d902008-11-25 20:17:04 +01003784 if (nested_svm_check_permissions(svm))
3785 return 1;
3786
3787 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003788 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003789
Joerg Roedel2af91942009-08-07 11:49:28 +02003790 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003791
3792 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003793 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3794 svm_clear_vintr(svm);
3795 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3796 mark_dirty(svm->vmcb, VMCB_INTR);
3797 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003798
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003799 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003800}
3801
Avi Kivity851ba692009-08-24 11:10:17 +03003802static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003803{
3804 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003805
Sean Christophersonde3cd112019-04-30 10:36:17 -07003806 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_rcx_read(&svm->vcpu),
3807 kvm_rax_read(&svm->vcpu));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003808
Alexander Grafff092382009-06-15 15:21:24 +02003809 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
Sean Christophersonde3cd112019-04-30 10:36:17 -07003810 kvm_mmu_invlpg(vcpu, kvm_rax_read(&svm->vcpu));
Alexander Grafff092382009-06-15 15:21:24 +02003811
3812 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003813 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003814}
3815
Joerg Roedel532a46b2009-10-09 16:08:32 +02003816static int skinit_interception(struct vcpu_svm *svm)
3817{
Sean Christophersonde3cd112019-04-30 10:36:17 -07003818 trace_kvm_skinit(svm->vmcb->save.rip, kvm_rax_read(&svm->vcpu));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003819
3820 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3821 return 1;
3822}
3823
David Kaplandab429a2015-03-02 13:43:37 -06003824static int wbinvd_interception(struct vcpu_svm *svm)
3825{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003826 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003827}
3828
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003829static int xsetbv_interception(struct vcpu_svm *svm)
3830{
3831 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07003832 u32 index = kvm_rcx_read(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003833
3834 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3835 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003836 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003837 }
3838
3839 return 1;
3840}
3841
Avi Kivity851ba692009-08-24 11:10:17 +03003842static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003843{
Izik Eidus37817f22008-03-24 23:14:53 +02003844 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003845 int reason;
3846 int int_type = svm->vmcb->control.exit_int_info &
3847 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003848 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003849 uint32_t type =
3850 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3851 uint32_t idt_v =
3852 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003853 bool has_error_code = false;
3854 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003855
3856 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003857
Izik Eidus37817f22008-03-24 23:14:53 +02003858 if (svm->vmcb->control.exit_info_2 &
3859 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003860 reason = TASK_SWITCH_IRET;
3861 else if (svm->vmcb->control.exit_info_2 &
3862 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3863 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003864 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003865 reason = TASK_SWITCH_GATE;
3866 else
3867 reason = TASK_SWITCH_CALL;
3868
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003869 if (reason == TASK_SWITCH_GATE) {
3870 switch (type) {
3871 case SVM_EXITINTINFO_TYPE_NMI:
3872 svm->vcpu.arch.nmi_injected = false;
3873 break;
3874 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003875 if (svm->vmcb->control.exit_info_2 &
3876 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3877 has_error_code = true;
3878 error_code =
3879 (u32)svm->vmcb->control.exit_info_2;
3880 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003881 kvm_clear_exception_queue(&svm->vcpu);
3882 break;
3883 case SVM_EXITINTINFO_TYPE_INTR:
3884 kvm_clear_interrupt_queue(&svm->vcpu);
3885 break;
3886 default:
3887 break;
3888 }
3889 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003890
Gleb Natapov8317c292009-04-12 13:37:02 +03003891 if (reason != TASK_SWITCH_GATE ||
3892 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3893 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003894 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3895 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003896
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003897 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3898 int_vec = -1;
3899
3900 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003901 has_error_code, error_code) == EMULATE_FAIL) {
3902 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3903 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3904 svm->vcpu.run->internal.ndata = 0;
3905 return 0;
3906 }
3907 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003908}
3909
Avi Kivity851ba692009-08-24 11:10:17 +03003910static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003911{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003912 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003913 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914}
3915
Avi Kivity851ba692009-08-24 11:10:17 +03003916static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003917{
3918 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003919 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003920 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003921 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003922 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003923 return 1;
3924}
3925
Avi Kivity851ba692009-08-24 11:10:17 +03003926static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003927{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003928 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003929 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003930
3931 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003932 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003933}
3934
Avi Kivity851ba692009-08-24 11:10:17 +03003935static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003936{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003937 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938}
3939
Brijesh Singh7607b712018-02-19 10:14:44 -06003940static int rsm_interception(struct vcpu_svm *svm)
3941{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003942 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3943 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003944}
3945
Avi Kivity332b56e2011-11-10 14:57:24 +02003946static int rdpmc_interception(struct vcpu_svm *svm)
3947{
3948 int err;
3949
Paolo Bonzinid647eb62019-06-20 14:13:33 +02003950 if (!nrips)
Avi Kivity332b56e2011-11-10 14:57:24 +02003951 return emulate_on_interception(svm);
3952
3953 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003954 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003955}
3956
Xiubo Li52eb5a62015-03-13 17:39:45 +08003957static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3958 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003959{
3960 unsigned long cr0 = svm->vcpu.arch.cr0;
3961 bool ret = false;
3962 u64 intercept;
3963
3964 intercept = svm->nested.intercept;
3965
3966 if (!is_guest_mode(&svm->vcpu) ||
3967 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3968 return false;
3969
3970 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3971 val &= ~SVM_CR0_SELECTIVE_MASK;
3972
3973 if (cr0 ^ val) {
3974 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3975 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3976 }
3977
3978 return ret;
3979}
3980
Andre Przywara7ff76d52010-12-21 11:12:04 +01003981#define CR_VALID (1ULL << 63)
3982
3983static int cr_interception(struct vcpu_svm *svm)
3984{
3985 int reg, cr;
3986 unsigned long val;
3987 int err;
3988
3989 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3990 return emulate_on_interception(svm);
3991
3992 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3993 return emulate_on_interception(svm);
3994
3995 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003996 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3997 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3998 else
3999 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004000
4001 err = 0;
4002 if (cr >= 16) { /* mov to cr */
4003 cr -= 16;
4004 val = kvm_register_read(&svm->vcpu, reg);
4005 switch (cr) {
4006 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004007 if (!check_selective_cr0_intercepted(svm, val))
4008 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004009 else
4010 return 1;
4011
Andre Przywara7ff76d52010-12-21 11:12:04 +01004012 break;
4013 case 3:
4014 err = kvm_set_cr3(&svm->vcpu, val);
4015 break;
4016 case 4:
4017 err = kvm_set_cr4(&svm->vcpu, val);
4018 break;
4019 case 8:
4020 err = kvm_set_cr8(&svm->vcpu, val);
4021 break;
4022 default:
4023 WARN(1, "unhandled write to CR%d", cr);
4024 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4025 return 1;
4026 }
4027 } else { /* mov from cr */
4028 switch (cr) {
4029 case 0:
4030 val = kvm_read_cr0(&svm->vcpu);
4031 break;
4032 case 2:
4033 val = svm->vcpu.arch.cr2;
4034 break;
4035 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004036 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004037 break;
4038 case 4:
4039 val = kvm_read_cr4(&svm->vcpu);
4040 break;
4041 case 8:
4042 val = kvm_get_cr8(&svm->vcpu);
4043 break;
4044 default:
4045 WARN(1, "unhandled read from CR%d", cr);
4046 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4047 return 1;
4048 }
4049 kvm_register_write(&svm->vcpu, reg, val);
4050 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004051 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004052}
4053
Andre Przywaracae37972010-12-21 11:12:05 +01004054static int dr_interception(struct vcpu_svm *svm)
4055{
4056 int reg, dr;
4057 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004058
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004059 if (svm->vcpu.guest_debug == 0) {
4060 /*
4061 * No more DR vmexits; force a reload of the debug registers
4062 * and reenter on this instruction. The next vmexit will
4063 * retrieve the full state of the debug registers.
4064 */
4065 clr_dr_intercepts(svm);
4066 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4067 return 1;
4068 }
4069
Andre Przywaracae37972010-12-21 11:12:05 +01004070 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4071 return emulate_on_interception(svm);
4072
4073 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4074 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4075
4076 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004077 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4078 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004079 val = kvm_register_read(&svm->vcpu, reg);
4080 kvm_set_dr(&svm->vcpu, dr - 16, val);
4081 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004082 if (!kvm_require_dr(&svm->vcpu, dr))
4083 return 1;
4084 kvm_get_dr(&svm->vcpu, dr, &val);
4085 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004086 }
4087
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004088 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004089}
4090
Avi Kivity851ba692009-08-24 11:10:17 +03004091static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004092{
Avi Kivity851ba692009-08-24 11:10:17 +03004093 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004094 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004095
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004096 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4097 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004098 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004099 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004100 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004101 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004102 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004103 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4104 return 0;
4105}
4106
Tom Lendacky801e4592018-02-21 13:39:51 -06004107static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4108{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004109 msr->data = 0;
4110
4111 switch (msr->index) {
4112 case MSR_F10H_DECFG:
4113 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4114 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4115 break;
4116 default:
4117 return 1;
4118 }
4119
4120 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004121}
4122
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004123static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004124{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004125 struct vcpu_svm *svm = to_svm(vcpu);
4126
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004127 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004128 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004129 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004130 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004131#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004133 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004134 break;
4135 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004136 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004137 break;
4138 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004139 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004140 break;
4141 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004142 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004143 break;
4144#endif
4145 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004146 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004147 break;
4148 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004149 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004150 break;
4151 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004152 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004153 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004154 case MSR_TSC_AUX:
4155 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4156 return 1;
4157 msr_info->data = svm->tsc_aux;
4158 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004159 /*
4160 * Nobody will change the following 5 values in the VMCB so we can
4161 * safely return them on rdmsr. They will always be 0 until LBRV is
4162 * implemented.
4163 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004164 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004165 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004166 break;
4167 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004168 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004169 break;
4170 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004171 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004172 break;
4173 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004174 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004175 break;
4176 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004177 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004178 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004179 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004180 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004181 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004182 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004183 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004184 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004185 case MSR_IA32_SPEC_CTRL:
4186 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004187 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4188 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004189 return 1;
4190
4191 msr_info->data = svm->spec_ctrl;
4192 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004193 case MSR_AMD64_VIRT_SPEC_CTRL:
4194 if (!msr_info->host_initiated &&
4195 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4196 return 1;
4197
4198 msr_info->data = svm->virt_spec_ctrl;
4199 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004200 case MSR_F15H_IC_CFG: {
4201
4202 int family, model;
4203
4204 family = guest_cpuid_family(vcpu);
4205 model = guest_cpuid_model(vcpu);
4206
4207 if (family < 0 || model < 0)
4208 return kvm_get_msr_common(vcpu, msr_info);
4209
4210 msr_info->data = 0;
4211
4212 if (family == 0x15 &&
4213 (model >= 0x2 && model < 0x20))
4214 msr_info->data = 0x1E;
4215 }
4216 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004217 case MSR_F10H_DECFG:
4218 msr_info->data = svm->msr_decfg;
4219 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004220 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004221 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004222 }
4223 return 0;
4224}
4225
Avi Kivity851ba692009-08-24 11:10:17 +03004226static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004227{
Sean Christophersonde3cd112019-04-30 10:36:17 -07004228 u32 ecx = kvm_rcx_read(&svm->vcpu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004229 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004230
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004231 msr_info.index = ecx;
4232 msr_info.host_initiated = false;
4233 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004234 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004235 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004236 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004237 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004238 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004239
Sean Christophersonde3cd112019-04-30 10:36:17 -07004240 kvm_rax_write(&svm->vcpu, msr_info.data & 0xffffffff);
4241 kvm_rdx_write(&svm->vcpu, msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004242 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004243 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004245}
4246
Joerg Roedel4a810182010-02-24 18:59:15 +01004247static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4248{
4249 struct vcpu_svm *svm = to_svm(vcpu);
4250 int svm_dis, chg_mask;
4251
4252 if (data & ~SVM_VM_CR_VALID_MASK)
4253 return 1;
4254
4255 chg_mask = SVM_VM_CR_VALID_MASK;
4256
4257 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4258 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4259
4260 svm->nested.vm_cr_msr &= ~chg_mask;
4261 svm->nested.vm_cr_msr |= (data & chg_mask);
4262
4263 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4264
4265 /* check for svm_disable while efer.svme is set */
4266 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4267 return 1;
4268
4269 return 0;
4270}
4271
Will Auld8fe8ab42012-11-29 12:42:12 -08004272static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004273{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004274 struct vcpu_svm *svm = to_svm(vcpu);
4275
Will Auld8fe8ab42012-11-29 12:42:12 -08004276 u32 ecx = msr->index;
4277 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004279 case MSR_IA32_CR_PAT:
4280 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4281 return 1;
4282 vcpu->arch.pat = data;
4283 svm->vmcb->save.g_pat = data;
4284 mark_dirty(svm->vmcb, VMCB_NPT);
4285 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004286 case MSR_IA32_SPEC_CTRL:
4287 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004288 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4289 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004290 return 1;
4291
4292 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004293 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004294 return 1;
4295
4296 svm->spec_ctrl = data;
4297
4298 if (!data)
4299 break;
4300
4301 /*
4302 * For non-nested:
4303 * When it's written (to non-zero) for the first time, pass
4304 * it through.
4305 *
4306 * For nested:
4307 * The handling of the MSR bitmap for L2 guests is done in
4308 * nested_svm_vmrun_msrpm.
4309 * We update the L1 MSR bit as well since it will end up
4310 * touching the MSR anyway now.
4311 */
4312 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4313 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004314 case MSR_IA32_PRED_CMD:
4315 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004316 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004317 return 1;
4318
4319 if (data & ~PRED_CMD_IBPB)
4320 return 1;
4321
4322 if (!data)
4323 break;
4324
4325 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4326 if (is_guest_mode(vcpu))
4327 break;
4328 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4329 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004330 case MSR_AMD64_VIRT_SPEC_CTRL:
4331 if (!msr->host_initiated &&
4332 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4333 return 1;
4334
4335 if (data & ~SPEC_CTRL_SSBD)
4336 return 1;
4337
4338 svm->virt_spec_ctrl = data;
4339 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004340 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004341 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004342 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004343#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004345 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004346 break;
4347 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004348 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004349 break;
4350 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004351 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004352 break;
4353 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004354 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355 break;
4356#endif
4357 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004358 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004359 break;
4360 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004361 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004362 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004363 break;
4364 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004365 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004366 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004368 case MSR_TSC_AUX:
4369 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4370 return 1;
4371
4372 /*
4373 * This is rare, so we update the MSR here instead of using
4374 * direct_access_msrs. Doing that would require a rdmsr in
4375 * svm_vcpu_put.
4376 */
4377 svm->tsc_aux = data;
4378 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4379 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004380 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004381 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004382 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4383 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004384 break;
4385 }
4386 if (data & DEBUGCTL_RESERVED_BITS)
4387 return 1;
4388
4389 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004390 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004391 if (data & (1ULL<<0))
4392 svm_enable_lbrv(svm);
4393 else
4394 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004395 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004396 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004397 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004398 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004399 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004400 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004401 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004402 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004403 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004404 case MSR_F10H_DECFG: {
4405 struct kvm_msr_entry msr_entry;
4406
4407 msr_entry.index = msr->index;
4408 if (svm_get_msr_feature(&msr_entry))
4409 return 1;
4410
4411 /* Check the supported bits */
4412 if (data & ~msr_entry.data)
4413 return 1;
4414
4415 /* Don't allow the guest to change a bit, #GP */
4416 if (!msr->host_initiated && (data ^ msr_entry.data))
4417 return 1;
4418
4419 svm->msr_decfg = data;
4420 break;
4421 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004422 case MSR_IA32_APICBASE:
4423 if (kvm_vcpu_apicv_active(vcpu))
4424 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004425 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004426 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004427 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004428 }
4429 return 0;
4430}
4431
Avi Kivity851ba692009-08-24 11:10:17 +03004432static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433{
Will Auld8fe8ab42012-11-29 12:42:12 -08004434 struct msr_data msr;
Sean Christophersonde3cd112019-04-30 10:36:17 -07004435 u32 ecx = kvm_rcx_read(&svm->vcpu);
David Kaplan668f1982015-02-20 16:02:10 -06004436 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004437
Will Auld8fe8ab42012-11-29 12:42:12 -08004438 msr.data = data;
4439 msr.index = ecx;
4440 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004441
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004442 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004443 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004444 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004445 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004446 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004447 } else {
4448 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004449 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004450 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451}
4452
Avi Kivity851ba692009-08-24 11:10:17 +03004453static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004454{
Rusty Russelle756fc62007-07-30 20:07:08 +10004455 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004456 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457 else
Avi Kivity851ba692009-08-24 11:10:17 +03004458 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459}
4460
Avi Kivity851ba692009-08-24 11:10:17 +03004461static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004462{
Avi Kivity3842d132010-07-27 12:30:24 +03004463 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004464 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004465 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004466 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004467 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004468 return 1;
4469}
4470
Mark Langsdorf565d0992009-10-06 14:25:02 -05004471static int pause_interception(struct vcpu_svm *svm)
4472{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004473 struct kvm_vcpu *vcpu = &svm->vcpu;
4474 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4475
Babu Moger8566ac82018-03-16 16:37:26 -04004476 if (pause_filter_thresh)
4477 grow_ple_window(vcpu);
4478
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004479 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004480 return 1;
4481}
4482
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004483static int nop_interception(struct vcpu_svm *svm)
4484{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004485 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004486}
4487
4488static int monitor_interception(struct vcpu_svm *svm)
4489{
4490 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4491 return nop_interception(svm);
4492}
4493
4494static int mwait_interception(struct vcpu_svm *svm)
4495{
4496 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4497 return nop_interception(svm);
4498}
4499
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004500enum avic_ipi_failure_cause {
4501 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4502 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4503 AVIC_IPI_FAILURE_INVALID_TARGET,
4504 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4505};
4506
4507static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4508{
4509 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4510 u32 icrl = svm->vmcb->control.exit_info_1;
4511 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004512 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004513 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4514
4515 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4516
4517 switch (id) {
4518 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4519 /*
4520 * AVIC hardware handles the generation of
4521 * IPIs when the specified Message Type is Fixed
4522 * (also known as fixed delivery mode) and
4523 * the Trigger Mode is edge-triggered. The hardware
4524 * also supports self and broadcast delivery modes
4525 * specified via the Destination Shorthand(DSH)
4526 * field of the ICRL. Logical and physical APIC ID
4527 * formats are supported. All other IPI types cause
4528 * a #VMEXIT, which needs to emulated.
4529 */
4530 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4531 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4532 break;
4533 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004534 int i;
4535 struct kvm_vcpu *vcpu;
4536 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004537 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4538
4539 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004540 * At this point, we expect that the AVIC HW has already
4541 * set the appropriate IRR bits on the valid target
4542 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004543 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004544 kvm_for_each_vcpu(i, vcpu, kvm) {
4545 bool m = kvm_apic_match_dest(vcpu, apic,
4546 icrl & KVM_APIC_SHORT_MASK,
4547 GET_APIC_DEST_FIELD(icrh),
4548 icrl & KVM_APIC_DEST_MASK);
4549
4550 if (m && !avic_vcpu_is_running(vcpu))
4551 kvm_vcpu_wake_up(vcpu);
4552 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004553 break;
4554 }
4555 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004556 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4557 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004558 break;
4559 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4560 WARN_ONCE(1, "Invalid backing page\n");
4561 break;
4562 default:
4563 pr_err("Unknown IPI interception\n");
4564 }
4565
4566 return 1;
4567}
4568
4569static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4570{
Sean Christopherson81811c12018-03-20 12:17:21 -07004571 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004572 int index;
4573 u32 *logical_apic_id_table;
4574 int dlid = GET_APIC_LOGICAL_ID(ldr);
4575
4576 if (!dlid)
4577 return NULL;
4578
4579 if (flat) { /* flat */
4580 index = ffs(dlid) - 1;
4581 if (index > 7)
4582 return NULL;
4583 } else { /* cluster */
4584 int cluster = (dlid & 0xf0) >> 4;
4585 int apic = ffs(dlid & 0x0f) - 1;
4586
4587 if ((apic < 0) || (apic > 7) ||
4588 (cluster >= 0xf))
4589 return NULL;
4590 index = (cluster << 2) + apic;
4591 }
4592
Sean Christopherson81811c12018-03-20 12:17:21 -07004593 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004594
4595 return &logical_apic_id_table[index];
4596}
4597
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004598static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004599{
4600 bool flat;
4601 u32 *entry, new_entry;
4602
4603 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4604 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4605 if (!entry)
4606 return -EINVAL;
4607
4608 new_entry = READ_ONCE(*entry);
4609 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4610 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004611 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004612 WRITE_ONCE(*entry, new_entry);
4613
4614 return 0;
4615}
4616
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004617static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4618{
4619 struct vcpu_svm *svm = to_svm(vcpu);
4620 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4621 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4622
4623 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004624 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004625}
4626
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004627static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4628{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004629 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004630 struct vcpu_svm *svm = to_svm(vcpu);
4631 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4632
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004633 if (ldr == svm->ldr_reg)
4634 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004635
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004636 avic_invalidate_logical_id_entry(vcpu);
4637
4638 if (ldr)
4639 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr);
4640
4641 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004642 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004643
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004644 return ret;
4645}
4646
4647static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4648{
4649 u64 *old, *new;
4650 struct vcpu_svm *svm = to_svm(vcpu);
4651 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4652 u32 id = (apic_id_reg >> 24) & 0xff;
4653
4654 if (vcpu->vcpu_id == id)
4655 return 0;
4656
4657 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4658 new = avic_get_physical_id_entry(vcpu, id);
4659 if (!new || !old)
4660 return 1;
4661
4662 /* We need to move physical_id_entry to new offset */
4663 *new = *old;
4664 *old = 0ULL;
4665 to_svm(vcpu)->avic_physical_id_cache = new;
4666
4667 /*
4668 * Also update the guest physical APIC ID in the logical
4669 * APIC ID table entry if already setup the LDR.
4670 */
4671 if (svm->ldr_reg)
4672 avic_handle_ldr_update(vcpu);
4673
4674 return 0;
4675}
4676
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004677static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004678{
4679 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004680 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004681
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004682 if (svm->dfr_reg == dfr)
4683 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004684
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004685 avic_invalidate_logical_id_entry(vcpu);
4686 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004687}
4688
4689static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4690{
4691 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4692 u32 offset = svm->vmcb->control.exit_info_1 &
4693 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4694
4695 switch (offset) {
4696 case APIC_ID:
4697 if (avic_handle_apic_id_update(&svm->vcpu))
4698 return 0;
4699 break;
4700 case APIC_LDR:
4701 if (avic_handle_ldr_update(&svm->vcpu))
4702 return 0;
4703 break;
4704 case APIC_DFR:
4705 avic_handle_dfr_update(&svm->vcpu);
4706 break;
4707 default:
4708 break;
4709 }
4710
4711 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4712
4713 return 1;
4714}
4715
4716static bool is_avic_unaccelerated_access_trap(u32 offset)
4717{
4718 bool ret = false;
4719
4720 switch (offset) {
4721 case APIC_ID:
4722 case APIC_EOI:
4723 case APIC_RRR:
4724 case APIC_LDR:
4725 case APIC_DFR:
4726 case APIC_SPIV:
4727 case APIC_ESR:
4728 case APIC_ICR:
4729 case APIC_LVTT:
4730 case APIC_LVTTHMR:
4731 case APIC_LVTPC:
4732 case APIC_LVT0:
4733 case APIC_LVT1:
4734 case APIC_LVTERR:
4735 case APIC_TMICT:
4736 case APIC_TDCR:
4737 ret = true;
4738 break;
4739 default:
4740 break;
4741 }
4742 return ret;
4743}
4744
4745static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4746{
4747 int ret = 0;
4748 u32 offset = svm->vmcb->control.exit_info_1 &
4749 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4750 u32 vector = svm->vmcb->control.exit_info_2 &
4751 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4752 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4753 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4754 bool trap = is_avic_unaccelerated_access_trap(offset);
4755
4756 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4757 trap, write, vector);
4758 if (trap) {
4759 /* Handling Trap */
4760 WARN_ONCE(!write, "svm: Handling trap read.\n");
4761 ret = avic_unaccel_trap_write(svm);
4762 } else {
4763 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004764 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004765 }
4766
4767 return ret;
4768}
4769
Mathias Krause09941fb2012-08-30 01:30:20 +02004770static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004771 [SVM_EXIT_READ_CR0] = cr_interception,
4772 [SVM_EXIT_READ_CR3] = cr_interception,
4773 [SVM_EXIT_READ_CR4] = cr_interception,
4774 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004775 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004776 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004777 [SVM_EXIT_WRITE_CR3] = cr_interception,
4778 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004779 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004780 [SVM_EXIT_READ_DR0] = dr_interception,
4781 [SVM_EXIT_READ_DR1] = dr_interception,
4782 [SVM_EXIT_READ_DR2] = dr_interception,
4783 [SVM_EXIT_READ_DR3] = dr_interception,
4784 [SVM_EXIT_READ_DR4] = dr_interception,
4785 [SVM_EXIT_READ_DR5] = dr_interception,
4786 [SVM_EXIT_READ_DR6] = dr_interception,
4787 [SVM_EXIT_READ_DR7] = dr_interception,
4788 [SVM_EXIT_WRITE_DR0] = dr_interception,
4789 [SVM_EXIT_WRITE_DR1] = dr_interception,
4790 [SVM_EXIT_WRITE_DR2] = dr_interception,
4791 [SVM_EXIT_WRITE_DR3] = dr_interception,
4792 [SVM_EXIT_WRITE_DR4] = dr_interception,
4793 [SVM_EXIT_WRITE_DR5] = dr_interception,
4794 [SVM_EXIT_WRITE_DR6] = dr_interception,
4795 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004796 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4797 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004798 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004799 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004800 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004801 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004802 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004803 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004804 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004805 [SVM_EXIT_SMI] = nop_on_interception,
4806 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004807 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004808 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004809 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004810 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004811 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004812 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004814 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004815 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004816 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817 [SVM_EXIT_MSR] = msr_interception,
4818 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004819 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004820 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004821 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004822 [SVM_EXIT_VMLOAD] = vmload_interception,
4823 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004824 [SVM_EXIT_STGI] = stgi_interception,
4825 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004826 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004827 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004828 [SVM_EXIT_MONITOR] = monitor_interception,
4829 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004830 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004831 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004832 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004833 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4834 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004835};
4836
Joe Perchesae8cc052011-04-24 22:00:50 -07004837static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004838{
4839 struct vcpu_svm *svm = to_svm(vcpu);
4840 struct vmcb_control_area *control = &svm->vmcb->control;
4841 struct vmcb_save_area *save = &svm->vmcb->save;
4842
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02004843 if (!dump_invalid_vmcb) {
4844 pr_warn_ratelimited("set kvm_amd.dump_invalid_vmcb=1 to dump internal KVM state.\n");
4845 return;
4846 }
4847
Joerg Roedel3f10c842010-05-05 16:04:42 +02004848 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004849 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4850 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4851 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4852 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4853 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4854 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4855 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004856 pr_err("%-20s%d\n", "pause filter threshold:",
4857 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004858 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4859 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4860 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4861 pr_err("%-20s%d\n", "asid:", control->asid);
4862 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4863 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4864 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4865 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4866 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4867 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4868 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4869 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4870 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4871 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4872 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004873 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004874 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4875 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004876 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004877 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004878 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4879 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4880 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004881 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004882 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4883 "es:",
4884 save->es.selector, save->es.attrib,
4885 save->es.limit, save->es.base);
4886 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4887 "cs:",
4888 save->cs.selector, save->cs.attrib,
4889 save->cs.limit, save->cs.base);
4890 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4891 "ss:",
4892 save->ss.selector, save->ss.attrib,
4893 save->ss.limit, save->ss.base);
4894 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4895 "ds:",
4896 save->ds.selector, save->ds.attrib,
4897 save->ds.limit, save->ds.base);
4898 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4899 "fs:",
4900 save->fs.selector, save->fs.attrib,
4901 save->fs.limit, save->fs.base);
4902 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4903 "gs:",
4904 save->gs.selector, save->gs.attrib,
4905 save->gs.limit, save->gs.base);
4906 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4907 "gdtr:",
4908 save->gdtr.selector, save->gdtr.attrib,
4909 save->gdtr.limit, save->gdtr.base);
4910 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4911 "ldtr:",
4912 save->ldtr.selector, save->ldtr.attrib,
4913 save->ldtr.limit, save->ldtr.base);
4914 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4915 "idtr:",
4916 save->idtr.selector, save->idtr.attrib,
4917 save->idtr.limit, save->idtr.base);
4918 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4919 "tr:",
4920 save->tr.selector, save->tr.attrib,
4921 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004922 pr_err("cpl: %d efer: %016llx\n",
4923 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004924 pr_err("%-15s %016llx %-13s %016llx\n",
4925 "cr0:", save->cr0, "cr2:", save->cr2);
4926 pr_err("%-15s %016llx %-13s %016llx\n",
4927 "cr3:", save->cr3, "cr4:", save->cr4);
4928 pr_err("%-15s %016llx %-13s %016llx\n",
4929 "dr6:", save->dr6, "dr7:", save->dr7);
4930 pr_err("%-15s %016llx %-13s %016llx\n",
4931 "rip:", save->rip, "rflags:", save->rflags);
4932 pr_err("%-15s %016llx %-13s %016llx\n",
4933 "rsp:", save->rsp, "rax:", save->rax);
4934 pr_err("%-15s %016llx %-13s %016llx\n",
4935 "star:", save->star, "lstar:", save->lstar);
4936 pr_err("%-15s %016llx %-13s %016llx\n",
4937 "cstar:", save->cstar, "sfmask:", save->sfmask);
4938 pr_err("%-15s %016llx %-13s %016llx\n",
4939 "kernel_gs_base:", save->kernel_gs_base,
4940 "sysenter_cs:", save->sysenter_cs);
4941 pr_err("%-15s %016llx %-13s %016llx\n",
4942 "sysenter_esp:", save->sysenter_esp,
4943 "sysenter_eip:", save->sysenter_eip);
4944 pr_err("%-15s %016llx %-13s %016llx\n",
4945 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4946 pr_err("%-15s %016llx %-13s %016llx\n",
4947 "br_from:", save->br_from, "br_to:", save->br_to);
4948 pr_err("%-15s %016llx %-13s %016llx\n",
4949 "excp_from:", save->last_excp_from,
4950 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004951}
4952
Avi Kivity586f9602010-11-18 13:09:54 +02004953static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4954{
4955 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4956
4957 *info1 = control->exit_info_1;
4958 *info2 = control->exit_info_2;
4959}
4960
Avi Kivity851ba692009-08-24 11:10:17 +03004961static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004963 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004964 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004965 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004966
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004967 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4968
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004969 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004970 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4971 if (npt_enabled)
4972 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004973
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004974 if (unlikely(svm->nested.exit_required)) {
4975 nested_svm_vmexit(svm);
4976 svm->nested.exit_required = false;
4977
4978 return 1;
4979 }
4980
Joerg Roedel20307532010-11-29 17:51:48 +01004981 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004982 int vmexit;
4983
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004984 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4985 svm->vmcb->control.exit_info_1,
4986 svm->vmcb->control.exit_info_2,
4987 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004988 svm->vmcb->control.exit_int_info_err,
4989 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004990
Joerg Roedel410e4d52009-08-07 11:49:44 +02004991 vmexit = nested_svm_exit_special(svm);
4992
4993 if (vmexit == NESTED_EXIT_CONTINUE)
4994 vmexit = nested_svm_exit_handled(svm);
4995
4996 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004997 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004998 }
4999
Joerg Roedela5c38322009-08-07 11:49:32 +02005000 svm_complete_interrupts(svm);
5001
Avi Kivity04d2cc72007-09-10 18:10:54 +03005002 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5003 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5004 kvm_run->fail_entry.hardware_entry_failure_reason
5005 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005006 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005007 return 0;
5008 }
5009
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005010 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005011 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005012 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5013 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005014 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005015 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005016 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005017 exit_code);
5018
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02005019 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005020 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04005021 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005022 kvm_queue_exception(vcpu, UD_VECTOR);
5023 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005024 }
5025
Avi Kivity851ba692009-08-24 11:10:17 +03005026 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005027}
5028
5029static void reload_tss(struct kvm_vcpu *vcpu)
5030{
5031 int cpu = raw_smp_processor_id();
5032
Tejun Heo0fe1e002009-10-29 22:34:14 +09005033 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5034 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035 load_TR_desc();
5036}
5037
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005038static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5039{
5040 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5041 int asid = sev_get_asid(svm->vcpu.kvm);
5042
5043 /* Assign the asid allocated with this SEV guest */
5044 svm->vmcb->control.asid = asid;
5045
5046 /*
5047 * Flush guest TLB:
5048 *
5049 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5050 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5051 */
5052 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5053 svm->last_cpu == cpu)
5054 return;
5055
5056 svm->last_cpu = cpu;
5057 sd->sev_vmcbs[asid] = svm->vmcb;
5058 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5059 mark_dirty(svm->vmcb, VMCB_ASID);
5060}
5061
Rusty Russelle756fc62007-07-30 20:07:08 +10005062static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005063{
5064 int cpu = raw_smp_processor_id();
5065
Tejun Heo0fe1e002009-10-29 22:34:14 +09005066 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005067
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005068 if (sev_guest(svm->vcpu.kvm))
5069 return pre_sev_run(svm, cpu);
5070
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005071 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005072 if (svm->asid_generation != sd->asid_generation)
5073 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005074}
5075
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005076static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5077{
5078 struct vcpu_svm *svm = to_svm(vcpu);
5079
5080 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5081 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005082 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005083 ++vcpu->stat.nmi_injections;
5084}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005085
Eddie Dong85f455f2007-07-06 12:20:49 +03005086static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005087{
5088 struct vmcb_control_area *control;
5089
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005090 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005091 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005092 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005093 control->int_ctl &= ~V_INTR_PRIO_MASK;
5094 control->int_ctl |= V_IRQ_MASK |
5095 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005096 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005097}
5098
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005099static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005100{
5101 struct vcpu_svm *svm = to_svm(vcpu);
5102
Joerg Roedel2af91942009-08-07 11:49:28 +02005103 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005104
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005105 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5106 ++vcpu->stat.irq_injections;
5107
Alexander Graf219b65d2009-06-15 15:21:25 +02005108 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5109 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005110}
5111
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005112static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5113{
5114 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5115}
5116
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005117static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5118{
5119 struct vcpu_svm *svm = to_svm(vcpu);
5120
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005121 if (svm_nested_virtualize_tpr(vcpu) ||
5122 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005123 return;
5124
Radim Krčmář596f3142014-03-11 19:11:18 +01005125 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5126
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005127 if (irr == -1)
5128 return;
5129
5130 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005131 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005132}
5133
Jim Mattson8d860bb2018-05-09 16:56:05 -04005134static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005135{
5136 return;
5137}
5138
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005139static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005140{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005141 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005142}
5143
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005144static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5145{
5146}
5147
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005148static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005149{
5150}
5151
5152/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005153static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5154{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005155 struct vcpu_svm *svm = to_svm(vcpu);
5156 struct vmcb *vmcb = svm->vmcb;
5157
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005158 if (kvm_vcpu_apicv_active(vcpu))
5159 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
5160 else
5161 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5162 mark_dirty(vmcb, VMCB_AVIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005163}
5164
Andrey Smetanin63086302015-11-10 15:36:32 +03005165static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005166{
5167 return;
5168}
5169
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005170static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5171{
5172 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5173 smp_mb__after_atomic();
5174
Suthikulpanit, Suravee0532dd52019-05-03 06:38:53 -07005175 if (avic_vcpu_is_running(vcpu)) {
5176 int cpuid = vcpu->cpu;
5177
5178 if (cpuid != get_cpu())
5179 wrmsrl(SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpuid));
5180 put_cpu();
5181 } else
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005182 kvm_vcpu_wake_up(vcpu);
5183}
5184
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005185static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5186{
5187 unsigned long flags;
5188 struct amd_svm_iommu_ir *cur;
5189
5190 spin_lock_irqsave(&svm->ir_list_lock, flags);
5191 list_for_each_entry(cur, &svm->ir_list, node) {
5192 if (cur->data != pi->ir_data)
5193 continue;
5194 list_del(&cur->node);
5195 kfree(cur);
5196 break;
5197 }
5198 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5199}
5200
5201static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5202{
5203 int ret = 0;
5204 unsigned long flags;
5205 struct amd_svm_iommu_ir *ir;
5206
5207 /**
5208 * In some cases, the existing irte is updaed and re-set,
5209 * so we need to check here if it's already been * added
5210 * to the ir_list.
5211 */
5212 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5213 struct kvm *kvm = svm->vcpu.kvm;
5214 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5215 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5216 struct vcpu_svm *prev_svm;
5217
5218 if (!prev_vcpu) {
5219 ret = -EINVAL;
5220 goto out;
5221 }
5222
5223 prev_svm = to_svm(prev_vcpu);
5224 svm_ir_list_del(prev_svm, pi);
5225 }
5226
5227 /**
5228 * Allocating new amd_iommu_pi_data, which will get
5229 * add to the per-vcpu ir_list.
5230 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005231 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005232 if (!ir) {
5233 ret = -ENOMEM;
5234 goto out;
5235 }
5236 ir->data = pi->ir_data;
5237
5238 spin_lock_irqsave(&svm->ir_list_lock, flags);
5239 list_add(&ir->node, &svm->ir_list);
5240 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5241out:
5242 return ret;
5243}
5244
5245/**
5246 * Note:
5247 * The HW cannot support posting multicast/broadcast
5248 * interrupts to a vCPU. So, we still use legacy interrupt
5249 * remapping for these kind of interrupts.
5250 *
5251 * For lowest-priority interrupts, we only support
5252 * those with single CPU as the destination, e.g. user
5253 * configures the interrupts via /proc/irq or uses
5254 * irqbalance to make the interrupts single-CPU.
5255 */
5256static int
5257get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5258 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5259{
5260 struct kvm_lapic_irq irq;
5261 struct kvm_vcpu *vcpu = NULL;
5262
5263 kvm_set_msi_irq(kvm, e, &irq);
5264
5265 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5266 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5267 __func__, irq.vector);
5268 return -1;
5269 }
5270
5271 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5272 irq.vector);
5273 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005274 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005275 vcpu_info->vector = irq.vector;
5276
5277 return 0;
5278}
5279
5280/*
5281 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5282 *
5283 * @kvm: kvm
5284 * @host_irq: host irq of the interrupt
5285 * @guest_irq: gsi of the interrupt
5286 * @set: set or unset PI
5287 * returns 0 on success, < 0 on failure
5288 */
5289static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5290 uint32_t guest_irq, bool set)
5291{
5292 struct kvm_kernel_irq_routing_entry *e;
5293 struct kvm_irq_routing_table *irq_rt;
5294 int idx, ret = -EINVAL;
5295
5296 if (!kvm_arch_has_assigned_device(kvm) ||
5297 !irq_remapping_cap(IRQ_POSTING_CAP))
5298 return 0;
5299
5300 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5301 __func__, host_irq, guest_irq, set);
5302
5303 idx = srcu_read_lock(&kvm->irq_srcu);
5304 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5305 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5306
5307 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5308 struct vcpu_data vcpu_info;
5309 struct vcpu_svm *svm = NULL;
5310
5311 if (e->type != KVM_IRQ_ROUTING_MSI)
5312 continue;
5313
5314 /**
5315 * Here, we setup with legacy mode in the following cases:
5316 * 1. When cannot target interrupt to a specific vcpu.
5317 * 2. Unsetting posted interrupt.
5318 * 3. APIC virtialization is disabled for the vcpu.
5319 */
5320 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5321 kvm_vcpu_apicv_active(&svm->vcpu)) {
5322 struct amd_iommu_pi_data pi;
5323
5324 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005325 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5326 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005327 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005328 svm->vcpu.vcpu_id);
5329 pi.is_guest_mode = true;
5330 pi.vcpu_data = &vcpu_info;
5331 ret = irq_set_vcpu_affinity(host_irq, &pi);
5332
5333 /**
5334 * Here, we successfully setting up vcpu affinity in
5335 * IOMMU guest mode. Now, we need to store the posted
5336 * interrupt information in a per-vcpu ir_list so that
5337 * we can reference to them directly when we update vcpu
5338 * scheduling information in IOMMU irte.
5339 */
5340 if (!ret && pi.is_guest_mode)
5341 svm_ir_list_add(svm, &pi);
5342 } else {
5343 /* Use legacy mode in IRTE */
5344 struct amd_iommu_pi_data pi;
5345
5346 /**
5347 * Here, pi is used to:
5348 * - Tell IOMMU to use legacy mode for this interrupt.
5349 * - Retrieve ga_tag of prior interrupt remapping data.
5350 */
5351 pi.is_guest_mode = false;
5352 ret = irq_set_vcpu_affinity(host_irq, &pi);
5353
5354 /**
5355 * Check if the posted interrupt was previously
5356 * setup with the guest_mode by checking if the ga_tag
5357 * was cached. If so, we need to clean up the per-vcpu
5358 * ir_list.
5359 */
5360 if (!ret && pi.prev_ga_tag) {
5361 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5362 struct kvm_vcpu *vcpu;
5363
5364 vcpu = kvm_get_vcpu_by_id(kvm, id);
5365 if (vcpu)
5366 svm_ir_list_del(to_svm(vcpu), &pi);
5367 }
5368 }
5369
5370 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005371 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5372 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005373 vcpu_info.pi_desc_addr, set);
5374 }
5375
5376 if (ret < 0) {
5377 pr_err("%s: failed to update PI IRTE\n", __func__);
5378 goto out;
5379 }
5380 }
5381
5382 ret = 0;
5383out:
5384 srcu_read_unlock(&kvm->irq_srcu, idx);
5385 return ret;
5386}
5387
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005388static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005389{
5390 struct vcpu_svm *svm = to_svm(vcpu);
5391 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005392 int ret;
5393 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5394 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5395 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5396
5397 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005398}
5399
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005400static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5401{
5402 struct vcpu_svm *svm = to_svm(vcpu);
5403
5404 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5405}
5406
5407static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5408{
5409 struct vcpu_svm *svm = to_svm(vcpu);
5410
5411 if (masked) {
5412 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005413 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005414 } else {
5415 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005416 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005417 }
5418}
5419
Gleb Natapov78646122009-03-23 12:12:11 +02005420static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5421{
5422 struct vcpu_svm *svm = to_svm(vcpu);
5423 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005424 int ret;
5425
5426 if (!gif_set(svm) ||
5427 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5428 return 0;
5429
Avi Kivityf6e78472010-08-02 15:30:20 +03005430 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005431
Joerg Roedel20307532010-11-29 17:51:48 +01005432 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005433 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5434
5435 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005436}
5437
Jan Kiszkac9a79532014-03-07 20:03:15 +01005438static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005439{
Alexander Graf219b65d2009-06-15 15:21:25 +02005440 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005441
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005442 if (kvm_vcpu_apicv_active(vcpu))
5443 return;
5444
Joerg Roedele0231712010-02-24 18:59:10 +01005445 /*
5446 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5447 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5448 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005449 * we'll get the vintr intercept. However, if the vGIF feature is
5450 * enabled, the STGI interception will not occur. Enable the irq
5451 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005452 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005453 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005454 svm_set_vintr(svm);
5455 svm_inject_irq(svm, 0x0);
5456 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005457}
5458
Jan Kiszkac9a79532014-03-07 20:03:15 +01005459static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005460{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005461 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005462
Gleb Natapov44c11432009-05-11 13:35:52 +03005463 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5464 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005465 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005466
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005467 if (!gif_set(svm)) {
5468 if (vgif_enabled(svm))
5469 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005470 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005471 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005472
5473 if (svm->nested.exit_required)
5474 return; /* we're not going to run the guest yet */
5475
Joerg Roedele0231712010-02-24 18:59:10 +01005476 /*
5477 * Something prevents NMI from been injected. Single step over possible
5478 * problem (IRET or exception injection or interrupt shadow)
5479 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005480 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005481 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005482 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005483}
5484
Izik Eiduscbc94022007-10-25 00:29:55 +02005485static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5486{
5487 return 0;
5488}
5489
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005490static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5491{
5492 return 0;
5493}
5494
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005495static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005496{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005497 struct vcpu_svm *svm = to_svm(vcpu);
5498
5499 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5500 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5501 else
5502 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005503}
5504
Junaid Shahidfaff8752018-06-29 13:10:05 -07005505static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5506{
5507 struct vcpu_svm *svm = to_svm(vcpu);
5508
5509 invlpga(gva, svm->vmcb->control.asid);
5510}
5511
Avi Kivity04d2cc72007-09-10 18:10:54 +03005512static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5513{
5514}
5515
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005516static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5517{
5518 struct vcpu_svm *svm = to_svm(vcpu);
5519
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005520 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005521 return;
5522
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005523 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005524 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005525 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005526 }
5527}
5528
Joerg Roedel649d6862008-04-16 16:51:15 +02005529static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5530{
5531 struct vcpu_svm *svm = to_svm(vcpu);
5532 u64 cr8;
5533
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005534 if (svm_nested_virtualize_tpr(vcpu) ||
5535 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005536 return;
5537
Joerg Roedel649d6862008-04-16 16:51:15 +02005538 cr8 = kvm_get_cr8(vcpu);
5539 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5540 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5541}
5542
Gleb Natapov9222be12009-04-23 17:14:37 +03005543static void svm_complete_interrupts(struct vcpu_svm *svm)
5544{
5545 u8 vector;
5546 int type;
5547 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005548 unsigned int3_injected = svm->int3_injected;
5549
5550 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005551
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005552 /*
5553 * If we've made progress since setting HF_IRET_MASK, we've
5554 * executed an IRET and can allow NMI injection.
5555 */
5556 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5557 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005558 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005559 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5560 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005561
Gleb Natapov9222be12009-04-23 17:14:37 +03005562 svm->vcpu.arch.nmi_injected = false;
5563 kvm_clear_exception_queue(&svm->vcpu);
5564 kvm_clear_interrupt_queue(&svm->vcpu);
5565
5566 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5567 return;
5568
Avi Kivity3842d132010-07-27 12:30:24 +03005569 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5570
Gleb Natapov9222be12009-04-23 17:14:37 +03005571 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5572 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5573
5574 switch (type) {
5575 case SVM_EXITINTINFO_TYPE_NMI:
5576 svm->vcpu.arch.nmi_injected = true;
5577 break;
5578 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005579 /*
5580 * In case of software exceptions, do not reinject the vector,
5581 * but re-execute the instruction instead. Rewind RIP first
5582 * if we emulated INT3 before.
5583 */
5584 if (kvm_exception_is_soft(vector)) {
5585 if (vector == BP_VECTOR && int3_injected &&
5586 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5587 kvm_rip_write(&svm->vcpu,
5588 kvm_rip_read(&svm->vcpu) -
5589 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005590 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005591 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005592 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5593 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005594 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005595
5596 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005597 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005598 break;
5599 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005600 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005601 break;
5602 default:
5603 break;
5604 }
5605}
5606
Avi Kivityb463a6f2010-07-20 15:06:17 +03005607static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5608{
5609 struct vcpu_svm *svm = to_svm(vcpu);
5610 struct vmcb_control_area *control = &svm->vmcb->control;
5611
5612 control->exit_int_info = control->event_inj;
5613 control->exit_int_info_err = control->event_inj_err;
5614 control->event_inj = 0;
5615 svm_complete_interrupts(svm);
5616}
5617
Avi Kivity851ba692009-08-24 11:10:17 +03005618static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005619{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005620 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005621
Joerg Roedel2041a062010-04-22 12:33:08 +02005622 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5623 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5624 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5625
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005626 /*
5627 * A vmexit emulation is required before the vcpu can be executed
5628 * again.
5629 */
5630 if (unlikely(svm->nested.exit_required))
5631 return;
5632
Ladi Proseka12713c2017-06-21 09:07:00 +02005633 /*
5634 * Disable singlestep if we're injecting an interrupt/exception.
5635 * We don't want our modified rflags to be pushed on the stack where
5636 * we might not be able to easily reset them if we disabled NMI
5637 * singlestep later.
5638 */
5639 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5640 /*
5641 * Event injection happens before external interrupts cause a
5642 * vmexit and interrupts are disabled here, so smp_send_reschedule
5643 * is enough to force an immediate vmexit.
5644 */
5645 disable_nmi_singlestep(svm);
5646 smp_send_reschedule(vcpu->cpu);
5647 }
5648
Rusty Russelle756fc62007-07-30 20:07:08 +10005649 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005650
Joerg Roedel649d6862008-04-16 16:51:15 +02005651 sync_lapic_to_cr8(vcpu);
5652
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005653 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005654
Avi Kivity04d2cc72007-09-10 18:10:54 +03005655 clgi();
WANG Chao1811d972019-04-12 15:55:39 +08005656 kvm_load_guest_xcr0(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005657
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08005658 if (lapic_in_kernel(vcpu) &&
5659 vcpu->arch.apic->lapic_timer.timer_advance_ns)
5660 kvm_wait_lapic_expire(vcpu);
5661
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005662 /*
5663 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5664 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5665 * is no need to worry about the conditional branch over the wrmsr
5666 * being speculatively taken.
5667 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005668 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005669
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005670 local_irq_enable();
5671
Avi Kivity6aa8b732006-12-10 02:21:36 -08005672 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005673 "push %%" _ASM_BP "; \n\t"
5674 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5675 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5676 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5677 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5678 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5679 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005680#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005681 "mov %c[r8](%[svm]), %%r8 \n\t"
5682 "mov %c[r9](%[svm]), %%r9 \n\t"
5683 "mov %c[r10](%[svm]), %%r10 \n\t"
5684 "mov %c[r11](%[svm]), %%r11 \n\t"
5685 "mov %c[r12](%[svm]), %%r12 \n\t"
5686 "mov %c[r13](%[svm]), %%r13 \n\t"
5687 "mov %c[r14](%[svm]), %%r14 \n\t"
5688 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005689#endif
5690
Avi Kivity6aa8b732006-12-10 02:21:36 -08005691 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005692 "push %%" _ASM_AX " \n\t"
5693 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005694 __ex("vmload %%" _ASM_AX) "\n\t"
5695 __ex("vmrun %%" _ASM_AX) "\n\t"
5696 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005697 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005698
5699 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005700 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5701 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5702 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5703 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5704 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5705 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005706#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005707 "mov %%r8, %c[r8](%[svm]) \n\t"
5708 "mov %%r9, %c[r9](%[svm]) \n\t"
5709 "mov %%r10, %c[r10](%[svm]) \n\t"
5710 "mov %%r11, %c[r11](%[svm]) \n\t"
5711 "mov %%r12, %c[r12](%[svm]) \n\t"
5712 "mov %%r13, %c[r13](%[svm]) \n\t"
5713 "mov %%r14, %c[r14](%[svm]) \n\t"
5714 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005715 /*
5716 * Clear host registers marked as clobbered to prevent
5717 * speculative use.
5718 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005719 "xor %%r8d, %%r8d \n\t"
5720 "xor %%r9d, %%r9d \n\t"
5721 "xor %%r10d, %%r10d \n\t"
5722 "xor %%r11d, %%r11d \n\t"
5723 "xor %%r12d, %%r12d \n\t"
5724 "xor %%r13d, %%r13d \n\t"
5725 "xor %%r14d, %%r14d \n\t"
5726 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005727#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005728 "xor %%ebx, %%ebx \n\t"
5729 "xor %%ecx, %%ecx \n\t"
5730 "xor %%edx, %%edx \n\t"
5731 "xor %%esi, %%esi \n\t"
5732 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005733 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005734 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005735 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005736 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005737 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5738 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5739 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5740 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5741 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5742 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005743#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005744 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5745 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5746 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5747 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5748 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5749 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5750 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5751 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005753 : "cc", "memory"
5754#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005755 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005756 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005757#else
5758 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005759#endif
5760 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005761
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005762 /* Eliminate branch target predictions from guest mode */
5763 vmexit_fill_RSB();
5764
5765#ifdef CONFIG_X86_64
5766 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5767#else
5768 loadsegment(fs, svm->host.fs);
5769#ifndef CONFIG_X86_32_LAZY_GS
5770 loadsegment(gs, svm->host.gs);
5771#endif
5772#endif
5773
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005774 /*
5775 * We do not use IBRS in the kernel. If this vCPU has used the
5776 * SPEC_CTRL MSR it may have left it on; save the value and
5777 * turn it off. This is much more efficient than blindly adding
5778 * it to the atomic save/restore list. Especially as the former
5779 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5780 *
5781 * For non-nested case:
5782 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5783 * save it.
5784 *
5785 * For nested case:
5786 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5787 * save it.
5788 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005789 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005790 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005791
Avi Kivity6aa8b732006-12-10 02:21:36 -08005792 reload_tss(vcpu);
5793
Avi Kivity56ba47d2007-11-07 17:14:18 +02005794 local_irq_disable();
5795
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005796 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5797
Avi Kivity13c34e02010-10-21 12:20:31 +02005798 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5799 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5800 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5801 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5802
Joerg Roedel3781c012011-01-14 16:45:02 +01005803 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005804 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005805
WANG Chao1811d972019-04-12 15:55:39 +08005806 kvm_put_guest_xcr0(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005807 stgi();
5808
5809 /* Any pending NMI will happen here */
5810
5811 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005812 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005813
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005814 sync_cr8_to_lapic(vcpu);
5815
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005816 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005817
Joerg Roedel38e5e922010-12-03 15:25:16 +01005818 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5819
Gleb Natapov631bc482010-10-14 11:22:52 +02005820 /* if exit due to PF check for async PF */
5821 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005822 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005823
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005824 if (npt_enabled) {
5825 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5826 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5827 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005828
5829 /*
5830 * We need to handle MC intercepts here before the vcpu has a chance to
5831 * change the physical cpu
5832 */
5833 if (unlikely(svm->vmcb->control.exit_code ==
5834 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5835 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005836
5837 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005838}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005839STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005840
Avi Kivity6aa8b732006-12-10 02:21:36 -08005841static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5842{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005843 struct vcpu_svm *svm = to_svm(vcpu);
5844
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005845 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005846 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005847}
5848
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005849static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5850{
5851 struct vcpu_svm *svm = to_svm(vcpu);
5852
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005853 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005854 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005855
5856 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005857 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005858 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005859}
5860
Avi Kivity6aa8b732006-12-10 02:21:36 -08005861static int is_disabled(void)
5862{
Joerg Roedel6031a612007-06-22 12:29:50 +03005863 u64 vm_cr;
5864
5865 rdmsrl(MSR_VM_CR, vm_cr);
5866 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5867 return 1;
5868
Avi Kivity6aa8b732006-12-10 02:21:36 -08005869 return 0;
5870}
5871
Ingo Molnar102d8322007-02-19 14:37:47 +02005872static void
5873svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5874{
5875 /*
5876 * Patch in the VMMCALL instruction:
5877 */
5878 hypercall[0] = 0x0f;
5879 hypercall[1] = 0x01;
5880 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005881}
5882
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005883static int __init svm_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03005884{
Sean Christophersonf257d6d2019-04-19 22:18:17 -07005885 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03005886}
5887
Avi Kivity774ead32007-12-26 13:57:04 +02005888static bool svm_cpu_has_accelerated_tpr(void)
5889{
5890 return false;
5891}
5892
Tom Lendackybc226f02018-05-10 22:06:39 +02005893static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005894{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005895 switch (index) {
5896 case MSR_IA32_MCG_EXT_CTL:
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02005897 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005898 return false;
5899 default:
5900 break;
5901 }
5902
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005903 return true;
5904}
5905
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005906static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5907{
5908 return 0;
5909}
5910
Sheng Yang0e851882009-12-18 16:48:46 +08005911static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5912{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005913 struct vcpu_svm *svm = to_svm(vcpu);
5914
5915 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005916 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005917
5918 if (!kvm_vcpu_apicv_active(vcpu))
5919 return;
5920
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005921 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005922}
5923
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005924static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5925{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005926 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005927 case 0x1:
5928 if (avic)
5929 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5930 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005931 case 0x80000001:
5932 if (nested)
5933 entry->ecx |= (1 << 2); /* Set SVM bit */
5934 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005935 case 0x8000000A:
5936 entry->eax = 1; /* SVM revision 1 */
5937 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5938 ASID emulation to nested SVM */
5939 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005940 entry->edx = 0; /* Per default do not support any
5941 additional features */
5942
5943 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005944 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005945 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005946
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005947 /* Support NPT for the guest if enabled */
5948 if (npt_enabled)
5949 entry->edx |= SVM_FEATURE_NPT;
5950
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005951 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005952 case 0x8000001F:
5953 /* Support memory encryption cpuid if host supports it */
5954 if (boot_cpu_has(X86_FEATURE_SEV))
5955 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5956 &entry->ecx, &entry->edx);
5957
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005958 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005959}
5960
Sheng Yang17cc3932010-01-05 19:02:27 +08005961static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005962{
Sheng Yang17cc3932010-01-05 19:02:27 +08005963 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005964}
5965
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005966static bool svm_rdtscp_supported(void)
5967{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005968 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005969}
5970
Mao, Junjiead756a12012-07-02 01:18:48 +00005971static bool svm_invpcid_supported(void)
5972{
5973 return false;
5974}
5975
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005976static bool svm_mpx_supported(void)
5977{
5978 return false;
5979}
5980
Wanpeng Li55412b22014-12-02 19:21:30 +08005981static bool svm_xsaves_supported(void)
5982{
5983 return false;
5984}
5985
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005986static bool svm_umip_emulated(void)
5987{
5988 return false;
5989}
5990
Chao Peng86f52012018-10-24 16:05:11 +08005991static bool svm_pt_supported(void)
5992{
5993 return false;
5994}
5995
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005996static bool svm_has_wbinvd_exit(void)
5997{
5998 return true;
5999}
6000
Joerg Roedel80612522011-04-04 12:39:33 +02006001#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006002 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006003#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006004 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006005#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006006 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006007
Mathias Krause09941fb2012-08-30 01:30:20 +02006008static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006009 u32 exit_code;
6010 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006011} x86_intercept_map[] = {
6012 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6013 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6014 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6015 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6016 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006017 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6018 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006019 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6020 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6021 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6022 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6023 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6024 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6025 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6026 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006027 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6028 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6029 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6030 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6031 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6032 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6033 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6034 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006035 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6036 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6037 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006038 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6039 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6040 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6041 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6042 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6043 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6044 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6045 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6046 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006047 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6048 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6049 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6050 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6051 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6052 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6053 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006054 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6055 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6056 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6057 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006058};
6059
Joerg Roedel80612522011-04-04 12:39:33 +02006060#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006061#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006062#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006063
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006064static int svm_check_intercept(struct kvm_vcpu *vcpu,
6065 struct x86_instruction_info *info,
6066 enum x86_intercept_stage stage)
6067{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006068 struct vcpu_svm *svm = to_svm(vcpu);
6069 int vmexit, ret = X86EMUL_CONTINUE;
6070 struct __x86_intercept icpt_info;
6071 struct vmcb *vmcb = svm->vmcb;
6072
6073 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6074 goto out;
6075
6076 icpt_info = x86_intercept_map[info->intercept];
6077
Avi Kivity40e19b52011-04-21 12:35:41 +03006078 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006079 goto out;
6080
6081 switch (icpt_info.exit_code) {
6082 case SVM_EXIT_READ_CR0:
6083 if (info->intercept == x86_intercept_cr_read)
6084 icpt_info.exit_code += info->modrm_reg;
6085 break;
6086 case SVM_EXIT_WRITE_CR0: {
6087 unsigned long cr0, val;
6088 u64 intercept;
6089
6090 if (info->intercept == x86_intercept_cr_write)
6091 icpt_info.exit_code += info->modrm_reg;
6092
Jan Kiszka62baf442014-06-29 21:55:53 +02006093 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6094 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006095 break;
6096
6097 intercept = svm->nested.intercept;
6098
6099 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6100 break;
6101
6102 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6103 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6104
6105 if (info->intercept == x86_intercept_lmsw) {
6106 cr0 &= 0xfUL;
6107 val &= 0xfUL;
6108 /* lmsw can't clear PE - catch this here */
6109 if (cr0 & X86_CR0_PE)
6110 val |= X86_CR0_PE;
6111 }
6112
6113 if (cr0 ^ val)
6114 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6115
6116 break;
6117 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006118 case SVM_EXIT_READ_DR0:
6119 case SVM_EXIT_WRITE_DR0:
6120 icpt_info.exit_code += info->modrm_reg;
6121 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006122 case SVM_EXIT_MSR:
6123 if (info->intercept == x86_intercept_wrmsr)
6124 vmcb->control.exit_info_1 = 1;
6125 else
6126 vmcb->control.exit_info_1 = 0;
6127 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006128 case SVM_EXIT_PAUSE:
6129 /*
6130 * We get this for NOP only, but pause
6131 * is rep not, check this here
6132 */
6133 if (info->rep_prefix != REPE_PREFIX)
6134 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006135 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006136 case SVM_EXIT_IOIO: {
6137 u64 exit_info;
6138 u32 bytes;
6139
Joerg Roedelf6511932011-04-04 12:39:35 +02006140 if (info->intercept == x86_intercept_in ||
6141 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006142 exit_info = ((info->src_val & 0xffff) << 16) |
6143 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006144 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006145 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006146 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006147 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006148 }
6149
6150 if (info->intercept == x86_intercept_outs ||
6151 info->intercept == x86_intercept_ins)
6152 exit_info |= SVM_IOIO_STR_MASK;
6153
6154 if (info->rep_prefix)
6155 exit_info |= SVM_IOIO_REP_MASK;
6156
6157 bytes = min(bytes, 4u);
6158
6159 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6160
6161 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6162
6163 vmcb->control.exit_info_1 = exit_info;
6164 vmcb->control.exit_info_2 = info->next_rip;
6165
6166 break;
6167 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006168 default:
6169 break;
6170 }
6171
Bandan Dasf1047652015-06-11 02:05:33 -04006172 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6173 if (static_cpu_has(X86_FEATURE_NRIPS))
6174 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006175 vmcb->control.exit_code = icpt_info.exit_code;
6176 vmexit = nested_svm_exit_handled(svm);
6177
6178 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6179 : X86EMUL_CONTINUE;
6180
6181out:
6182 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006183}
6184
Sean Christopherson95b5a482019-04-19 22:50:59 -07006185static void svm_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006186{
Sean Christopherson165072b2019-04-19 22:50:58 -07006187 kvm_before_interrupt(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006188 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006189 /*
6190 * We must have an instruction with interrupts enabled, so
6191 * the timer interrupt isn't delayed by the interrupt shadow.
6192 */
6193 asm("nop");
6194 local_irq_disable();
Sean Christopherson165072b2019-04-19 22:50:58 -07006195 kvm_after_interrupt(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006196}
6197
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006198static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6199{
Babu Moger8566ac82018-03-16 16:37:26 -04006200 if (pause_filter_thresh)
6201 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006202}
6203
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006204static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6205{
6206 if (avic_handle_apic_id_update(vcpu) != 0)
6207 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006208 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006209 avic_handle_ldr_update(vcpu);
6210}
6211
Borislav Petkov74f16902017-03-26 23:51:24 +02006212static void svm_setup_mce(struct kvm_vcpu *vcpu)
6213{
6214 /* [63:9] are reserved. */
6215 vcpu->arch.mcg_cap &= 0x1ff;
6216}
6217
Ladi Prosek72d7b372017-10-11 16:54:41 +02006218static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6219{
Ladi Prosek05cade72017-10-11 16:54:45 +02006220 struct vcpu_svm *svm = to_svm(vcpu);
6221
6222 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6223 if (!gif_set(svm))
6224 return 0;
6225
6226 if (is_guest_mode(&svm->vcpu) &&
6227 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6228 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6229 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6230 svm->nested.exit_required = true;
6231 return 0;
6232 }
6233
Ladi Prosek72d7b372017-10-11 16:54:41 +02006234 return 1;
6235}
6236
Ladi Prosek0234bf82017-10-11 16:54:40 +02006237static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6238{
Ladi Prosek05cade72017-10-11 16:54:45 +02006239 struct vcpu_svm *svm = to_svm(vcpu);
6240 int ret;
6241
6242 if (is_guest_mode(vcpu)) {
6243 /* FED8h - SVM Guest */
6244 put_smstate(u64, smstate, 0x7ed8, 1);
6245 /* FEE0h - SVM Guest VMCB Physical Address */
6246 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6247
6248 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6249 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6250 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6251
6252 ret = nested_svm_vmexit(svm);
6253 if (ret)
6254 return ret;
6255 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006256 return 0;
6257}
6258
Sean Christophersoned193212019-04-02 08:03:09 -07006259static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006260{
Ladi Prosek05cade72017-10-11 16:54:45 +02006261 struct vcpu_svm *svm = to_svm(vcpu);
6262 struct vmcb *nested_vmcb;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006263 struct kvm_host_map map;
Sean Christophersoned193212019-04-02 08:03:09 -07006264 u64 guest;
6265 u64 vmcb;
Ladi Prosek05cade72017-10-11 16:54:45 +02006266
Sean Christophersoned193212019-04-02 08:03:09 -07006267 guest = GET_SMSTATE(u64, smstate, 0x7ed8);
6268 vmcb = GET_SMSTATE(u64, smstate, 0x7ee0);
Ladi Prosek05cade72017-10-11 16:54:45 +02006269
Sean Christophersoned193212019-04-02 08:03:09 -07006270 if (guest) {
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006271 if (kvm_vcpu_map(&svm->vcpu, gpa_to_gfn(vmcb), &map) == -EINVAL)
Sean Christopherson9ec19492019-04-02 08:03:11 -07006272 return 1;
KarimAllah Ahmed8c5fbf12019-01-31 21:24:40 +01006273 nested_vmcb = map.hva;
6274 enter_svm_guest_mode(svm, vmcb, nested_vmcb, &map);
Ladi Prosek05cade72017-10-11 16:54:45 +02006275 }
Sean Christopherson9ec19492019-04-02 08:03:11 -07006276 return 0;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006277}
6278
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006279static int enable_smi_window(struct kvm_vcpu *vcpu)
6280{
6281 struct vcpu_svm *svm = to_svm(vcpu);
6282
6283 if (!gif_set(svm)) {
6284 if (vgif_enabled(svm))
6285 set_intercept(svm, INTERCEPT_STGI);
6286 /* STGI will cause a vm exit */
6287 return 1;
6288 }
6289 return 0;
6290}
6291
Brijesh Singh1654efc2017-12-04 10:57:34 -06006292static int sev_asid_new(void)
6293{
6294 int pos;
6295
6296 /*
6297 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6298 */
6299 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6300 if (pos >= max_sev_asid)
6301 return -EBUSY;
6302
6303 set_bit(pos, sev_asid_bitmap);
6304 return pos + 1;
6305}
6306
6307static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6308{
Sean Christopherson81811c12018-03-20 12:17:21 -07006309 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006310 int asid, ret;
6311
6312 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006313 if (unlikely(sev->active))
6314 return ret;
6315
Brijesh Singh1654efc2017-12-04 10:57:34 -06006316 asid = sev_asid_new();
6317 if (asid < 0)
6318 return ret;
6319
6320 ret = sev_platform_init(&argp->error);
6321 if (ret)
6322 goto e_free;
6323
6324 sev->active = true;
6325 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006326 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006327
6328 return 0;
6329
6330e_free:
6331 __sev_asid_free(asid);
6332 return ret;
6333}
6334
Brijesh Singh59414c92017-12-04 10:57:35 -06006335static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6336{
6337 struct sev_data_activate *data;
6338 int asid = sev_get_asid(kvm);
6339 int ret;
6340
6341 wbinvd_on_all_cpus();
6342
6343 ret = sev_guest_df_flush(error);
6344 if (ret)
6345 return ret;
6346
Ben Gardon1ec69642019-02-11 11:02:51 -08006347 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006348 if (!data)
6349 return -ENOMEM;
6350
6351 /* activate ASID on the given handle */
6352 data->handle = handle;
6353 data->asid = asid;
6354 ret = sev_guest_activate(data, error);
6355 kfree(data);
6356
6357 return ret;
6358}
6359
Brijesh Singh89c50582017-12-04 10:57:35 -06006360static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006361{
6362 struct fd f;
6363 int ret;
6364
6365 f = fdget(fd);
6366 if (!f.file)
6367 return -EBADF;
6368
6369 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6370
6371 fdput(f);
6372 return ret;
6373}
6374
Brijesh Singh89c50582017-12-04 10:57:35 -06006375static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6376{
Sean Christopherson81811c12018-03-20 12:17:21 -07006377 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006378
6379 return __sev_issue_cmd(sev->fd, id, data, error);
6380}
6381
Brijesh Singh59414c92017-12-04 10:57:35 -06006382static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6383{
Sean Christopherson81811c12018-03-20 12:17:21 -07006384 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006385 struct sev_data_launch_start *start;
6386 struct kvm_sev_launch_start params;
6387 void *dh_blob, *session_blob;
6388 int *error = &argp->error;
6389 int ret;
6390
6391 if (!sev_guest(kvm))
6392 return -ENOTTY;
6393
6394 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6395 return -EFAULT;
6396
Ben Gardon1ec69642019-02-11 11:02:51 -08006397 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006398 if (!start)
6399 return -ENOMEM;
6400
6401 dh_blob = NULL;
6402 if (params.dh_uaddr) {
6403 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6404 if (IS_ERR(dh_blob)) {
6405 ret = PTR_ERR(dh_blob);
6406 goto e_free;
6407 }
6408
6409 start->dh_cert_address = __sme_set(__pa(dh_blob));
6410 start->dh_cert_len = params.dh_len;
6411 }
6412
6413 session_blob = NULL;
6414 if (params.session_uaddr) {
6415 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6416 if (IS_ERR(session_blob)) {
6417 ret = PTR_ERR(session_blob);
6418 goto e_free_dh;
6419 }
6420
6421 start->session_address = __sme_set(__pa(session_blob));
6422 start->session_len = params.session_len;
6423 }
6424
6425 start->handle = params.handle;
6426 start->policy = params.policy;
6427
6428 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006429 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006430 if (ret)
6431 goto e_free_session;
6432
6433 /* Bind ASID to this guest */
6434 ret = sev_bind_asid(kvm, start->handle, error);
6435 if (ret)
6436 goto e_free_session;
6437
6438 /* return handle to userspace */
6439 params.handle = start->handle;
6440 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6441 sev_unbind_asid(kvm, start->handle);
6442 ret = -EFAULT;
6443 goto e_free_session;
6444 }
6445
6446 sev->handle = start->handle;
6447 sev->fd = argp->sev_fd;
6448
6449e_free_session:
6450 kfree(session_blob);
6451e_free_dh:
6452 kfree(dh_blob);
6453e_free:
6454 kfree(start);
6455 return ret;
6456}
6457
David Rientjesede885e2019-03-19 15:19:56 -07006458static unsigned long get_num_contig_pages(unsigned long idx,
6459 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006460{
6461 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006462 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006463
6464 /* find the number of contiguous pages starting from idx */
6465 paddr = __sme_page_pa(inpages[idx]);
6466 while (i < npages) {
6467 next_paddr = __sme_page_pa(inpages[i++]);
6468 if ((paddr + PAGE_SIZE) == next_paddr) {
6469 pages++;
6470 paddr = next_paddr;
6471 continue;
6472 }
6473 break;
6474 }
6475
6476 return pages;
6477}
6478
6479static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6480{
David Rientjesede885e2019-03-19 15:19:56 -07006481 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006482 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006483 struct kvm_sev_launch_update_data params;
6484 struct sev_data_launch_update_data *data;
6485 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006486 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006487
6488 if (!sev_guest(kvm))
6489 return -ENOTTY;
6490
6491 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6492 return -EFAULT;
6493
Ben Gardon1ec69642019-02-11 11:02:51 -08006494 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006495 if (!data)
6496 return -ENOMEM;
6497
6498 vaddr = params.uaddr;
6499 size = params.len;
6500 vaddr_end = vaddr + size;
6501
6502 /* Lock the user memory. */
6503 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6504 if (!inpages) {
6505 ret = -ENOMEM;
6506 goto e_free;
6507 }
6508
6509 /*
6510 * The LAUNCH_UPDATE command will perform in-place encryption of the
6511 * memory content (i.e it will write the same memory region with C=1).
6512 * It's possible that the cache may contain the data with C=0, i.e.,
6513 * unencrypted so invalidate it first.
6514 */
6515 sev_clflush_pages(inpages, npages);
6516
6517 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6518 int offset, len;
6519
6520 /*
6521 * If the user buffer is not page-aligned, calculate the offset
6522 * within the page.
6523 */
6524 offset = vaddr & (PAGE_SIZE - 1);
6525
6526 /* Calculate the number of pages that can be encrypted in one go. */
6527 pages = get_num_contig_pages(i, inpages, npages);
6528
6529 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6530
6531 data->handle = sev->handle;
6532 data->len = len;
6533 data->address = __sme_page_pa(inpages[i]) + offset;
6534 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6535 if (ret)
6536 goto e_unpin;
6537
6538 size -= len;
6539 next_vaddr = vaddr + len;
6540 }
6541
6542e_unpin:
6543 /* content of memory is updated, mark pages dirty */
6544 for (i = 0; i < npages; i++) {
6545 set_page_dirty_lock(inpages[i]);
6546 mark_page_accessed(inpages[i]);
6547 }
6548 /* unlock the user pages */
6549 sev_unpin_memory(kvm, inpages, npages);
6550e_free:
6551 kfree(data);
6552 return ret;
6553}
6554
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006555static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6556{
Brijesh Singh3e233382018-02-23 12:36:50 -06006557 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006558 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006559 struct sev_data_launch_measure *data;
6560 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006561 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006562 void *blob = NULL;
6563 int ret;
6564
6565 if (!sev_guest(kvm))
6566 return -ENOTTY;
6567
Brijesh Singh3e233382018-02-23 12:36:50 -06006568 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006569 return -EFAULT;
6570
Ben Gardon1ec69642019-02-11 11:02:51 -08006571 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006572 if (!data)
6573 return -ENOMEM;
6574
6575 /* User wants to query the blob length */
6576 if (!params.len)
6577 goto cmd;
6578
Brijesh Singh3e233382018-02-23 12:36:50 -06006579 p = (void __user *)(uintptr_t)params.uaddr;
6580 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006581 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6582 ret = -EINVAL;
6583 goto e_free;
6584 }
6585
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006586 ret = -ENOMEM;
6587 blob = kmalloc(params.len, GFP_KERNEL);
6588 if (!blob)
6589 goto e_free;
6590
6591 data->address = __psp_pa(blob);
6592 data->len = params.len;
6593 }
6594
6595cmd:
6596 data->handle = sev->handle;
6597 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6598
6599 /*
6600 * If we query the session length, FW responded with expected data.
6601 */
6602 if (!params.len)
6603 goto done;
6604
6605 if (ret)
6606 goto e_free_blob;
6607
6608 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006609 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006610 ret = -EFAULT;
6611 }
6612
6613done:
6614 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006615 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006616 ret = -EFAULT;
6617e_free_blob:
6618 kfree(blob);
6619e_free:
6620 kfree(data);
6621 return ret;
6622}
6623
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006624static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6625{
Sean Christopherson81811c12018-03-20 12:17:21 -07006626 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006627 struct sev_data_launch_finish *data;
6628 int ret;
6629
6630 if (!sev_guest(kvm))
6631 return -ENOTTY;
6632
Ben Gardon1ec69642019-02-11 11:02:51 -08006633 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006634 if (!data)
6635 return -ENOMEM;
6636
6637 data->handle = sev->handle;
6638 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6639
6640 kfree(data);
6641 return ret;
6642}
6643
Brijesh Singh255d9e72017-12-04 10:57:37 -06006644static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6645{
Sean Christopherson81811c12018-03-20 12:17:21 -07006646 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006647 struct kvm_sev_guest_status params;
6648 struct sev_data_guest_status *data;
6649 int ret;
6650
6651 if (!sev_guest(kvm))
6652 return -ENOTTY;
6653
Ben Gardon1ec69642019-02-11 11:02:51 -08006654 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh255d9e72017-12-04 10:57:37 -06006655 if (!data)
6656 return -ENOMEM;
6657
6658 data->handle = sev->handle;
6659 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6660 if (ret)
6661 goto e_free;
6662
6663 params.policy = data->policy;
6664 params.state = data->state;
6665 params.handle = data->handle;
6666
6667 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6668 ret = -EFAULT;
6669e_free:
6670 kfree(data);
6671 return ret;
6672}
6673
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006674static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6675 unsigned long dst, int size,
6676 int *error, bool enc)
6677{
Sean Christopherson81811c12018-03-20 12:17:21 -07006678 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006679 struct sev_data_dbg *data;
6680 int ret;
6681
Ben Gardon1ec69642019-02-11 11:02:51 -08006682 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006683 if (!data)
6684 return -ENOMEM;
6685
6686 data->handle = sev->handle;
6687 data->dst_addr = dst;
6688 data->src_addr = src;
6689 data->len = size;
6690
6691 ret = sev_issue_cmd(kvm,
6692 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6693 data, error);
6694 kfree(data);
6695 return ret;
6696}
6697
6698static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6699 unsigned long dst_paddr, int sz, int *err)
6700{
6701 int offset;
6702
6703 /*
6704 * Its safe to read more than we are asked, caller should ensure that
6705 * destination has enough space.
6706 */
6707 src_paddr = round_down(src_paddr, 16);
6708 offset = src_paddr & 15;
6709 sz = round_up(sz + offset, 16);
6710
6711 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6712}
6713
6714static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6715 unsigned long __user dst_uaddr,
6716 unsigned long dst_paddr,
6717 int size, int *err)
6718{
6719 struct page *tpage = NULL;
6720 int ret, offset;
6721
6722 /* if inputs are not 16-byte then use intermediate buffer */
6723 if (!IS_ALIGNED(dst_paddr, 16) ||
6724 !IS_ALIGNED(paddr, 16) ||
6725 !IS_ALIGNED(size, 16)) {
6726 tpage = (void *)alloc_page(GFP_KERNEL);
6727 if (!tpage)
6728 return -ENOMEM;
6729
6730 dst_paddr = __sme_page_pa(tpage);
6731 }
6732
6733 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6734 if (ret)
6735 goto e_free;
6736
6737 if (tpage) {
6738 offset = paddr & 15;
6739 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6740 page_address(tpage) + offset, size))
6741 ret = -EFAULT;
6742 }
6743
6744e_free:
6745 if (tpage)
6746 __free_page(tpage);
6747
6748 return ret;
6749}
6750
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006751static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6752 unsigned long __user vaddr,
6753 unsigned long dst_paddr,
6754 unsigned long __user dst_vaddr,
6755 int size, int *error)
6756{
6757 struct page *src_tpage = NULL;
6758 struct page *dst_tpage = NULL;
6759 int ret, len = size;
6760
6761 /* If source buffer is not aligned then use an intermediate buffer */
6762 if (!IS_ALIGNED(vaddr, 16)) {
6763 src_tpage = alloc_page(GFP_KERNEL);
6764 if (!src_tpage)
6765 return -ENOMEM;
6766
6767 if (copy_from_user(page_address(src_tpage),
6768 (void __user *)(uintptr_t)vaddr, size)) {
6769 __free_page(src_tpage);
6770 return -EFAULT;
6771 }
6772
6773 paddr = __sme_page_pa(src_tpage);
6774 }
6775
6776 /*
6777 * If destination buffer or length is not aligned then do read-modify-write:
6778 * - decrypt destination in an intermediate buffer
6779 * - copy the source buffer in an intermediate buffer
6780 * - use the intermediate buffer as source buffer
6781 */
6782 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6783 int dst_offset;
6784
6785 dst_tpage = alloc_page(GFP_KERNEL);
6786 if (!dst_tpage) {
6787 ret = -ENOMEM;
6788 goto e_free;
6789 }
6790
6791 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6792 __sme_page_pa(dst_tpage), size, error);
6793 if (ret)
6794 goto e_free;
6795
6796 /*
6797 * If source is kernel buffer then use memcpy() otherwise
6798 * copy_from_user().
6799 */
6800 dst_offset = dst_paddr & 15;
6801
6802 if (src_tpage)
6803 memcpy(page_address(dst_tpage) + dst_offset,
6804 page_address(src_tpage), size);
6805 else {
6806 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6807 (void __user *)(uintptr_t)vaddr, size)) {
6808 ret = -EFAULT;
6809 goto e_free;
6810 }
6811 }
6812
6813 paddr = __sme_page_pa(dst_tpage);
6814 dst_paddr = round_down(dst_paddr, 16);
6815 len = round_up(size, 16);
6816 }
6817
6818 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6819
6820e_free:
6821 if (src_tpage)
6822 __free_page(src_tpage);
6823 if (dst_tpage)
6824 __free_page(dst_tpage);
6825 return ret;
6826}
6827
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006828static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6829{
6830 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006831 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006832 struct page **src_p, **dst_p;
6833 struct kvm_sev_dbg debug;
6834 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006835 unsigned int size;
6836 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006837
6838 if (!sev_guest(kvm))
6839 return -ENOTTY;
6840
6841 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6842 return -EFAULT;
6843
David Rientjesb86bc282019-03-25 11:47:31 -07006844 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6845 return -EINVAL;
6846 if (!debug.dst_uaddr)
6847 return -EINVAL;
6848
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006849 vaddr = debug.src_uaddr;
6850 size = debug.len;
6851 vaddr_end = vaddr + size;
6852 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006853
6854 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6855 int len, s_off, d_off;
6856
6857 /* lock userspace source and destination page */
6858 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6859 if (!src_p)
6860 return -EFAULT;
6861
6862 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6863 if (!dst_p) {
6864 sev_unpin_memory(kvm, src_p, n);
6865 return -EFAULT;
6866 }
6867
6868 /*
6869 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6870 * memory content (i.e it will write the same memory region with C=1).
6871 * It's possible that the cache may contain the data with C=0, i.e.,
6872 * unencrypted so invalidate it first.
6873 */
6874 sev_clflush_pages(src_p, 1);
6875 sev_clflush_pages(dst_p, 1);
6876
6877 /*
6878 * Since user buffer may not be page aligned, calculate the
6879 * offset within the page.
6880 */
6881 s_off = vaddr & ~PAGE_MASK;
6882 d_off = dst_vaddr & ~PAGE_MASK;
6883 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6884
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006885 if (dec)
6886 ret = __sev_dbg_decrypt_user(kvm,
6887 __sme_page_pa(src_p[0]) + s_off,
6888 dst_vaddr,
6889 __sme_page_pa(dst_p[0]) + d_off,
6890 len, &argp->error);
6891 else
6892 ret = __sev_dbg_encrypt_user(kvm,
6893 __sme_page_pa(src_p[0]) + s_off,
6894 vaddr,
6895 __sme_page_pa(dst_p[0]) + d_off,
6896 dst_vaddr,
6897 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006898
David Rientjesb86bc282019-03-25 11:47:31 -07006899 sev_unpin_memory(kvm, src_p, n);
6900 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006901
6902 if (ret)
6903 goto err;
6904
6905 next_vaddr = vaddr + len;
6906 dst_vaddr = dst_vaddr + len;
6907 size -= len;
6908 }
6909err:
6910 return ret;
6911}
6912
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006913static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6914{
Sean Christopherson81811c12018-03-20 12:17:21 -07006915 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006916 struct sev_data_launch_secret *data;
6917 struct kvm_sev_launch_secret params;
6918 struct page **pages;
6919 void *blob, *hdr;
6920 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006921 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006922
6923 if (!sev_guest(kvm))
6924 return -ENOTTY;
6925
6926 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6927 return -EFAULT;
6928
6929 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6930 if (!pages)
6931 return -ENOMEM;
6932
6933 /*
6934 * The secret must be copied into contiguous memory region, lets verify
6935 * that userspace memory pages are contiguous before we issue command.
6936 */
6937 if (get_num_contig_pages(0, pages, n) != n) {
6938 ret = -EINVAL;
6939 goto e_unpin_memory;
6940 }
6941
6942 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08006943 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006944 if (!data)
6945 goto e_unpin_memory;
6946
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006947 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6948 data->guest_address = __sme_page_pa(pages[0]) + offset;
6949 data->guest_len = params.guest_len;
6950
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006951 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6952 if (IS_ERR(blob)) {
6953 ret = PTR_ERR(blob);
6954 goto e_free;
6955 }
6956
6957 data->trans_address = __psp_pa(blob);
6958 data->trans_len = params.trans_len;
6959
6960 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6961 if (IS_ERR(hdr)) {
6962 ret = PTR_ERR(hdr);
6963 goto e_free_blob;
6964 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006965 data->hdr_address = __psp_pa(hdr);
6966 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006967
6968 data->handle = sev->handle;
6969 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6970
6971 kfree(hdr);
6972
6973e_free_blob:
6974 kfree(blob);
6975e_free:
6976 kfree(data);
6977e_unpin_memory:
6978 sev_unpin_memory(kvm, pages, n);
6979 return ret;
6980}
6981
Brijesh Singh1654efc2017-12-04 10:57:34 -06006982static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6983{
6984 struct kvm_sev_cmd sev_cmd;
6985 int r;
6986
6987 if (!svm_sev_enabled())
6988 return -ENOTTY;
6989
6990 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6991 return -EFAULT;
6992
6993 mutex_lock(&kvm->lock);
6994
6995 switch (sev_cmd.id) {
6996 case KVM_SEV_INIT:
6997 r = sev_guest_init(kvm, &sev_cmd);
6998 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006999 case KVM_SEV_LAUNCH_START:
7000 r = sev_launch_start(kvm, &sev_cmd);
7001 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007002 case KVM_SEV_LAUNCH_UPDATE_DATA:
7003 r = sev_launch_update_data(kvm, &sev_cmd);
7004 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007005 case KVM_SEV_LAUNCH_MEASURE:
7006 r = sev_launch_measure(kvm, &sev_cmd);
7007 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007008 case KVM_SEV_LAUNCH_FINISH:
7009 r = sev_launch_finish(kvm, &sev_cmd);
7010 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007011 case KVM_SEV_GUEST_STATUS:
7012 r = sev_guest_status(kvm, &sev_cmd);
7013 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007014 case KVM_SEV_DBG_DECRYPT:
7015 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7016 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007017 case KVM_SEV_DBG_ENCRYPT:
7018 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7019 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007020 case KVM_SEV_LAUNCH_SECRET:
7021 r = sev_launch_secret(kvm, &sev_cmd);
7022 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007023 default:
7024 r = -EINVAL;
7025 goto out;
7026 }
7027
7028 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7029 r = -EFAULT;
7030
7031out:
7032 mutex_unlock(&kvm->lock);
7033 return r;
7034}
7035
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007036static int svm_register_enc_region(struct kvm *kvm,
7037 struct kvm_enc_region *range)
7038{
Sean Christopherson81811c12018-03-20 12:17:21 -07007039 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007040 struct enc_region *region;
7041 int ret = 0;
7042
7043 if (!sev_guest(kvm))
7044 return -ENOTTY;
7045
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007046 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7047 return -EINVAL;
7048
Ben Gardon1ec69642019-02-11 11:02:51 -08007049 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007050 if (!region)
7051 return -ENOMEM;
7052
7053 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7054 if (!region->pages) {
7055 ret = -ENOMEM;
7056 goto e_free;
7057 }
7058
7059 /*
7060 * The guest may change the memory encryption attribute from C=0 -> C=1
7061 * or vice versa for this memory range. Lets make sure caches are
7062 * flushed to ensure that guest data gets written into memory with
7063 * correct C-bit.
7064 */
7065 sev_clflush_pages(region->pages, region->npages);
7066
7067 region->uaddr = range->addr;
7068 region->size = range->size;
7069
7070 mutex_lock(&kvm->lock);
7071 list_add_tail(&region->list, &sev->regions_list);
7072 mutex_unlock(&kvm->lock);
7073
7074 return ret;
7075
7076e_free:
7077 kfree(region);
7078 return ret;
7079}
7080
7081static struct enc_region *
7082find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7083{
Sean Christopherson81811c12018-03-20 12:17:21 -07007084 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007085 struct list_head *head = &sev->regions_list;
7086 struct enc_region *i;
7087
7088 list_for_each_entry(i, head, list) {
7089 if (i->uaddr == range->addr &&
7090 i->size == range->size)
7091 return i;
7092 }
7093
7094 return NULL;
7095}
7096
7097
7098static int svm_unregister_enc_region(struct kvm *kvm,
7099 struct kvm_enc_region *range)
7100{
7101 struct enc_region *region;
7102 int ret;
7103
7104 mutex_lock(&kvm->lock);
7105
7106 if (!sev_guest(kvm)) {
7107 ret = -ENOTTY;
7108 goto failed;
7109 }
7110
7111 region = find_enc_region(kvm, range);
7112 if (!region) {
7113 ret = -EINVAL;
7114 goto failed;
7115 }
7116
7117 __unregister_enc_region_locked(kvm, region);
7118
7119 mutex_unlock(&kvm->lock);
7120 return 0;
7121
7122failed:
7123 mutex_unlock(&kvm->lock);
7124 return ret;
7125}
7126
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007127static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
7128{
7129 /* Not supported */
7130 return 0;
7131}
7132
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007133static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
7134 uint16_t *vmcs_version)
7135{
7136 /* Intel-only feature */
7137 return -ENODEV;
7138}
7139
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007140static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7141{
7142 bool is_user, smap;
7143
7144 is_user = svm_get_cpl(vcpu) == 3;
7145 smap = !kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
7146
7147 /*
7148 * Detect and workaround Errata 1096 Fam_17h_00_0Fh
7149 *
7150 * In non SEV guest, hypervisor will be able to read the guest
7151 * memory to decode the instruction pointer when insn_len is zero
7152 * so we return true to indicate that decoding is possible.
7153 *
7154 * But in the SEV guest, the guest memory is encrypted with the
7155 * guest specific key and hypervisor will not be able to decode the
7156 * instruction pointer so we will not able to workaround it. Lets
7157 * print the error and request to kill the guest.
7158 */
7159 if (is_user && smap) {
7160 if (!sev_guest(vcpu->kvm))
7161 return true;
7162
7163 pr_err_ratelimited("KVM: Guest triggered AMD Erratum 1096\n");
7164 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7165 }
7166
7167 return false;
7168}
7169
Kees Cook404f6aa2016-08-08 16:29:06 -07007170static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007171 .cpu_has_kvm_support = has_svm,
7172 .disabled_by_bios = is_disabled,
7173 .hardware_setup = svm_hardware_setup,
7174 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007175 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007176 .hardware_enable = svm_hardware_enable,
7177 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007178 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007179 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007180
7181 .vcpu_create = svm_create_vcpu,
7182 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007183 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007184
Sean Christopherson434a1e92018-03-20 12:17:18 -07007185 .vm_alloc = svm_vm_alloc,
7186 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007187 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007188 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007189
Avi Kivity04d2cc72007-09-10 18:10:54 +03007190 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007191 .vcpu_load = svm_vcpu_load,
7192 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007193 .vcpu_blocking = svm_vcpu_blocking,
7194 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007195
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007196 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007197 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007198 .get_msr = svm_get_msr,
7199 .set_msr = svm_set_msr,
7200 .get_segment_base = svm_get_segment_base,
7201 .get_segment = svm_get_segment,
7202 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007203 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007204 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007205 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007206 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007207 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007208 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007209 .set_cr3 = svm_set_cr3,
7210 .set_cr4 = svm_set_cr4,
7211 .set_efer = svm_set_efer,
7212 .get_idt = svm_get_idt,
7213 .set_idt = svm_set_idt,
7214 .get_gdt = svm_get_gdt,
7215 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007216 .get_dr6 = svm_get_dr6,
7217 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007218 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007219 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007220 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007221 .get_rflags = svm_get_rflags,
7222 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007223
Avi Kivity6aa8b732006-12-10 02:21:36 -08007224 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007225 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007226
Avi Kivity6aa8b732006-12-10 02:21:36 -08007227 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007228 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007229 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007230 .set_interrupt_shadow = svm_set_interrupt_shadow,
7231 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007232 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007233 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007234 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007235 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007236 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007237 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007238 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007239 .get_nmi_mask = svm_get_nmi_mask,
7240 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007241 .enable_nmi_window = enable_nmi_window,
7242 .enable_irq_window = enable_irq_window,
7243 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007244 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007245 .get_enable_apicv = svm_get_enable_apicv,
7246 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007247 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007248 .hwapic_irr_update = svm_hwapic_irr_update,
7249 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007250 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007251 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007252
7253 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007254 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007255 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007256 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007257
Avi Kivity586f9602010-11-18 13:09:54 +02007258 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007259
Sheng Yang17cc3932010-01-05 19:02:27 +08007260 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007261
7262 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007263
7264 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007265 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007266 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007267 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007268 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007269 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007270
7271 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007272
7273 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007274
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007275 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007276 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007277
7278 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007279
7280 .check_intercept = svm_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007281 .handle_exit_irqoff = svm_handle_exit_irqoff,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007282
Sean Christophersond264ee02018-08-27 15:21:12 -07007283 .request_immediate_exit = __kvm_request_immediate_exit,
7284
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007285 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007286
7287 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007288 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007289 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007290 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007291
Ladi Prosek72d7b372017-10-11 16:54:41 +02007292 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007293 .pre_enter_smm = svm_pre_enter_smm,
7294 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007295 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007296
7297 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007298 .mem_enc_reg_region = svm_register_enc_region,
7299 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007300
7301 .nested_enable_evmcs = nested_enable_evmcs,
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007302 .nested_get_evmcs_version = nested_get_evmcs_version,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007303
7304 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007305};
7306
7307static int __init svm_init(void)
7308{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007309 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007310 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007311}
7312
7313static void __exit svm_exit(void)
7314{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007315 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007316}
7317
7318module_init(svm_init)
7319module_exit(svm_exit)