blob: 933f19d840fe2204887f95b5e4e17c5369d1d9bb [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
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500370/* enable/disable Virtual VMLOAD VMSAVE */
371static int vls = true;
372module_param(vls, int, 0444);
373
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500374/* enable/disable Virtual GIF */
375static int vgif = true;
376module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500377
Brijesh Singhe9df0942017-12-04 10:57:33 -0600378/* enable/disable SEV support */
379static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
380module_param(sev, int, 0444);
381
Brijesh Singh7607b712018-02-19 10:14:44 -0600382static u8 rsm_ins_bytes[] = "\x0f\xaa";
383
Paolo Bonzini79a80592015-09-21 07:46:55 +0200384static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800385static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200386static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800387
Joerg Roedel410e4d52009-08-07 11:49:44 +0200388static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100389static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
392 bool has_error_code, u32 error_code);
393
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100394enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100395 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
396 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100397 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100398 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100399 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100400 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100401 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100402 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100403 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100404 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100405 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100406 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500407 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
408 * AVIC PHYSICAL_TABLE pointer,
409 * AVIC LOGICAL_TABLE pointer
410 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100411 VMCB_DIRTY_MAX,
412};
413
Joerg Roedel0574dec2010-12-03 11:45:58 +0100414/* TPR and CR2 are always written before VMRUN */
415#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100416
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500417#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
418
Brijesh Singhed3cd232017-12-04 10:57:32 -0600419static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600420static unsigned int min_sev_asid;
421static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600422#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600423
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600424struct enc_region {
425 struct list_head list;
426 unsigned long npages;
427 struct page **pages;
428 unsigned long uaddr;
429 unsigned long size;
430};
431
Sean Christopherson81811c12018-03-20 12:17:21 -0700432
433static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
434{
435 return container_of(kvm, struct kvm_svm, kvm);
436}
437
Brijesh Singh1654efc2017-12-04 10:57:34 -0600438static inline bool svm_sev_enabled(void)
439{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200440 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600441}
442
443static inline bool sev_guest(struct kvm *kvm)
444{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200445#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700446 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600447
448 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200449#else
450 return false;
451#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600452}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600453
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600454static inline int sev_get_asid(struct kvm *kvm)
455{
Sean Christopherson81811c12018-03-20 12:17:21 -0700456 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600457
458 return sev->asid;
459}
460
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100461static inline void mark_all_dirty(struct vmcb *vmcb)
462{
463 vmcb->control.clean = 0;
464}
465
466static inline void mark_all_clean(struct vmcb *vmcb)
467{
468 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
469 & ~VMCB_ALWAYS_DIRTY_MASK;
470}
471
472static inline void mark_dirty(struct vmcb *vmcb, int bit)
473{
474 vmcb->control.clean &= ~(1 << bit);
475}
476
Avi Kivity6aa8b732006-12-10 02:21:36 -0800477static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
478{
479 return container_of(vcpu, struct vcpu_svm, vcpu);
480}
481
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500482static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
483{
484 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
485 mark_dirty(svm->vmcb, VMCB_AVIC);
486}
487
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500488static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
489{
490 struct vcpu_svm *svm = to_svm(vcpu);
491 u64 *entry = svm->avic_physical_id_cache;
492
493 if (!entry)
494 return false;
495
496 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
497}
498
Joerg Roedel384c6362010-11-30 18:03:56 +0100499static void recalc_intercepts(struct vcpu_svm *svm)
500{
501 struct vmcb_control_area *c, *h;
502 struct nested_state *g;
503
Joerg Roedel116a0a22010-12-03 11:45:49 +0100504 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
505
Joerg Roedel384c6362010-11-30 18:03:56 +0100506 if (!is_guest_mode(&svm->vcpu))
507 return;
508
509 c = &svm->vmcb->control;
510 h = &svm->nested.hsave->control;
511 g = &svm->nested;
512
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100513 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100514 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100515 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100516 c->intercept = h->intercept | g->intercept;
517}
518
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100519static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
520{
521 if (is_guest_mode(&svm->vcpu))
522 return svm->nested.hsave;
523 else
524 return svm->vmcb;
525}
526
527static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
528{
529 struct vmcb *vmcb = get_host_vmcb(svm);
530
531 vmcb->control.intercept_cr |= (1U << bit);
532
533 recalc_intercepts(svm);
534}
535
536static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
537{
538 struct vmcb *vmcb = get_host_vmcb(svm);
539
540 vmcb->control.intercept_cr &= ~(1U << bit);
541
542 recalc_intercepts(svm);
543}
544
545static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
546{
547 struct vmcb *vmcb = get_host_vmcb(svm);
548
549 return vmcb->control.intercept_cr & (1U << bit);
550}
551
Paolo Bonzini5315c712014-03-03 13:08:29 +0100552static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100553{
554 struct vmcb *vmcb = get_host_vmcb(svm);
555
Paolo Bonzini5315c712014-03-03 13:08:29 +0100556 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
557 | (1 << INTERCEPT_DR1_READ)
558 | (1 << INTERCEPT_DR2_READ)
559 | (1 << INTERCEPT_DR3_READ)
560 | (1 << INTERCEPT_DR4_READ)
561 | (1 << INTERCEPT_DR5_READ)
562 | (1 << INTERCEPT_DR6_READ)
563 | (1 << INTERCEPT_DR7_READ)
564 | (1 << INTERCEPT_DR0_WRITE)
565 | (1 << INTERCEPT_DR1_WRITE)
566 | (1 << INTERCEPT_DR2_WRITE)
567 | (1 << INTERCEPT_DR3_WRITE)
568 | (1 << INTERCEPT_DR4_WRITE)
569 | (1 << INTERCEPT_DR5_WRITE)
570 | (1 << INTERCEPT_DR6_WRITE)
571 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100572
573 recalc_intercepts(svm);
574}
575
Paolo Bonzini5315c712014-03-03 13:08:29 +0100576static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100577{
578 struct vmcb *vmcb = get_host_vmcb(svm);
579
Paolo Bonzini5315c712014-03-03 13:08:29 +0100580 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100581
582 recalc_intercepts(svm);
583}
584
Joerg Roedel18c918c2010-11-30 18:03:59 +0100585static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
586{
587 struct vmcb *vmcb = get_host_vmcb(svm);
588
589 vmcb->control.intercept_exceptions |= (1U << bit);
590
591 recalc_intercepts(svm);
592}
593
594static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
595{
596 struct vmcb *vmcb = get_host_vmcb(svm);
597
598 vmcb->control.intercept_exceptions &= ~(1U << bit);
599
600 recalc_intercepts(svm);
601}
602
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100603static inline void set_intercept(struct vcpu_svm *svm, int bit)
604{
605 struct vmcb *vmcb = get_host_vmcb(svm);
606
607 vmcb->control.intercept |= (1ULL << bit);
608
609 recalc_intercepts(svm);
610}
611
612static inline void clr_intercept(struct vcpu_svm *svm, int bit)
613{
614 struct vmcb *vmcb = get_host_vmcb(svm);
615
616 vmcb->control.intercept &= ~(1ULL << bit);
617
618 recalc_intercepts(svm);
619}
620
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500621static inline bool vgif_enabled(struct vcpu_svm *svm)
622{
623 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
624}
625
Joerg Roedel2af91942009-08-07 11:49:28 +0200626static inline void enable_gif(struct vcpu_svm *svm)
627{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500628 if (vgif_enabled(svm))
629 svm->vmcb->control.int_ctl |= V_GIF_MASK;
630 else
631 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200632}
633
634static inline void disable_gif(struct vcpu_svm *svm)
635{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500636 if (vgif_enabled(svm))
637 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
638 else
639 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200640}
641
642static inline bool gif_set(struct vcpu_svm *svm)
643{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500644 if (vgif_enabled(svm))
645 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
646 else
647 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200648}
649
Avi Kivity6aa8b732006-12-10 02:21:36 -0800650static unsigned long iopm_base;
651
652struct kvm_ldttss_desc {
653 u16 limit0;
654 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100655 unsigned base1:8, type:5, dpl:2, p:1;
656 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657 u32 base3;
658 u32 zero1;
659} __attribute__((packed));
660
661struct svm_cpu_data {
662 int cpu;
663
Avi Kivity5008fdf2007-04-02 13:05:50 +0300664 u64 asid_generation;
665 u32 max_asid;
666 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600667 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800668 struct kvm_ldttss_desc *tss_desc;
669
670 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100671 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600672
673 /* index = sev_asid, value = vmcb pointer */
674 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675};
676
677static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
678
Mathias Krause09941fb2012-08-30 01:30:20 +0200679static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200681#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682#define MSRS_RANGE_SIZE 2048
683#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
684
Joerg Roedel455716f2010-03-01 15:34:35 +0100685static u32 svm_msrpm_offset(u32 msr)
686{
687 u32 offset;
688 int i;
689
690 for (i = 0; i < NUM_MSR_MAPS; i++) {
691 if (msr < msrpm_ranges[i] ||
692 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
693 continue;
694
695 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
696 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
697
698 /* Now we have the u8 offset - but need the u32 offset */
699 return offset / 4;
700 }
701
702 /* MSR not in any range */
703 return MSR_INVALID;
704}
705
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706#define MAX_INST_SIZE 15
707
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708static inline void clgi(void)
709{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100710 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711}
712
713static inline void stgi(void)
714{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100715 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716}
717
718static inline void invlpga(unsigned long addr, u32 asid)
719{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100720 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800721}
722
Yu Zhang855feb62017-08-24 20:27:55 +0800723static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200724{
725#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800726 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200727#else
728 return PT32E_ROOT_LEVEL;
729#endif
730}
731
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
733{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000734 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100735 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600736 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737
Alexander Graf9962d032008-11-25 20:17:02 +0100738 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100739 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740}
741
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742static int is_external_interrupt(u32 info)
743{
744 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
745 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
746}
747
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200748static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400749{
750 struct vcpu_svm *svm = to_svm(vcpu);
751 u32 ret = 0;
752
753 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200754 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
755 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400756}
757
758static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
759{
760 struct vcpu_svm *svm = to_svm(vcpu);
761
762 if (mask == 0)
763 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
764 else
765 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
766
767}
768
Avi Kivity6aa8b732006-12-10 02:21:36 -0800769static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
770{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400771 struct vcpu_svm *svm = to_svm(vcpu);
772
Bandan Dasf1047652015-06-11 02:05:33 -0400773 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200774 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200775 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400776 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200777
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400778 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700779 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300780 EMULATE_DONE)
781 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 return;
783 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300784 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
785 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
786 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300788 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400789 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790}
791
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700792static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100793{
794 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700795 unsigned nr = vcpu->arch.exception.nr;
796 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700797 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700798 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100799
Joerg Roedele0231712010-02-24 18:59:10 +0100800 /*
801 * If we are within a nested VM we'd better #VMEXIT and let the guest
802 * handle the exception
803 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200804 if (!reinject &&
805 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100806 return;
807
Jim Mattsonda998b42018-10-16 14:29:22 -0700808 kvm_deliver_exception_payload(&svm->vcpu);
809
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200810 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100811 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
812
813 /*
814 * For guest debugging where we have to reinject #BP if some
815 * INT3 is guest-owned:
816 * Emulate nRIP by moving RIP forward. Will fail if injection
817 * raises a fault that is not intercepted. Still better than
818 * failing in all cases.
819 */
820 skip_emulated_instruction(&svm->vcpu);
821 rip = kvm_rip_read(&svm->vcpu);
822 svm->int3_rip = rip + svm->vmcb->save.cs.base;
823 svm->int3_injected = rip - old_rip;
824 }
825
Jan Kiszka116a4752010-02-23 17:47:54 +0100826 svm->vmcb->control.event_inj = nr
827 | SVM_EVTINJ_VALID
828 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
829 | SVM_EVTINJ_TYPE_EXEPT;
830 svm->vmcb->control.event_inj_err = error_code;
831}
832
Joerg Roedel67ec6602010-05-17 14:43:35 +0200833static void svm_init_erratum_383(void)
834{
835 u32 low, high;
836 int err;
837 u64 val;
838
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100839 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200840 return;
841
842 /* Use _safe variants to not break nested virtualization */
843 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
844 if (err)
845 return;
846
847 val |= (1ULL << 47);
848
849 low = lower_32_bits(val);
850 high = upper_32_bits(val);
851
852 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
853
854 erratum_383_found = true;
855}
856
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500857static void svm_init_osvw(struct kvm_vcpu *vcpu)
858{
859 /*
860 * Guests should see errata 400 and 415 as fixed (assuming that
861 * HLT and IO instructions are intercepted).
862 */
863 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
864 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
865
866 /*
867 * By increasing VCPU's osvw.length to 3 we are telling the guest that
868 * all osvw.status bits inside that length, including bit 0 (which is
869 * reserved for erratum 298), are valid. However, if host processor's
870 * osvw_len is 0 then osvw_status[0] carries no information. We need to
871 * be conservative here and therefore we tell the guest that erratum 298
872 * is present (because we really don't know).
873 */
874 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
875 vcpu->arch.osvw.status |= 1;
876}
877
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878static int has_svm(void)
879{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200880 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881
Eduardo Habkost63d11422008-11-17 19:03:20 -0200882 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800883 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800884 return 0;
885 }
886
Avi Kivity6aa8b732006-12-10 02:21:36 -0800887 return 1;
888}
889
Radim Krčmář13a34e02014-08-28 15:13:03 +0200890static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100892 /* Make sure we clean up behind us */
893 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
894 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
895
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200896 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100897
898 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899}
900
Radim Krčmář13a34e02014-08-28 15:13:03 +0200901static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800902{
903
Tejun Heo0fe1e002009-10-29 22:34:14 +0900904 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 struct desc_struct *gdt;
907 int me = raw_smp_processor_id();
908
Alexander Graf10474ae2009-09-15 11:37:46 +0200909 rdmsrl(MSR_EFER, efer);
910 if (efer & EFER_SVME)
911 return -EBUSY;
912
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200914 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200915 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800916 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900917 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900918 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200919 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200920 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 }
922
Tejun Heo0fe1e002009-10-29 22:34:14 +0900923 sd->asid_generation = 1;
924 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
925 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600926 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927
Thomas Garnier45fc8752017-03-14 10:05:08 -0700928 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900929 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930
Alexander Graf9962d032008-11-25 20:17:02 +0100931 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932
Linus Torvaldsd0316552009-12-14 09:58:24 -0800933 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200934
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100935 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
936 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500937 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100938 }
939
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500940
941 /*
942 * Get OSVW bits.
943 *
944 * Note that it is possible to have a system with mixed processor
945 * revisions and therefore different OSVW bits. If bits are not the same
946 * on different processors then choose the worst case (i.e. if erratum
947 * is present on one processor and not on another then assume that the
948 * erratum is present everywhere).
949 */
950 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
951 uint64_t len, status = 0;
952 int err;
953
954 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
955 if (!err)
956 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
957 &err);
958
959 if (err)
960 osvw_status = osvw_len = 0;
961 else {
962 if (len < osvw_len)
963 osvw_len = len;
964 osvw_status |= status;
965 osvw_status &= (1ULL << osvw_len) - 1;
966 }
967 } else
968 osvw_status = osvw_len = 0;
969
Joerg Roedel67ec6602010-05-17 14:43:35 +0200970 svm_init_erratum_383();
971
Joerg Roedel1018faa2012-02-29 14:57:32 +0100972 amd_pmu_enable_virt();
973
Alexander Graf10474ae2009-09-15 11:37:46 +0200974 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975}
976
Joerg Roedel0da1db752008-07-02 16:02:11 +0200977static void svm_cpu_uninit(int cpu)
978{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900979 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200980
Tejun Heo0fe1e002009-10-29 22:34:14 +0900981 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200982 return;
983
984 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600985 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900986 __free_page(sd->save_area);
987 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200988}
989
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990static int svm_cpu_init(int cpu)
991{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900992 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993 int r;
994
Tejun Heo0fe1e002009-10-29 22:34:14 +0900995 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
996 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900998 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001000 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001001 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 goto err_1;
1003
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001004 if (svm_sev_enabled()) {
1005 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001006 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1007 sizeof(void *),
1008 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001009 if (!sd->sev_vmcbs)
1010 goto err_1;
1011 }
1012
Tejun Heo0fe1e002009-10-29 22:34:14 +09001013 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014
1015 return 0;
1016
1017err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001018 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019 return r;
1020
1021}
1022
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001023static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001024{
1025 int i;
1026
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001027 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1028 if (direct_access_msrs[i].index == index)
1029 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001030
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001031 return false;
1032}
1033
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001034static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1035{
1036 u8 bit_write;
1037 unsigned long tmp;
1038 u32 offset;
1039 u32 *msrpm;
1040
1041 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1042 to_svm(vcpu)->msrpm;
1043
1044 offset = svm_msrpm_offset(msr);
1045 bit_write = 2 * (msr & 0x0f) + 1;
1046 tmp = msrpm[offset];
1047
1048 BUG_ON(offset == MSR_INVALID);
1049
1050 return !!test_bit(bit_write, &tmp);
1051}
1052
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053static void set_msr_interception(u32 *msrpm, unsigned msr,
1054 int read, int write)
1055{
Joerg Roedel455716f2010-03-01 15:34:35 +01001056 u8 bit_read, bit_write;
1057 unsigned long tmp;
1058 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001060 /*
1061 * If this warning triggers extend the direct_access_msrs list at the
1062 * beginning of the file
1063 */
1064 WARN_ON(!valid_msr_intercept(msr));
1065
Joerg Roedel455716f2010-03-01 15:34:35 +01001066 offset = svm_msrpm_offset(msr);
1067 bit_read = 2 * (msr & 0x0f);
1068 bit_write = 2 * (msr & 0x0f) + 1;
1069 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001070
Joerg Roedel455716f2010-03-01 15:34:35 +01001071 BUG_ON(offset == MSR_INVALID);
1072
1073 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1074 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1075
1076 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077}
1078
Joerg Roedelf65c2292008-02-13 18:58:46 +01001079static void svm_vcpu_init_msrpm(u32 *msrpm)
1080{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001081 int i;
1082
Joerg Roedelf65c2292008-02-13 18:58:46 +01001083 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1084
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001085 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1086 if (!direct_access_msrs[i].always)
1087 continue;
1088
1089 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1090 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001091}
1092
Joerg Roedel323c3d82010-03-01 15:34:37 +01001093static void add_msr_offset(u32 offset)
1094{
1095 int i;
1096
1097 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1098
1099 /* Offset already in list? */
1100 if (msrpm_offsets[i] == offset)
1101 return;
1102
1103 /* Slot used by another offset? */
1104 if (msrpm_offsets[i] != MSR_INVALID)
1105 continue;
1106
1107 /* Add offset to list */
1108 msrpm_offsets[i] = offset;
1109
1110 return;
1111 }
1112
1113 /*
1114 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1115 * increase MSRPM_OFFSETS in this case.
1116 */
1117 BUG();
1118}
1119
1120static void init_msrpm_offsets(void)
1121{
1122 int i;
1123
1124 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1125
1126 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1127 u32 offset;
1128
1129 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1130 BUG_ON(offset == MSR_INVALID);
1131
1132 add_msr_offset(offset);
1133 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134}
1135
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001136static void svm_enable_lbrv(struct vcpu_svm *svm)
1137{
1138 u32 *msrpm = svm->msrpm;
1139
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001140 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001141 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1142 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1143 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1144 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1145}
1146
1147static void svm_disable_lbrv(struct vcpu_svm *svm)
1148{
1149 u32 *msrpm = svm->msrpm;
1150
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001151 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001152 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1153 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1154 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1155 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1156}
1157
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001158static void disable_nmi_singlestep(struct vcpu_svm *svm)
1159{
1160 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001161
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001162 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1163 /* Clear our flags if they were not set by the guest */
1164 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1165 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1166 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1167 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1168 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001169}
1170
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001171/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001172 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001173 * when handling AMD IOMMU GALOG notification to schedule in
1174 * a particular vCPU.
1175 */
1176#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001177static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001178static u32 next_vm_id = 0;
1179static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001180static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001181
1182/* Note:
1183 * This function is called from IOMMU driver to notify
1184 * SVM to schedule in a particular vCPU of a particular VM.
1185 */
1186static int avic_ga_log_notifier(u32 ga_tag)
1187{
1188 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001189 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001190 struct kvm_vcpu *vcpu = NULL;
1191 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1192 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1193
1194 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1195
1196 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001197 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1198 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001199 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001200 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001201 break;
1202 }
1203 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1204
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001205 /* Note:
1206 * At this point, the IOMMU should have already set the pending
1207 * bit in the vAPIC backing page. So, we just need to schedule
1208 * in the vcpu.
1209 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001210 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001211 kvm_vcpu_wake_up(vcpu);
1212
1213 return 0;
1214}
1215
Brijesh Singhe9df0942017-12-04 10:57:33 -06001216static __init int sev_hardware_setup(void)
1217{
1218 struct sev_user_data_status *status;
1219 int rc;
1220
1221 /* Maximum number of encrypted guests supported simultaneously */
1222 max_sev_asid = cpuid_ecx(0x8000001F);
1223
1224 if (!max_sev_asid)
1225 return 1;
1226
Brijesh Singh1654efc2017-12-04 10:57:34 -06001227 /* Minimum ASID value that should be used for SEV guest */
1228 min_sev_asid = cpuid_edx(0x8000001F);
1229
1230 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001231 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001232 if (!sev_asid_bitmap)
1233 return 1;
1234
Brijesh Singhe9df0942017-12-04 10:57:33 -06001235 status = kmalloc(sizeof(*status), GFP_KERNEL);
1236 if (!status)
1237 return 1;
1238
1239 /*
1240 * Check SEV platform status.
1241 *
1242 * PLATFORM_STATUS can be called in any state, if we failed to query
1243 * the PLATFORM status then either PSP firmware does not support SEV
1244 * feature or SEV firmware is dead.
1245 */
1246 rc = sev_platform_status(status, NULL);
1247 if (rc)
1248 goto err;
1249
1250 pr_info("SEV supported\n");
1251
1252err:
1253 kfree(status);
1254 return rc;
1255}
1256
Babu Moger8566ac82018-03-16 16:37:26 -04001257static void grow_ple_window(struct kvm_vcpu *vcpu)
1258{
1259 struct vcpu_svm *svm = to_svm(vcpu);
1260 struct vmcb_control_area *control = &svm->vmcb->control;
1261 int old = control->pause_filter_count;
1262
1263 control->pause_filter_count = __grow_ple_window(old,
1264 pause_filter_count,
1265 pause_filter_count_grow,
1266 pause_filter_count_max);
1267
1268 if (control->pause_filter_count != old)
1269 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1270
1271 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1272 control->pause_filter_count, old);
1273}
1274
1275static void shrink_ple_window(struct kvm_vcpu *vcpu)
1276{
1277 struct vcpu_svm *svm = to_svm(vcpu);
1278 struct vmcb_control_area *control = &svm->vmcb->control;
1279 int old = control->pause_filter_count;
1280
1281 control->pause_filter_count =
1282 __shrink_ple_window(old,
1283 pause_filter_count,
1284 pause_filter_count_shrink,
1285 pause_filter_count);
1286 if (control->pause_filter_count != old)
1287 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1288
1289 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1290 control->pause_filter_count, old);
1291}
1292
Avi Kivity6aa8b732006-12-10 02:21:36 -08001293static __init int svm_hardware_setup(void)
1294{
1295 int cpu;
1296 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001297 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 int r;
1299
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1301
1302 if (!iopm_pages)
1303 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001304
1305 iopm_va = page_address(iopm_pages);
1306 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1308
Joerg Roedel323c3d82010-03-01 15:34:37 +01001309 init_msrpm_offsets();
1310
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001311 if (boot_cpu_has(X86_FEATURE_NX))
1312 kvm_enable_efer_bits(EFER_NX);
1313
Alexander Graf1b2fd702009-02-02 16:23:51 +01001314 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1315 kvm_enable_efer_bits(EFER_FFXSR);
1316
Joerg Roedel92a1f122011-03-25 09:44:51 +01001317 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001318 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001319 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1320 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001321 }
1322
Babu Moger8566ac82018-03-16 16:37:26 -04001323 /* Check for pause filtering support */
1324 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1325 pause_filter_count = 0;
1326 pause_filter_thresh = 0;
1327 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1328 pause_filter_thresh = 0;
1329 }
1330
Alexander Graf236de052008-11-25 20:17:10 +01001331 if (nested) {
1332 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001333 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001334 }
1335
Brijesh Singhe9df0942017-12-04 10:57:33 -06001336 if (sev) {
1337 if (boot_cpu_has(X86_FEATURE_SEV) &&
1338 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1339 r = sev_hardware_setup();
1340 if (r)
1341 sev = false;
1342 } else {
1343 sev = false;
1344 }
1345 }
1346
Zachary Amsden3230bb42009-09-29 11:38:37 -10001347 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 r = svm_cpu_init(cpu);
1349 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001350 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001352
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001353 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001354 npt_enabled = false;
1355
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001356 if (npt_enabled && !npt) {
1357 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1358 npt_enabled = false;
1359 }
1360
Joerg Roedel18552672008-02-07 13:47:41 +01001361 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001362 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001363 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001364 } else
1365 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001366
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001367 if (avic) {
1368 if (!npt_enabled ||
1369 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001370 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001371 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001372 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001373 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001374
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001375 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1376 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001377 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001378
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001379 if (vls) {
1380 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001381 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001382 !IS_ENABLED(CONFIG_X86_64)) {
1383 vls = false;
1384 } else {
1385 pr_info("Virtual VMLOAD VMSAVE supported\n");
1386 }
1387 }
1388
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001389 if (vgif) {
1390 if (!boot_cpu_has(X86_FEATURE_VGIF))
1391 vgif = false;
1392 else
1393 pr_info("Virtual GIF supported\n");
1394 }
1395
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396 return 0;
1397
Joerg Roedelf65c2292008-02-13 18:58:46 +01001398err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001399 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1400 iopm_base = 0;
1401 return r;
1402}
1403
1404static __exit void svm_hardware_unsetup(void)
1405{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001406 int cpu;
1407
Brijesh Singh1654efc2017-12-04 10:57:34 -06001408 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001409 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001410
Zachary Amsden3230bb42009-09-29 11:38:37 -10001411 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001412 svm_cpu_uninit(cpu);
1413
Avi Kivity6aa8b732006-12-10 02:21:36 -08001414 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001415 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416}
1417
1418static void init_seg(struct vmcb_seg *seg)
1419{
1420 seg->selector = 0;
1421 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001422 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423 seg->limit = 0xffff;
1424 seg->base = 0;
1425}
1426
1427static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1428{
1429 seg->selector = 0;
1430 seg->attrib = SVM_SELECTOR_P_MASK | type;
1431 seg->limit = 0xffff;
1432 seg->base = 0;
1433}
1434
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001435static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1436{
1437 struct vcpu_svm *svm = to_svm(vcpu);
1438
1439 if (is_guest_mode(vcpu))
1440 return svm->nested.hsave->control.tsc_offset;
1441
1442 return vcpu->arch.tsc_offset;
1443}
1444
Leonid Shatz326e7422018-11-06 12:14:25 +02001445static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001446{
1447 struct vcpu_svm *svm = to_svm(vcpu);
1448 u64 g_tsc_offset = 0;
1449
Joerg Roedel20307532010-11-29 17:51:48 +01001450 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001451 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001452 g_tsc_offset = svm->vmcb->control.tsc_offset -
1453 svm->nested.hsave->control.tsc_offset;
1454 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001455 }
1456
1457 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1458 svm->vmcb->control.tsc_offset - g_tsc_offset,
1459 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001460
1461 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001462
1463 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001464 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001465}
1466
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001467static void avic_init_vmcb(struct vcpu_svm *svm)
1468{
1469 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001470 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001471 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001472 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1473 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001474
1475 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1476 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1477 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1478 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1479 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001480}
1481
Paolo Bonzini56908912015-10-19 11:30:19 +02001482static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483{
Joerg Roedele6101a92008-02-13 18:58:45 +01001484 struct vmcb_control_area *control = &svm->vmcb->control;
1485 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001487 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001488
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001489 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1490 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1491 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1492 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1493 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1494 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001495 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1496 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497
Paolo Bonzini5315c712014-03-03 13:08:29 +01001498 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499
Joerg Roedel18c918c2010-11-30 18:03:59 +01001500 set_exception_intercept(svm, PF_VECTOR);
1501 set_exception_intercept(svm, UD_VECTOR);
1502 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001503 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001504 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001505 /*
1506 * Guest access to VMware backdoor ports could legitimately
1507 * trigger #GP because of TSS I/O permission bitmap.
1508 * We intercept those #GP and allow access to them anyway
1509 * as VMware does.
1510 */
1511 if (enable_vmware_backdoor)
1512 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001513
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001514 set_intercept(svm, INTERCEPT_INTR);
1515 set_intercept(svm, INTERCEPT_NMI);
1516 set_intercept(svm, INTERCEPT_SMI);
1517 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001518 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001519 set_intercept(svm, INTERCEPT_CPUID);
1520 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001521 set_intercept(svm, INTERCEPT_INVLPG);
1522 set_intercept(svm, INTERCEPT_INVLPGA);
1523 set_intercept(svm, INTERCEPT_IOIO_PROT);
1524 set_intercept(svm, INTERCEPT_MSR_PROT);
1525 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1526 set_intercept(svm, INTERCEPT_SHUTDOWN);
1527 set_intercept(svm, INTERCEPT_VMRUN);
1528 set_intercept(svm, INTERCEPT_VMMCALL);
1529 set_intercept(svm, INTERCEPT_VMLOAD);
1530 set_intercept(svm, INTERCEPT_VMSAVE);
1531 set_intercept(svm, INTERCEPT_STGI);
1532 set_intercept(svm, INTERCEPT_CLGI);
1533 set_intercept(svm, INTERCEPT_SKINIT);
1534 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001535 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001536 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001537
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001538 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001539 set_intercept(svm, INTERCEPT_MONITOR);
1540 set_intercept(svm, INTERCEPT_MWAIT);
1541 }
1542
Wanpeng Licaa057a2018-03-12 04:53:03 -07001543 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1544 set_intercept(svm, INTERCEPT_HLT);
1545
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001546 control->iopm_base_pa = __sme_set(iopm_base);
1547 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001548 control->int_ctl = V_INTR_MASKING_MASK;
1549
1550 init_seg(&save->es);
1551 init_seg(&save->ss);
1552 init_seg(&save->ds);
1553 init_seg(&save->fs);
1554 init_seg(&save->gs);
1555
1556 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001557 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558 /* Executable/Readable Code Segment */
1559 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1560 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1561 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562
1563 save->gdtr.limit = 0xffff;
1564 save->idtr.limit = 0xffff;
1565
1566 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1567 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1568
Paolo Bonzini56908912015-10-19 11:30:19 +02001569 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001570 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001571 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001573 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574
Joerg Roedele0231712010-02-24 18:59:10 +01001575 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001576 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001577 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001579 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001580 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001581
Rusty Russell66aee912007-07-17 23:34:16 +10001582 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001584
1585 if (npt_enabled) {
1586 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001587 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001588 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001589 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001590 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1591 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001592 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001593 save->cr3 = 0;
1594 save->cr4 = 0;
1595 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001596 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001597
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001598 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001599 svm->vcpu.arch.hflags = 0;
1600
Babu Moger8566ac82018-03-16 16:37:26 -04001601 if (pause_filter_count) {
1602 control->pause_filter_count = pause_filter_count;
1603 if (pause_filter_thresh)
1604 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001605 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001606 } else {
1607 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001608 }
1609
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001610 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001611 avic_init_vmcb(svm);
1612
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001613 /*
1614 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1615 * in VMCB and clear intercepts to avoid #VMEXIT.
1616 */
1617 if (vls) {
1618 clr_intercept(svm, INTERCEPT_VMLOAD);
1619 clr_intercept(svm, INTERCEPT_VMSAVE);
1620 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1621 }
1622
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001623 if (vgif) {
1624 clr_intercept(svm, INTERCEPT_STGI);
1625 clr_intercept(svm, INTERCEPT_CLGI);
1626 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1627 }
1628
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001629 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001630 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001631 clr_exception_intercept(svm, UD_VECTOR);
1632 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001633
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001634 mark_all_dirty(svm->vmcb);
1635
Joerg Roedel2af91942009-08-07 11:49:28 +02001636 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001637
1638}
1639
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001640static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1641 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001642{
1643 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001644 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001645
1646 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1647 return NULL;
1648
Sean Christopherson81811c12018-03-20 12:17:21 -07001649 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001650
1651 return &avic_physical_id_table[index];
1652}
1653
1654/**
1655 * Note:
1656 * AVIC hardware walks the nested page table to check permissions,
1657 * but does not use the SPA address specified in the leaf page
1658 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1659 * field of the VMCB. Therefore, we set up the
1660 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1661 */
1662static int avic_init_access_page(struct kvm_vcpu *vcpu)
1663{
1664 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001665 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001666
Wei Wang30510382018-11-12 12:23:14 +00001667 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001668 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001669 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001670
Wei Wang30510382018-11-12 12:23:14 +00001671 ret = __x86_set_memory_region(kvm,
1672 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1673 APIC_DEFAULT_PHYS_BASE,
1674 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001675 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001676 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001677
1678 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001679out:
1680 mutex_unlock(&kvm->slots_lock);
1681 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001682}
1683
1684static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1685{
1686 int ret;
1687 u64 *entry, new_entry;
1688 int id = vcpu->vcpu_id;
1689 struct vcpu_svm *svm = to_svm(vcpu);
1690
1691 ret = avic_init_access_page(vcpu);
1692 if (ret)
1693 return ret;
1694
1695 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1696 return -EINVAL;
1697
1698 if (!svm->vcpu.arch.apic->regs)
1699 return -EINVAL;
1700
1701 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1702
1703 /* Setting AVIC backing page address in the phy APIC ID table */
1704 entry = avic_get_physical_id_entry(vcpu, id);
1705 if (!entry)
1706 return -EINVAL;
1707
1708 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001709 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1710 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1711 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001712 WRITE_ONCE(*entry, new_entry);
1713
1714 svm->avic_physical_id_cache = entry;
1715
1716 return 0;
1717}
1718
Brijesh Singh1654efc2017-12-04 10:57:34 -06001719static void __sev_asid_free(int asid)
1720{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001721 struct svm_cpu_data *sd;
1722 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001723
1724 pos = asid - 1;
1725 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001726
1727 for_each_possible_cpu(cpu) {
1728 sd = per_cpu(svm_data, cpu);
1729 sd->sev_vmcbs[pos] = NULL;
1730 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001731}
1732
1733static void sev_asid_free(struct kvm *kvm)
1734{
Sean Christopherson81811c12018-03-20 12:17:21 -07001735 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001736
1737 __sev_asid_free(sev->asid);
1738}
1739
Brijesh Singh59414c92017-12-04 10:57:35 -06001740static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1741{
1742 struct sev_data_decommission *decommission;
1743 struct sev_data_deactivate *data;
1744
1745 if (!handle)
1746 return;
1747
1748 data = kzalloc(sizeof(*data), GFP_KERNEL);
1749 if (!data)
1750 return;
1751
1752 /* deactivate handle */
1753 data->handle = handle;
1754 sev_guest_deactivate(data, NULL);
1755
1756 wbinvd_on_all_cpus();
1757 sev_guest_df_flush(NULL);
1758 kfree(data);
1759
1760 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1761 if (!decommission)
1762 return;
1763
1764 /* decommission handle */
1765 decommission->handle = handle;
1766 sev_guest_decommission(decommission, NULL);
1767
1768 kfree(decommission);
1769}
1770
Brijesh Singh89c50582017-12-04 10:57:35 -06001771static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1772 unsigned long ulen, unsigned long *n,
1773 int write)
1774{
Sean Christopherson81811c12018-03-20 12:17:21 -07001775 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001776 unsigned long npages, npinned, size;
1777 unsigned long locked, lock_limit;
1778 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001779 unsigned long first, last;
1780
1781 if (ulen == 0 || uaddr + ulen < uaddr)
1782 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001783
1784 /* Calculate number of pages. */
1785 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1786 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1787 npages = (last - first + 1);
1788
1789 locked = sev->pages_locked + npages;
1790 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1791 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1792 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1793 return NULL;
1794 }
1795
1796 /* Avoid using vmalloc for smaller buffers. */
1797 size = npages * sizeof(struct page *);
1798 if (size > PAGE_SIZE)
Ben Gardon1ec69642019-02-11 11:02:51 -08001799 pages = __vmalloc(size, GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1800 PAGE_KERNEL);
Brijesh Singh89c50582017-12-04 10:57:35 -06001801 else
Ben Gardon1ec69642019-02-11 11:02:51 -08001802 pages = kmalloc(size, GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06001803
1804 if (!pages)
1805 return NULL;
1806
1807 /* Pin the user virtual address. */
1808 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1809 if (npinned != npages) {
1810 pr_err("SEV: Failure locking %lu pages.\n", npages);
1811 goto err;
1812 }
1813
1814 *n = npages;
1815 sev->pages_locked = locked;
1816
1817 return pages;
1818
1819err:
1820 if (npinned > 0)
1821 release_pages(pages, npinned);
1822
1823 kvfree(pages);
1824 return NULL;
1825}
1826
1827static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1828 unsigned long npages)
1829{
Sean Christopherson81811c12018-03-20 12:17:21 -07001830 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001831
1832 release_pages(pages, npages);
1833 kvfree(pages);
1834 sev->pages_locked -= npages;
1835}
1836
1837static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1838{
1839 uint8_t *page_virtual;
1840 unsigned long i;
1841
1842 if (npages == 0 || pages == NULL)
1843 return;
1844
1845 for (i = 0; i < npages; i++) {
1846 page_virtual = kmap_atomic(pages[i]);
1847 clflush_cache_range(page_virtual, PAGE_SIZE);
1848 kunmap_atomic(page_virtual);
1849 }
1850}
1851
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001852static void __unregister_enc_region_locked(struct kvm *kvm,
1853 struct enc_region *region)
1854{
1855 /*
1856 * The guest may change the memory encryption attribute from C=0 -> C=1
1857 * or vice versa for this memory range. Lets make sure caches are
1858 * flushed to ensure that guest data gets written into memory with
1859 * correct C-bit.
1860 */
1861 sev_clflush_pages(region->pages, region->npages);
1862
1863 sev_unpin_memory(kvm, region->pages, region->npages);
1864 list_del(&region->list);
1865 kfree(region);
1866}
1867
Sean Christopherson434a1e92018-03-20 12:17:18 -07001868static struct kvm *svm_vm_alloc(void)
1869{
Ben Gardon1ec69642019-02-11 11:02:51 -08001870 struct kvm_svm *kvm_svm = __vmalloc(sizeof(struct kvm_svm),
1871 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
1872 PAGE_KERNEL);
Sean Christopherson81811c12018-03-20 12:17:21 -07001873 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001874}
1875
1876static void svm_vm_free(struct kvm *kvm)
1877{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001878 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001879}
1880
Brijesh Singh1654efc2017-12-04 10:57:34 -06001881static void sev_vm_destroy(struct kvm *kvm)
1882{
Sean Christopherson81811c12018-03-20 12:17:21 -07001883 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001884 struct list_head *head = &sev->regions_list;
1885 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001886
Brijesh Singh1654efc2017-12-04 10:57:34 -06001887 if (!sev_guest(kvm))
1888 return;
1889
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001890 mutex_lock(&kvm->lock);
1891
1892 /*
1893 * if userspace was terminated before unregistering the memory regions
1894 * then lets unpin all the registered memory.
1895 */
1896 if (!list_empty(head)) {
1897 list_for_each_safe(pos, q, head) {
1898 __unregister_enc_region_locked(kvm,
1899 list_entry(pos, struct enc_region, list));
1900 }
1901 }
1902
1903 mutex_unlock(&kvm->lock);
1904
Brijesh Singh59414c92017-12-04 10:57:35 -06001905 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001906 sev_asid_free(kvm);
1907}
1908
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001909static void avic_vm_destroy(struct kvm *kvm)
1910{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001911 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001912 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001913
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001914 if (!avic)
1915 return;
1916
Sean Christopherson81811c12018-03-20 12:17:21 -07001917 if (kvm_svm->avic_logical_id_table_page)
1918 __free_page(kvm_svm->avic_logical_id_table_page);
1919 if (kvm_svm->avic_physical_id_table_page)
1920 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001921
1922 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001923 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001924 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001925}
1926
Brijesh Singh1654efc2017-12-04 10:57:34 -06001927static void svm_vm_destroy(struct kvm *kvm)
1928{
1929 avic_vm_destroy(kvm);
1930 sev_vm_destroy(kvm);
1931}
1932
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001933static int avic_vm_init(struct kvm *kvm)
1934{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001935 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001936 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001937 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1938 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001939 struct page *p_page;
1940 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001941 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001942
1943 if (!avic)
1944 return 0;
1945
1946 /* Allocating physical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001947 p_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001948 if (!p_page)
1949 goto free_avic;
1950
Sean Christopherson81811c12018-03-20 12:17:21 -07001951 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001952 clear_page(page_address(p_page));
1953
1954 /* Allocating logical APIC ID table (4KB) */
Ben Gardon1ec69642019-02-11 11:02:51 -08001955 l_page = alloc_page(GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001956 if (!l_page)
1957 goto free_avic;
1958
Sean Christopherson81811c12018-03-20 12:17:21 -07001959 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001960 clear_page(page_address(l_page));
1961
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001962 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001963 again:
1964 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1965 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1966 next_vm_id_wrapped = 1;
1967 goto again;
1968 }
1969 /* Is it still in use? Only possible if wrapped at least once */
1970 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001971 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1972 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001973 goto again;
1974 }
1975 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001976 kvm_svm->avic_vm_id = vm_id;
1977 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001978 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1979
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001980 return 0;
1981
1982free_avic:
1983 avic_vm_destroy(kvm);
1984 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985}
1986
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001987static inline int
1988avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001989{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001990 int ret = 0;
1991 unsigned long flags;
1992 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001993 struct vcpu_svm *svm = to_svm(vcpu);
1994
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001995 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1996 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001997
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001998 /*
1999 * Here, we go through the per-vcpu ir_list to update all existing
2000 * interrupt remapping table entry targeting this vcpu.
2001 */
2002 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002003
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002004 if (list_empty(&svm->ir_list))
2005 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002006
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002007 list_for_each_entry(ir, &svm->ir_list, node) {
2008 ret = amd_iommu_update_ga(cpu, r, ir->data);
2009 if (ret)
2010 break;
2011 }
2012out:
2013 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2014 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002015}
2016
2017static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2018{
2019 u64 entry;
2020 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002021 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002022 struct vcpu_svm *svm = to_svm(vcpu);
2023
2024 if (!kvm_vcpu_apicv_active(vcpu))
2025 return;
2026
2027 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2028 return;
2029
2030 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2031 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2032
2033 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2034 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2035
2036 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2037 if (svm->avic_is_running)
2038 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2039
2040 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002041 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2042 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002043}
2044
2045static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2046{
2047 u64 entry;
2048 struct vcpu_svm *svm = to_svm(vcpu);
2049
2050 if (!kvm_vcpu_apicv_active(vcpu))
2051 return;
2052
2053 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002054 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2055 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2056
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002057 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2058 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002059}
2060
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002061/**
2062 * This function is called during VCPU halt/unhalt.
2063 */
2064static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2065{
2066 struct vcpu_svm *svm = to_svm(vcpu);
2067
2068 svm->avic_is_running = is_run;
2069 if (is_run)
2070 avic_vcpu_load(vcpu, vcpu->cpu);
2071 else
2072 avic_vcpu_put(vcpu);
2073}
2074
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002075static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002076{
2077 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002078 u32 dummy;
2079 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002080
Wanpeng Li518e7b92018-02-28 14:03:31 +08002081 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002082 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002083 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002084
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002085 if (!init_event) {
2086 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2087 MSR_IA32_APICBASE_ENABLE;
2088 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2089 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2090 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002091 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002092
Yu Zhange911eb32017-08-24 20:27:52 +08002093 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002094 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002095
2096 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2097 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002098}
2099
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002100static int avic_init_vcpu(struct vcpu_svm *svm)
2101{
2102 int ret;
2103
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002104 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002105 return 0;
2106
2107 ret = avic_init_backing_page(&svm->vcpu);
2108 if (ret)
2109 return ret;
2110
2111 INIT_LIST_HEAD(&svm->ir_list);
2112 spin_lock_init(&svm->ir_list_lock);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00002113 svm->dfr_reg = APIC_DFR_FLAT;
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002114
2115 return ret;
2116}
2117
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002118static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002119{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002120 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002121 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002122 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002123 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002124 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002125 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002126
Ben Gardon1ec69642019-02-11 11:02:51 -08002127 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002128 if (!svm) {
2129 err = -ENOMEM;
2130 goto out;
2131 }
2132
Ben Gardon1ec69642019-02-11 11:02:51 -08002133 svm->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
2134 GFP_KERNEL_ACCOUNT);
Marc Orrb666a4b2018-11-06 14:53:56 -08002135 if (!svm->vcpu.arch.guest_fpu) {
2136 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
2137 err = -ENOMEM;
2138 goto free_partial_svm;
2139 }
2140
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002141 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2142 if (err)
2143 goto free_svm;
2144
Joerg Roedelf65c2292008-02-13 18:58:46 +01002145 err = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08002146 page = alloc_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002147 if (!page)
2148 goto uninit;
2149
Ben Gardon1ec69642019-02-11 11:02:51 -08002150 msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01002151 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002152 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002153
Ben Gardon1ec69642019-02-11 11:02:51 -08002154 nested_msrpm_pages = alloc_pages(GFP_KERNEL_ACCOUNT, MSRPM_ALLOC_ORDER);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002155 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002156 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002157
Ben Gardon1ec69642019-02-11 11:02:51 -08002158 hsave_page = alloc_page(GFP_KERNEL_ACCOUNT);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002159 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002160 goto free_page3;
2161
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002162 err = avic_init_vcpu(svm);
2163 if (err)
2164 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002165
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002166 /* We initialize this flag to true to make sure that the is_running
2167 * bit would be set the first time the vcpu is loaded.
2168 */
2169 svm->avic_is_running = true;
2170
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002171 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002172
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002173 svm->msrpm = page_address(msrpm_pages);
2174 svm_vcpu_init_msrpm(svm->msrpm);
2175
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002176 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002177 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002178
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002179 svm->vmcb = page_address(page);
2180 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002181 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002182 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002183 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002184
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002185 svm_init_osvw(&svm->vcpu);
2186
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002187 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002188
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002189free_page4:
2190 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002191free_page3:
2192 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2193free_page2:
2194 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2195free_page1:
2196 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002197uninit:
2198 kvm_vcpu_uninit(&svm->vcpu);
2199free_svm:
Marc Orrb666a4b2018-11-06 14:53:56 -08002200 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
2201free_partial_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002202 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002203out:
2204 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205}
2206
Jim Mattsonfd65d312018-05-22 09:54:20 -07002207static void svm_clear_current_vmcb(struct vmcb *vmcb)
2208{
2209 int i;
2210
2211 for_each_online_cpu(i)
2212 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2213}
2214
Avi Kivity6aa8b732006-12-10 02:21:36 -08002215static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2216{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002217 struct vcpu_svm *svm = to_svm(vcpu);
2218
Jim Mattsonfd65d312018-05-22 09:54:20 -07002219 /*
2220 * The vmcb page can be recycled, causing a false negative in
2221 * svm_vcpu_load(). So, ensure that no logical CPU has this
2222 * vmcb page recorded as its current vmcb.
2223 */
2224 svm_clear_current_vmcb(svm->vmcb);
2225
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002226 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002227 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002228 __free_page(virt_to_page(svm->nested.hsave));
2229 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002230 kvm_vcpu_uninit(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002231 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10002232 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002233}
2234
Avi Kivity15ad7142007-07-11 18:17:21 +03002235static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002236{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002237 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002238 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002239 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002240
Avi Kivity0cc50642007-03-25 12:07:27 +02002241 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002242 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002243 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002244 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002245
Avi Kivity82ca2d12010-10-21 12:20:34 +02002246#ifdef CONFIG_X86_64
2247 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2248#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002249 savesegment(fs, svm->host.fs);
2250 savesegment(gs, svm->host.gs);
2251 svm->host.ldt = kvm_read_ldt();
2252
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002253 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002254 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002255
Haozhong Zhangad7218832015-10-20 15:39:02 +08002256 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2257 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2258 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2259 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2260 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2261 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002262 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002263 /* This assumes that the kernel never uses MSR_TSC_AUX */
2264 if (static_cpu_has(X86_FEATURE_RDTSCP))
2265 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002266
Ashok Raj15d45072018-02-01 22:59:43 +01002267 if (sd->current_vmcb != svm->vmcb) {
2268 sd->current_vmcb = svm->vmcb;
2269 indirect_branch_prediction_barrier();
2270 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002271 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272}
2273
2274static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2275{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002276 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002277 int i;
2278
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002279 avic_vcpu_put(vcpu);
2280
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002281 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002282 kvm_load_ldt(svm->host.ldt);
2283#ifdef CONFIG_X86_64
2284 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002285 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002286 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002287#else
Avi Kivity831ca602011-03-08 16:09:51 +02002288#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002289 loadsegment(gs, svm->host.gs);
2290#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002291#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002292 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002293 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294}
2295
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002296static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2297{
2298 avic_set_running(vcpu, false);
2299}
2300
2301static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2302{
2303 avic_set_running(vcpu, true);
2304}
2305
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2307{
Ladi Prosek9b611742017-06-21 09:06:59 +02002308 struct vcpu_svm *svm = to_svm(vcpu);
2309 unsigned long rflags = svm->vmcb->save.rflags;
2310
2311 if (svm->nmi_singlestep) {
2312 /* Hide our flags if they were not set by the guest */
2313 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2314 rflags &= ~X86_EFLAGS_TF;
2315 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2316 rflags &= ~X86_EFLAGS_RF;
2317 }
2318 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319}
2320
2321static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2322{
Ladi Prosek9b611742017-06-21 09:06:59 +02002323 if (to_svm(vcpu)->nmi_singlestep)
2324 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2325
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002326 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002327 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002328 * (caused by either a task switch or an inter-privilege IRET),
2329 * so we do not need to update the CPL here.
2330 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002331 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002334static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2335{
2336 switch (reg) {
2337 case VCPU_EXREG_PDPTR:
2338 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002339 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002340 break;
2341 default:
2342 BUG();
2343 }
2344}
2345
Alexander Graff0b85052008-11-25 20:17:01 +01002346static void svm_set_vintr(struct vcpu_svm *svm)
2347{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002348 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002349}
2350
2351static void svm_clear_vintr(struct vcpu_svm *svm)
2352{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002353 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002354}
2355
Avi Kivity6aa8b732006-12-10 02:21:36 -08002356static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2357{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002358 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002359
2360 switch (seg) {
2361 case VCPU_SREG_CS: return &save->cs;
2362 case VCPU_SREG_DS: return &save->ds;
2363 case VCPU_SREG_ES: return &save->es;
2364 case VCPU_SREG_FS: return &save->fs;
2365 case VCPU_SREG_GS: return &save->gs;
2366 case VCPU_SREG_SS: return &save->ss;
2367 case VCPU_SREG_TR: return &save->tr;
2368 case VCPU_SREG_LDTR: return &save->ldtr;
2369 }
2370 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002371 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372}
2373
2374static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2375{
2376 struct vmcb_seg *s = svm_seg(vcpu, seg);
2377
2378 return s->base;
2379}
2380
2381static void svm_get_segment(struct kvm_vcpu *vcpu,
2382 struct kvm_segment *var, int seg)
2383{
2384 struct vmcb_seg *s = svm_seg(vcpu, seg);
2385
2386 var->base = s->base;
2387 var->limit = s->limit;
2388 var->selector = s->selector;
2389 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2390 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2391 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2392 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2393 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2394 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2395 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302396
2397 /*
2398 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2399 * However, the SVM spec states that the G bit is not observed by the
2400 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2401 * So let's synthesize a legal G bit for all segments, this helps
2402 * running KVM nested. It also helps cross-vendor migration, because
2403 * Intel's vmentry has a check on the 'G' bit.
2404 */
2405 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002406
Joerg Roedele0231712010-02-24 18:59:10 +01002407 /*
2408 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002409 * for cross vendor migration purposes by "not present"
2410 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002411 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002412
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002413 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002414 case VCPU_SREG_TR:
2415 /*
2416 * Work around a bug where the busy flag in the tr selector
2417 * isn't exposed
2418 */
Amit Shahc0d09822008-10-27 09:04:18 +00002419 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002420 break;
2421 case VCPU_SREG_DS:
2422 case VCPU_SREG_ES:
2423 case VCPU_SREG_FS:
2424 case VCPU_SREG_GS:
2425 /*
2426 * The accessed bit must always be set in the segment
2427 * descriptor cache, although it can be cleared in the
2428 * descriptor, the cached bit always remains at 1. Since
2429 * Intel has a check on this, set it here to support
2430 * cross-vendor migration.
2431 */
2432 if (!var->unusable)
2433 var->type |= 0x1;
2434 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002435 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002436 /*
2437 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002438 * descriptor is left as 1, although the whole segment has
2439 * been made unusable. Clear it here to pass an Intel VMX
2440 * entry check when cross vendor migrating.
2441 */
2442 if (var->unusable)
2443 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002444 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002445 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002446 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002447 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448}
2449
Izik Eidus2e4d2652008-03-24 19:38:34 +02002450static int svm_get_cpl(struct kvm_vcpu *vcpu)
2451{
2452 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2453
2454 return save->cpl;
2455}
2456
Gleb Natapov89a27f42010-02-16 10:51:48 +02002457static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002458{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002459 struct vcpu_svm *svm = to_svm(vcpu);
2460
Gleb Natapov89a27f42010-02-16 10:51:48 +02002461 dt->size = svm->vmcb->save.idtr.limit;
2462 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002463}
2464
Gleb Natapov89a27f42010-02-16 10:51:48 +02002465static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002466{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002467 struct vcpu_svm *svm = to_svm(vcpu);
2468
Gleb Natapov89a27f42010-02-16 10:51:48 +02002469 svm->vmcb->save.idtr.limit = dt->size;
2470 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002471 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472}
2473
Gleb Natapov89a27f42010-02-16 10:51:48 +02002474static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002476 struct vcpu_svm *svm = to_svm(vcpu);
2477
Gleb Natapov89a27f42010-02-16 10:51:48 +02002478 dt->size = svm->vmcb->save.gdtr.limit;
2479 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002480}
2481
Gleb Natapov89a27f42010-02-16 10:51:48 +02002482static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002483{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002484 struct vcpu_svm *svm = to_svm(vcpu);
2485
Gleb Natapov89a27f42010-02-16 10:51:48 +02002486 svm->vmcb->save.gdtr.limit = dt->size;
2487 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002488 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002489}
2490
Avi Kivitye8467fd2009-12-29 18:43:06 +02002491static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2492{
2493}
2494
Avi Kivityaff48ba2010-12-05 18:56:11 +02002495static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2496{
2497}
2498
Anthony Liguori25c4c272007-04-27 09:29:21 +03002499static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002500{
2501}
2502
Avi Kivityd2251572010-01-06 10:55:27 +02002503static void update_cr0_intercept(struct vcpu_svm *svm)
2504{
2505 ulong gcr0 = svm->vcpu.arch.cr0;
2506 u64 *hcr0 = &svm->vmcb->save.cr0;
2507
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002508 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2509 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002510
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002511 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002512
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002513 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002514 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2515 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002516 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002517 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2518 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002519 }
2520}
2521
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2523{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002524 struct vcpu_svm *svm = to_svm(vcpu);
2525
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002526#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002527 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002528 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002529 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002530 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002531 }
2532
Mike Dayd77c26f2007-10-08 09:02:08 -04002533 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002534 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002535 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002536 }
2537 }
2538#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002539 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002540
2541 if (!npt_enabled)
2542 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002543
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002544 /*
2545 * re-enable caching here because the QEMU bios
2546 * does not do it - this results in some delay at
2547 * reboot
2548 */
2549 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2550 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002551 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002552 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002553 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554}
2555
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002556static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002558 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002559 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2560
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002561 if (cr4 & X86_CR4_VMXE)
2562 return 1;
2563
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002564 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002565 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002566
Joerg Roedelec077262008-04-09 14:15:28 +02002567 vcpu->arch.cr4 = cr4;
2568 if (!npt_enabled)
2569 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002570 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002571 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002572 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002573 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574}
2575
2576static void svm_set_segment(struct kvm_vcpu *vcpu,
2577 struct kvm_segment *var, int seg)
2578{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002579 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580 struct vmcb_seg *s = svm_seg(vcpu, seg);
2581
2582 s->base = var->base;
2583 s->limit = var->limit;
2584 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002585 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2586 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2587 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2588 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2589 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2590 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2591 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2592 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002593
2594 /*
2595 * This is always accurate, except if SYSRET returned to a segment
2596 * with SS.DPL != 3. Intel does not have this quirk, and always
2597 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2598 * would entail passing the CPL to userspace and back.
2599 */
2600 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002601 /* This is symmetric with svm_get_segment() */
2602 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603
Joerg Roedel060d0c92010-12-03 11:45:57 +01002604 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605}
2606
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002607static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002608{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002609 struct vcpu_svm *svm = to_svm(vcpu);
2610
Joerg Roedel18c918c2010-11-30 18:03:59 +01002611 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002612
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002613 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002614 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002615 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002616 } else
2617 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002618}
2619
Tejun Heo0fe1e002009-10-29 22:34:14 +09002620static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002622 if (sd->next_asid > sd->max_asid) {
2623 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002624 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002625 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626 }
2627
Tejun Heo0fe1e002009-10-29 22:34:14 +09002628 svm->asid_generation = sd->asid_generation;
2629 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002630
2631 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632}
2633
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002634static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2635{
2636 return to_svm(vcpu)->vmcb->save.dr6;
2637}
2638
2639static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2640{
2641 struct vcpu_svm *svm = to_svm(vcpu);
2642
2643 svm->vmcb->save.dr6 = value;
2644 mark_dirty(svm->vmcb, VMCB_DR);
2645}
2646
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002647static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2648{
2649 struct vcpu_svm *svm = to_svm(vcpu);
2650
2651 get_debugreg(vcpu->arch.db[0], 0);
2652 get_debugreg(vcpu->arch.db[1], 1);
2653 get_debugreg(vcpu->arch.db[2], 2);
2654 get_debugreg(vcpu->arch.db[3], 3);
2655 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2656 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2657
2658 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2659 set_dr_intercepts(svm);
2660}
2661
Gleb Natapov020df072010-04-13 10:05:23 +03002662static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002663{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002664 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002665
Gleb Natapov020df072010-04-13 10:05:23 +03002666 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002667 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668}
2669
Avi Kivity851ba692009-08-24 11:10:17 +03002670static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002671{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002672 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002673 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002675 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002676 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2677 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002678 svm->vmcb->control.insn_len);
2679}
2680
2681static int npf_interception(struct vcpu_svm *svm)
2682{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002683 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002684 u64 error_code = svm->vmcb->control.exit_info_1;
2685
2686 trace_kvm_page_fault(fault_address, error_code);
2687 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002688 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2689 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002690 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691}
2692
Avi Kivity851ba692009-08-24 11:10:17 +03002693static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002694{
Avi Kivity851ba692009-08-24 11:10:17 +03002695 struct kvm_run *kvm_run = svm->vcpu.run;
2696
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002697 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002698 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002699 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002700 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2701 return 1;
2702 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002703
Jan Kiszka6be7d302009-10-18 13:24:54 +02002704 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002705 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002706 }
2707
2708 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002709 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002710 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2711 kvm_run->debug.arch.pc =
2712 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2713 kvm_run->debug.arch.exception = DB_VECTOR;
2714 return 0;
2715 }
2716
2717 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002718}
2719
Avi Kivity851ba692009-08-24 11:10:17 +03002720static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002721{
Avi Kivity851ba692009-08-24 11:10:17 +03002722 struct kvm_run *kvm_run = svm->vcpu.run;
2723
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002724 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2725 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2726 kvm_run->debug.arch.exception = BP_VECTOR;
2727 return 0;
2728}
2729
Avi Kivity851ba692009-08-24 11:10:17 +03002730static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002731{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002732 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002733}
2734
Eric Northup54a20552015-11-03 18:03:53 +01002735static int ac_interception(struct vcpu_svm *svm)
2736{
2737 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2738 return 1;
2739}
2740
Liran Alon97184202018-03-12 13:12:52 +02002741static int gp_interception(struct vcpu_svm *svm)
2742{
2743 struct kvm_vcpu *vcpu = &svm->vcpu;
2744 u32 error_code = svm->vmcb->control.exit_info_1;
2745 int er;
2746
2747 WARN_ON_ONCE(!enable_vmware_backdoor);
2748
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002749 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002750 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2751 if (er == EMULATE_USER_EXIT)
2752 return 0;
2753 else if (er != EMULATE_DONE)
2754 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2755 return 1;
2756}
2757
Joerg Roedel67ec6602010-05-17 14:43:35 +02002758static bool is_erratum_383(void)
2759{
2760 int err, i;
2761 u64 value;
2762
2763 if (!erratum_383_found)
2764 return false;
2765
2766 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2767 if (err)
2768 return false;
2769
2770 /* Bit 62 may or may not be set for this mce */
2771 value &= ~(1ULL << 62);
2772
2773 if (value != 0xb600000000010015ULL)
2774 return false;
2775
2776 /* Clear MCi_STATUS registers */
2777 for (i = 0; i < 6; ++i)
2778 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2779
2780 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2781 if (!err) {
2782 u32 low, high;
2783
2784 value &= ~(1ULL << 2);
2785 low = lower_32_bits(value);
2786 high = upper_32_bits(value);
2787
2788 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2789 }
2790
2791 /* Flush tlb to evict multi-match entries */
2792 __flush_tlb_all();
2793
2794 return true;
2795}
2796
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002797static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002798{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002799 if (is_erratum_383()) {
2800 /*
2801 * Erratum 383 triggered. Guest state is corrupt so kill the
2802 * guest.
2803 */
2804 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2805
Avi Kivitya8eeb042010-05-10 12:34:53 +03002806 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002807
2808 return;
2809 }
2810
Joerg Roedel53371b52008-04-09 14:15:30 +02002811 /*
2812 * On an #MC intercept the MCE handler is not called automatically in
2813 * the host. So do it by hand here.
2814 */
2815 asm volatile (
2816 "int $0x12\n");
2817 /* not sure if we ever come back to this point */
2818
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002819 return;
2820}
2821
2822static int mc_interception(struct vcpu_svm *svm)
2823{
Joerg Roedel53371b52008-04-09 14:15:30 +02002824 return 1;
2825}
2826
Avi Kivity851ba692009-08-24 11:10:17 +03002827static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002828{
Avi Kivity851ba692009-08-24 11:10:17 +03002829 struct kvm_run *kvm_run = svm->vcpu.run;
2830
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002831 /*
2832 * VMCB is undefined after a SHUTDOWN intercept
2833 * so reinitialize it.
2834 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002835 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002836 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002837
2838 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2839 return 0;
2840}
2841
Avi Kivity851ba692009-08-24 11:10:17 +03002842static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002843{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002844 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002845 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002846 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002847 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848
Rusty Russelle756fc62007-07-30 20:07:08 +10002849 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002850 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002851 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002852 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002853 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002854
Avi Kivity039576c2007-03-20 12:46:50 +02002855 port = io_info >> 16;
2856 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002857 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002858
Sean Christophersondca7f122018-03-08 08:57:27 -08002859 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860}
2861
Avi Kivity851ba692009-08-24 11:10:17 +03002862static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002863{
2864 return 1;
2865}
2866
Avi Kivity851ba692009-08-24 11:10:17 +03002867static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002868{
2869 ++svm->vcpu.stat.irq_exits;
2870 return 1;
2871}
2872
Avi Kivity851ba692009-08-24 11:10:17 +03002873static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874{
2875 return 1;
2876}
2877
Avi Kivity851ba692009-08-24 11:10:17 +03002878static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002880 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002881 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882}
2883
Avi Kivity851ba692009-08-24 11:10:17 +03002884static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002885{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002886 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002887 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002888}
2889
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002890static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2891{
2892 struct vcpu_svm *svm = to_svm(vcpu);
2893
2894 return svm->nested.nested_cr3;
2895}
2896
Avi Kivitye4e517b2011-07-28 11:36:17 +03002897static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2898{
2899 struct vcpu_svm *svm = to_svm(vcpu);
2900 u64 cr3 = svm->nested.nested_cr3;
2901 u64 pdpte;
2902 int ret;
2903
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002904 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002905 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002906 if (ret)
2907 return 0;
2908 return pdpte;
2909}
2910
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002911static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2912 unsigned long root)
2913{
2914 struct vcpu_svm *svm = to_svm(vcpu);
2915
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002916 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002917 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002918}
2919
Avi Kivity6389ee92010-11-29 16:12:30 +02002920static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2921 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002922{
2923 struct vcpu_svm *svm = to_svm(vcpu);
2924
Paolo Bonzini5e352512014-09-02 13:18:37 +02002925 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2926 /*
2927 * TODO: track the cause of the nested page fault, and
2928 * correctly fill in the high bits of exit_info_1.
2929 */
2930 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2931 svm->vmcb->control.exit_code_hi = 0;
2932 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2933 svm->vmcb->control.exit_info_2 = fault->address;
2934 }
2935
2936 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2937 svm->vmcb->control.exit_info_1 |= fault->error_code;
2938
2939 /*
2940 * The present bit is always zero for page structure faults on real
2941 * hardware.
2942 */
2943 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2944 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002945
2946 nested_svm_vmexit(svm);
2947}
2948
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002949static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002950{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002951 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002952
2953 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02002954 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002955 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
2956 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
2957 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
2958 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
2959 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
2960 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002961 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002962}
2963
2964static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2965{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002966 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002967 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002968}
2969
Alexander Grafc0725422008-11-25 20:17:03 +01002970static int nested_svm_check_permissions(struct vcpu_svm *svm)
2971{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002972 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2973 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002974 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2975 return 1;
2976 }
2977
2978 if (svm->vmcb->save.cpl) {
2979 kvm_inject_gp(&svm->vcpu, 0);
2980 return 1;
2981 }
2982
Dan Carpentere9196ce2017-05-18 10:39:53 +03002983 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002984}
2985
Alexander Grafcf74a782008-11-25 20:17:08 +01002986static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2987 bool has_error_code, u32 error_code)
2988{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002989 int vmexit;
2990
Joerg Roedel20307532010-11-29 17:51:48 +01002991 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002992 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002993
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002994 vmexit = nested_svm_intercept(svm);
2995 if (vmexit != NESTED_EXIT_DONE)
2996 return 0;
2997
Joerg Roedel0295ad72009-08-07 11:49:37 +02002998 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2999 svm->vmcb->control.exit_code_hi = 0;
3000 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003001
3002 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07003003 * EXITINFO2 is undefined for all exception intercepts other
3004 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003005 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003006 if (svm->vcpu.arch.exception.nested_apf)
3007 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003008 else if (svm->vcpu.arch.exception.has_payload)
3009 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003010 else
3011 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003012
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003013 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003014 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003015}
3016
Joerg Roedel8fe54652010-02-19 16:23:01 +01003017/* This function returns true if it is save to enable the irq window */
3018static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003019{
Joerg Roedel20307532010-11-29 17:51:48 +01003020 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003021 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003022
Joerg Roedel26666952009-08-07 11:49:46 +02003023 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003024 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003025
Joerg Roedel26666952009-08-07 11:49:46 +02003026 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003027 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003028
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003029 /*
3030 * if vmexit was already requested (by intercepted exception
3031 * for instance) do not overwrite it with "external interrupt"
3032 * vmexit.
3033 */
3034 if (svm->nested.exit_required)
3035 return false;
3036
Joerg Roedel197717d2010-02-24 18:59:19 +01003037 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3038 svm->vmcb->control.exit_info_1 = 0;
3039 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003040
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003041 if (svm->nested.intercept & 1ULL) {
3042 /*
3043 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003044 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003045 * #vmexit emulation might sleep. Only signal request for
3046 * the #vmexit here.
3047 */
3048 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003049 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003050 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003051 }
3052
Joerg Roedel8fe54652010-02-19 16:23:01 +01003053 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003054}
3055
Joerg Roedel887f5002010-02-24 18:59:12 +01003056/* This function returns true if it is save to enable the nmi window */
3057static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3058{
Joerg Roedel20307532010-11-29 17:51:48 +01003059 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003060 return true;
3061
3062 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3063 return true;
3064
3065 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3066 svm->nested.exit_required = true;
3067
3068 return false;
3069}
3070
Joerg Roedel7597f122010-02-19 16:23:00 +01003071static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003072{
3073 struct page *page;
3074
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003075 might_sleep();
3076
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003077 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003078 if (is_error_page(page))
3079 goto error;
3080
Joerg Roedel7597f122010-02-19 16:23:00 +01003081 *_page = page;
3082
3083 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003084
3085error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003086 kvm_inject_gp(&svm->vcpu, 0);
3087
3088 return NULL;
3089}
3090
Joerg Roedel7597f122010-02-19 16:23:00 +01003091static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003092{
Joerg Roedel7597f122010-02-19 16:23:00 +01003093 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003094 kvm_release_page_dirty(page);
3095}
3096
Joerg Roedelce2ac082010-03-01 15:34:39 +01003097static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003098{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003099 unsigned port, size, iopm_len;
3100 u16 val, mask;
3101 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003102 u64 gpa;
3103
3104 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3105 return NESTED_EXIT_HOST;
3106
3107 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003108 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3109 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003110 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003111 start_bit = port % 8;
3112 iopm_len = (start_bit + size > 8) ? 2 : 1;
3113 mask = (0xf >> (4 - size)) << start_bit;
3114 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003115
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003116 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003117 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003118
Jan Kiszka9bf41832014-06-30 10:54:17 +02003119 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003120}
3121
Joerg Roedeld2477822010-03-01 15:34:34 +01003122static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003123{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003124 u32 offset, msr, value;
3125 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003126
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003127 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003128 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003129
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003130 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3131 offset = svm_msrpm_offset(msr);
3132 write = svm->vmcb->control.exit_info_1 & 1;
3133 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003134
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003135 if (offset == MSR_INVALID)
3136 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003137
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003138 /* Offset is in 32 bit units but need in 8 bit units */
3139 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003140
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003141 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003142 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003143
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003144 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003145}
3146
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003147/* DB exceptions for our internal use must not cause vmexit */
3148static int nested_svm_intercept_db(struct vcpu_svm *svm)
3149{
3150 unsigned long dr6;
3151
3152 /* if we're not singlestepping, it's not ours */
3153 if (!svm->nmi_singlestep)
3154 return NESTED_EXIT_DONE;
3155
3156 /* if it's not a singlestep exception, it's not ours */
3157 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3158 return NESTED_EXIT_DONE;
3159 if (!(dr6 & DR6_BS))
3160 return NESTED_EXIT_DONE;
3161
3162 /* if the guest is singlestepping, it should get the vmexit */
3163 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3164 disable_nmi_singlestep(svm);
3165 return NESTED_EXIT_DONE;
3166 }
3167
3168 /* it's ours, the nested hypervisor must not see this one */
3169 return NESTED_EXIT_HOST;
3170}
3171
Joerg Roedel410e4d52009-08-07 11:49:44 +02003172static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003173{
Alexander Grafcf74a782008-11-25 20:17:08 +01003174 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003175
Joerg Roedel410e4d52009-08-07 11:49:44 +02003176 switch (exit_code) {
3177 case SVM_EXIT_INTR:
3178 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003179 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003180 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003181 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003182 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003183 if (npt_enabled)
3184 return NESTED_EXIT_HOST;
3185 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003186 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003187 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003188 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003189 return NESTED_EXIT_HOST;
3190 break;
3191 default:
3192 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003193 }
3194
Joerg Roedel410e4d52009-08-07 11:49:44 +02003195 return NESTED_EXIT_CONTINUE;
3196}
3197
3198/*
3199 * If this function returns true, this #vmexit was already handled
3200 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003201static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003202{
3203 u32 exit_code = svm->vmcb->control.exit_code;
3204 int vmexit = NESTED_EXIT_HOST;
3205
Alexander Grafcf74a782008-11-25 20:17:08 +01003206 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003207 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003208 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003209 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003210 case SVM_EXIT_IOIO:
3211 vmexit = nested_svm_intercept_ioio(svm);
3212 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003213 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3214 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3215 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003216 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003217 break;
3218 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003219 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3220 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3221 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003222 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003223 break;
3224 }
3225 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3226 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003227 if (svm->nested.intercept_exceptions & excp_bits) {
3228 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3229 vmexit = nested_svm_intercept_db(svm);
3230 else
3231 vmexit = NESTED_EXIT_DONE;
3232 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003233 /* async page fault always cause vmexit */
3234 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003235 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003236 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003237 break;
3238 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003239 case SVM_EXIT_ERR: {
3240 vmexit = NESTED_EXIT_DONE;
3241 break;
3242 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003243 default: {
3244 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003245 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003246 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003247 }
3248 }
3249
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003250 return vmexit;
3251}
3252
3253static int nested_svm_exit_handled(struct vcpu_svm *svm)
3254{
3255 int vmexit;
3256
3257 vmexit = nested_svm_intercept(svm);
3258
3259 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003260 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003261
3262 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003263}
3264
Joerg Roedel0460a972009-08-07 11:49:31 +02003265static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3266{
3267 struct vmcb_control_area *dst = &dst_vmcb->control;
3268 struct vmcb_control_area *from = &from_vmcb->control;
3269
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003270 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003271 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003272 dst->intercept_exceptions = from->intercept_exceptions;
3273 dst->intercept = from->intercept;
3274 dst->iopm_base_pa = from->iopm_base_pa;
3275 dst->msrpm_base_pa = from->msrpm_base_pa;
3276 dst->tsc_offset = from->tsc_offset;
3277 dst->asid = from->asid;
3278 dst->tlb_ctl = from->tlb_ctl;
3279 dst->int_ctl = from->int_ctl;
3280 dst->int_vector = from->int_vector;
3281 dst->int_state = from->int_state;
3282 dst->exit_code = from->exit_code;
3283 dst->exit_code_hi = from->exit_code_hi;
3284 dst->exit_info_1 = from->exit_info_1;
3285 dst->exit_info_2 = from->exit_info_2;
3286 dst->exit_int_info = from->exit_int_info;
3287 dst->exit_int_info_err = from->exit_int_info_err;
3288 dst->nested_ctl = from->nested_ctl;
3289 dst->event_inj = from->event_inj;
3290 dst->event_inj_err = from->event_inj_err;
3291 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003292 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003293 dst->pause_filter_count = from->pause_filter_count;
3294 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003295}
3296
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003297static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003298{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003299 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003300 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003301 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003302 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003303
Joerg Roedel17897f32009-10-09 16:08:29 +02003304 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3305 vmcb->control.exit_info_1,
3306 vmcb->control.exit_info_2,
3307 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003308 vmcb->control.exit_int_info_err,
3309 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003310
Joerg Roedel7597f122010-02-19 16:23:00 +01003311 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003312 if (!nested_vmcb)
3313 return 1;
3314
Joerg Roedel20307532010-11-29 17:51:48 +01003315 /* Exit Guest-Mode */
3316 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003317 svm->nested.vmcb = 0;
3318
Alexander Grafcf74a782008-11-25 20:17:08 +01003319 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003320 disable_gif(svm);
3321
3322 nested_vmcb->save.es = vmcb->save.es;
3323 nested_vmcb->save.cs = vmcb->save.cs;
3324 nested_vmcb->save.ss = vmcb->save.ss;
3325 nested_vmcb->save.ds = vmcb->save.ds;
3326 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3327 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003328 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003329 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003330 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003331 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003332 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003333 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003334 nested_vmcb->save.rip = vmcb->save.rip;
3335 nested_vmcb->save.rsp = vmcb->save.rsp;
3336 nested_vmcb->save.rax = vmcb->save.rax;
3337 nested_vmcb->save.dr7 = vmcb->save.dr7;
3338 nested_vmcb->save.dr6 = vmcb->save.dr6;
3339 nested_vmcb->save.cpl = vmcb->save.cpl;
3340
3341 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3342 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3343 nested_vmcb->control.int_state = vmcb->control.int_state;
3344 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3345 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3346 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3347 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3348 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3349 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003350
3351 if (svm->nrips_enabled)
3352 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003353
3354 /*
3355 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3356 * to make sure that we do not lose injected events. So check event_inj
3357 * here and copy it to exit_int_info if it is valid.
3358 * Exit_int_info and event_inj can't be both valid because the case
3359 * below only happens on a VMRUN instruction intercept which has
3360 * no valid exit_int_info set.
3361 */
3362 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3363 struct vmcb_control_area *nc = &nested_vmcb->control;
3364
3365 nc->exit_int_info = vmcb->control.event_inj;
3366 nc->exit_int_info_err = vmcb->control.event_inj_err;
3367 }
3368
Joerg Roedel33740e42009-08-07 11:49:29 +02003369 nested_vmcb->control.tlb_ctl = 0;
3370 nested_vmcb->control.event_inj = 0;
3371 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003372
Tambe, Williame0813542018-11-13 16:51:20 +00003373 nested_vmcb->control.pause_filter_count =
3374 svm->vmcb->control.pause_filter_count;
3375 nested_vmcb->control.pause_filter_thresh =
3376 svm->vmcb->control.pause_filter_thresh;
3377
Alexander Grafcf74a782008-11-25 20:17:08 +01003378 /* We always set V_INTR_MASKING and remember the old value in hflags */
3379 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3380 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3381
Alexander Grafcf74a782008-11-25 20:17:08 +01003382 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003383 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003384
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003385 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003386 kvm_clear_exception_queue(&svm->vcpu);
3387 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003388
Joerg Roedel4b161842010-09-10 17:31:03 +02003389 svm->nested.nested_cr3 = 0;
3390
Alexander Grafcf74a782008-11-25 20:17:08 +01003391 /* Restore selected save entries */
3392 svm->vmcb->save.es = hsave->save.es;
3393 svm->vmcb->save.cs = hsave->save.cs;
3394 svm->vmcb->save.ss = hsave->save.ss;
3395 svm->vmcb->save.ds = hsave->save.ds;
3396 svm->vmcb->save.gdtr = hsave->save.gdtr;
3397 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003398 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003399 svm_set_efer(&svm->vcpu, hsave->save.efer);
3400 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3401 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3402 if (npt_enabled) {
3403 svm->vmcb->save.cr3 = hsave->save.cr3;
3404 svm->vcpu.arch.cr3 = hsave->save.cr3;
3405 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003406 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003407 }
3408 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3409 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3410 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3411 svm->vmcb->save.dr7 = 0;
3412 svm->vmcb->save.cpl = 0;
3413 svm->vmcb->control.exit_int_info = 0;
3414
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003415 mark_all_dirty(svm->vmcb);
3416
Joerg Roedel7597f122010-02-19 16:23:00 +01003417 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003418
Joerg Roedel4b161842010-09-10 17:31:03 +02003419 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003420 kvm_mmu_reset_context(&svm->vcpu);
3421 kvm_mmu_load(&svm->vcpu);
3422
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003423 /*
3424 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3425 * doesn't end up in L1.
3426 */
3427 svm->vcpu.arch.nmi_injected = false;
3428 kvm_clear_exception_queue(&svm->vcpu);
3429 kvm_clear_interrupt_queue(&svm->vcpu);
3430
Alexander Grafcf74a782008-11-25 20:17:08 +01003431 return 0;
3432}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003433
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003434static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003435{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003436 /*
3437 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003438 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003439 * the kvm msr permission bitmap may contain zero bits
3440 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003441 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003442
Joerg Roedel323c3d82010-03-01 15:34:37 +01003443 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3444 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003445
Joerg Roedel323c3d82010-03-01 15:34:37 +01003446 for (i = 0; i < MSRPM_OFFSETS; i++) {
3447 u32 value, p;
3448 u64 offset;
3449
3450 if (msrpm_offsets[i] == 0xffffffff)
3451 break;
3452
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003453 p = msrpm_offsets[i];
3454 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003455
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003456 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003457 return false;
3458
3459 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3460 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003461
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003462 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003463
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003464 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003465}
3466
Joerg Roedel52c65a302010-08-02 16:46:44 +02003467static bool nested_vmcb_checks(struct vmcb *vmcb)
3468{
3469 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3470 return false;
3471
Joerg Roedeldbe77582010-08-02 16:46:45 +02003472 if (vmcb->control.asid == 0)
3473 return false;
3474
Tom Lendackycea3a192017-12-04 10:57:24 -06003475 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3476 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003477 return false;
3478
Joerg Roedel52c65a302010-08-02 16:46:44 +02003479 return true;
3480}
3481
Ladi Prosekc2634062017-10-11 16:54:44 +02003482static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3483 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003484{
Avi Kivityf6e78472010-08-02 15:30:20 +03003485 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003486 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3487 else
3488 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3489
Tom Lendackycea3a192017-12-04 10:57:24 -06003490 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003491 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3492 nested_svm_init_mmu_context(&svm->vcpu);
3493 }
3494
Alexander Graf3d6368e2008-11-25 20:17:07 +01003495 /* Load the nested guest state */
3496 svm->vmcb->save.es = nested_vmcb->save.es;
3497 svm->vmcb->save.cs = nested_vmcb->save.cs;
3498 svm->vmcb->save.ss = nested_vmcb->save.ss;
3499 svm->vmcb->save.ds = nested_vmcb->save.ds;
3500 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3501 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003502 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003503 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3504 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3505 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3506 if (npt_enabled) {
3507 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3508 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003509 } else
Avi Kivity23902182010-06-10 17:02:16 +03003510 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003511
3512 /* Guest paging mode is active - reset mmu */
3513 kvm_mmu_reset_context(&svm->vcpu);
3514
Joerg Roedeldefbba52009-08-07 11:49:30 +02003515 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003516 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3517 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3518 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003519
Alexander Graf3d6368e2008-11-25 20:17:07 +01003520 /* In case we don't even reach vcpu_run, the fields are not updated */
3521 svm->vmcb->save.rax = nested_vmcb->save.rax;
3522 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3523 svm->vmcb->save.rip = nested_vmcb->save.rip;
3524 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3525 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3526 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3527
Joerg Roedelf7138532010-03-01 15:34:40 +01003528 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003529 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003530
Joerg Roedelaad42c62009-08-07 11:49:34 +02003531 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003532 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003533 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003534 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3535 svm->nested.intercept = nested_vmcb->control.intercept;
3536
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003537 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003538 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003539 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3540 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3541 else
3542 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3543
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003544 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3545 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003546 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3547 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003548 }
3549
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003550 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003551 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003552
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003553 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3554 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3555
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003556 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003557 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3558 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003559 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3560 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3561
Tambe, Williame0813542018-11-13 16:51:20 +00003562 svm->vmcb->control.pause_filter_count =
3563 nested_vmcb->control.pause_filter_count;
3564 svm->vmcb->control.pause_filter_thresh =
3565 nested_vmcb->control.pause_filter_thresh;
3566
Joerg Roedel7597f122010-02-19 16:23:00 +01003567 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003568
Joerg Roedel20307532010-11-29 17:51:48 +01003569 /* Enter Guest-Mode */
3570 enter_guest_mode(&svm->vcpu);
3571
Joerg Roedel384c6362010-11-30 18:03:56 +01003572 /*
3573 * Merge guest and host intercepts - must be called with vcpu in
3574 * guest-mode to take affect here
3575 */
3576 recalc_intercepts(svm);
3577
Joerg Roedel06fc77722010-02-19 16:23:07 +01003578 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003579
Joerg Roedel2af91942009-08-07 11:49:28 +02003580 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003581
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003582 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003583}
3584
3585static bool nested_svm_vmrun(struct vcpu_svm *svm)
3586{
3587 struct vmcb *nested_vmcb;
3588 struct vmcb *hsave = svm->nested.hsave;
3589 struct vmcb *vmcb = svm->vmcb;
3590 struct page *page;
3591 u64 vmcb_gpa;
3592
3593 vmcb_gpa = svm->vmcb->save.rax;
3594
3595 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3596 if (!nested_vmcb)
3597 return false;
3598
3599 if (!nested_vmcb_checks(nested_vmcb)) {
3600 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3601 nested_vmcb->control.exit_code_hi = 0;
3602 nested_vmcb->control.exit_info_1 = 0;
3603 nested_vmcb->control.exit_info_2 = 0;
3604
3605 nested_svm_unmap(page);
3606
3607 return false;
3608 }
3609
3610 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3611 nested_vmcb->save.rip,
3612 nested_vmcb->control.int_ctl,
3613 nested_vmcb->control.event_inj,
3614 nested_vmcb->control.nested_ctl);
3615
3616 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3617 nested_vmcb->control.intercept_cr >> 16,
3618 nested_vmcb->control.intercept_exceptions,
3619 nested_vmcb->control.intercept);
3620
3621 /* Clear internal status */
3622 kvm_clear_exception_queue(&svm->vcpu);
3623 kvm_clear_interrupt_queue(&svm->vcpu);
3624
3625 /*
3626 * Save the old vmcb, so we don't need to pick what we save, but can
3627 * restore everything when a VMEXIT occurs
3628 */
3629 hsave->save.es = vmcb->save.es;
3630 hsave->save.cs = vmcb->save.cs;
3631 hsave->save.ss = vmcb->save.ss;
3632 hsave->save.ds = vmcb->save.ds;
3633 hsave->save.gdtr = vmcb->save.gdtr;
3634 hsave->save.idtr = vmcb->save.idtr;
3635 hsave->save.efer = svm->vcpu.arch.efer;
3636 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3637 hsave->save.cr4 = svm->vcpu.arch.cr4;
3638 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3639 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3640 hsave->save.rsp = vmcb->save.rsp;
3641 hsave->save.rax = vmcb->save.rax;
3642 if (npt_enabled)
3643 hsave->save.cr3 = vmcb->save.cr3;
3644 else
3645 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3646
3647 copy_vmcb_control_area(hsave, vmcb);
3648
3649 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003650
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003651 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003652}
3653
Joerg Roedel9966bf62009-08-07 11:49:40 +02003654static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003655{
3656 to_vmcb->save.fs = from_vmcb->save.fs;
3657 to_vmcb->save.gs = from_vmcb->save.gs;
3658 to_vmcb->save.tr = from_vmcb->save.tr;
3659 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3660 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3661 to_vmcb->save.star = from_vmcb->save.star;
3662 to_vmcb->save.lstar = from_vmcb->save.lstar;
3663 to_vmcb->save.cstar = from_vmcb->save.cstar;
3664 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3665 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3666 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3667 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003668}
3669
Avi Kivity851ba692009-08-24 11:10:17 +03003670static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003671{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003672 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003673 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003674 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003675
Alexander Graf55426752008-11-25 20:17:06 +01003676 if (nested_svm_check_permissions(svm))
3677 return 1;
3678
Joerg Roedel7597f122010-02-19 16:23:00 +01003679 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003680 if (!nested_vmcb)
3681 return 1;
3682
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003683 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003684 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003685
Joerg Roedel9966bf62009-08-07 11:49:40 +02003686 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003687 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003688
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003689 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003690}
3691
Avi Kivity851ba692009-08-24 11:10:17 +03003692static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003693{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003694 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003695 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003696 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003697
Alexander Graf55426752008-11-25 20:17:06 +01003698 if (nested_svm_check_permissions(svm))
3699 return 1;
3700
Joerg Roedel7597f122010-02-19 16:23:00 +01003701 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003702 if (!nested_vmcb)
3703 return 1;
3704
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003705 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003706 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003707
Joerg Roedel9966bf62009-08-07 11:49:40 +02003708 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003709 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003710
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003711 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003712}
3713
Avi Kivity851ba692009-08-24 11:10:17 +03003714static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003715{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003716 if (nested_svm_check_permissions(svm))
3717 return 1;
3718
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003719 /* Save rip after vmrun instruction */
3720 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003721
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003722 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003723 return 1;
3724
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003725 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003726 goto failed;
3727
3728 return 1;
3729
3730failed:
3731
3732 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3733 svm->vmcb->control.exit_code_hi = 0;
3734 svm->vmcb->control.exit_info_1 = 0;
3735 svm->vmcb->control.exit_info_2 = 0;
3736
3737 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003738
3739 return 1;
3740}
3741
Avi Kivity851ba692009-08-24 11:10:17 +03003742static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003743{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003744 int ret;
3745
Alexander Graf1371d902008-11-25 20:17:04 +01003746 if (nested_svm_check_permissions(svm))
3747 return 1;
3748
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003749 /*
3750 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003751 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003752 */
3753 if (vgif_enabled(svm))
3754 clr_intercept(svm, INTERCEPT_STGI);
3755
Alexander Graf1371d902008-11-25 20:17:04 +01003756 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003757 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003758 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003759
Joerg Roedel2af91942009-08-07 11:49:28 +02003760 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003761
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003762 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003763}
3764
Avi Kivity851ba692009-08-24 11:10:17 +03003765static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003766{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003767 int ret;
3768
Alexander Graf1371d902008-11-25 20:17:04 +01003769 if (nested_svm_check_permissions(svm))
3770 return 1;
3771
3772 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003773 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003774
Joerg Roedel2af91942009-08-07 11:49:28 +02003775 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003776
3777 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003778 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3779 svm_clear_vintr(svm);
3780 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3781 mark_dirty(svm->vmcb, VMCB_INTR);
3782 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003783
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003784 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003785}
3786
Avi Kivity851ba692009-08-24 11:10:17 +03003787static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003788{
3789 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003790
David Kaplan668f1982015-02-20 16:02:10 -06003791 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3792 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003793
Alexander Grafff092382009-06-15 15:21:24 +02003794 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003795 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003796
3797 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003798 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003799}
3800
Joerg Roedel532a46b2009-10-09 16:08:32 +02003801static int skinit_interception(struct vcpu_svm *svm)
3802{
David Kaplan668f1982015-02-20 16:02:10 -06003803 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003804
3805 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3806 return 1;
3807}
3808
David Kaplandab429a2015-03-02 13:43:37 -06003809static int wbinvd_interception(struct vcpu_svm *svm)
3810{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003811 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003812}
3813
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003814static int xsetbv_interception(struct vcpu_svm *svm)
3815{
3816 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3817 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3818
3819 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3820 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003821 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003822 }
3823
3824 return 1;
3825}
3826
Avi Kivity851ba692009-08-24 11:10:17 +03003827static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003828{
Izik Eidus37817f22008-03-24 23:14:53 +02003829 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003830 int reason;
3831 int int_type = svm->vmcb->control.exit_int_info &
3832 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003833 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003834 uint32_t type =
3835 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3836 uint32_t idt_v =
3837 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003838 bool has_error_code = false;
3839 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003840
3841 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003842
Izik Eidus37817f22008-03-24 23:14:53 +02003843 if (svm->vmcb->control.exit_info_2 &
3844 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003845 reason = TASK_SWITCH_IRET;
3846 else if (svm->vmcb->control.exit_info_2 &
3847 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3848 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003849 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003850 reason = TASK_SWITCH_GATE;
3851 else
3852 reason = TASK_SWITCH_CALL;
3853
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003854 if (reason == TASK_SWITCH_GATE) {
3855 switch (type) {
3856 case SVM_EXITINTINFO_TYPE_NMI:
3857 svm->vcpu.arch.nmi_injected = false;
3858 break;
3859 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003860 if (svm->vmcb->control.exit_info_2 &
3861 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3862 has_error_code = true;
3863 error_code =
3864 (u32)svm->vmcb->control.exit_info_2;
3865 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003866 kvm_clear_exception_queue(&svm->vcpu);
3867 break;
3868 case SVM_EXITINTINFO_TYPE_INTR:
3869 kvm_clear_interrupt_queue(&svm->vcpu);
3870 break;
3871 default:
3872 break;
3873 }
3874 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003875
Gleb Natapov8317c292009-04-12 13:37:02 +03003876 if (reason != TASK_SWITCH_GATE ||
3877 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3878 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003879 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3880 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003881
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003882 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3883 int_vec = -1;
3884
3885 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003886 has_error_code, error_code) == EMULATE_FAIL) {
3887 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3888 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3889 svm->vcpu.run->internal.ndata = 0;
3890 return 0;
3891 }
3892 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003893}
3894
Avi Kivity851ba692009-08-24 11:10:17 +03003895static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003896{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003897 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003898 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003899}
3900
Avi Kivity851ba692009-08-24 11:10:17 +03003901static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003902{
3903 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003904 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003905 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003906 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003907 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003908 return 1;
3909}
3910
Avi Kivity851ba692009-08-24 11:10:17 +03003911static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003912{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003913 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003914 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003915
3916 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003917 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003918}
3919
Avi Kivity851ba692009-08-24 11:10:17 +03003920static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003921{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003922 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003923}
3924
Brijesh Singh7607b712018-02-19 10:14:44 -06003925static int rsm_interception(struct vcpu_svm *svm)
3926{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003927 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3928 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003929}
3930
Avi Kivity332b56e2011-11-10 14:57:24 +02003931static int rdpmc_interception(struct vcpu_svm *svm)
3932{
3933 int err;
3934
3935 if (!static_cpu_has(X86_FEATURE_NRIPS))
3936 return emulate_on_interception(svm);
3937
3938 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003939 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003940}
3941
Xiubo Li52eb5a62015-03-13 17:39:45 +08003942static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3943 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003944{
3945 unsigned long cr0 = svm->vcpu.arch.cr0;
3946 bool ret = false;
3947 u64 intercept;
3948
3949 intercept = svm->nested.intercept;
3950
3951 if (!is_guest_mode(&svm->vcpu) ||
3952 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3953 return false;
3954
3955 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3956 val &= ~SVM_CR0_SELECTIVE_MASK;
3957
3958 if (cr0 ^ val) {
3959 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3960 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3961 }
3962
3963 return ret;
3964}
3965
Andre Przywara7ff76d52010-12-21 11:12:04 +01003966#define CR_VALID (1ULL << 63)
3967
3968static int cr_interception(struct vcpu_svm *svm)
3969{
3970 int reg, cr;
3971 unsigned long val;
3972 int err;
3973
3974 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3975 return emulate_on_interception(svm);
3976
3977 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3978 return emulate_on_interception(svm);
3979
3980 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003981 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3982 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3983 else
3984 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003985
3986 err = 0;
3987 if (cr >= 16) { /* mov to cr */
3988 cr -= 16;
3989 val = kvm_register_read(&svm->vcpu, reg);
3990 switch (cr) {
3991 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003992 if (!check_selective_cr0_intercepted(svm, val))
3993 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003994 else
3995 return 1;
3996
Andre Przywara7ff76d52010-12-21 11:12:04 +01003997 break;
3998 case 3:
3999 err = kvm_set_cr3(&svm->vcpu, val);
4000 break;
4001 case 4:
4002 err = kvm_set_cr4(&svm->vcpu, val);
4003 break;
4004 case 8:
4005 err = kvm_set_cr8(&svm->vcpu, val);
4006 break;
4007 default:
4008 WARN(1, "unhandled write to CR%d", cr);
4009 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4010 return 1;
4011 }
4012 } else { /* mov from cr */
4013 switch (cr) {
4014 case 0:
4015 val = kvm_read_cr0(&svm->vcpu);
4016 break;
4017 case 2:
4018 val = svm->vcpu.arch.cr2;
4019 break;
4020 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004021 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004022 break;
4023 case 4:
4024 val = kvm_read_cr4(&svm->vcpu);
4025 break;
4026 case 8:
4027 val = kvm_get_cr8(&svm->vcpu);
4028 break;
4029 default:
4030 WARN(1, "unhandled read from CR%d", cr);
4031 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4032 return 1;
4033 }
4034 kvm_register_write(&svm->vcpu, reg, val);
4035 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004036 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004037}
4038
Andre Przywaracae37972010-12-21 11:12:05 +01004039static int dr_interception(struct vcpu_svm *svm)
4040{
4041 int reg, dr;
4042 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004043
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004044 if (svm->vcpu.guest_debug == 0) {
4045 /*
4046 * No more DR vmexits; force a reload of the debug registers
4047 * and reenter on this instruction. The next vmexit will
4048 * retrieve the full state of the debug registers.
4049 */
4050 clr_dr_intercepts(svm);
4051 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4052 return 1;
4053 }
4054
Andre Przywaracae37972010-12-21 11:12:05 +01004055 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4056 return emulate_on_interception(svm);
4057
4058 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4059 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4060
4061 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004062 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4063 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004064 val = kvm_register_read(&svm->vcpu, reg);
4065 kvm_set_dr(&svm->vcpu, dr - 16, val);
4066 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004067 if (!kvm_require_dr(&svm->vcpu, dr))
4068 return 1;
4069 kvm_get_dr(&svm->vcpu, dr, &val);
4070 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004071 }
4072
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004073 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004074}
4075
Avi Kivity851ba692009-08-24 11:10:17 +03004076static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004077{
Avi Kivity851ba692009-08-24 11:10:17 +03004078 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004079 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004080
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004081 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4082 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004083 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004084 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004085 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004086 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004087 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004088 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4089 return 0;
4090}
4091
Tom Lendacky801e4592018-02-21 13:39:51 -06004092static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4093{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004094 msr->data = 0;
4095
4096 switch (msr->index) {
4097 case MSR_F10H_DECFG:
4098 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4099 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4100 break;
4101 default:
4102 return 1;
4103 }
4104
4105 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004106}
4107
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004108static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004110 struct vcpu_svm *svm = to_svm(vcpu);
4111
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004112 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004113 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004114 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004115 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004116#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004117 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004118 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004119 break;
4120 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004121 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004122 break;
4123 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004124 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004125 break;
4126 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004127 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004128 break;
4129#endif
4130 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004131 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132 break;
4133 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004134 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135 break;
4136 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004137 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004138 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004139 case MSR_TSC_AUX:
4140 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4141 return 1;
4142 msr_info->data = svm->tsc_aux;
4143 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004144 /*
4145 * Nobody will change the following 5 values in the VMCB so we can
4146 * safely return them on rdmsr. They will always be 0 until LBRV is
4147 * implemented.
4148 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004149 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004150 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004151 break;
4152 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004153 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004154 break;
4155 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004156 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004157 break;
4158 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004159 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004160 break;
4161 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004162 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004163 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004164 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004165 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004166 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004167 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004168 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004169 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004170 case MSR_IA32_SPEC_CTRL:
4171 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004172 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4173 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004174 return 1;
4175
4176 msr_info->data = svm->spec_ctrl;
4177 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004178 case MSR_AMD64_VIRT_SPEC_CTRL:
4179 if (!msr_info->host_initiated &&
4180 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4181 return 1;
4182
4183 msr_info->data = svm->virt_spec_ctrl;
4184 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004185 case MSR_F15H_IC_CFG: {
4186
4187 int family, model;
4188
4189 family = guest_cpuid_family(vcpu);
4190 model = guest_cpuid_model(vcpu);
4191
4192 if (family < 0 || model < 0)
4193 return kvm_get_msr_common(vcpu, msr_info);
4194
4195 msr_info->data = 0;
4196
4197 if (family == 0x15 &&
4198 (model >= 0x2 && model < 0x20))
4199 msr_info->data = 0x1E;
4200 }
4201 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004202 case MSR_F10H_DECFG:
4203 msr_info->data = svm->msr_decfg;
4204 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004205 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004206 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004207 }
4208 return 0;
4209}
4210
Avi Kivity851ba692009-08-24 11:10:17 +03004211static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004212{
David Kaplan668f1982015-02-20 16:02:10 -06004213 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004214 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004215
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004216 msr_info.index = ecx;
4217 msr_info.host_initiated = false;
4218 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004219 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004220 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004221 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004222 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004223 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004224
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004225 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4226 msr_info.data & 0xffffffff);
4227 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4228 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004229 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004230 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004231 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232}
4233
Joerg Roedel4a810182010-02-24 18:59:15 +01004234static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4235{
4236 struct vcpu_svm *svm = to_svm(vcpu);
4237 int svm_dis, chg_mask;
4238
4239 if (data & ~SVM_VM_CR_VALID_MASK)
4240 return 1;
4241
4242 chg_mask = SVM_VM_CR_VALID_MASK;
4243
4244 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4245 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4246
4247 svm->nested.vm_cr_msr &= ~chg_mask;
4248 svm->nested.vm_cr_msr |= (data & chg_mask);
4249
4250 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4251
4252 /* check for svm_disable while efer.svme is set */
4253 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4254 return 1;
4255
4256 return 0;
4257}
4258
Will Auld8fe8ab42012-11-29 12:42:12 -08004259static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004260{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004261 struct vcpu_svm *svm = to_svm(vcpu);
4262
Will Auld8fe8ab42012-11-29 12:42:12 -08004263 u32 ecx = msr->index;
4264 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004265 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004266 case MSR_IA32_CR_PAT:
4267 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4268 return 1;
4269 vcpu->arch.pat = data;
4270 svm->vmcb->save.g_pat = data;
4271 mark_dirty(svm->vmcb, VMCB_NPT);
4272 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004273 case MSR_IA32_SPEC_CTRL:
4274 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004275 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4276 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004277 return 1;
4278
4279 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004280 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004281 return 1;
4282
4283 svm->spec_ctrl = data;
4284
4285 if (!data)
4286 break;
4287
4288 /*
4289 * For non-nested:
4290 * When it's written (to non-zero) for the first time, pass
4291 * it through.
4292 *
4293 * For nested:
4294 * The handling of the MSR bitmap for L2 guests is done in
4295 * nested_svm_vmrun_msrpm.
4296 * We update the L1 MSR bit as well since it will end up
4297 * touching the MSR anyway now.
4298 */
4299 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4300 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004301 case MSR_IA32_PRED_CMD:
4302 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004303 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004304 return 1;
4305
4306 if (data & ~PRED_CMD_IBPB)
4307 return 1;
4308
4309 if (!data)
4310 break;
4311
4312 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4313 if (is_guest_mode(vcpu))
4314 break;
4315 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4316 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004317 case MSR_AMD64_VIRT_SPEC_CTRL:
4318 if (!msr->host_initiated &&
4319 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4320 return 1;
4321
4322 if (data & ~SPEC_CTRL_SSBD)
4323 return 1;
4324
4325 svm->virt_spec_ctrl = data;
4326 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004327 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004328 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004329 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004330#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004331 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004332 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333 break;
4334 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004335 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004336 break;
4337 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004338 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004339 break;
4340 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004341 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004342 break;
4343#endif
4344 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004345 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004346 break;
4347 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004348 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004349 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350 break;
4351 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004352 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004353 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004355 case MSR_TSC_AUX:
4356 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4357 return 1;
4358
4359 /*
4360 * This is rare, so we update the MSR here instead of using
4361 * direct_access_msrs. Doing that would require a rdmsr in
4362 * svm_vcpu_put.
4363 */
4364 svm->tsc_aux = data;
4365 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4366 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004367 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004368 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004369 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4370 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004371 break;
4372 }
4373 if (data & DEBUGCTL_RESERVED_BITS)
4374 return 1;
4375
4376 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004377 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004378 if (data & (1ULL<<0))
4379 svm_enable_lbrv(svm);
4380 else
4381 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004382 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004383 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004384 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004385 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004386 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004387 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004388 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004389 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004390 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004391 case MSR_F10H_DECFG: {
4392 struct kvm_msr_entry msr_entry;
4393
4394 msr_entry.index = msr->index;
4395 if (svm_get_msr_feature(&msr_entry))
4396 return 1;
4397
4398 /* Check the supported bits */
4399 if (data & ~msr_entry.data)
4400 return 1;
4401
4402 /* Don't allow the guest to change a bit, #GP */
4403 if (!msr->host_initiated && (data ^ msr_entry.data))
4404 return 1;
4405
4406 svm->msr_decfg = data;
4407 break;
4408 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004409 case MSR_IA32_APICBASE:
4410 if (kvm_vcpu_apicv_active(vcpu))
4411 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004412 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004413 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004414 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004415 }
4416 return 0;
4417}
4418
Avi Kivity851ba692009-08-24 11:10:17 +03004419static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004420{
Will Auld8fe8ab42012-11-29 12:42:12 -08004421 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004422 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4423 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004424
Will Auld8fe8ab42012-11-29 12:42:12 -08004425 msr.data = data;
4426 msr.index = ecx;
4427 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004428
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004429 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004430 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004431 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004432 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004433 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004434 } else {
4435 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004436 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004437 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004438}
4439
Avi Kivity851ba692009-08-24 11:10:17 +03004440static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441{
Rusty Russelle756fc62007-07-30 20:07:08 +10004442 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004443 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004444 else
Avi Kivity851ba692009-08-24 11:10:17 +03004445 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004446}
4447
Avi Kivity851ba692009-08-24 11:10:17 +03004448static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004449{
Avi Kivity3842d132010-07-27 12:30:24 +03004450 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004451 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004452 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004453 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004454 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004455 return 1;
4456}
4457
Mark Langsdorf565d0992009-10-06 14:25:02 -05004458static int pause_interception(struct vcpu_svm *svm)
4459{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004460 struct kvm_vcpu *vcpu = &svm->vcpu;
4461 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4462
Babu Moger8566ac82018-03-16 16:37:26 -04004463 if (pause_filter_thresh)
4464 grow_ple_window(vcpu);
4465
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004466 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004467 return 1;
4468}
4469
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004470static int nop_interception(struct vcpu_svm *svm)
4471{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004472 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004473}
4474
4475static int monitor_interception(struct vcpu_svm *svm)
4476{
4477 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4478 return nop_interception(svm);
4479}
4480
4481static int mwait_interception(struct vcpu_svm *svm)
4482{
4483 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4484 return nop_interception(svm);
4485}
4486
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004487enum avic_ipi_failure_cause {
4488 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4489 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4490 AVIC_IPI_FAILURE_INVALID_TARGET,
4491 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4492};
4493
4494static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4495{
4496 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4497 u32 icrl = svm->vmcb->control.exit_info_1;
4498 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004499 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004500 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4501
4502 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4503
4504 switch (id) {
4505 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4506 /*
4507 * AVIC hardware handles the generation of
4508 * IPIs when the specified Message Type is Fixed
4509 * (also known as fixed delivery mode) and
4510 * the Trigger Mode is edge-triggered. The hardware
4511 * also supports self and broadcast delivery modes
4512 * specified via the Destination Shorthand(DSH)
4513 * field of the ICRL. Logical and physical APIC ID
4514 * formats are supported. All other IPI types cause
4515 * a #VMEXIT, which needs to emulated.
4516 */
4517 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4518 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4519 break;
4520 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004521 int i;
4522 struct kvm_vcpu *vcpu;
4523 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004524 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4525
4526 /*
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004527 * At this point, we expect that the AVIC HW has already
4528 * set the appropriate IRR bits on the valid target
4529 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004530 */
Suthikulpanit, Suravee4a580382019-03-20 08:12:28 +00004531 kvm_for_each_vcpu(i, vcpu, kvm) {
4532 bool m = kvm_apic_match_dest(vcpu, apic,
4533 icrl & KVM_APIC_SHORT_MASK,
4534 GET_APIC_DEST_FIELD(icrh),
4535 icrl & KVM_APIC_DEST_MASK);
4536
4537 if (m && !avic_vcpu_is_running(vcpu))
4538 kvm_vcpu_wake_up(vcpu);
4539 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004540 break;
4541 }
4542 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004543 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4544 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004545 break;
4546 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4547 WARN_ONCE(1, "Invalid backing page\n");
4548 break;
4549 default:
4550 pr_err("Unknown IPI interception\n");
4551 }
4552
4553 return 1;
4554}
4555
4556static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4557{
Sean Christopherson81811c12018-03-20 12:17:21 -07004558 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004559 int index;
4560 u32 *logical_apic_id_table;
4561 int dlid = GET_APIC_LOGICAL_ID(ldr);
4562
4563 if (!dlid)
4564 return NULL;
4565
4566 if (flat) { /* flat */
4567 index = ffs(dlid) - 1;
4568 if (index > 7)
4569 return NULL;
4570 } else { /* cluster */
4571 int cluster = (dlid & 0xf0) >> 4;
4572 int apic = ffs(dlid & 0x0f) - 1;
4573
4574 if ((apic < 0) || (apic > 7) ||
4575 (cluster >= 0xf))
4576 return NULL;
4577 index = (cluster << 2) + apic;
4578 }
4579
Sean Christopherson81811c12018-03-20 12:17:21 -07004580 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004581
4582 return &logical_apic_id_table[index];
4583}
4584
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004585static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004586{
4587 bool flat;
4588 u32 *entry, new_entry;
4589
4590 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4591 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4592 if (!entry)
4593 return -EINVAL;
4594
4595 new_entry = READ_ONCE(*entry);
4596 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4597 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004598 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004599 WRITE_ONCE(*entry, new_entry);
4600
4601 return 0;
4602}
4603
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004604static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
4605{
4606 struct vcpu_svm *svm = to_svm(vcpu);
4607 bool flat = svm->dfr_reg == APIC_DFR_FLAT;
4608 u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
4609
4610 if (entry)
Suthikulpanit, Suraveee44e3ea2019-03-26 03:57:37 +00004611 clear_bit(AVIC_LOGICAL_ID_ENTRY_VALID_BIT, (unsigned long *)entry);
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004612}
4613
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004614static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4615{
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004616 int ret = 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004617 struct vcpu_svm *svm = to_svm(vcpu);
4618 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4619
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004620 if (ldr == svm->ldr_reg)
4621 return 0;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004622
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004623 avic_invalidate_logical_id_entry(vcpu);
4624
4625 if (ldr)
4626 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr);
4627
4628 if (!ret)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004629 svm->ldr_reg = ldr;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004630
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004631 return ret;
4632}
4633
4634static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4635{
4636 u64 *old, *new;
4637 struct vcpu_svm *svm = to_svm(vcpu);
4638 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4639 u32 id = (apic_id_reg >> 24) & 0xff;
4640
4641 if (vcpu->vcpu_id == id)
4642 return 0;
4643
4644 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4645 new = avic_get_physical_id_entry(vcpu, id);
4646 if (!new || !old)
4647 return 1;
4648
4649 /* We need to move physical_id_entry to new offset */
4650 *new = *old;
4651 *old = 0ULL;
4652 to_svm(vcpu)->avic_physical_id_cache = new;
4653
4654 /*
4655 * Also update the guest physical APIC ID in the logical
4656 * APIC ID table entry if already setup the LDR.
4657 */
4658 if (svm->ldr_reg)
4659 avic_handle_ldr_update(vcpu);
4660
4661 return 0;
4662}
4663
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004664static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004665{
4666 struct vcpu_svm *svm = to_svm(vcpu);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004667 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004668
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004669 if (svm->dfr_reg == dfr)
4670 return;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004671
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00004672 avic_invalidate_logical_id_entry(vcpu);
4673 svm->dfr_reg = dfr;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004674}
4675
4676static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4677{
4678 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4679 u32 offset = svm->vmcb->control.exit_info_1 &
4680 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4681
4682 switch (offset) {
4683 case APIC_ID:
4684 if (avic_handle_apic_id_update(&svm->vcpu))
4685 return 0;
4686 break;
4687 case APIC_LDR:
4688 if (avic_handle_ldr_update(&svm->vcpu))
4689 return 0;
4690 break;
4691 case APIC_DFR:
4692 avic_handle_dfr_update(&svm->vcpu);
4693 break;
4694 default:
4695 break;
4696 }
4697
4698 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4699
4700 return 1;
4701}
4702
4703static bool is_avic_unaccelerated_access_trap(u32 offset)
4704{
4705 bool ret = false;
4706
4707 switch (offset) {
4708 case APIC_ID:
4709 case APIC_EOI:
4710 case APIC_RRR:
4711 case APIC_LDR:
4712 case APIC_DFR:
4713 case APIC_SPIV:
4714 case APIC_ESR:
4715 case APIC_ICR:
4716 case APIC_LVTT:
4717 case APIC_LVTTHMR:
4718 case APIC_LVTPC:
4719 case APIC_LVT0:
4720 case APIC_LVT1:
4721 case APIC_LVTERR:
4722 case APIC_TMICT:
4723 case APIC_TDCR:
4724 ret = true;
4725 break;
4726 default:
4727 break;
4728 }
4729 return ret;
4730}
4731
4732static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4733{
4734 int ret = 0;
4735 u32 offset = svm->vmcb->control.exit_info_1 &
4736 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4737 u32 vector = svm->vmcb->control.exit_info_2 &
4738 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4739 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4740 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4741 bool trap = is_avic_unaccelerated_access_trap(offset);
4742
4743 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4744 trap, write, vector);
4745 if (trap) {
4746 /* Handling Trap */
4747 WARN_ONCE(!write, "svm: Handling trap read.\n");
4748 ret = avic_unaccel_trap_write(svm);
4749 } else {
4750 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004751 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004752 }
4753
4754 return ret;
4755}
4756
Mathias Krause09941fb2012-08-30 01:30:20 +02004757static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004758 [SVM_EXIT_READ_CR0] = cr_interception,
4759 [SVM_EXIT_READ_CR3] = cr_interception,
4760 [SVM_EXIT_READ_CR4] = cr_interception,
4761 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004762 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004763 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004764 [SVM_EXIT_WRITE_CR3] = cr_interception,
4765 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004766 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004767 [SVM_EXIT_READ_DR0] = dr_interception,
4768 [SVM_EXIT_READ_DR1] = dr_interception,
4769 [SVM_EXIT_READ_DR2] = dr_interception,
4770 [SVM_EXIT_READ_DR3] = dr_interception,
4771 [SVM_EXIT_READ_DR4] = dr_interception,
4772 [SVM_EXIT_READ_DR5] = dr_interception,
4773 [SVM_EXIT_READ_DR6] = dr_interception,
4774 [SVM_EXIT_READ_DR7] = dr_interception,
4775 [SVM_EXIT_WRITE_DR0] = dr_interception,
4776 [SVM_EXIT_WRITE_DR1] = dr_interception,
4777 [SVM_EXIT_WRITE_DR2] = dr_interception,
4778 [SVM_EXIT_WRITE_DR3] = dr_interception,
4779 [SVM_EXIT_WRITE_DR4] = dr_interception,
4780 [SVM_EXIT_WRITE_DR5] = dr_interception,
4781 [SVM_EXIT_WRITE_DR6] = dr_interception,
4782 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004783 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4784 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004785 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004786 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004787 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004788 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004789 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004790 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004791 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004792 [SVM_EXIT_SMI] = nop_on_interception,
4793 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004794 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004795 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004796 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004797 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004798 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004799 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004800 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004801 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004802 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004803 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004804 [SVM_EXIT_MSR] = msr_interception,
4805 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004806 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004807 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004808 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004809 [SVM_EXIT_VMLOAD] = vmload_interception,
4810 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004811 [SVM_EXIT_STGI] = stgi_interception,
4812 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004813 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004814 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004815 [SVM_EXIT_MONITOR] = monitor_interception,
4816 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004817 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004818 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004819 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004820 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4821 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822};
4823
Joe Perchesae8cc052011-04-24 22:00:50 -07004824static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004825{
4826 struct vcpu_svm *svm = to_svm(vcpu);
4827 struct vmcb_control_area *control = &svm->vmcb->control;
4828 struct vmcb_save_area *save = &svm->vmcb->save;
4829
4830 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004831 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4832 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4833 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4834 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4835 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4836 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4837 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004838 pr_err("%-20s%d\n", "pause filter threshold:",
4839 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004840 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4841 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4842 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4843 pr_err("%-20s%d\n", "asid:", control->asid);
4844 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4845 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4846 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4847 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4848 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4849 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4850 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4851 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4852 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4853 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4854 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004855 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004856 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4857 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004858 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004859 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004860 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4861 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4862 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004863 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004864 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4865 "es:",
4866 save->es.selector, save->es.attrib,
4867 save->es.limit, save->es.base);
4868 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4869 "cs:",
4870 save->cs.selector, save->cs.attrib,
4871 save->cs.limit, save->cs.base);
4872 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4873 "ss:",
4874 save->ss.selector, save->ss.attrib,
4875 save->ss.limit, save->ss.base);
4876 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4877 "ds:",
4878 save->ds.selector, save->ds.attrib,
4879 save->ds.limit, save->ds.base);
4880 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4881 "fs:",
4882 save->fs.selector, save->fs.attrib,
4883 save->fs.limit, save->fs.base);
4884 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4885 "gs:",
4886 save->gs.selector, save->gs.attrib,
4887 save->gs.limit, save->gs.base);
4888 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4889 "gdtr:",
4890 save->gdtr.selector, save->gdtr.attrib,
4891 save->gdtr.limit, save->gdtr.base);
4892 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4893 "ldtr:",
4894 save->ldtr.selector, save->ldtr.attrib,
4895 save->ldtr.limit, save->ldtr.base);
4896 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4897 "idtr:",
4898 save->idtr.selector, save->idtr.attrib,
4899 save->idtr.limit, save->idtr.base);
4900 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4901 "tr:",
4902 save->tr.selector, save->tr.attrib,
4903 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004904 pr_err("cpl: %d efer: %016llx\n",
4905 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004906 pr_err("%-15s %016llx %-13s %016llx\n",
4907 "cr0:", save->cr0, "cr2:", save->cr2);
4908 pr_err("%-15s %016llx %-13s %016llx\n",
4909 "cr3:", save->cr3, "cr4:", save->cr4);
4910 pr_err("%-15s %016llx %-13s %016llx\n",
4911 "dr6:", save->dr6, "dr7:", save->dr7);
4912 pr_err("%-15s %016llx %-13s %016llx\n",
4913 "rip:", save->rip, "rflags:", save->rflags);
4914 pr_err("%-15s %016llx %-13s %016llx\n",
4915 "rsp:", save->rsp, "rax:", save->rax);
4916 pr_err("%-15s %016llx %-13s %016llx\n",
4917 "star:", save->star, "lstar:", save->lstar);
4918 pr_err("%-15s %016llx %-13s %016llx\n",
4919 "cstar:", save->cstar, "sfmask:", save->sfmask);
4920 pr_err("%-15s %016llx %-13s %016llx\n",
4921 "kernel_gs_base:", save->kernel_gs_base,
4922 "sysenter_cs:", save->sysenter_cs);
4923 pr_err("%-15s %016llx %-13s %016llx\n",
4924 "sysenter_esp:", save->sysenter_esp,
4925 "sysenter_eip:", save->sysenter_eip);
4926 pr_err("%-15s %016llx %-13s %016llx\n",
4927 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4928 pr_err("%-15s %016llx %-13s %016llx\n",
4929 "br_from:", save->br_from, "br_to:", save->br_to);
4930 pr_err("%-15s %016llx %-13s %016llx\n",
4931 "excp_from:", save->last_excp_from,
4932 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004933}
4934
Avi Kivity586f9602010-11-18 13:09:54 +02004935static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4936{
4937 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4938
4939 *info1 = control->exit_info_1;
4940 *info2 = control->exit_info_2;
4941}
4942
Avi Kivity851ba692009-08-24 11:10:17 +03004943static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004944{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004945 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004946 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004947 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004948
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004949 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4950
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004951 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004952 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4953 if (npt_enabled)
4954 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004955
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004956 if (unlikely(svm->nested.exit_required)) {
4957 nested_svm_vmexit(svm);
4958 svm->nested.exit_required = false;
4959
4960 return 1;
4961 }
4962
Joerg Roedel20307532010-11-29 17:51:48 +01004963 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004964 int vmexit;
4965
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004966 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4967 svm->vmcb->control.exit_info_1,
4968 svm->vmcb->control.exit_info_2,
4969 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004970 svm->vmcb->control.exit_int_info_err,
4971 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004972
Joerg Roedel410e4d52009-08-07 11:49:44 +02004973 vmexit = nested_svm_exit_special(svm);
4974
4975 if (vmexit == NESTED_EXIT_CONTINUE)
4976 vmexit = nested_svm_exit_handled(svm);
4977
4978 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004979 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004980 }
4981
Joerg Roedela5c38322009-08-07 11:49:32 +02004982 svm_complete_interrupts(svm);
4983
Avi Kivity04d2cc72007-09-10 18:10:54 +03004984 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4985 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4986 kvm_run->fail_entry.hardware_entry_failure_reason
4987 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004988 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4989 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004990 return 0;
4991 }
4992
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004993 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004994 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004995 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4996 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004997 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004998 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004999 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005000 exit_code);
5001
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02005002 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005003 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04005004 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005005 kvm_queue_exception(vcpu, UD_VECTOR);
5006 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005007 }
5008
Avi Kivity851ba692009-08-24 11:10:17 +03005009 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005010}
5011
5012static void reload_tss(struct kvm_vcpu *vcpu)
5013{
5014 int cpu = raw_smp_processor_id();
5015
Tejun Heo0fe1e002009-10-29 22:34:14 +09005016 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5017 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005018 load_TR_desc();
5019}
5020
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005021static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5022{
5023 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5024 int asid = sev_get_asid(svm->vcpu.kvm);
5025
5026 /* Assign the asid allocated with this SEV guest */
5027 svm->vmcb->control.asid = asid;
5028
5029 /*
5030 * Flush guest TLB:
5031 *
5032 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5033 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5034 */
5035 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5036 svm->last_cpu == cpu)
5037 return;
5038
5039 svm->last_cpu = cpu;
5040 sd->sev_vmcbs[asid] = svm->vmcb;
5041 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5042 mark_dirty(svm->vmcb, VMCB_ASID);
5043}
5044
Rusty Russelle756fc62007-07-30 20:07:08 +10005045static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005046{
5047 int cpu = raw_smp_processor_id();
5048
Tejun Heo0fe1e002009-10-29 22:34:14 +09005049 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005050
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005051 if (sev_guest(svm->vcpu.kvm))
5052 return pre_sev_run(svm, cpu);
5053
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005054 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005055 if (svm->asid_generation != sd->asid_generation)
5056 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005057}
5058
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005059static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5060{
5061 struct vcpu_svm *svm = to_svm(vcpu);
5062
5063 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5064 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005065 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005066 ++vcpu->stat.nmi_injections;
5067}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005068
Eddie Dong85f455f2007-07-06 12:20:49 +03005069static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005070{
5071 struct vmcb_control_area *control;
5072
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005073 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005074 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005075 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005076 control->int_ctl &= ~V_INTR_PRIO_MASK;
5077 control->int_ctl |= V_IRQ_MASK |
5078 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005079 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005080}
5081
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005082static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005083{
5084 struct vcpu_svm *svm = to_svm(vcpu);
5085
Joerg Roedel2af91942009-08-07 11:49:28 +02005086 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005087
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005088 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5089 ++vcpu->stat.irq_injections;
5090
Alexander Graf219b65d2009-06-15 15:21:25 +02005091 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5092 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005093}
5094
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005095static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5096{
5097 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5098}
5099
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005100static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5101{
5102 struct vcpu_svm *svm = to_svm(vcpu);
5103
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005104 if (svm_nested_virtualize_tpr(vcpu) ||
5105 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005106 return;
5107
Radim Krčmář596f3142014-03-11 19:11:18 +01005108 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5109
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005110 if (irr == -1)
5111 return;
5112
5113 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005114 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005115}
5116
Jim Mattson8d860bb2018-05-09 16:56:05 -04005117static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005118{
5119 return;
5120}
5121
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005122static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005123{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005124 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005125}
5126
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005127static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5128{
5129}
5130
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005131static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005132{
5133}
5134
5135/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005136static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5137{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005138 struct vcpu_svm *svm = to_svm(vcpu);
5139 struct vmcb *vmcb = svm->vmcb;
5140
Suthikulpanit, Suraveec57cd3c2019-01-29 08:09:46 +00005141 if (kvm_vcpu_apicv_active(vcpu))
5142 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
5143 else
5144 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5145 mark_dirty(vmcb, VMCB_AVIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005146}
5147
Andrey Smetanin63086302015-11-10 15:36:32 +03005148static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005149{
5150 return;
5151}
5152
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005153static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5154{
5155 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5156 smp_mb__after_atomic();
5157
5158 if (avic_vcpu_is_running(vcpu))
5159 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005160 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005161 else
5162 kvm_vcpu_wake_up(vcpu);
5163}
5164
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005165static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5166{
5167 unsigned long flags;
5168 struct amd_svm_iommu_ir *cur;
5169
5170 spin_lock_irqsave(&svm->ir_list_lock, flags);
5171 list_for_each_entry(cur, &svm->ir_list, node) {
5172 if (cur->data != pi->ir_data)
5173 continue;
5174 list_del(&cur->node);
5175 kfree(cur);
5176 break;
5177 }
5178 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5179}
5180
5181static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5182{
5183 int ret = 0;
5184 unsigned long flags;
5185 struct amd_svm_iommu_ir *ir;
5186
5187 /**
5188 * In some cases, the existing irte is updaed and re-set,
5189 * so we need to check here if it's already been * added
5190 * to the ir_list.
5191 */
5192 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5193 struct kvm *kvm = svm->vcpu.kvm;
5194 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5195 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5196 struct vcpu_svm *prev_svm;
5197
5198 if (!prev_vcpu) {
5199 ret = -EINVAL;
5200 goto out;
5201 }
5202
5203 prev_svm = to_svm(prev_vcpu);
5204 svm_ir_list_del(prev_svm, pi);
5205 }
5206
5207 /**
5208 * Allocating new amd_iommu_pi_data, which will get
5209 * add to the per-vcpu ir_list.
5210 */
Ben Gardon1ec69642019-02-11 11:02:51 -08005211 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL_ACCOUNT);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005212 if (!ir) {
5213 ret = -ENOMEM;
5214 goto out;
5215 }
5216 ir->data = pi->ir_data;
5217
5218 spin_lock_irqsave(&svm->ir_list_lock, flags);
5219 list_add(&ir->node, &svm->ir_list);
5220 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5221out:
5222 return ret;
5223}
5224
5225/**
5226 * Note:
5227 * The HW cannot support posting multicast/broadcast
5228 * interrupts to a vCPU. So, we still use legacy interrupt
5229 * remapping for these kind of interrupts.
5230 *
5231 * For lowest-priority interrupts, we only support
5232 * those with single CPU as the destination, e.g. user
5233 * configures the interrupts via /proc/irq or uses
5234 * irqbalance to make the interrupts single-CPU.
5235 */
5236static int
5237get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5238 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5239{
5240 struct kvm_lapic_irq irq;
5241 struct kvm_vcpu *vcpu = NULL;
5242
5243 kvm_set_msi_irq(kvm, e, &irq);
5244
5245 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5246 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5247 __func__, irq.vector);
5248 return -1;
5249 }
5250
5251 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5252 irq.vector);
5253 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005254 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005255 vcpu_info->vector = irq.vector;
5256
5257 return 0;
5258}
5259
5260/*
5261 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5262 *
5263 * @kvm: kvm
5264 * @host_irq: host irq of the interrupt
5265 * @guest_irq: gsi of the interrupt
5266 * @set: set or unset PI
5267 * returns 0 on success, < 0 on failure
5268 */
5269static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5270 uint32_t guest_irq, bool set)
5271{
5272 struct kvm_kernel_irq_routing_entry *e;
5273 struct kvm_irq_routing_table *irq_rt;
5274 int idx, ret = -EINVAL;
5275
5276 if (!kvm_arch_has_assigned_device(kvm) ||
5277 !irq_remapping_cap(IRQ_POSTING_CAP))
5278 return 0;
5279
5280 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5281 __func__, host_irq, guest_irq, set);
5282
5283 idx = srcu_read_lock(&kvm->irq_srcu);
5284 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5285 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5286
5287 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5288 struct vcpu_data vcpu_info;
5289 struct vcpu_svm *svm = NULL;
5290
5291 if (e->type != KVM_IRQ_ROUTING_MSI)
5292 continue;
5293
5294 /**
5295 * Here, we setup with legacy mode in the following cases:
5296 * 1. When cannot target interrupt to a specific vcpu.
5297 * 2. Unsetting posted interrupt.
5298 * 3. APIC virtialization is disabled for the vcpu.
5299 */
5300 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5301 kvm_vcpu_apicv_active(&svm->vcpu)) {
5302 struct amd_iommu_pi_data pi;
5303
5304 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005305 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5306 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005307 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005308 svm->vcpu.vcpu_id);
5309 pi.is_guest_mode = true;
5310 pi.vcpu_data = &vcpu_info;
5311 ret = irq_set_vcpu_affinity(host_irq, &pi);
5312
5313 /**
5314 * Here, we successfully setting up vcpu affinity in
5315 * IOMMU guest mode. Now, we need to store the posted
5316 * interrupt information in a per-vcpu ir_list so that
5317 * we can reference to them directly when we update vcpu
5318 * scheduling information in IOMMU irte.
5319 */
5320 if (!ret && pi.is_guest_mode)
5321 svm_ir_list_add(svm, &pi);
5322 } else {
5323 /* Use legacy mode in IRTE */
5324 struct amd_iommu_pi_data pi;
5325
5326 /**
5327 * Here, pi is used to:
5328 * - Tell IOMMU to use legacy mode for this interrupt.
5329 * - Retrieve ga_tag of prior interrupt remapping data.
5330 */
5331 pi.is_guest_mode = false;
5332 ret = irq_set_vcpu_affinity(host_irq, &pi);
5333
5334 /**
5335 * Check if the posted interrupt was previously
5336 * setup with the guest_mode by checking if the ga_tag
5337 * was cached. If so, we need to clean up the per-vcpu
5338 * ir_list.
5339 */
5340 if (!ret && pi.prev_ga_tag) {
5341 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5342 struct kvm_vcpu *vcpu;
5343
5344 vcpu = kvm_get_vcpu_by_id(kvm, id);
5345 if (vcpu)
5346 svm_ir_list_del(to_svm(vcpu), &pi);
5347 }
5348 }
5349
5350 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005351 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5352 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005353 vcpu_info.pi_desc_addr, set);
5354 }
5355
5356 if (ret < 0) {
5357 pr_err("%s: failed to update PI IRTE\n", __func__);
5358 goto out;
5359 }
5360 }
5361
5362 ret = 0;
5363out:
5364 srcu_read_unlock(&kvm->irq_srcu, idx);
5365 return ret;
5366}
5367
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005368static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005369{
5370 struct vcpu_svm *svm = to_svm(vcpu);
5371 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005372 int ret;
5373 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5374 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5375 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5376
5377 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005378}
5379
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005380static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5381{
5382 struct vcpu_svm *svm = to_svm(vcpu);
5383
5384 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5385}
5386
5387static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5388{
5389 struct vcpu_svm *svm = to_svm(vcpu);
5390
5391 if (masked) {
5392 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005393 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005394 } else {
5395 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005396 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005397 }
5398}
5399
Gleb Natapov78646122009-03-23 12:12:11 +02005400static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5401{
5402 struct vcpu_svm *svm = to_svm(vcpu);
5403 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005404 int ret;
5405
5406 if (!gif_set(svm) ||
5407 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5408 return 0;
5409
Avi Kivityf6e78472010-08-02 15:30:20 +03005410 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005411
Joerg Roedel20307532010-11-29 17:51:48 +01005412 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005413 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5414
5415 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005416}
5417
Jan Kiszkac9a79532014-03-07 20:03:15 +01005418static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005419{
Alexander Graf219b65d2009-06-15 15:21:25 +02005420 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005421
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005422 if (kvm_vcpu_apicv_active(vcpu))
5423 return;
5424
Joerg Roedele0231712010-02-24 18:59:10 +01005425 /*
5426 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5427 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5428 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005429 * we'll get the vintr intercept. However, if the vGIF feature is
5430 * enabled, the STGI interception will not occur. Enable the irq
5431 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005432 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005433 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005434 svm_set_vintr(svm);
5435 svm_inject_irq(svm, 0x0);
5436 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005437}
5438
Jan Kiszkac9a79532014-03-07 20:03:15 +01005439static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005440{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005441 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005442
Gleb Natapov44c11432009-05-11 13:35:52 +03005443 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5444 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005445 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005446
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005447 if (!gif_set(svm)) {
5448 if (vgif_enabled(svm))
5449 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005450 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005451 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005452
5453 if (svm->nested.exit_required)
5454 return; /* we're not going to run the guest yet */
5455
Joerg Roedele0231712010-02-24 18:59:10 +01005456 /*
5457 * Something prevents NMI from been injected. Single step over possible
5458 * problem (IRET or exception injection or interrupt shadow)
5459 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005460 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005461 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005462 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005463}
5464
Izik Eiduscbc94022007-10-25 00:29:55 +02005465static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5466{
5467 return 0;
5468}
5469
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005470static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5471{
5472 return 0;
5473}
5474
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005475static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005476{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005477 struct vcpu_svm *svm = to_svm(vcpu);
5478
5479 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5480 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5481 else
5482 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005483}
5484
Junaid Shahidfaff8752018-06-29 13:10:05 -07005485static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5486{
5487 struct vcpu_svm *svm = to_svm(vcpu);
5488
5489 invlpga(gva, svm->vmcb->control.asid);
5490}
5491
Avi Kivity04d2cc72007-09-10 18:10:54 +03005492static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5493{
5494}
5495
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005496static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5497{
5498 struct vcpu_svm *svm = to_svm(vcpu);
5499
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005500 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005501 return;
5502
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005503 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005504 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005505 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005506 }
5507}
5508
Joerg Roedel649d6862008-04-16 16:51:15 +02005509static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5510{
5511 struct vcpu_svm *svm = to_svm(vcpu);
5512 u64 cr8;
5513
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005514 if (svm_nested_virtualize_tpr(vcpu) ||
5515 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005516 return;
5517
Joerg Roedel649d6862008-04-16 16:51:15 +02005518 cr8 = kvm_get_cr8(vcpu);
5519 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5520 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5521}
5522
Gleb Natapov9222be12009-04-23 17:14:37 +03005523static void svm_complete_interrupts(struct vcpu_svm *svm)
5524{
5525 u8 vector;
5526 int type;
5527 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005528 unsigned int3_injected = svm->int3_injected;
5529
5530 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005531
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005532 /*
5533 * If we've made progress since setting HF_IRET_MASK, we've
5534 * executed an IRET and can allow NMI injection.
5535 */
5536 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5537 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005538 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005539 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5540 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005541
Gleb Natapov9222be12009-04-23 17:14:37 +03005542 svm->vcpu.arch.nmi_injected = false;
5543 kvm_clear_exception_queue(&svm->vcpu);
5544 kvm_clear_interrupt_queue(&svm->vcpu);
5545
5546 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5547 return;
5548
Avi Kivity3842d132010-07-27 12:30:24 +03005549 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5550
Gleb Natapov9222be12009-04-23 17:14:37 +03005551 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5552 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5553
5554 switch (type) {
5555 case SVM_EXITINTINFO_TYPE_NMI:
5556 svm->vcpu.arch.nmi_injected = true;
5557 break;
5558 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005559 /*
5560 * In case of software exceptions, do not reinject the vector,
5561 * but re-execute the instruction instead. Rewind RIP first
5562 * if we emulated INT3 before.
5563 */
5564 if (kvm_exception_is_soft(vector)) {
5565 if (vector == BP_VECTOR && int3_injected &&
5566 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5567 kvm_rip_write(&svm->vcpu,
5568 kvm_rip_read(&svm->vcpu) -
5569 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005570 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005571 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005572 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5573 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005574 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005575
5576 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005577 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005578 break;
5579 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005580 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005581 break;
5582 default:
5583 break;
5584 }
5585}
5586
Avi Kivityb463a6f2010-07-20 15:06:17 +03005587static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5588{
5589 struct vcpu_svm *svm = to_svm(vcpu);
5590 struct vmcb_control_area *control = &svm->vmcb->control;
5591
5592 control->exit_int_info = control->event_inj;
5593 control->exit_int_info_err = control->event_inj_err;
5594 control->event_inj = 0;
5595 svm_complete_interrupts(svm);
5596}
5597
Avi Kivity851ba692009-08-24 11:10:17 +03005598static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005599{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005600 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005601
Joerg Roedel2041a062010-04-22 12:33:08 +02005602 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5603 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5604 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5605
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005606 /*
5607 * A vmexit emulation is required before the vcpu can be executed
5608 * again.
5609 */
5610 if (unlikely(svm->nested.exit_required))
5611 return;
5612
Ladi Proseka12713c2017-06-21 09:07:00 +02005613 /*
5614 * Disable singlestep if we're injecting an interrupt/exception.
5615 * We don't want our modified rflags to be pushed on the stack where
5616 * we might not be able to easily reset them if we disabled NMI
5617 * singlestep later.
5618 */
5619 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5620 /*
5621 * Event injection happens before external interrupts cause a
5622 * vmexit and interrupts are disabled here, so smp_send_reschedule
5623 * is enough to force an immediate vmexit.
5624 */
5625 disable_nmi_singlestep(svm);
5626 smp_send_reschedule(vcpu->cpu);
5627 }
5628
Rusty Russelle756fc62007-07-30 20:07:08 +10005629 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005630
Joerg Roedel649d6862008-04-16 16:51:15 +02005631 sync_lapic_to_cr8(vcpu);
5632
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005633 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005634
Avi Kivity04d2cc72007-09-10 18:10:54 +03005635 clgi();
5636
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005637 /*
5638 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5639 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5640 * is no need to worry about the conditional branch over the wrmsr
5641 * being speculatively taken.
5642 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005643 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005644
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005645 local_irq_enable();
5646
Avi Kivity6aa8b732006-12-10 02:21:36 -08005647 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005648 "push %%" _ASM_BP "; \n\t"
5649 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5650 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5651 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5652 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5653 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5654 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005655#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005656 "mov %c[r8](%[svm]), %%r8 \n\t"
5657 "mov %c[r9](%[svm]), %%r9 \n\t"
5658 "mov %c[r10](%[svm]), %%r10 \n\t"
5659 "mov %c[r11](%[svm]), %%r11 \n\t"
5660 "mov %c[r12](%[svm]), %%r12 \n\t"
5661 "mov %c[r13](%[svm]), %%r13 \n\t"
5662 "mov %c[r14](%[svm]), %%r14 \n\t"
5663 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005664#endif
5665
Avi Kivity6aa8b732006-12-10 02:21:36 -08005666 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005667 "push %%" _ASM_AX " \n\t"
5668 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005669 __ex("vmload %%" _ASM_AX) "\n\t"
5670 __ex("vmrun %%" _ASM_AX) "\n\t"
5671 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005672 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005673
5674 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005675 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5676 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5677 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5678 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5679 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5680 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005681#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005682 "mov %%r8, %c[r8](%[svm]) \n\t"
5683 "mov %%r9, %c[r9](%[svm]) \n\t"
5684 "mov %%r10, %c[r10](%[svm]) \n\t"
5685 "mov %%r11, %c[r11](%[svm]) \n\t"
5686 "mov %%r12, %c[r12](%[svm]) \n\t"
5687 "mov %%r13, %c[r13](%[svm]) \n\t"
5688 "mov %%r14, %c[r14](%[svm]) \n\t"
5689 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005690 /*
5691 * Clear host registers marked as clobbered to prevent
5692 * speculative use.
5693 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005694 "xor %%r8d, %%r8d \n\t"
5695 "xor %%r9d, %%r9d \n\t"
5696 "xor %%r10d, %%r10d \n\t"
5697 "xor %%r11d, %%r11d \n\t"
5698 "xor %%r12d, %%r12d \n\t"
5699 "xor %%r13d, %%r13d \n\t"
5700 "xor %%r14d, %%r14d \n\t"
5701 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005702#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005703 "xor %%ebx, %%ebx \n\t"
5704 "xor %%ecx, %%ecx \n\t"
5705 "xor %%edx, %%edx \n\t"
5706 "xor %%esi, %%esi \n\t"
5707 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005708 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005709 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005710 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005711 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005712 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5713 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5714 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5715 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5716 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5717 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005718#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005719 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5720 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5721 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5722 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5723 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5724 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5725 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5726 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005727#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005728 : "cc", "memory"
5729#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005730 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005731 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005732#else
5733 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005734#endif
5735 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005736
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005737 /* Eliminate branch target predictions from guest mode */
5738 vmexit_fill_RSB();
5739
5740#ifdef CONFIG_X86_64
5741 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5742#else
5743 loadsegment(fs, svm->host.fs);
5744#ifndef CONFIG_X86_32_LAZY_GS
5745 loadsegment(gs, svm->host.gs);
5746#endif
5747#endif
5748
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005749 /*
5750 * We do not use IBRS in the kernel. If this vCPU has used the
5751 * SPEC_CTRL MSR it may have left it on; save the value and
5752 * turn it off. This is much more efficient than blindly adding
5753 * it to the atomic save/restore list. Especially as the former
5754 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5755 *
5756 * For non-nested case:
5757 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5758 * save it.
5759 *
5760 * For nested case:
5761 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5762 * save it.
5763 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005764 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005765 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005766
Avi Kivity6aa8b732006-12-10 02:21:36 -08005767 reload_tss(vcpu);
5768
Avi Kivity56ba47d2007-11-07 17:14:18 +02005769 local_irq_disable();
5770
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005771 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5772
Avi Kivity13c34e02010-10-21 12:20:31 +02005773 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5774 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5775 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5776 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5777
Joerg Roedel3781c012011-01-14 16:45:02 +01005778 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005779 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005780
5781 stgi();
5782
5783 /* Any pending NMI will happen here */
5784
5785 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005786 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005787
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005788 sync_cr8_to_lapic(vcpu);
5789
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005790 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005791
Joerg Roedel38e5e922010-12-03 15:25:16 +01005792 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5793
Gleb Natapov631bc482010-10-14 11:22:52 +02005794 /* if exit due to PF check for async PF */
5795 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005796 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005797
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005798 if (npt_enabled) {
5799 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5800 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5801 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005802
5803 /*
5804 * We need to handle MC intercepts here before the vcpu has a chance to
5805 * change the physical cpu
5806 */
5807 if (unlikely(svm->vmcb->control.exit_code ==
5808 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5809 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005810
5811 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005812}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005813STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005814
Avi Kivity6aa8b732006-12-10 02:21:36 -08005815static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5816{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005817 struct vcpu_svm *svm = to_svm(vcpu);
5818
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005819 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005820 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005821}
5822
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005823static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5824{
5825 struct vcpu_svm *svm = to_svm(vcpu);
5826
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005827 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005828 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005829
5830 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005831 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005832 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005833}
5834
Avi Kivity6aa8b732006-12-10 02:21:36 -08005835static int is_disabled(void)
5836{
Joerg Roedel6031a612007-06-22 12:29:50 +03005837 u64 vm_cr;
5838
5839 rdmsrl(MSR_VM_CR, vm_cr);
5840 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5841 return 1;
5842
Avi Kivity6aa8b732006-12-10 02:21:36 -08005843 return 0;
5844}
5845
Ingo Molnar102d8322007-02-19 14:37:47 +02005846static void
5847svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5848{
5849 /*
5850 * Patch in the VMMCALL instruction:
5851 */
5852 hypercall[0] = 0x0f;
5853 hypercall[1] = 0x01;
5854 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005855}
5856
Yang, Sheng002c7f72007-07-31 14:23:01 +03005857static void svm_check_processor_compat(void *rtn)
5858{
5859 *(int *)rtn = 0;
5860}
5861
Avi Kivity774ead32007-12-26 13:57:04 +02005862static bool svm_cpu_has_accelerated_tpr(void)
5863{
5864 return false;
5865}
5866
Tom Lendackybc226f02018-05-10 22:06:39 +02005867static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005868{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005869 switch (index) {
5870 case MSR_IA32_MCG_EXT_CTL:
5871 return false;
5872 default:
5873 break;
5874 }
5875
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005876 return true;
5877}
5878
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005879static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5880{
5881 return 0;
5882}
5883
Sheng Yang0e851882009-12-18 16:48:46 +08005884static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5885{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005886 struct vcpu_svm *svm = to_svm(vcpu);
5887
5888 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005889 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005890
5891 if (!kvm_vcpu_apicv_active(vcpu))
5892 return;
5893
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005894 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005895}
5896
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005897static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5898{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005899 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005900 case 0x1:
5901 if (avic)
5902 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5903 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005904 case 0x80000001:
5905 if (nested)
5906 entry->ecx |= (1 << 2); /* Set SVM bit */
5907 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005908 case 0x8000000A:
5909 entry->eax = 1; /* SVM revision 1 */
5910 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5911 ASID emulation to nested SVM */
5912 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005913 entry->edx = 0; /* Per default do not support any
5914 additional features */
5915
5916 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005917 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005918 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005919
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005920 /* Support NPT for the guest if enabled */
5921 if (npt_enabled)
5922 entry->edx |= SVM_FEATURE_NPT;
5923
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005924 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005925 case 0x8000001F:
5926 /* Support memory encryption cpuid if host supports it */
5927 if (boot_cpu_has(X86_FEATURE_SEV))
5928 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5929 &entry->ecx, &entry->edx);
5930
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005931 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005932}
5933
Sheng Yang17cc3932010-01-05 19:02:27 +08005934static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005935{
Sheng Yang17cc3932010-01-05 19:02:27 +08005936 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005937}
5938
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005939static bool svm_rdtscp_supported(void)
5940{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005941 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005942}
5943
Mao, Junjiead756a12012-07-02 01:18:48 +00005944static bool svm_invpcid_supported(void)
5945{
5946 return false;
5947}
5948
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005949static bool svm_mpx_supported(void)
5950{
5951 return false;
5952}
5953
Wanpeng Li55412b22014-12-02 19:21:30 +08005954static bool svm_xsaves_supported(void)
5955{
5956 return false;
5957}
5958
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005959static bool svm_umip_emulated(void)
5960{
5961 return false;
5962}
5963
Chao Peng86f52012018-10-24 16:05:11 +08005964static bool svm_pt_supported(void)
5965{
5966 return false;
5967}
5968
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005969static bool svm_has_wbinvd_exit(void)
5970{
5971 return true;
5972}
5973
Joerg Roedel80612522011-04-04 12:39:33 +02005974#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005975 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005976#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005977 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005978#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005979 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005980
Mathias Krause09941fb2012-08-30 01:30:20 +02005981static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005982 u32 exit_code;
5983 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005984} x86_intercept_map[] = {
5985 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5986 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5987 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5988 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5989 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005990 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5991 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005992 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5993 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5994 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5995 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5996 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5997 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5998 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5999 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006000 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6001 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6002 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6003 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6004 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6005 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6006 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6007 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006008 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6009 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6010 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006011 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6012 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6013 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6014 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6015 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6016 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6017 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6018 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6019 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006020 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6021 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6022 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6023 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6024 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6025 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6026 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006027 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6028 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6029 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6030 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006031};
6032
Joerg Roedel80612522011-04-04 12:39:33 +02006033#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006034#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006035#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006036
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006037static int svm_check_intercept(struct kvm_vcpu *vcpu,
6038 struct x86_instruction_info *info,
6039 enum x86_intercept_stage stage)
6040{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006041 struct vcpu_svm *svm = to_svm(vcpu);
6042 int vmexit, ret = X86EMUL_CONTINUE;
6043 struct __x86_intercept icpt_info;
6044 struct vmcb *vmcb = svm->vmcb;
6045
6046 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6047 goto out;
6048
6049 icpt_info = x86_intercept_map[info->intercept];
6050
Avi Kivity40e19b52011-04-21 12:35:41 +03006051 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006052 goto out;
6053
6054 switch (icpt_info.exit_code) {
6055 case SVM_EXIT_READ_CR0:
6056 if (info->intercept == x86_intercept_cr_read)
6057 icpt_info.exit_code += info->modrm_reg;
6058 break;
6059 case SVM_EXIT_WRITE_CR0: {
6060 unsigned long cr0, val;
6061 u64 intercept;
6062
6063 if (info->intercept == x86_intercept_cr_write)
6064 icpt_info.exit_code += info->modrm_reg;
6065
Jan Kiszka62baf442014-06-29 21:55:53 +02006066 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6067 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006068 break;
6069
6070 intercept = svm->nested.intercept;
6071
6072 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6073 break;
6074
6075 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6076 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6077
6078 if (info->intercept == x86_intercept_lmsw) {
6079 cr0 &= 0xfUL;
6080 val &= 0xfUL;
6081 /* lmsw can't clear PE - catch this here */
6082 if (cr0 & X86_CR0_PE)
6083 val |= X86_CR0_PE;
6084 }
6085
6086 if (cr0 ^ val)
6087 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6088
6089 break;
6090 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006091 case SVM_EXIT_READ_DR0:
6092 case SVM_EXIT_WRITE_DR0:
6093 icpt_info.exit_code += info->modrm_reg;
6094 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006095 case SVM_EXIT_MSR:
6096 if (info->intercept == x86_intercept_wrmsr)
6097 vmcb->control.exit_info_1 = 1;
6098 else
6099 vmcb->control.exit_info_1 = 0;
6100 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006101 case SVM_EXIT_PAUSE:
6102 /*
6103 * We get this for NOP only, but pause
6104 * is rep not, check this here
6105 */
6106 if (info->rep_prefix != REPE_PREFIX)
6107 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006108 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006109 case SVM_EXIT_IOIO: {
6110 u64 exit_info;
6111 u32 bytes;
6112
Joerg Roedelf6511932011-04-04 12:39:35 +02006113 if (info->intercept == x86_intercept_in ||
6114 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006115 exit_info = ((info->src_val & 0xffff) << 16) |
6116 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006117 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006118 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006119 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006120 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006121 }
6122
6123 if (info->intercept == x86_intercept_outs ||
6124 info->intercept == x86_intercept_ins)
6125 exit_info |= SVM_IOIO_STR_MASK;
6126
6127 if (info->rep_prefix)
6128 exit_info |= SVM_IOIO_REP_MASK;
6129
6130 bytes = min(bytes, 4u);
6131
6132 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6133
6134 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6135
6136 vmcb->control.exit_info_1 = exit_info;
6137 vmcb->control.exit_info_2 = info->next_rip;
6138
6139 break;
6140 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006141 default:
6142 break;
6143 }
6144
Bandan Dasf1047652015-06-11 02:05:33 -04006145 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6146 if (static_cpu_has(X86_FEATURE_NRIPS))
6147 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006148 vmcb->control.exit_code = icpt_info.exit_code;
6149 vmexit = nested_svm_exit_handled(svm);
6150
6151 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6152 : X86EMUL_CONTINUE;
6153
6154out:
6155 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006156}
6157
Yang Zhanga547c6d2013-04-11 19:25:10 +08006158static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6159{
6160 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006161 /*
6162 * We must have an instruction with interrupts enabled, so
6163 * the timer interrupt isn't delayed by the interrupt shadow.
6164 */
6165 asm("nop");
6166 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006167}
6168
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006169static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6170{
Babu Moger8566ac82018-03-16 16:37:26 -04006171 if (pause_filter_thresh)
6172 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006173}
6174
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006175static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6176{
6177 if (avic_handle_apic_id_update(vcpu) != 0)
6178 return;
Suthikulpanit, Suravee98d90582019-01-29 08:08:42 +00006179 avic_handle_dfr_update(vcpu);
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006180 avic_handle_ldr_update(vcpu);
6181}
6182
Borislav Petkov74f16902017-03-26 23:51:24 +02006183static void svm_setup_mce(struct kvm_vcpu *vcpu)
6184{
6185 /* [63:9] are reserved. */
6186 vcpu->arch.mcg_cap &= 0x1ff;
6187}
6188
Ladi Prosek72d7b372017-10-11 16:54:41 +02006189static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6190{
Ladi Prosek05cade72017-10-11 16:54:45 +02006191 struct vcpu_svm *svm = to_svm(vcpu);
6192
6193 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6194 if (!gif_set(svm))
6195 return 0;
6196
6197 if (is_guest_mode(&svm->vcpu) &&
6198 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6199 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6200 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6201 svm->nested.exit_required = true;
6202 return 0;
6203 }
6204
Ladi Prosek72d7b372017-10-11 16:54:41 +02006205 return 1;
6206}
6207
Ladi Prosek0234bf82017-10-11 16:54:40 +02006208static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6209{
Ladi Prosek05cade72017-10-11 16:54:45 +02006210 struct vcpu_svm *svm = to_svm(vcpu);
6211 int ret;
6212
6213 if (is_guest_mode(vcpu)) {
6214 /* FED8h - SVM Guest */
6215 put_smstate(u64, smstate, 0x7ed8, 1);
6216 /* FEE0h - SVM Guest VMCB Physical Address */
6217 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6218
6219 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6220 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6221 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6222
6223 ret = nested_svm_vmexit(svm);
6224 if (ret)
6225 return ret;
6226 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006227 return 0;
6228}
6229
6230static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6231{
Ladi Prosek05cade72017-10-11 16:54:45 +02006232 struct vcpu_svm *svm = to_svm(vcpu);
6233 struct vmcb *nested_vmcb;
6234 struct page *page;
6235 struct {
6236 u64 guest;
6237 u64 vmcb;
6238 } svm_state_save;
6239 int ret;
6240
6241 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6242 sizeof(svm_state_save));
6243 if (ret)
6244 return ret;
6245
6246 if (svm_state_save.guest) {
6247 vcpu->arch.hflags &= ~HF_SMM_MASK;
6248 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6249 if (nested_vmcb)
6250 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6251 else
6252 ret = 1;
6253 vcpu->arch.hflags |= HF_SMM_MASK;
6254 }
6255 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006256}
6257
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006258static int enable_smi_window(struct kvm_vcpu *vcpu)
6259{
6260 struct vcpu_svm *svm = to_svm(vcpu);
6261
6262 if (!gif_set(svm)) {
6263 if (vgif_enabled(svm))
6264 set_intercept(svm, INTERCEPT_STGI);
6265 /* STGI will cause a vm exit */
6266 return 1;
6267 }
6268 return 0;
6269}
6270
Brijesh Singh1654efc2017-12-04 10:57:34 -06006271static int sev_asid_new(void)
6272{
6273 int pos;
6274
6275 /*
6276 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6277 */
6278 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6279 if (pos >= max_sev_asid)
6280 return -EBUSY;
6281
6282 set_bit(pos, sev_asid_bitmap);
6283 return pos + 1;
6284}
6285
6286static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6287{
Sean Christopherson81811c12018-03-20 12:17:21 -07006288 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006289 int asid, ret;
6290
6291 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006292 if (unlikely(sev->active))
6293 return ret;
6294
Brijesh Singh1654efc2017-12-04 10:57:34 -06006295 asid = sev_asid_new();
6296 if (asid < 0)
6297 return ret;
6298
6299 ret = sev_platform_init(&argp->error);
6300 if (ret)
6301 goto e_free;
6302
6303 sev->active = true;
6304 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006305 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006306
6307 return 0;
6308
6309e_free:
6310 __sev_asid_free(asid);
6311 return ret;
6312}
6313
Brijesh Singh59414c92017-12-04 10:57:35 -06006314static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6315{
6316 struct sev_data_activate *data;
6317 int asid = sev_get_asid(kvm);
6318 int ret;
6319
6320 wbinvd_on_all_cpus();
6321
6322 ret = sev_guest_df_flush(error);
6323 if (ret)
6324 return ret;
6325
Ben Gardon1ec69642019-02-11 11:02:51 -08006326 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006327 if (!data)
6328 return -ENOMEM;
6329
6330 /* activate ASID on the given handle */
6331 data->handle = handle;
6332 data->asid = asid;
6333 ret = sev_guest_activate(data, error);
6334 kfree(data);
6335
6336 return ret;
6337}
6338
Brijesh Singh89c50582017-12-04 10:57:35 -06006339static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006340{
6341 struct fd f;
6342 int ret;
6343
6344 f = fdget(fd);
6345 if (!f.file)
6346 return -EBADF;
6347
6348 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6349
6350 fdput(f);
6351 return ret;
6352}
6353
Brijesh Singh89c50582017-12-04 10:57:35 -06006354static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6355{
Sean Christopherson81811c12018-03-20 12:17:21 -07006356 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006357
6358 return __sev_issue_cmd(sev->fd, id, data, error);
6359}
6360
Brijesh Singh59414c92017-12-04 10:57:35 -06006361static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6362{
Sean Christopherson81811c12018-03-20 12:17:21 -07006363 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006364 struct sev_data_launch_start *start;
6365 struct kvm_sev_launch_start params;
6366 void *dh_blob, *session_blob;
6367 int *error = &argp->error;
6368 int ret;
6369
6370 if (!sev_guest(kvm))
6371 return -ENOTTY;
6372
6373 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6374 return -EFAULT;
6375
Ben Gardon1ec69642019-02-11 11:02:51 -08006376 start = kzalloc(sizeof(*start), GFP_KERNEL_ACCOUNT);
Brijesh Singh59414c92017-12-04 10:57:35 -06006377 if (!start)
6378 return -ENOMEM;
6379
6380 dh_blob = NULL;
6381 if (params.dh_uaddr) {
6382 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6383 if (IS_ERR(dh_blob)) {
6384 ret = PTR_ERR(dh_blob);
6385 goto e_free;
6386 }
6387
6388 start->dh_cert_address = __sme_set(__pa(dh_blob));
6389 start->dh_cert_len = params.dh_len;
6390 }
6391
6392 session_blob = NULL;
6393 if (params.session_uaddr) {
6394 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6395 if (IS_ERR(session_blob)) {
6396 ret = PTR_ERR(session_blob);
6397 goto e_free_dh;
6398 }
6399
6400 start->session_address = __sme_set(__pa(session_blob));
6401 start->session_len = params.session_len;
6402 }
6403
6404 start->handle = params.handle;
6405 start->policy = params.policy;
6406
6407 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006408 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006409 if (ret)
6410 goto e_free_session;
6411
6412 /* Bind ASID to this guest */
6413 ret = sev_bind_asid(kvm, start->handle, error);
6414 if (ret)
6415 goto e_free_session;
6416
6417 /* return handle to userspace */
6418 params.handle = start->handle;
6419 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6420 sev_unbind_asid(kvm, start->handle);
6421 ret = -EFAULT;
6422 goto e_free_session;
6423 }
6424
6425 sev->handle = start->handle;
6426 sev->fd = argp->sev_fd;
6427
6428e_free_session:
6429 kfree(session_blob);
6430e_free_dh:
6431 kfree(dh_blob);
6432e_free:
6433 kfree(start);
6434 return ret;
6435}
6436
David Rientjesede885e2019-03-19 15:19:56 -07006437static unsigned long get_num_contig_pages(unsigned long idx,
6438 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006439{
6440 unsigned long paddr, next_paddr;
David Rientjesede885e2019-03-19 15:19:56 -07006441 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006442
6443 /* find the number of contiguous pages starting from idx */
6444 paddr = __sme_page_pa(inpages[idx]);
6445 while (i < npages) {
6446 next_paddr = __sme_page_pa(inpages[i++]);
6447 if ((paddr + PAGE_SIZE) == next_paddr) {
6448 pages++;
6449 paddr = next_paddr;
6450 continue;
6451 }
6452 break;
6453 }
6454
6455 return pages;
6456}
6457
6458static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6459{
David Rientjesede885e2019-03-19 15:19:56 -07006460 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006461 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006462 struct kvm_sev_launch_update_data params;
6463 struct sev_data_launch_update_data *data;
6464 struct page **inpages;
David Rientjesede885e2019-03-19 15:19:56 -07006465 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006466
6467 if (!sev_guest(kvm))
6468 return -ENOTTY;
6469
6470 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6471 return -EFAULT;
6472
Ben Gardon1ec69642019-02-11 11:02:51 -08006473 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh89c50582017-12-04 10:57:35 -06006474 if (!data)
6475 return -ENOMEM;
6476
6477 vaddr = params.uaddr;
6478 size = params.len;
6479 vaddr_end = vaddr + size;
6480
6481 /* Lock the user memory. */
6482 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6483 if (!inpages) {
6484 ret = -ENOMEM;
6485 goto e_free;
6486 }
6487
6488 /*
6489 * The LAUNCH_UPDATE command will perform in-place encryption of the
6490 * memory content (i.e it will write the same memory region with C=1).
6491 * It's possible that the cache may contain the data with C=0, i.e.,
6492 * unencrypted so invalidate it first.
6493 */
6494 sev_clflush_pages(inpages, npages);
6495
6496 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6497 int offset, len;
6498
6499 /*
6500 * If the user buffer is not page-aligned, calculate the offset
6501 * within the page.
6502 */
6503 offset = vaddr & (PAGE_SIZE - 1);
6504
6505 /* Calculate the number of pages that can be encrypted in one go. */
6506 pages = get_num_contig_pages(i, inpages, npages);
6507
6508 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6509
6510 data->handle = sev->handle;
6511 data->len = len;
6512 data->address = __sme_page_pa(inpages[i]) + offset;
6513 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6514 if (ret)
6515 goto e_unpin;
6516
6517 size -= len;
6518 next_vaddr = vaddr + len;
6519 }
6520
6521e_unpin:
6522 /* content of memory is updated, mark pages dirty */
6523 for (i = 0; i < npages; i++) {
6524 set_page_dirty_lock(inpages[i]);
6525 mark_page_accessed(inpages[i]);
6526 }
6527 /* unlock the user pages */
6528 sev_unpin_memory(kvm, inpages, npages);
6529e_free:
6530 kfree(data);
6531 return ret;
6532}
6533
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006534static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6535{
Brijesh Singh3e233382018-02-23 12:36:50 -06006536 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006537 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006538 struct sev_data_launch_measure *data;
6539 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006540 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006541 void *blob = NULL;
6542 int ret;
6543
6544 if (!sev_guest(kvm))
6545 return -ENOTTY;
6546
Brijesh Singh3e233382018-02-23 12:36:50 -06006547 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006548 return -EFAULT;
6549
Ben Gardon1ec69642019-02-11 11:02:51 -08006550 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006551 if (!data)
6552 return -ENOMEM;
6553
6554 /* User wants to query the blob length */
6555 if (!params.len)
6556 goto cmd;
6557
Brijesh Singh3e233382018-02-23 12:36:50 -06006558 p = (void __user *)(uintptr_t)params.uaddr;
6559 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006560 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6561 ret = -EINVAL;
6562 goto e_free;
6563 }
6564
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006565 ret = -ENOMEM;
6566 blob = kmalloc(params.len, GFP_KERNEL);
6567 if (!blob)
6568 goto e_free;
6569
6570 data->address = __psp_pa(blob);
6571 data->len = params.len;
6572 }
6573
6574cmd:
6575 data->handle = sev->handle;
6576 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6577
6578 /*
6579 * If we query the session length, FW responded with expected data.
6580 */
6581 if (!params.len)
6582 goto done;
6583
6584 if (ret)
6585 goto e_free_blob;
6586
6587 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006588 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006589 ret = -EFAULT;
6590 }
6591
6592done:
6593 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006594 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006595 ret = -EFAULT;
6596e_free_blob:
6597 kfree(blob);
6598e_free:
6599 kfree(data);
6600 return ret;
6601}
6602
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006603static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6604{
Sean Christopherson81811c12018-03-20 12:17:21 -07006605 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006606 struct sev_data_launch_finish *data;
6607 int ret;
6608
6609 if (!sev_guest(kvm))
6610 return -ENOTTY;
6611
Ben Gardon1ec69642019-02-11 11:02:51 -08006612 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006613 if (!data)
6614 return -ENOMEM;
6615
6616 data->handle = sev->handle;
6617 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6618
6619 kfree(data);
6620 return ret;
6621}
6622
Brijesh Singh255d9e72017-12-04 10:57:37 -06006623static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6624{
Sean Christopherson81811c12018-03-20 12:17:21 -07006625 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006626 struct kvm_sev_guest_status params;
6627 struct sev_data_guest_status *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 Singh255d9e72017-12-04 10:57:37 -06006634 if (!data)
6635 return -ENOMEM;
6636
6637 data->handle = sev->handle;
6638 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6639 if (ret)
6640 goto e_free;
6641
6642 params.policy = data->policy;
6643 params.state = data->state;
6644 params.handle = data->handle;
6645
6646 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6647 ret = -EFAULT;
6648e_free:
6649 kfree(data);
6650 return ret;
6651}
6652
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006653static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6654 unsigned long dst, int size,
6655 int *error, bool enc)
6656{
Sean Christopherson81811c12018-03-20 12:17:21 -07006657 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006658 struct sev_data_dbg *data;
6659 int ret;
6660
Ben Gardon1ec69642019-02-11 11:02:51 -08006661 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006662 if (!data)
6663 return -ENOMEM;
6664
6665 data->handle = sev->handle;
6666 data->dst_addr = dst;
6667 data->src_addr = src;
6668 data->len = size;
6669
6670 ret = sev_issue_cmd(kvm,
6671 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6672 data, error);
6673 kfree(data);
6674 return ret;
6675}
6676
6677static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6678 unsigned long dst_paddr, int sz, int *err)
6679{
6680 int offset;
6681
6682 /*
6683 * Its safe to read more than we are asked, caller should ensure that
6684 * destination has enough space.
6685 */
6686 src_paddr = round_down(src_paddr, 16);
6687 offset = src_paddr & 15;
6688 sz = round_up(sz + offset, 16);
6689
6690 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6691}
6692
6693static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6694 unsigned long __user dst_uaddr,
6695 unsigned long dst_paddr,
6696 int size, int *err)
6697{
6698 struct page *tpage = NULL;
6699 int ret, offset;
6700
6701 /* if inputs are not 16-byte then use intermediate buffer */
6702 if (!IS_ALIGNED(dst_paddr, 16) ||
6703 !IS_ALIGNED(paddr, 16) ||
6704 !IS_ALIGNED(size, 16)) {
6705 tpage = (void *)alloc_page(GFP_KERNEL);
6706 if (!tpage)
6707 return -ENOMEM;
6708
6709 dst_paddr = __sme_page_pa(tpage);
6710 }
6711
6712 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6713 if (ret)
6714 goto e_free;
6715
6716 if (tpage) {
6717 offset = paddr & 15;
6718 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6719 page_address(tpage) + offset, size))
6720 ret = -EFAULT;
6721 }
6722
6723e_free:
6724 if (tpage)
6725 __free_page(tpage);
6726
6727 return ret;
6728}
6729
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006730static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6731 unsigned long __user vaddr,
6732 unsigned long dst_paddr,
6733 unsigned long __user dst_vaddr,
6734 int size, int *error)
6735{
6736 struct page *src_tpage = NULL;
6737 struct page *dst_tpage = NULL;
6738 int ret, len = size;
6739
6740 /* If source buffer is not aligned then use an intermediate buffer */
6741 if (!IS_ALIGNED(vaddr, 16)) {
6742 src_tpage = alloc_page(GFP_KERNEL);
6743 if (!src_tpage)
6744 return -ENOMEM;
6745
6746 if (copy_from_user(page_address(src_tpage),
6747 (void __user *)(uintptr_t)vaddr, size)) {
6748 __free_page(src_tpage);
6749 return -EFAULT;
6750 }
6751
6752 paddr = __sme_page_pa(src_tpage);
6753 }
6754
6755 /*
6756 * If destination buffer or length is not aligned then do read-modify-write:
6757 * - decrypt destination in an intermediate buffer
6758 * - copy the source buffer in an intermediate buffer
6759 * - use the intermediate buffer as source buffer
6760 */
6761 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6762 int dst_offset;
6763
6764 dst_tpage = alloc_page(GFP_KERNEL);
6765 if (!dst_tpage) {
6766 ret = -ENOMEM;
6767 goto e_free;
6768 }
6769
6770 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6771 __sme_page_pa(dst_tpage), size, error);
6772 if (ret)
6773 goto e_free;
6774
6775 /*
6776 * If source is kernel buffer then use memcpy() otherwise
6777 * copy_from_user().
6778 */
6779 dst_offset = dst_paddr & 15;
6780
6781 if (src_tpage)
6782 memcpy(page_address(dst_tpage) + dst_offset,
6783 page_address(src_tpage), size);
6784 else {
6785 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6786 (void __user *)(uintptr_t)vaddr, size)) {
6787 ret = -EFAULT;
6788 goto e_free;
6789 }
6790 }
6791
6792 paddr = __sme_page_pa(dst_tpage);
6793 dst_paddr = round_down(dst_paddr, 16);
6794 len = round_up(size, 16);
6795 }
6796
6797 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6798
6799e_free:
6800 if (src_tpage)
6801 __free_page(src_tpage);
6802 if (dst_tpage)
6803 __free_page(dst_tpage);
6804 return ret;
6805}
6806
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006807static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6808{
6809 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006810 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006811 struct page **src_p, **dst_p;
6812 struct kvm_sev_dbg debug;
6813 unsigned long n;
David Rientjesb86bc282019-03-25 11:47:31 -07006814 unsigned int size;
6815 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006816
6817 if (!sev_guest(kvm))
6818 return -ENOTTY;
6819
6820 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6821 return -EFAULT;
6822
David Rientjesb86bc282019-03-25 11:47:31 -07006823 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6824 return -EINVAL;
6825 if (!debug.dst_uaddr)
6826 return -EINVAL;
6827
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006828 vaddr = debug.src_uaddr;
6829 size = debug.len;
6830 vaddr_end = vaddr + size;
6831 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006832
6833 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6834 int len, s_off, d_off;
6835
6836 /* lock userspace source and destination page */
6837 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6838 if (!src_p)
6839 return -EFAULT;
6840
6841 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6842 if (!dst_p) {
6843 sev_unpin_memory(kvm, src_p, n);
6844 return -EFAULT;
6845 }
6846
6847 /*
6848 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6849 * memory content (i.e it will write the same memory region with C=1).
6850 * It's possible that the cache may contain the data with C=0, i.e.,
6851 * unencrypted so invalidate it first.
6852 */
6853 sev_clflush_pages(src_p, 1);
6854 sev_clflush_pages(dst_p, 1);
6855
6856 /*
6857 * Since user buffer may not be page aligned, calculate the
6858 * offset within the page.
6859 */
6860 s_off = vaddr & ~PAGE_MASK;
6861 d_off = dst_vaddr & ~PAGE_MASK;
6862 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6863
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006864 if (dec)
6865 ret = __sev_dbg_decrypt_user(kvm,
6866 __sme_page_pa(src_p[0]) + s_off,
6867 dst_vaddr,
6868 __sme_page_pa(dst_p[0]) + d_off,
6869 len, &argp->error);
6870 else
6871 ret = __sev_dbg_encrypt_user(kvm,
6872 __sme_page_pa(src_p[0]) + s_off,
6873 vaddr,
6874 __sme_page_pa(dst_p[0]) + d_off,
6875 dst_vaddr,
6876 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006877
David Rientjesb86bc282019-03-25 11:47:31 -07006878 sev_unpin_memory(kvm, src_p, n);
6879 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006880
6881 if (ret)
6882 goto err;
6883
6884 next_vaddr = vaddr + len;
6885 dst_vaddr = dst_vaddr + len;
6886 size -= len;
6887 }
6888err:
6889 return ret;
6890}
6891
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006892static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6893{
Sean Christopherson81811c12018-03-20 12:17:21 -07006894 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006895 struct sev_data_launch_secret *data;
6896 struct kvm_sev_launch_secret params;
6897 struct page **pages;
6898 void *blob, *hdr;
6899 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006900 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006901
6902 if (!sev_guest(kvm))
6903 return -ENOTTY;
6904
6905 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6906 return -EFAULT;
6907
6908 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6909 if (!pages)
6910 return -ENOMEM;
6911
6912 /*
6913 * The secret must be copied into contiguous memory region, lets verify
6914 * that userspace memory pages are contiguous before we issue command.
6915 */
6916 if (get_num_contig_pages(0, pages, n) != n) {
6917 ret = -EINVAL;
6918 goto e_unpin_memory;
6919 }
6920
6921 ret = -ENOMEM;
Ben Gardon1ec69642019-02-11 11:02:51 -08006922 data = kzalloc(sizeof(*data), GFP_KERNEL_ACCOUNT);
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006923 if (!data)
6924 goto e_unpin_memory;
6925
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006926 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6927 data->guest_address = __sme_page_pa(pages[0]) + offset;
6928 data->guest_len = params.guest_len;
6929
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006930 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6931 if (IS_ERR(blob)) {
6932 ret = PTR_ERR(blob);
6933 goto e_free;
6934 }
6935
6936 data->trans_address = __psp_pa(blob);
6937 data->trans_len = params.trans_len;
6938
6939 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6940 if (IS_ERR(hdr)) {
6941 ret = PTR_ERR(hdr);
6942 goto e_free_blob;
6943 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006944 data->hdr_address = __psp_pa(hdr);
6945 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006946
6947 data->handle = sev->handle;
6948 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6949
6950 kfree(hdr);
6951
6952e_free_blob:
6953 kfree(blob);
6954e_free:
6955 kfree(data);
6956e_unpin_memory:
6957 sev_unpin_memory(kvm, pages, n);
6958 return ret;
6959}
6960
Brijesh Singh1654efc2017-12-04 10:57:34 -06006961static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6962{
6963 struct kvm_sev_cmd sev_cmd;
6964 int r;
6965
6966 if (!svm_sev_enabled())
6967 return -ENOTTY;
6968
6969 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6970 return -EFAULT;
6971
6972 mutex_lock(&kvm->lock);
6973
6974 switch (sev_cmd.id) {
6975 case KVM_SEV_INIT:
6976 r = sev_guest_init(kvm, &sev_cmd);
6977 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006978 case KVM_SEV_LAUNCH_START:
6979 r = sev_launch_start(kvm, &sev_cmd);
6980 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006981 case KVM_SEV_LAUNCH_UPDATE_DATA:
6982 r = sev_launch_update_data(kvm, &sev_cmd);
6983 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006984 case KVM_SEV_LAUNCH_MEASURE:
6985 r = sev_launch_measure(kvm, &sev_cmd);
6986 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006987 case KVM_SEV_LAUNCH_FINISH:
6988 r = sev_launch_finish(kvm, &sev_cmd);
6989 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006990 case KVM_SEV_GUEST_STATUS:
6991 r = sev_guest_status(kvm, &sev_cmd);
6992 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006993 case KVM_SEV_DBG_DECRYPT:
6994 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6995 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006996 case KVM_SEV_DBG_ENCRYPT:
6997 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6998 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006999 case KVM_SEV_LAUNCH_SECRET:
7000 r = sev_launch_secret(kvm, &sev_cmd);
7001 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007002 default:
7003 r = -EINVAL;
7004 goto out;
7005 }
7006
7007 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7008 r = -EFAULT;
7009
7010out:
7011 mutex_unlock(&kvm->lock);
7012 return r;
7013}
7014
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007015static int svm_register_enc_region(struct kvm *kvm,
7016 struct kvm_enc_region *range)
7017{
Sean Christopherson81811c12018-03-20 12:17:21 -07007018 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007019 struct enc_region *region;
7020 int ret = 0;
7021
7022 if (!sev_guest(kvm))
7023 return -ENOTTY;
7024
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007025 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7026 return -EINVAL;
7027
Ben Gardon1ec69642019-02-11 11:02:51 -08007028 region = kzalloc(sizeof(*region), GFP_KERNEL_ACCOUNT);
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007029 if (!region)
7030 return -ENOMEM;
7031
7032 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7033 if (!region->pages) {
7034 ret = -ENOMEM;
7035 goto e_free;
7036 }
7037
7038 /*
7039 * The guest may change the memory encryption attribute from C=0 -> C=1
7040 * or vice versa for this memory range. Lets make sure caches are
7041 * flushed to ensure that guest data gets written into memory with
7042 * correct C-bit.
7043 */
7044 sev_clflush_pages(region->pages, region->npages);
7045
7046 region->uaddr = range->addr;
7047 region->size = range->size;
7048
7049 mutex_lock(&kvm->lock);
7050 list_add_tail(&region->list, &sev->regions_list);
7051 mutex_unlock(&kvm->lock);
7052
7053 return ret;
7054
7055e_free:
7056 kfree(region);
7057 return ret;
7058}
7059
7060static struct enc_region *
7061find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7062{
Sean Christopherson81811c12018-03-20 12:17:21 -07007063 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007064 struct list_head *head = &sev->regions_list;
7065 struct enc_region *i;
7066
7067 list_for_each_entry(i, head, list) {
7068 if (i->uaddr == range->addr &&
7069 i->size == range->size)
7070 return i;
7071 }
7072
7073 return NULL;
7074}
7075
7076
7077static int svm_unregister_enc_region(struct kvm *kvm,
7078 struct kvm_enc_region *range)
7079{
7080 struct enc_region *region;
7081 int ret;
7082
7083 mutex_lock(&kvm->lock);
7084
7085 if (!sev_guest(kvm)) {
7086 ret = -ENOTTY;
7087 goto failed;
7088 }
7089
7090 region = find_enc_region(kvm, range);
7091 if (!region) {
7092 ret = -EINVAL;
7093 goto failed;
7094 }
7095
7096 __unregister_enc_region_locked(kvm, region);
7097
7098 mutex_unlock(&kvm->lock);
7099 return 0;
7100
7101failed:
7102 mutex_unlock(&kvm->lock);
7103 return ret;
7104}
7105
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007106static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
7107{
7108 /* Not supported */
7109 return 0;
7110}
7111
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007112static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
7113 uint16_t *vmcs_version)
7114{
7115 /* Intel-only feature */
7116 return -ENODEV;
7117}
7118
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007119static bool svm_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7120{
7121 bool is_user, smap;
7122
7123 is_user = svm_get_cpl(vcpu) == 3;
7124 smap = !kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
7125
7126 /*
7127 * Detect and workaround Errata 1096 Fam_17h_00_0Fh
7128 *
7129 * In non SEV guest, hypervisor will be able to read the guest
7130 * memory to decode the instruction pointer when insn_len is zero
7131 * so we return true to indicate that decoding is possible.
7132 *
7133 * But in the SEV guest, the guest memory is encrypted with the
7134 * guest specific key and hypervisor will not be able to decode the
7135 * instruction pointer so we will not able to workaround it. Lets
7136 * print the error and request to kill the guest.
7137 */
7138 if (is_user && smap) {
7139 if (!sev_guest(vcpu->kvm))
7140 return true;
7141
7142 pr_err_ratelimited("KVM: Guest triggered AMD Erratum 1096\n");
7143 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7144 }
7145
7146 return false;
7147}
7148
Kees Cook404f6aa2016-08-08 16:29:06 -07007149static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007150 .cpu_has_kvm_support = has_svm,
7151 .disabled_by_bios = is_disabled,
7152 .hardware_setup = svm_hardware_setup,
7153 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007154 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007155 .hardware_enable = svm_hardware_enable,
7156 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007157 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007158 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007159
7160 .vcpu_create = svm_create_vcpu,
7161 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007162 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007163
Sean Christopherson434a1e92018-03-20 12:17:18 -07007164 .vm_alloc = svm_vm_alloc,
7165 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007166 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007167 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007168
Avi Kivity04d2cc72007-09-10 18:10:54 +03007169 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007170 .vcpu_load = svm_vcpu_load,
7171 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007172 .vcpu_blocking = svm_vcpu_blocking,
7173 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007174
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007175 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007176 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007177 .get_msr = svm_get_msr,
7178 .set_msr = svm_set_msr,
7179 .get_segment_base = svm_get_segment_base,
7180 .get_segment = svm_get_segment,
7181 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007182 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007183 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007184 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007185 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007186 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007187 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007188 .set_cr3 = svm_set_cr3,
7189 .set_cr4 = svm_set_cr4,
7190 .set_efer = svm_set_efer,
7191 .get_idt = svm_get_idt,
7192 .set_idt = svm_set_idt,
7193 .get_gdt = svm_get_gdt,
7194 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007195 .get_dr6 = svm_get_dr6,
7196 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007197 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007198 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007199 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007200 .get_rflags = svm_get_rflags,
7201 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007202
Avi Kivity6aa8b732006-12-10 02:21:36 -08007203 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007204 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007205
Avi Kivity6aa8b732006-12-10 02:21:36 -08007206 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007207 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007208 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007209 .set_interrupt_shadow = svm_set_interrupt_shadow,
7210 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007211 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007212 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007213 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007214 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007215 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007216 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007217 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007218 .get_nmi_mask = svm_get_nmi_mask,
7219 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007220 .enable_nmi_window = enable_nmi_window,
7221 .enable_irq_window = enable_irq_window,
7222 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007223 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007224 .get_enable_apicv = svm_get_enable_apicv,
7225 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007226 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007227 .hwapic_irr_update = svm_hwapic_irr_update,
7228 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007229 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007230 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007231
7232 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007233 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007234 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007235 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007236
Avi Kivity586f9602010-11-18 13:09:54 +02007237 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007238
Sheng Yang17cc3932010-01-05 19:02:27 +08007239 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007240
7241 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007242
7243 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007244 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007245 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007246 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007247 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007248 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007249
7250 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007251
7252 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007253
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007254 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007255 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007256
7257 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007258
7259 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007260 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007261
Sean Christophersond264ee02018-08-27 15:21:12 -07007262 .request_immediate_exit = __kvm_request_immediate_exit,
7263
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007264 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007265
7266 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007267 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007268 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007269 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007270
Ladi Prosek72d7b372017-10-11 16:54:41 +02007271 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007272 .pre_enter_smm = svm_pre_enter_smm,
7273 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007274 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007275
7276 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007277 .mem_enc_reg_region = svm_register_enc_region,
7278 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007279
7280 .nested_enable_evmcs = nested_enable_evmcs,
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007281 .nested_get_evmcs_version = nested_get_evmcs_version,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007282
7283 .need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007284};
7285
7286static int __init svm_init(void)
7287{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007288 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007289 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007290}
7291
7292static void __exit svm_exit(void)
7293{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007294 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007295}
7296
7297module_init(svm_init)
7298module_exit(svm_exit)