blob: cc8f3b41a1b2e68de6308963e404ab5dcf1567b2 [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;
148 u32 ldr_mode;
149 struct page *avic_logical_id_table_page;
150 struct page *avic_physical_id_table_page;
151 struct hlist_node hnode;
152
153 struct kvm_sev_info sev_info;
154};
155
Avi Kivity6c8166a2009-05-31 18:15:37 +0300156struct kvm_vcpu;
157
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200158struct nested_state {
159 struct vmcb *hsave;
160 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100161 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200162 u64 vmcb;
163
164 /* These are the merged vectors */
165 u32 *msrpm;
166
167 /* gpa pointers to the real vectors */
168 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100169 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200170
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200171 /* A VMEXIT is required but not yet emulated */
172 bool exit_required;
173
Joerg Roedelaad42c62009-08-07 11:49:34 +0200174 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100175 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100176 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200177 u32 intercept_exceptions;
178 u64 intercept;
179
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200180 /* Nested Paging related state */
181 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200182};
183
Joerg Roedel323c3d82010-03-01 15:34:37 +0100184#define MSRPM_OFFSETS 16
185static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
186
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500187/*
188 * Set osvw_len to higher value when updated Revision Guides
189 * are published and we know what the new status bits are
190 */
191static uint64_t osvw_len = 4, osvw_status;
192
Avi Kivity6c8166a2009-05-31 18:15:37 +0300193struct vcpu_svm {
194 struct kvm_vcpu vcpu;
195 struct vmcb *vmcb;
196 unsigned long vmcb_pa;
197 struct svm_cpu_data *svm_data;
198 uint64_t asid_generation;
199 uint64_t sysenter_esp;
200 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100201 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300202
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100203 u64 msr_decfg;
204
Avi Kivity6c8166a2009-05-31 18:15:37 +0300205 u64 next_rip;
206
207 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200208 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200209 u16 fs;
210 u16 gs;
211 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200212 u64 gs_base;
213 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300214
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100215 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200216 /*
217 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
218 * translated into the appropriate L2_CFG bits on the host to
219 * perform speculative control.
220 */
221 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100222
Avi Kivity6c8166a2009-05-31 18:15:37 +0300223 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300224
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200225 ulong nmi_iret_rip;
226
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200227 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200228
229 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200230 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100231
232 unsigned int3_injected;
233 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100234
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200235 /* cached guest cpuid flags for faster access */
236 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500237
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500238 u32 ldr_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)
265#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
266
267#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
268#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
269#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
270#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
271
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100272static DEFINE_PER_CPU(u64, current_tsc_ratio);
273#define TSC_RATIO_DEFAULT 0x0100000000ULL
274
Joerg Roedel455716f2010-03-01 15:34:35 +0100275#define MSR_INVALID 0xffffffffU
276
Mathias Krause09941fb2012-08-30 01:30:20 +0200277static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100278 u32 index; /* Index of the MSR */
279 bool always; /* True if intercept is always on */
280} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400281 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100282 { .index = MSR_IA32_SYSENTER_CS, .always = true },
283#ifdef CONFIG_X86_64
284 { .index = MSR_GS_BASE, .always = true },
285 { .index = MSR_FS_BASE, .always = true },
286 { .index = MSR_KERNEL_GS_BASE, .always = true },
287 { .index = MSR_LSTAR, .always = true },
288 { .index = MSR_CSTAR, .always = true },
289 { .index = MSR_SYSCALL_MASK, .always = true },
290#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100291 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100292 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100293 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
294 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
295 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
296 { .index = MSR_IA32_LASTINTTOIP, .always = false },
297 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800298};
299
300/* enable NPT for AMD64 and X86 with PAE */
301#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
302static bool npt_enabled = true;
303#else
Joerg Roedele0231712010-02-24 18:59:10 +0100304static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800305#endif
306
Babu Moger8566ac82018-03-16 16:37:26 -0400307/*
308 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
309 * pause_filter_count: On processors that support Pause filtering(indicated
310 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
311 * count value. On VMRUN this value is loaded into an internal counter.
312 * Each time a pause instruction is executed, this counter is decremented
313 * until it reaches zero at which time a #VMEXIT is generated if pause
314 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
315 * Intercept Filtering for more details.
316 * This also indicate if ple logic enabled.
317 *
318 * pause_filter_thresh: In addition, some processor families support advanced
319 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
320 * the amount of time a guest is allowed to execute in a pause loop.
321 * In this mode, a 16-bit pause filter threshold field is added in the
322 * VMCB. The threshold value is a cycle count that is used to reset the
323 * pause counter. As with simple pause filtering, VMRUN loads the pause
324 * count value from VMCB into an internal counter. Then, on each pause
325 * instruction the hardware checks the elapsed number of cycles since
326 * the most recent pause instruction against the pause filter threshold.
327 * If the elapsed cycle count is greater than the pause filter threshold,
328 * then the internal pause count is reloaded from the VMCB and execution
329 * continues. If the elapsed cycle count is less than the pause filter
330 * threshold, then the internal pause count is decremented. If the count
331 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
332 * triggered. If advanced pause filtering is supported and pause filter
333 * threshold field is set to zero, the filter will operate in the simpler,
334 * count only mode.
335 */
336
337static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
338module_param(pause_filter_thresh, ushort, 0444);
339
340static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
341module_param(pause_filter_count, ushort, 0444);
342
343/* Default doubles per-vcpu window every exit. */
344static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
345module_param(pause_filter_count_grow, ushort, 0444);
346
347/* Default resets per-vcpu window every exit to pause_filter_count. */
348static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
349module_param(pause_filter_count_shrink, ushort, 0444);
350
351/* Default is to compute the maximum so we can never overflow. */
352static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
353module_param(pause_filter_count_max, ushort, 0444);
354
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100355/* allow nested paging (virtualized MMU) for all guests */
356static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357module_param(npt, int, S_IRUGO);
358
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100359/* allow nested virtualization in KVM/SVM */
360static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800361module_param(nested, int, S_IRUGO);
362
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500363/* enable / disable AVIC */
364static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500365#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500366module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500367#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500368
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500369/* enable/disable Virtual VMLOAD VMSAVE */
370static int vls = true;
371module_param(vls, int, 0444);
372
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500373/* enable/disable Virtual GIF */
374static int vgif = true;
375module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500376
Brijesh Singhe9df0942017-12-04 10:57:33 -0600377/* enable/disable SEV support */
378static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
379module_param(sev, int, 0444);
380
Brijesh Singh7607b712018-02-19 10:14:44 -0600381static u8 rsm_ins_bytes[] = "\x0f\xaa";
382
Paolo Bonzini79a80592015-09-21 07:46:55 +0200383static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800384static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200385static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386
Joerg Roedel410e4d52009-08-07 11:49:44 +0200387static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100388static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800389static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
391 bool has_error_code, u32 error_code);
392
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100393enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100394 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
395 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100396 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100397 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100398 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100399 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100400 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100401 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100402 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100403 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100404 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100405 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500406 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
407 * AVIC PHYSICAL_TABLE pointer,
408 * AVIC LOGICAL_TABLE pointer
409 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100410 VMCB_DIRTY_MAX,
411};
412
Joerg Roedel0574dec2010-12-03 11:45:58 +0100413/* TPR and CR2 are always written before VMRUN */
414#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100415
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500416#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
417
Brijesh Singhed3cd232017-12-04 10:57:32 -0600418static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600419static unsigned int min_sev_asid;
420static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600421#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600422
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600423struct enc_region {
424 struct list_head list;
425 unsigned long npages;
426 struct page **pages;
427 unsigned long uaddr;
428 unsigned long size;
429};
430
Sean Christopherson81811c12018-03-20 12:17:21 -0700431
432static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
433{
434 return container_of(kvm, struct kvm_svm, kvm);
435}
436
Brijesh Singh1654efc2017-12-04 10:57:34 -0600437static inline bool svm_sev_enabled(void)
438{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200439 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600440}
441
442static inline bool sev_guest(struct kvm *kvm)
443{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200444#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700445 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600446
447 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200448#else
449 return false;
450#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600451}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600452
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600453static inline int sev_get_asid(struct kvm *kvm)
454{
Sean Christopherson81811c12018-03-20 12:17:21 -0700455 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600456
457 return sev->asid;
458}
459
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100460static inline void mark_all_dirty(struct vmcb *vmcb)
461{
462 vmcb->control.clean = 0;
463}
464
465static inline void mark_all_clean(struct vmcb *vmcb)
466{
467 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
468 & ~VMCB_ALWAYS_DIRTY_MASK;
469}
470
471static inline void mark_dirty(struct vmcb *vmcb, int bit)
472{
473 vmcb->control.clean &= ~(1 << bit);
474}
475
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
477{
478 return container_of(vcpu, struct vcpu_svm, vcpu);
479}
480
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500481static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
482{
483 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
484 mark_dirty(svm->vmcb, VMCB_AVIC);
485}
486
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500487static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
488{
489 struct vcpu_svm *svm = to_svm(vcpu);
490 u64 *entry = svm->avic_physical_id_cache;
491
492 if (!entry)
493 return false;
494
495 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
496}
497
Joerg Roedel384c6362010-11-30 18:03:56 +0100498static void recalc_intercepts(struct vcpu_svm *svm)
499{
500 struct vmcb_control_area *c, *h;
501 struct nested_state *g;
502
Joerg Roedel116a0a22010-12-03 11:45:49 +0100503 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
504
Joerg Roedel384c6362010-11-30 18:03:56 +0100505 if (!is_guest_mode(&svm->vcpu))
506 return;
507
508 c = &svm->vmcb->control;
509 h = &svm->nested.hsave->control;
510 g = &svm->nested;
511
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100512 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100513 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100514 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100515 c->intercept = h->intercept | g->intercept;
516}
517
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100518static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
519{
520 if (is_guest_mode(&svm->vcpu))
521 return svm->nested.hsave;
522 else
523 return svm->vmcb;
524}
525
526static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
527{
528 struct vmcb *vmcb = get_host_vmcb(svm);
529
530 vmcb->control.intercept_cr |= (1U << bit);
531
532 recalc_intercepts(svm);
533}
534
535static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
536{
537 struct vmcb *vmcb = get_host_vmcb(svm);
538
539 vmcb->control.intercept_cr &= ~(1U << bit);
540
541 recalc_intercepts(svm);
542}
543
544static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
545{
546 struct vmcb *vmcb = get_host_vmcb(svm);
547
548 return vmcb->control.intercept_cr & (1U << bit);
549}
550
Paolo Bonzini5315c712014-03-03 13:08:29 +0100551static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100552{
553 struct vmcb *vmcb = get_host_vmcb(svm);
554
Paolo Bonzini5315c712014-03-03 13:08:29 +0100555 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
556 | (1 << INTERCEPT_DR1_READ)
557 | (1 << INTERCEPT_DR2_READ)
558 | (1 << INTERCEPT_DR3_READ)
559 | (1 << INTERCEPT_DR4_READ)
560 | (1 << INTERCEPT_DR5_READ)
561 | (1 << INTERCEPT_DR6_READ)
562 | (1 << INTERCEPT_DR7_READ)
563 | (1 << INTERCEPT_DR0_WRITE)
564 | (1 << INTERCEPT_DR1_WRITE)
565 | (1 << INTERCEPT_DR2_WRITE)
566 | (1 << INTERCEPT_DR3_WRITE)
567 | (1 << INTERCEPT_DR4_WRITE)
568 | (1 << INTERCEPT_DR5_WRITE)
569 | (1 << INTERCEPT_DR6_WRITE)
570 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100571
572 recalc_intercepts(svm);
573}
574
Paolo Bonzini5315c712014-03-03 13:08:29 +0100575static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100576{
577 struct vmcb *vmcb = get_host_vmcb(svm);
578
Paolo Bonzini5315c712014-03-03 13:08:29 +0100579 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100580
581 recalc_intercepts(svm);
582}
583
Joerg Roedel18c918c2010-11-30 18:03:59 +0100584static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
585{
586 struct vmcb *vmcb = get_host_vmcb(svm);
587
588 vmcb->control.intercept_exceptions |= (1U << bit);
589
590 recalc_intercepts(svm);
591}
592
593static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
594{
595 struct vmcb *vmcb = get_host_vmcb(svm);
596
597 vmcb->control.intercept_exceptions &= ~(1U << bit);
598
599 recalc_intercepts(svm);
600}
601
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100602static inline void set_intercept(struct vcpu_svm *svm, int bit)
603{
604 struct vmcb *vmcb = get_host_vmcb(svm);
605
606 vmcb->control.intercept |= (1ULL << bit);
607
608 recalc_intercepts(svm);
609}
610
611static inline void clr_intercept(struct vcpu_svm *svm, int bit)
612{
613 struct vmcb *vmcb = get_host_vmcb(svm);
614
615 vmcb->control.intercept &= ~(1ULL << bit);
616
617 recalc_intercepts(svm);
618}
619
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500620static inline bool vgif_enabled(struct vcpu_svm *svm)
621{
622 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
623}
624
Joerg Roedel2af91942009-08-07 11:49:28 +0200625static inline void enable_gif(struct vcpu_svm *svm)
626{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500627 if (vgif_enabled(svm))
628 svm->vmcb->control.int_ctl |= V_GIF_MASK;
629 else
630 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200631}
632
633static inline void disable_gif(struct vcpu_svm *svm)
634{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500635 if (vgif_enabled(svm))
636 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
637 else
638 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200639}
640
641static inline bool gif_set(struct vcpu_svm *svm)
642{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500643 if (vgif_enabled(svm))
644 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
645 else
646 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200647}
648
Avi Kivity6aa8b732006-12-10 02:21:36 -0800649static unsigned long iopm_base;
650
651struct kvm_ldttss_desc {
652 u16 limit0;
653 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100654 unsigned base1:8, type:5, dpl:2, p:1;
655 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656 u32 base3;
657 u32 zero1;
658} __attribute__((packed));
659
660struct svm_cpu_data {
661 int cpu;
662
Avi Kivity5008fdf2007-04-02 13:05:50 +0300663 u64 asid_generation;
664 u32 max_asid;
665 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600666 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800667 struct kvm_ldttss_desc *tss_desc;
668
669 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100670 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600671
672 /* index = sev_asid, value = vmcb pointer */
673 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674};
675
676static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
677
678struct svm_init_data {
679 int cpu;
680 int r;
681};
682
Mathias Krause09941fb2012-08-30 01:30:20 +0200683static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200685#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686#define MSRS_RANGE_SIZE 2048
687#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
688
Joerg Roedel455716f2010-03-01 15:34:35 +0100689static u32 svm_msrpm_offset(u32 msr)
690{
691 u32 offset;
692 int i;
693
694 for (i = 0; i < NUM_MSR_MAPS; i++) {
695 if (msr < msrpm_ranges[i] ||
696 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
697 continue;
698
699 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
700 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
701
702 /* Now we have the u8 offset - but need the u32 offset */
703 return offset / 4;
704 }
705
706 /* MSR not in any range */
707 return MSR_INVALID;
708}
709
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710#define MAX_INST_SIZE 15
711
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712static inline void clgi(void)
713{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300714 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715}
716
717static inline void stgi(void)
718{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300719 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720}
721
722static inline void invlpga(unsigned long addr, u32 asid)
723{
Joerg Roedele0231712010-02-24 18:59:10 +0100724 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725}
726
Yu Zhang855feb62017-08-24 20:27:55 +0800727static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200728{
729#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800730 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200731#else
732 return PT32E_ROOT_LEVEL;
733#endif
734}
735
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
737{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000738 vcpu->arch.efer = efer;
Paolo Bonzinidb775482019-10-27 09:36:37 +0100739
740 if (!npt_enabled) {
741 /* Shadow paging assumes NX to be available. */
742 efer |= EFER_NX;
743
744 if (!(efer & EFER_LMA))
745 efer &= ~EFER_LME;
746 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747
Alexander Graf9962d032008-11-25 20:17:02 +0100748 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100749 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750}
751
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752static int is_external_interrupt(u32 info)
753{
754 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
755 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
756}
757
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200758static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400759{
760 struct vcpu_svm *svm = to_svm(vcpu);
761 u32 ret = 0;
762
763 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200764 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
765 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400766}
767
768static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
769{
770 struct vcpu_svm *svm = to_svm(vcpu);
771
772 if (mask == 0)
773 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
774 else
775 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
776
777}
778
Avi Kivity6aa8b732006-12-10 02:21:36 -0800779static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
780{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400781 struct vcpu_svm *svm = to_svm(vcpu);
782
Bandan Dasf1047652015-06-11 02:05:33 -0400783 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200784 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200785 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400786 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200787
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400788 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700789 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300790 EMULATE_DONE)
791 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792 return;
793 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300794 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
795 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
796 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300798 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400799 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800}
801
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700802static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100803{
804 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700805 unsigned nr = vcpu->arch.exception.nr;
806 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700807 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700808 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100809
Joerg Roedele0231712010-02-24 18:59:10 +0100810 /*
811 * If we are within a nested VM we'd better #VMEXIT and let the guest
812 * handle the exception
813 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200814 if (!reinject &&
815 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100816 return;
817
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200818 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100819 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
820
821 /*
822 * For guest debugging where we have to reinject #BP if some
823 * INT3 is guest-owned:
824 * Emulate nRIP by moving RIP forward. Will fail if injection
825 * raises a fault that is not intercepted. Still better than
826 * failing in all cases.
827 */
828 skip_emulated_instruction(&svm->vcpu);
829 rip = kvm_rip_read(&svm->vcpu);
830 svm->int3_rip = rip + svm->vmcb->save.cs.base;
831 svm->int3_injected = rip - old_rip;
832 }
833
Jan Kiszka116a4752010-02-23 17:47:54 +0100834 svm->vmcb->control.event_inj = nr
835 | SVM_EVTINJ_VALID
836 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
837 | SVM_EVTINJ_TYPE_EXEPT;
838 svm->vmcb->control.event_inj_err = error_code;
839}
840
Joerg Roedel67ec6602010-05-17 14:43:35 +0200841static void svm_init_erratum_383(void)
842{
843 u32 low, high;
844 int err;
845 u64 val;
846
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100847 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200848 return;
849
850 /* Use _safe variants to not break nested virtualization */
851 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
852 if (err)
853 return;
854
855 val |= (1ULL << 47);
856
857 low = lower_32_bits(val);
858 high = upper_32_bits(val);
859
860 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
861
862 erratum_383_found = true;
863}
864
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500865static void svm_init_osvw(struct kvm_vcpu *vcpu)
866{
867 /*
868 * Guests should see errata 400 and 415 as fixed (assuming that
869 * HLT and IO instructions are intercepted).
870 */
871 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
872 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
873
874 /*
875 * By increasing VCPU's osvw.length to 3 we are telling the guest that
876 * all osvw.status bits inside that length, including bit 0 (which is
877 * reserved for erratum 298), are valid. However, if host processor's
878 * osvw_len is 0 then osvw_status[0] carries no information. We need to
879 * be conservative here and therefore we tell the guest that erratum 298
880 * is present (because we really don't know).
881 */
882 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
883 vcpu->arch.osvw.status |= 1;
884}
885
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886static int has_svm(void)
887{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200888 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889
Eduardo Habkost63d11422008-11-17 19:03:20 -0200890 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800891 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800892 return 0;
893 }
894
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 return 1;
896}
897
Radim Krčmář13a34e02014-08-28 15:13:03 +0200898static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100900 /* Make sure we clean up behind us */
901 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
902 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
903
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200904 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100905
906 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907}
908
Radim Krčmář13a34e02014-08-28 15:13:03 +0200909static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910{
911
Tejun Heo0fe1e002009-10-29 22:34:14 +0900912 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 struct desc_struct *gdt;
915 int me = raw_smp_processor_id();
916
Alexander Graf10474ae2009-09-15 11:37:46 +0200917 rdmsrl(MSR_EFER, efer);
918 if (efer & EFER_SVME)
919 return -EBUSY;
920
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200922 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200923 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800924 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900925 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900926 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200927 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200928 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 }
930
Tejun Heo0fe1e002009-10-29 22:34:14 +0900931 sd->asid_generation = 1;
932 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
933 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600934 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800935
Thomas Garnier45fc8752017-03-14 10:05:08 -0700936 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900937 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938
Alexander Graf9962d032008-11-25 20:17:02 +0100939 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940
Linus Torvaldsd0316552009-12-14 09:58:24 -0800941 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200942
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100943 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
944 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500945 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100946 }
947
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500948
949 /*
950 * Get OSVW bits.
951 *
952 * Note that it is possible to have a system with mixed processor
953 * revisions and therefore different OSVW bits. If bits are not the same
954 * on different processors then choose the worst case (i.e. if erratum
955 * is present on one processor and not on another then assume that the
956 * erratum is present everywhere).
957 */
958 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
959 uint64_t len, status = 0;
960 int err;
961
962 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
963 if (!err)
964 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
965 &err);
966
967 if (err)
968 osvw_status = osvw_len = 0;
969 else {
970 if (len < osvw_len)
971 osvw_len = len;
972 osvw_status |= status;
973 osvw_status &= (1ULL << osvw_len) - 1;
974 }
975 } else
976 osvw_status = osvw_len = 0;
977
Joerg Roedel67ec6602010-05-17 14:43:35 +0200978 svm_init_erratum_383();
979
Joerg Roedel1018faa2012-02-29 14:57:32 +0100980 amd_pmu_enable_virt();
981
Alexander Graf10474ae2009-09-15 11:37:46 +0200982 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983}
984
Joerg Roedel0da1db752008-07-02 16:02:11 +0200985static void svm_cpu_uninit(int cpu)
986{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900987 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200988
Tejun Heo0fe1e002009-10-29 22:34:14 +0900989 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200990 return;
991
992 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600993 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 __free_page(sd->save_area);
995 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200996}
997
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998static int svm_cpu_init(int cpu)
999{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001000 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 int r;
1002
Tejun Heo0fe1e002009-10-29 22:34:14 +09001003 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
1004 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001006 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001008 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001009 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 goto err_1;
1011
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001012 if (svm_sev_enabled()) {
1013 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001014 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1015 sizeof(void *),
1016 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001017 if (!sd->sev_vmcbs)
1018 goto err_1;
1019 }
1020
Tejun Heo0fe1e002009-10-29 22:34:14 +09001021 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022
1023 return 0;
1024
1025err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001026 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001027 return r;
1028
1029}
1030
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001031static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032{
1033 int i;
1034
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001035 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1036 if (direct_access_msrs[i].index == index)
1037 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001039 return false;
1040}
1041
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001042static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1043{
1044 u8 bit_write;
1045 unsigned long tmp;
1046 u32 offset;
1047 u32 *msrpm;
1048
1049 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1050 to_svm(vcpu)->msrpm;
1051
1052 offset = svm_msrpm_offset(msr);
1053 bit_write = 2 * (msr & 0x0f) + 1;
1054 tmp = msrpm[offset];
1055
1056 BUG_ON(offset == MSR_INVALID);
1057
1058 return !!test_bit(bit_write, &tmp);
1059}
1060
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061static void set_msr_interception(u32 *msrpm, unsigned msr,
1062 int read, int write)
1063{
Joerg Roedel455716f2010-03-01 15:34:35 +01001064 u8 bit_read, bit_write;
1065 unsigned long tmp;
1066 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001068 /*
1069 * If this warning triggers extend the direct_access_msrs list at the
1070 * beginning of the file
1071 */
1072 WARN_ON(!valid_msr_intercept(msr));
1073
Joerg Roedel455716f2010-03-01 15:34:35 +01001074 offset = svm_msrpm_offset(msr);
1075 bit_read = 2 * (msr & 0x0f);
1076 bit_write = 2 * (msr & 0x0f) + 1;
1077 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078
Joerg Roedel455716f2010-03-01 15:34:35 +01001079 BUG_ON(offset == MSR_INVALID);
1080
1081 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1082 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1083
1084 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001085}
1086
Joerg Roedelf65c2292008-02-13 18:58:46 +01001087static void svm_vcpu_init_msrpm(u32 *msrpm)
1088{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001089 int i;
1090
Joerg Roedelf65c2292008-02-13 18:58:46 +01001091 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1092
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001093 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1094 if (!direct_access_msrs[i].always)
1095 continue;
1096
1097 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1098 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001099}
1100
Joerg Roedel323c3d82010-03-01 15:34:37 +01001101static void add_msr_offset(u32 offset)
1102{
1103 int i;
1104
1105 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1106
1107 /* Offset already in list? */
1108 if (msrpm_offsets[i] == offset)
1109 return;
1110
1111 /* Slot used by another offset? */
1112 if (msrpm_offsets[i] != MSR_INVALID)
1113 continue;
1114
1115 /* Add offset to list */
1116 msrpm_offsets[i] = offset;
1117
1118 return;
1119 }
1120
1121 /*
1122 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1123 * increase MSRPM_OFFSETS in this case.
1124 */
1125 BUG();
1126}
1127
1128static void init_msrpm_offsets(void)
1129{
1130 int i;
1131
1132 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1133
1134 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1135 u32 offset;
1136
1137 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1138 BUG_ON(offset == MSR_INVALID);
1139
1140 add_msr_offset(offset);
1141 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142}
1143
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001144static void svm_enable_lbrv(struct vcpu_svm *svm)
1145{
1146 u32 *msrpm = svm->msrpm;
1147
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001148 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001149 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1150 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1151 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1152 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1153}
1154
1155static void svm_disable_lbrv(struct vcpu_svm *svm)
1156{
1157 u32 *msrpm = svm->msrpm;
1158
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001159 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001160 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1161 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1162 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1163 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1164}
1165
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001166static void disable_nmi_singlestep(struct vcpu_svm *svm)
1167{
1168 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001169
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001170 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1171 /* Clear our flags if they were not set by the guest */
1172 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1173 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1174 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1175 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1176 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001177}
1178
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001179/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001180 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001181 * when handling AMD IOMMU GALOG notification to schedule in
1182 * a particular vCPU.
1183 */
1184#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001185static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001186static u32 next_vm_id = 0;
1187static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001188static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001189
1190/* Note:
1191 * This function is called from IOMMU driver to notify
1192 * SVM to schedule in a particular vCPU of a particular VM.
1193 */
1194static int avic_ga_log_notifier(u32 ga_tag)
1195{
1196 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001197 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001198 struct kvm_vcpu *vcpu = NULL;
1199 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1200 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1201
1202 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1203
1204 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001205 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1206 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001207 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001208 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001209 break;
1210 }
1211 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1212
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001213 /* Note:
1214 * At this point, the IOMMU should have already set the pending
1215 * bit in the vAPIC backing page. So, we just need to schedule
1216 * in the vcpu.
1217 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001218 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001219 kvm_vcpu_wake_up(vcpu);
1220
1221 return 0;
1222}
1223
Brijesh Singhe9df0942017-12-04 10:57:33 -06001224static __init int sev_hardware_setup(void)
1225{
1226 struct sev_user_data_status *status;
1227 int rc;
1228
1229 /* Maximum number of encrypted guests supported simultaneously */
1230 max_sev_asid = cpuid_ecx(0x8000001F);
1231
1232 if (!max_sev_asid)
1233 return 1;
1234
Brijesh Singh1654efc2017-12-04 10:57:34 -06001235 /* Minimum ASID value that should be used for SEV guest */
1236 min_sev_asid = cpuid_edx(0x8000001F);
1237
1238 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d2018-08-30 14:49:59 +03001239 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001240 if (!sev_asid_bitmap)
1241 return 1;
1242
Brijesh Singhe9df0942017-12-04 10:57:33 -06001243 status = kmalloc(sizeof(*status), GFP_KERNEL);
1244 if (!status)
1245 return 1;
1246
1247 /*
1248 * Check SEV platform status.
1249 *
1250 * PLATFORM_STATUS can be called in any state, if we failed to query
1251 * the PLATFORM status then either PSP firmware does not support SEV
1252 * feature or SEV firmware is dead.
1253 */
1254 rc = sev_platform_status(status, NULL);
1255 if (rc)
1256 goto err;
1257
1258 pr_info("SEV supported\n");
1259
1260err:
1261 kfree(status);
1262 return rc;
1263}
1264
Babu Moger8566ac82018-03-16 16:37:26 -04001265static void grow_ple_window(struct kvm_vcpu *vcpu)
1266{
1267 struct vcpu_svm *svm = to_svm(vcpu);
1268 struct vmcb_control_area *control = &svm->vmcb->control;
1269 int old = control->pause_filter_count;
1270
1271 control->pause_filter_count = __grow_ple_window(old,
1272 pause_filter_count,
1273 pause_filter_count_grow,
1274 pause_filter_count_max);
1275
1276 if (control->pause_filter_count != old)
1277 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1278
1279 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1280 control->pause_filter_count, old);
1281}
1282
1283static void shrink_ple_window(struct kvm_vcpu *vcpu)
1284{
1285 struct vcpu_svm *svm = to_svm(vcpu);
1286 struct vmcb_control_area *control = &svm->vmcb->control;
1287 int old = control->pause_filter_count;
1288
1289 control->pause_filter_count =
1290 __shrink_ple_window(old,
1291 pause_filter_count,
1292 pause_filter_count_shrink,
1293 pause_filter_count);
1294 if (control->pause_filter_count != old)
1295 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1296
1297 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1298 control->pause_filter_count, old);
1299}
1300
Tom Lendackya4e761c2020-01-09 17:42:16 -06001301/*
1302 * The default MMIO mask is a single bit (excluding the present bit),
1303 * which could conflict with the memory encryption bit. Check for
1304 * memory encryption support and override the default MMIO mask if
1305 * memory encryption is enabled.
1306 */
1307static __init void svm_adjust_mmio_mask(void)
1308{
1309 unsigned int enc_bit, mask_bit;
1310 u64 msr, mask;
1311
1312 /* If there is no memory encryption support, use existing mask */
1313 if (cpuid_eax(0x80000000) < 0x8000001f)
1314 return;
1315
1316 /* If memory encryption is not enabled, use existing mask */
1317 rdmsrl(MSR_K8_SYSCFG, msr);
1318 if (!(msr & MSR_K8_SYSCFG_MEM_ENCRYPT))
1319 return;
1320
1321 enc_bit = cpuid_ebx(0x8000001f) & 0x3f;
1322 mask_bit = boot_cpu_data.x86_phys_bits;
1323
1324 /* Increment the mask bit if it is the same as the encryption bit */
1325 if (enc_bit == mask_bit)
1326 mask_bit++;
1327
1328 /*
1329 * If the mask bit location is below 52, then some bits above the
1330 * physical addressing limit will always be reserved, so use the
1331 * rsvd_bits() function to generate the mask. This mask, along with
1332 * the present bit, will be used to generate a page fault with
1333 * PFER.RSV = 1.
1334 *
1335 * If the mask bit location is 52 (or above), then clear the mask.
1336 */
1337 mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0;
1338
Greg Kroah-Hartman63007152020-03-16 09:25:06 +01001339 kvm_mmu_set_mmio_spte_mask(mask, mask);
Tom Lendackya4e761c2020-01-09 17:42:16 -06001340}
1341
Avi Kivity6aa8b732006-12-10 02:21:36 -08001342static __init int svm_hardware_setup(void)
1343{
1344 int cpu;
1345 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001346 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347 int r;
1348
Avi Kivity6aa8b732006-12-10 02:21:36 -08001349 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1350
1351 if (!iopm_pages)
1352 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001353
1354 iopm_va = page_address(iopm_pages);
1355 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001356 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1357
Joerg Roedel323c3d82010-03-01 15:34:37 +01001358 init_msrpm_offsets();
1359
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001360 if (boot_cpu_has(X86_FEATURE_NX))
1361 kvm_enable_efer_bits(EFER_NX);
1362
Alexander Graf1b2fd702009-02-02 16:23:51 +01001363 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1364 kvm_enable_efer_bits(EFER_FFXSR);
1365
Joerg Roedel92a1f122011-03-25 09:44:51 +01001366 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001367 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001368 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1369 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001370 }
1371
Babu Moger8566ac82018-03-16 16:37:26 -04001372 /* Check for pause filtering support */
1373 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1374 pause_filter_count = 0;
1375 pause_filter_thresh = 0;
1376 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1377 pause_filter_thresh = 0;
1378 }
1379
Alexander Graf236de052008-11-25 20:17:10 +01001380 if (nested) {
1381 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001382 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001383 }
1384
Brijesh Singhe9df0942017-12-04 10:57:33 -06001385 if (sev) {
1386 if (boot_cpu_has(X86_FEATURE_SEV) &&
1387 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1388 r = sev_hardware_setup();
1389 if (r)
1390 sev = false;
1391 } else {
1392 sev = false;
1393 }
1394 }
1395
Tom Lendackya4e761c2020-01-09 17:42:16 -06001396 svm_adjust_mmio_mask();
1397
Zachary Amsden3230bb42009-09-29 11:38:37 -10001398 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001399 r = svm_cpu_init(cpu);
1400 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001401 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001402 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001403
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001404 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001405 npt_enabled = false;
1406
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001407 if (npt_enabled && !npt) {
1408 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1409 npt_enabled = false;
1410 }
1411
Joerg Roedel18552672008-02-07 13:47:41 +01001412 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001413 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001414 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001415 } else
1416 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001417
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001418 if (avic) {
1419 if (!npt_enabled ||
1420 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001421 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001422 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001423 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001424 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001425
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001426 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1427 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001428 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001429
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001430 if (vls) {
1431 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001432 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001433 !IS_ENABLED(CONFIG_X86_64)) {
1434 vls = false;
1435 } else {
1436 pr_info("Virtual VMLOAD VMSAVE supported\n");
1437 }
1438 }
1439
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001440 if (vgif) {
1441 if (!boot_cpu_has(X86_FEATURE_VGIF))
1442 vgif = false;
1443 else
1444 pr_info("Virtual GIF supported\n");
1445 }
1446
Avi Kivity6aa8b732006-12-10 02:21:36 -08001447 return 0;
1448
Joerg Roedelf65c2292008-02-13 18:58:46 +01001449err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001450 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1451 iopm_base = 0;
1452 return r;
1453}
1454
1455static __exit void svm_hardware_unsetup(void)
1456{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001457 int cpu;
1458
Brijesh Singh1654efc2017-12-04 10:57:34 -06001459 if (svm_sev_enabled())
Andy Shevchenkoa101c9d2018-08-30 14:49:59 +03001460 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001461
Zachary Amsden3230bb42009-09-29 11:38:37 -10001462 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001463 svm_cpu_uninit(cpu);
1464
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001466 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467}
1468
1469static void init_seg(struct vmcb_seg *seg)
1470{
1471 seg->selector = 0;
1472 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001473 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001474 seg->limit = 0xffff;
1475 seg->base = 0;
1476}
1477
1478static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1479{
1480 seg->selector = 0;
1481 seg->attrib = SVM_SELECTOR_P_MASK | type;
1482 seg->limit = 0xffff;
1483 seg->base = 0;
1484}
1485
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001486static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1487{
1488 struct vcpu_svm *svm = to_svm(vcpu);
1489
1490 if (is_guest_mode(vcpu))
1491 return svm->nested.hsave->control.tsc_offset;
1492
1493 return vcpu->arch.tsc_offset;
1494}
1495
Leonid Shatz76c84762018-11-06 12:14:25 +02001496static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001497{
1498 struct vcpu_svm *svm = to_svm(vcpu);
1499 u64 g_tsc_offset = 0;
1500
Joerg Roedel20307532010-11-29 17:51:48 +01001501 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001502 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001503 g_tsc_offset = svm->vmcb->control.tsc_offset -
1504 svm->nested.hsave->control.tsc_offset;
1505 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001506 } else
1507 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1508 svm->vmcb->control.tsc_offset,
1509 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001510
1511 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001512
1513 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz76c84762018-11-06 12:14:25 +02001514 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001515}
1516
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001517static void avic_init_vmcb(struct vcpu_svm *svm)
1518{
1519 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001520 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001521 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001522 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1523 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001524
1525 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1526 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1527 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1528 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1529 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001530}
1531
Paolo Bonzini56908912015-10-19 11:30:19 +02001532static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533{
Joerg Roedele6101a92008-02-13 18:58:45 +01001534 struct vmcb_control_area *control = &svm->vmcb->control;
1535 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001536
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001537 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001538
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001539 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1540 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1541 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1542 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1543 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1544 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001545 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1546 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547
Paolo Bonzini5315c712014-03-03 13:08:29 +01001548 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549
Joerg Roedel18c918c2010-11-30 18:03:59 +01001550 set_exception_intercept(svm, PF_VECTOR);
1551 set_exception_intercept(svm, UD_VECTOR);
1552 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001553 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001554 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001555 /*
1556 * Guest access to VMware backdoor ports could legitimately
1557 * trigger #GP because of TSS I/O permission bitmap.
1558 * We intercept those #GP and allow access to them anyway
1559 * as VMware does.
1560 */
1561 if (enable_vmware_backdoor)
1562 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001564 set_intercept(svm, INTERCEPT_INTR);
1565 set_intercept(svm, INTERCEPT_NMI);
1566 set_intercept(svm, INTERCEPT_SMI);
1567 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001568 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001569 set_intercept(svm, INTERCEPT_CPUID);
1570 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001571 set_intercept(svm, INTERCEPT_INVLPG);
1572 set_intercept(svm, INTERCEPT_INVLPGA);
1573 set_intercept(svm, INTERCEPT_IOIO_PROT);
1574 set_intercept(svm, INTERCEPT_MSR_PROT);
1575 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1576 set_intercept(svm, INTERCEPT_SHUTDOWN);
1577 set_intercept(svm, INTERCEPT_VMRUN);
1578 set_intercept(svm, INTERCEPT_VMMCALL);
1579 set_intercept(svm, INTERCEPT_VMLOAD);
1580 set_intercept(svm, INTERCEPT_VMSAVE);
1581 set_intercept(svm, INTERCEPT_STGI);
1582 set_intercept(svm, INTERCEPT_CLGI);
1583 set_intercept(svm, INTERCEPT_SKINIT);
1584 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001585 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001586 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001588 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001589 set_intercept(svm, INTERCEPT_MONITOR);
1590 set_intercept(svm, INTERCEPT_MWAIT);
1591 }
1592
Wanpeng Licaa057a2018-03-12 04:53:03 -07001593 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1594 set_intercept(svm, INTERCEPT_HLT);
1595
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001596 control->iopm_base_pa = __sme_set(iopm_base);
1597 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598 control->int_ctl = V_INTR_MASKING_MASK;
1599
1600 init_seg(&save->es);
1601 init_seg(&save->ss);
1602 init_seg(&save->ds);
1603 init_seg(&save->fs);
1604 init_seg(&save->gs);
1605
1606 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001607 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001608 /* Executable/Readable Code Segment */
1609 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1610 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1611 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001612
1613 save->gdtr.limit = 0xffff;
1614 save->idtr.limit = 0xffff;
1615
1616 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1617 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1618
Paolo Bonzini56908912015-10-19 11:30:19 +02001619 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001620 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001621 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001622 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001623 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001624
Joerg Roedele0231712010-02-24 18:59:10 +01001625 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001626 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001627 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001629 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001630 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001631
Rusty Russell66aee912007-07-17 23:34:16 +10001632 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001633 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001634
1635 if (npt_enabled) {
1636 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001637 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001638 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001639 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001640 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1641 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001642 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001643 save->cr3 = 0;
1644 save->cr4 = 0;
1645 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001646 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001647
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001648 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001649 svm->vcpu.arch.hflags = 0;
1650
Babu Moger8566ac82018-03-16 16:37:26 -04001651 if (pause_filter_count) {
1652 control->pause_filter_count = pause_filter_count;
1653 if (pause_filter_thresh)
1654 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001655 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001656 } else {
1657 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001658 }
1659
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001660 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001661 avic_init_vmcb(svm);
1662
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001663 /*
1664 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1665 * in VMCB and clear intercepts to avoid #VMEXIT.
1666 */
1667 if (vls) {
1668 clr_intercept(svm, INTERCEPT_VMLOAD);
1669 clr_intercept(svm, INTERCEPT_VMSAVE);
1670 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1671 }
1672
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001673 if (vgif) {
1674 clr_intercept(svm, INTERCEPT_STGI);
1675 clr_intercept(svm, INTERCEPT_CLGI);
1676 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1677 }
1678
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001679 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001680 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001681 clr_exception_intercept(svm, UD_VECTOR);
1682 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001683
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001684 mark_all_dirty(svm->vmcb);
1685
Joerg Roedel2af91942009-08-07 11:49:28 +02001686 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001687
1688}
1689
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001690static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1691 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001692{
1693 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001694 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001695
1696 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1697 return NULL;
1698
Sean Christopherson81811c12018-03-20 12:17:21 -07001699 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001700
1701 return &avic_physical_id_table[index];
1702}
1703
1704/**
1705 * Note:
1706 * AVIC hardware walks the nested page table to check permissions,
1707 * but does not use the SPA address specified in the leaf page
1708 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1709 * field of the VMCB. Therefore, we set up the
1710 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1711 */
1712static int avic_init_access_page(struct kvm_vcpu *vcpu)
1713{
1714 struct kvm *kvm = vcpu->kvm;
Wei Wang85bb1e82018-11-12 12:23:14 +00001715 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001716
Wei Wang85bb1e82018-11-12 12:23:14 +00001717 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001718 if (kvm->arch.apic_access_page_done)
Wei Wang85bb1e82018-11-12 12:23:14 +00001719 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001720
Wei Wang85bb1e82018-11-12 12:23:14 +00001721 ret = __x86_set_memory_region(kvm,
1722 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1723 APIC_DEFAULT_PHYS_BASE,
1724 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001725 if (ret)
Wei Wang85bb1e82018-11-12 12:23:14 +00001726 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001727
1728 kvm->arch.apic_access_page_done = true;
Wei Wang85bb1e82018-11-12 12:23:14 +00001729out:
1730 mutex_unlock(&kvm->slots_lock);
1731 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001732}
1733
1734static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1735{
1736 int ret;
1737 u64 *entry, new_entry;
1738 int id = vcpu->vcpu_id;
1739 struct vcpu_svm *svm = to_svm(vcpu);
1740
1741 ret = avic_init_access_page(vcpu);
1742 if (ret)
1743 return ret;
1744
1745 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1746 return -EINVAL;
1747
1748 if (!svm->vcpu.arch.apic->regs)
1749 return -EINVAL;
1750
1751 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1752
1753 /* Setting AVIC backing page address in the phy APIC ID table */
1754 entry = avic_get_physical_id_entry(vcpu, id);
1755 if (!entry)
1756 return -EINVAL;
1757
1758 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001759 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1760 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1761 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001762 WRITE_ONCE(*entry, new_entry);
1763
1764 svm->avic_physical_id_cache = entry;
1765
1766 return 0;
1767}
1768
Brijesh Singh1654efc2017-12-04 10:57:34 -06001769static void __sev_asid_free(int asid)
1770{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001771 struct svm_cpu_data *sd;
1772 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001773
1774 pos = asid - 1;
1775 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001776
1777 for_each_possible_cpu(cpu) {
1778 sd = per_cpu(svm_data, cpu);
1779 sd->sev_vmcbs[pos] = NULL;
1780 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001781}
1782
1783static void sev_asid_free(struct kvm *kvm)
1784{
Sean Christopherson81811c12018-03-20 12:17:21 -07001785 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001786
1787 __sev_asid_free(sev->asid);
1788}
1789
Brijesh Singh59414c92017-12-04 10:57:35 -06001790static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1791{
1792 struct sev_data_decommission *decommission;
1793 struct sev_data_deactivate *data;
1794
1795 if (!handle)
1796 return;
1797
1798 data = kzalloc(sizeof(*data), GFP_KERNEL);
1799 if (!data)
1800 return;
1801
1802 /* deactivate handle */
1803 data->handle = handle;
1804 sev_guest_deactivate(data, NULL);
1805
1806 wbinvd_on_all_cpus();
1807 sev_guest_df_flush(NULL);
1808 kfree(data);
1809
1810 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1811 if (!decommission)
1812 return;
1813
1814 /* decommission handle */
1815 decommission->handle = handle;
1816 sev_guest_decommission(decommission, NULL);
1817
1818 kfree(decommission);
1819}
1820
Brijesh Singh89c50582017-12-04 10:57:35 -06001821static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1822 unsigned long ulen, unsigned long *n,
1823 int write)
1824{
Sean Christopherson81811c12018-03-20 12:17:21 -07001825 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001826 unsigned long npages, npinned, size;
1827 unsigned long locked, lock_limit;
1828 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001829 unsigned long first, last;
1830
1831 if (ulen == 0 || uaddr + ulen < uaddr)
1832 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001833
1834 /* Calculate number of pages. */
1835 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1836 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1837 npages = (last - first + 1);
1838
1839 locked = sev->pages_locked + npages;
1840 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1841 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1842 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1843 return NULL;
1844 }
1845
1846 /* Avoid using vmalloc for smaller buffers. */
1847 size = npages * sizeof(struct page *);
1848 if (size > PAGE_SIZE)
1849 pages = vmalloc(size);
1850 else
1851 pages = kmalloc(size, GFP_KERNEL);
1852
1853 if (!pages)
1854 return NULL;
1855
1856 /* Pin the user virtual address. */
1857 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1858 if (npinned != npages) {
1859 pr_err("SEV: Failure locking %lu pages.\n", npages);
1860 goto err;
1861 }
1862
1863 *n = npages;
1864 sev->pages_locked = locked;
1865
1866 return pages;
1867
1868err:
1869 if (npinned > 0)
1870 release_pages(pages, npinned);
1871
1872 kvfree(pages);
1873 return NULL;
1874}
1875
1876static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1877 unsigned long npages)
1878{
Sean Christopherson81811c12018-03-20 12:17:21 -07001879 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001880
1881 release_pages(pages, npages);
1882 kvfree(pages);
1883 sev->pages_locked -= npages;
1884}
1885
1886static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1887{
1888 uint8_t *page_virtual;
1889 unsigned long i;
1890
1891 if (npages == 0 || pages == NULL)
1892 return;
1893
1894 for (i = 0; i < npages; i++) {
1895 page_virtual = kmap_atomic(pages[i]);
1896 clflush_cache_range(page_virtual, PAGE_SIZE);
1897 kunmap_atomic(page_virtual);
1898 }
1899}
1900
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001901static void __unregister_enc_region_locked(struct kvm *kvm,
1902 struct enc_region *region)
1903{
1904 /*
1905 * The guest may change the memory encryption attribute from C=0 -> C=1
1906 * or vice versa for this memory range. Lets make sure caches are
1907 * flushed to ensure that guest data gets written into memory with
1908 * correct C-bit.
1909 */
1910 sev_clflush_pages(region->pages, region->npages);
1911
1912 sev_unpin_memory(kvm, region->pages, region->npages);
1913 list_del(&region->list);
1914 kfree(region);
1915}
1916
Sean Christopherson434a1e92018-03-20 12:17:18 -07001917static struct kvm *svm_vm_alloc(void)
1918{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001919 struct kvm_svm *kvm_svm = vzalloc(sizeof(struct kvm_svm));
Sean Christopherson81811c12018-03-20 12:17:21 -07001920 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001921}
1922
1923static void svm_vm_free(struct kvm *kvm)
1924{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001925 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001926}
1927
Brijesh Singh1654efc2017-12-04 10:57:34 -06001928static void sev_vm_destroy(struct kvm *kvm)
1929{
Sean Christopherson81811c12018-03-20 12:17:21 -07001930 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001931 struct list_head *head = &sev->regions_list;
1932 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001933
Brijesh Singh1654efc2017-12-04 10:57:34 -06001934 if (!sev_guest(kvm))
1935 return;
1936
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001937 mutex_lock(&kvm->lock);
1938
1939 /*
1940 * if userspace was terminated before unregistering the memory regions
1941 * then lets unpin all the registered memory.
1942 */
1943 if (!list_empty(head)) {
1944 list_for_each_safe(pos, q, head) {
1945 __unregister_enc_region_locked(kvm,
1946 list_entry(pos, struct enc_region, list));
1947 }
1948 }
1949
1950 mutex_unlock(&kvm->lock);
1951
Brijesh Singh59414c92017-12-04 10:57:35 -06001952 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001953 sev_asid_free(kvm);
1954}
1955
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001956static void avic_vm_destroy(struct kvm *kvm)
1957{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001958 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001959 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001960
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001961 if (!avic)
1962 return;
1963
Sean Christopherson81811c12018-03-20 12:17:21 -07001964 if (kvm_svm->avic_logical_id_table_page)
1965 __free_page(kvm_svm->avic_logical_id_table_page);
1966 if (kvm_svm->avic_physical_id_table_page)
1967 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001968
1969 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001970 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001971 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001972}
1973
Brijesh Singh1654efc2017-12-04 10:57:34 -06001974static void svm_vm_destroy(struct kvm *kvm)
1975{
1976 avic_vm_destroy(kvm);
1977 sev_vm_destroy(kvm);
1978}
1979
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001980static int avic_vm_init(struct kvm *kvm)
1981{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001982 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001983 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001984 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1985 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001986 struct page *p_page;
1987 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001988 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001989
1990 if (!avic)
1991 return 0;
1992
1993 /* Allocating physical APIC ID table (4KB) */
1994 p_page = alloc_page(GFP_KERNEL);
1995 if (!p_page)
1996 goto free_avic;
1997
Sean Christopherson81811c12018-03-20 12:17:21 -07001998 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001999 clear_page(page_address(p_page));
2000
2001 /* Allocating logical APIC ID table (4KB) */
2002 l_page = alloc_page(GFP_KERNEL);
2003 if (!l_page)
2004 goto free_avic;
2005
Sean Christopherson81811c12018-03-20 12:17:21 -07002006 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002007 clear_page(page_address(l_page));
2008
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002009 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002010 again:
2011 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
2012 if (vm_id == 0) { /* id is 1-based, zero is not okay */
2013 next_vm_id_wrapped = 1;
2014 goto again;
2015 }
2016 /* Is it still in use? Only possible if wrapped at least once */
2017 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07002018 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
2019 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02002020 goto again;
2021 }
2022 }
Sean Christopherson81811c12018-03-20 12:17:21 -07002023 kvm_svm->avic_vm_id = vm_id;
2024 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05002025 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
2026
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002027 return 0;
2028
2029free_avic:
2030 avic_vm_destroy(kvm);
2031 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032}
2033
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002034static inline int
2035avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002036{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002037 int ret = 0;
2038 unsigned long flags;
2039 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002040 struct vcpu_svm *svm = to_svm(vcpu);
2041
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002042 if (!kvm_arch_has_assigned_device(vcpu->kvm))
2043 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002044
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002045 /*
2046 * Here, we go through the per-vcpu ir_list to update all existing
2047 * interrupt remapping table entry targeting this vcpu.
2048 */
2049 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002050
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002051 if (list_empty(&svm->ir_list))
2052 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002053
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002054 list_for_each_entry(ir, &svm->ir_list, node) {
2055 ret = amd_iommu_update_ga(cpu, r, ir->data);
2056 if (ret)
2057 break;
2058 }
2059out:
2060 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2061 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002062}
2063
2064static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2065{
2066 u64 entry;
2067 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002068 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002069 struct vcpu_svm *svm = to_svm(vcpu);
2070
2071 if (!kvm_vcpu_apicv_active(vcpu))
2072 return;
2073
Suthikulpanit, Suravee709a9302019-05-14 15:49:52 +00002074 /*
2075 * Since the host physical APIC id is 8 bits,
2076 * we can support host APIC ID upto 255.
2077 */
2078 if (WARN_ON(h_physical_id > AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK))
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002079 return;
2080
2081 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2082 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2083
2084 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2085 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2086
2087 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2088 if (svm->avic_is_running)
2089 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2090
2091 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002092 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2093 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002094}
2095
2096static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2097{
2098 u64 entry;
2099 struct vcpu_svm *svm = to_svm(vcpu);
2100
2101 if (!kvm_vcpu_apicv_active(vcpu))
2102 return;
2103
2104 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002105 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2106 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2107
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002108 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2109 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110}
2111
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002112/**
2113 * This function is called during VCPU halt/unhalt.
2114 */
2115static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2116{
2117 struct vcpu_svm *svm = to_svm(vcpu);
2118
2119 svm->avic_is_running = is_run;
2120 if (is_run)
2121 avic_vcpu_load(vcpu, vcpu->cpu);
2122 else
2123 avic_vcpu_put(vcpu);
2124}
2125
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002126static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002127{
2128 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002129 u32 dummy;
2130 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002131
Wanpeng Li518e7b92018-02-28 14:03:31 +08002132 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002133 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002134 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002135
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002136 if (!init_event) {
2137 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2138 MSR_IA32_APICBASE_ENABLE;
2139 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2140 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2141 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002142 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002143
Yu Zhange911eb32017-08-24 20:27:52 +08002144 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002145 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002146
2147 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2148 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002149}
2150
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002151static int avic_init_vcpu(struct vcpu_svm *svm)
2152{
2153 int ret;
2154
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002155 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002156 return 0;
2157
2158 ret = avic_init_backing_page(&svm->vcpu);
2159 if (ret)
2160 return ret;
2161
2162 INIT_LIST_HEAD(&svm->ir_list);
2163 spin_lock_init(&svm->ir_list_lock);
2164
2165 return ret;
2166}
2167
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002168static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002169{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002170 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002172 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002173 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002174 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002175 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176
Rusty Russellc16f8622007-07-30 21:12:19 +10002177 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002178 if (!svm) {
2179 err = -ENOMEM;
2180 goto out;
2181 }
2182
2183 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2184 if (err)
2185 goto free_svm;
2186
Joerg Roedelf65c2292008-02-13 18:58:46 +01002187 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002188 page = alloc_page(GFP_KERNEL);
2189 if (!page)
2190 goto uninit;
2191
Joerg Roedelf65c2292008-02-13 18:58:46 +01002192 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2193 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002194 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002195
2196 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2197 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002198 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002199
Alexander Grafb286d5d2008-11-25 20:17:05 +01002200 hsave_page = alloc_page(GFP_KERNEL);
2201 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002202 goto free_page3;
2203
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002204 err = avic_init_vcpu(svm);
2205 if (err)
2206 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002207
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002208 /* We initialize this flag to true to make sure that the is_running
2209 * bit would be set the first time the vcpu is loaded.
2210 */
2211 svm->avic_is_running = true;
2212
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002213 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002214
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002215 svm->msrpm = page_address(msrpm_pages);
2216 svm_vcpu_init_msrpm(svm->msrpm);
2217
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002218 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002219 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002220
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002221 svm->vmcb = page_address(page);
2222 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002223 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002224 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002225 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002227 svm_init_osvw(&svm->vcpu);
2228
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002229 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002230
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002231free_page4:
2232 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002233free_page3:
2234 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2235free_page2:
2236 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2237free_page1:
2238 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002239uninit:
2240 kvm_vcpu_uninit(&svm->vcpu);
2241free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002242 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002243out:
2244 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002245}
2246
Jim Mattsonb8b0c872018-05-22 09:54:20 -07002247static void svm_clear_current_vmcb(struct vmcb *vmcb)
2248{
2249 int i;
2250
2251 for_each_online_cpu(i)
2252 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2253}
2254
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2256{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002257 struct vcpu_svm *svm = to_svm(vcpu);
2258
Jim Mattsonb8b0c872018-05-22 09:54:20 -07002259 /*
2260 * The vmcb page can be recycled, causing a false negative in
2261 * svm_vcpu_load(). So, ensure that no logical CPU has this
2262 * vmcb page recorded as its current vmcb.
2263 */
2264 svm_clear_current_vmcb(svm->vmcb);
2265
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002266 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002267 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002268 __free_page(virt_to_page(svm->nested.hsave));
2269 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002270 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002271 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272}
2273
Avi Kivity15ad7142007-07-11 18:17:21 +03002274static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002275{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002276 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002277 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002278 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002279
Avi Kivity0cc50642007-03-25 12:07:27 +02002280 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002281 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002282 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002283 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002284
Avi Kivity82ca2d12010-10-21 12:20:34 +02002285#ifdef CONFIG_X86_64
2286 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2287#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002288 savesegment(fs, svm->host.fs);
2289 savesegment(gs, svm->host.gs);
2290 svm->host.ldt = kvm_read_ldt();
2291
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 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002294
Haozhong Zhangad721882015-10-20 15:39:02 +08002295 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2296 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2297 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2298 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2299 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2300 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002301 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002302 /* This assumes that the kernel never uses MSR_TSC_AUX */
2303 if (static_cpu_has(X86_FEATURE_RDTSCP))
2304 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002305
Ashok Raj15d45072018-02-01 22:59:43 +01002306 if (sd->current_vmcb != svm->vmcb) {
2307 sd->current_vmcb = svm->vmcb;
2308 indirect_branch_prediction_barrier();
2309 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002310 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002311}
2312
2313static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2314{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002315 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002316 int i;
2317
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002318 avic_vcpu_put(vcpu);
2319
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002320 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002321 kvm_load_ldt(svm->host.ldt);
2322#ifdef CONFIG_X86_64
2323 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002324 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002325 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002326#else
Avi Kivity831ca602011-03-08 16:09:51 +02002327#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002328 loadsegment(gs, svm->host.gs);
2329#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002330#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002331 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002332 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002333}
2334
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002335static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2336{
2337 avic_set_running(vcpu, false);
2338}
2339
2340static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2341{
2342 avic_set_running(vcpu, true);
2343}
2344
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2346{
Ladi Prosek9b611742017-06-21 09:06:59 +02002347 struct vcpu_svm *svm = to_svm(vcpu);
2348 unsigned long rflags = svm->vmcb->save.rflags;
2349
2350 if (svm->nmi_singlestep) {
2351 /* Hide our flags if they were not set by the guest */
2352 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2353 rflags &= ~X86_EFLAGS_TF;
2354 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2355 rflags &= ~X86_EFLAGS_RF;
2356 }
2357 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358}
2359
2360static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2361{
Ladi Prosek9b611742017-06-21 09:06:59 +02002362 if (to_svm(vcpu)->nmi_singlestep)
2363 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2364
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002365 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002366 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002367 * (caused by either a task switch or an inter-privilege IRET),
2368 * so we do not need to update the CPL here.
2369 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002370 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371}
2372
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002373static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2374{
2375 switch (reg) {
2376 case VCPU_EXREG_PDPTR:
2377 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002378 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002379 break;
2380 default:
2381 BUG();
2382 }
2383}
2384
Alexander Graff0b85052008-11-25 20:17:01 +01002385static void svm_set_vintr(struct vcpu_svm *svm)
2386{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002387 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002388}
2389
2390static void svm_clear_vintr(struct vcpu_svm *svm)
2391{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002392 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002393}
2394
Avi Kivity6aa8b732006-12-10 02:21:36 -08002395static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2396{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002397 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002398
2399 switch (seg) {
2400 case VCPU_SREG_CS: return &save->cs;
2401 case VCPU_SREG_DS: return &save->ds;
2402 case VCPU_SREG_ES: return &save->es;
2403 case VCPU_SREG_FS: return &save->fs;
2404 case VCPU_SREG_GS: return &save->gs;
2405 case VCPU_SREG_SS: return &save->ss;
2406 case VCPU_SREG_TR: return &save->tr;
2407 case VCPU_SREG_LDTR: return &save->ldtr;
2408 }
2409 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002410 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002411}
2412
2413static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2414{
2415 struct vmcb_seg *s = svm_seg(vcpu, seg);
2416
2417 return s->base;
2418}
2419
2420static void svm_get_segment(struct kvm_vcpu *vcpu,
2421 struct kvm_segment *var, int seg)
2422{
2423 struct vmcb_seg *s = svm_seg(vcpu, seg);
2424
2425 var->base = s->base;
2426 var->limit = s->limit;
2427 var->selector = s->selector;
2428 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2429 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2430 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2431 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2432 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2433 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2434 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302435
2436 /*
2437 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2438 * However, the SVM spec states that the G bit is not observed by the
2439 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2440 * So let's synthesize a legal G bit for all segments, this helps
2441 * running KVM nested. It also helps cross-vendor migration, because
2442 * Intel's vmentry has a check on the 'G' bit.
2443 */
2444 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002445
Joerg Roedele0231712010-02-24 18:59:10 +01002446 /*
2447 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002448 * for cross vendor migration purposes by "not present"
2449 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002450 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002451
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002452 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002453 case VCPU_SREG_TR:
2454 /*
2455 * Work around a bug where the busy flag in the tr selector
2456 * isn't exposed
2457 */
Amit Shahc0d09822008-10-27 09:04:18 +00002458 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002459 break;
2460 case VCPU_SREG_DS:
2461 case VCPU_SREG_ES:
2462 case VCPU_SREG_FS:
2463 case VCPU_SREG_GS:
2464 /*
2465 * The accessed bit must always be set in the segment
2466 * descriptor cache, although it can be cleared in the
2467 * descriptor, the cached bit always remains at 1. Since
2468 * Intel has a check on this, set it here to support
2469 * cross-vendor migration.
2470 */
2471 if (!var->unusable)
2472 var->type |= 0x1;
2473 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002474 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002475 /*
2476 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002477 * descriptor is left as 1, although the whole segment has
2478 * been made unusable. Clear it here to pass an Intel VMX
2479 * entry check when cross vendor migrating.
2480 */
2481 if (var->unusable)
2482 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002483 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002484 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002485 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002486 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002487}
2488
Izik Eidus2e4d2652008-03-24 19:38:34 +02002489static int svm_get_cpl(struct kvm_vcpu *vcpu)
2490{
2491 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2492
2493 return save->cpl;
2494}
2495
Gleb Natapov89a27f42010-02-16 10:51:48 +02002496static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002497{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002498 struct vcpu_svm *svm = to_svm(vcpu);
2499
Gleb Natapov89a27f42010-02-16 10:51:48 +02002500 dt->size = svm->vmcb->save.idtr.limit;
2501 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502}
2503
Gleb Natapov89a27f42010-02-16 10:51:48 +02002504static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002506 struct vcpu_svm *svm = to_svm(vcpu);
2507
Gleb Natapov89a27f42010-02-16 10:51:48 +02002508 svm->vmcb->save.idtr.limit = dt->size;
2509 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002510 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511}
2512
Gleb Natapov89a27f42010-02-16 10:51:48 +02002513static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002515 struct vcpu_svm *svm = to_svm(vcpu);
2516
Gleb Natapov89a27f42010-02-16 10:51:48 +02002517 dt->size = svm->vmcb->save.gdtr.limit;
2518 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519}
2520
Gleb Natapov89a27f42010-02-16 10:51:48 +02002521static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002523 struct vcpu_svm *svm = to_svm(vcpu);
2524
Gleb Natapov89a27f42010-02-16 10:51:48 +02002525 svm->vmcb->save.gdtr.limit = dt->size;
2526 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002527 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002528}
2529
Avi Kivitye8467fd2009-12-29 18:43:06 +02002530static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2531{
2532}
2533
Avi Kivityaff48ba2010-12-05 18:56:11 +02002534static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2535{
2536}
2537
Anthony Liguori25c4c272007-04-27 09:29:21 +03002538static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002539{
2540}
2541
Avi Kivityd2251572010-01-06 10:55:27 +02002542static void update_cr0_intercept(struct vcpu_svm *svm)
2543{
2544 ulong gcr0 = svm->vcpu.arch.cr0;
2545 u64 *hcr0 = &svm->vmcb->save.cr0;
2546
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002547 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2548 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002549
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002550 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002551
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002552 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002553 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2554 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002555 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002556 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2557 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002558 }
2559}
2560
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2562{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002563 struct vcpu_svm *svm = to_svm(vcpu);
2564
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002565#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002566 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002567 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002568 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002569 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570 }
2571
Mike Dayd77c26f2007-10-08 09:02:08 -04002572 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002573 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002574 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575 }
2576 }
2577#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002578 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002579
2580 if (!npt_enabled)
2581 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002582
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002583 /*
2584 * re-enable caching here because the QEMU bios
2585 * does not do it - this results in some delay at
2586 * reboot
2587 */
2588 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2589 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002590 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002591 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002592 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593}
2594
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002595static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002596{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002597 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002598 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2599
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002600 if (cr4 & X86_CR4_VMXE)
2601 return 1;
2602
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002603 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002604 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002605
Joerg Roedelec077262008-04-09 14:15:28 +02002606 vcpu->arch.cr4 = cr4;
2607 if (!npt_enabled)
2608 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002609 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002610 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002611 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002612 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002613}
2614
2615static void svm_set_segment(struct kvm_vcpu *vcpu,
2616 struct kvm_segment *var, int seg)
2617{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002618 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 struct vmcb_seg *s = svm_seg(vcpu, seg);
2620
2621 s->base = var->base;
2622 s->limit = var->limit;
2623 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002624 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2625 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2626 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2627 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2628 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2629 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2630 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2631 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002632
2633 /*
2634 * This is always accurate, except if SYSRET returned to a segment
2635 * with SS.DPL != 3. Intel does not have this quirk, and always
2636 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2637 * would entail passing the CPL to userspace and back.
2638 */
2639 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002640 /* This is symmetric with svm_get_segment() */
2641 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642
Joerg Roedel060d0c92010-12-03 11:45:57 +01002643 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644}
2645
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002646static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002648 struct vcpu_svm *svm = to_svm(vcpu);
2649
Joerg Roedel18c918c2010-11-30 18:03:59 +01002650 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002651
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002652 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002653 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002654 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002655 } else
2656 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002657}
2658
Tejun Heo0fe1e002009-10-29 22:34:14 +09002659static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002661 if (sd->next_asid > sd->max_asid) {
2662 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002663 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002664 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665 }
2666
Tejun Heo0fe1e002009-10-29 22:34:14 +09002667 svm->asid_generation = sd->asid_generation;
2668 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002669
2670 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002671}
2672
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002673static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2674{
2675 return to_svm(vcpu)->vmcb->save.dr6;
2676}
2677
2678static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2679{
2680 struct vcpu_svm *svm = to_svm(vcpu);
2681
2682 svm->vmcb->save.dr6 = value;
2683 mark_dirty(svm->vmcb, VMCB_DR);
2684}
2685
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002686static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2687{
2688 struct vcpu_svm *svm = to_svm(vcpu);
2689
2690 get_debugreg(vcpu->arch.db[0], 0);
2691 get_debugreg(vcpu->arch.db[1], 1);
2692 get_debugreg(vcpu->arch.db[2], 2);
2693 get_debugreg(vcpu->arch.db[3], 3);
2694 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2695 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2696
2697 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2698 set_dr_intercepts(svm);
2699}
2700
Gleb Natapov020df072010-04-13 10:05:23 +03002701static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002703 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002704
Gleb Natapov020df072010-04-13 10:05:23 +03002705 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002706 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002707}
2708
Avi Kivity851ba692009-08-24 11:10:17 +03002709static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002711 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002712 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002714 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002715 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2716 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002717 svm->vmcb->control.insn_len);
2718}
2719
2720static int npf_interception(struct vcpu_svm *svm)
2721{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002722 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002723 u64 error_code = svm->vmcb->control.exit_info_1;
2724
2725 trace_kvm_page_fault(fault_address, error_code);
2726 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002727 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2728 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002729 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002730}
2731
Avi Kivity851ba692009-08-24 11:10:17 +03002732static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002733{
Avi Kivity851ba692009-08-24 11:10:17 +03002734 struct kvm_run *kvm_run = svm->vcpu.run;
Vitaly Kuznetsovc9e34932019-04-03 16:06:42 +02002735 struct kvm_vcpu *vcpu = &svm->vcpu;
Avi Kivity851ba692009-08-24 11:10:17 +03002736
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002737 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002738 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002739 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002740 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2741 return 1;
2742 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002743
Jan Kiszka6be7d302009-10-18 13:24:54 +02002744 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002745 disable_nmi_singlestep(svm);
Vitaly Kuznetsovc9e34932019-04-03 16:06:42 +02002746 /* Make sure we check for pending NMIs upon entry */
2747 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov44c11432009-05-11 13:35:52 +03002748 }
2749
2750 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002751 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002752 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2753 kvm_run->debug.arch.pc =
2754 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2755 kvm_run->debug.arch.exception = DB_VECTOR;
2756 return 0;
2757 }
2758
2759 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002760}
2761
Avi Kivity851ba692009-08-24 11:10:17 +03002762static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002763{
Avi Kivity851ba692009-08-24 11:10:17 +03002764 struct kvm_run *kvm_run = svm->vcpu.run;
2765
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002766 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2767 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2768 kvm_run->debug.arch.exception = BP_VECTOR;
2769 return 0;
2770}
2771
Avi Kivity851ba692009-08-24 11:10:17 +03002772static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002773{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002774 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002775}
2776
Eric Northup54a20552015-11-03 18:03:53 +01002777static int ac_interception(struct vcpu_svm *svm)
2778{
2779 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2780 return 1;
2781}
2782
Liran Alon97184202018-03-12 13:12:52 +02002783static int gp_interception(struct vcpu_svm *svm)
2784{
2785 struct kvm_vcpu *vcpu = &svm->vcpu;
2786 u32 error_code = svm->vmcb->control.exit_info_1;
2787 int er;
2788
2789 WARN_ON_ONCE(!enable_vmware_backdoor);
2790
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002791 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002792 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2793 if (er == EMULATE_USER_EXIT)
2794 return 0;
2795 else if (er != EMULATE_DONE)
2796 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2797 return 1;
2798}
2799
Joerg Roedel67ec6602010-05-17 14:43:35 +02002800static bool is_erratum_383(void)
2801{
2802 int err, i;
2803 u64 value;
2804
2805 if (!erratum_383_found)
2806 return false;
2807
2808 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2809 if (err)
2810 return false;
2811
2812 /* Bit 62 may or may not be set for this mce */
2813 value &= ~(1ULL << 62);
2814
2815 if (value != 0xb600000000010015ULL)
2816 return false;
2817
2818 /* Clear MCi_STATUS registers */
2819 for (i = 0; i < 6; ++i)
2820 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2821
2822 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2823 if (!err) {
2824 u32 low, high;
2825
2826 value &= ~(1ULL << 2);
2827 low = lower_32_bits(value);
2828 high = upper_32_bits(value);
2829
2830 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2831 }
2832
2833 /* Flush tlb to evict multi-match entries */
2834 __flush_tlb_all();
2835
2836 return true;
2837}
2838
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002839static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002840{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002841 if (is_erratum_383()) {
2842 /*
2843 * Erratum 383 triggered. Guest state is corrupt so kill the
2844 * guest.
2845 */
2846 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2847
Avi Kivitya8eeb042010-05-10 12:34:53 +03002848 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002849
2850 return;
2851 }
2852
Joerg Roedel53371b52008-04-09 14:15:30 +02002853 /*
2854 * On an #MC intercept the MCE handler is not called automatically in
2855 * the host. So do it by hand here.
2856 */
2857 asm volatile (
2858 "int $0x12\n");
2859 /* not sure if we ever come back to this point */
2860
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002861 return;
2862}
2863
2864static int mc_interception(struct vcpu_svm *svm)
2865{
Joerg Roedel53371b52008-04-09 14:15:30 +02002866 return 1;
2867}
2868
Avi Kivity851ba692009-08-24 11:10:17 +03002869static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002870{
Avi Kivity851ba692009-08-24 11:10:17 +03002871 struct kvm_run *kvm_run = svm->vcpu.run;
2872
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002873 /*
2874 * VMCB is undefined after a SHUTDOWN intercept
2875 * so reinitialize it.
2876 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002877 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002878 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002879
2880 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2881 return 0;
2882}
2883
Avi Kivity851ba692009-08-24 11:10:17 +03002884static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002886 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002887 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002888 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002889 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890
Rusty Russelle756fc62007-07-30 20:07:08 +10002891 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002892 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002893 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002894 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002895 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002896
Avi Kivity039576c2007-03-20 12:46:50 +02002897 port = io_info >> 16;
2898 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002899 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002900
Sean Christophersondca7f122018-03-08 08:57:27 -08002901 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902}
2903
Avi Kivity851ba692009-08-24 11:10:17 +03002904static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002905{
2906 return 1;
2907}
2908
Avi Kivity851ba692009-08-24 11:10:17 +03002909static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002910{
2911 ++svm->vcpu.stat.irq_exits;
2912 return 1;
2913}
2914
Avi Kivity851ba692009-08-24 11:10:17 +03002915static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916{
2917 return 1;
2918}
2919
Avi Kivity851ba692009-08-24 11:10:17 +03002920static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002921{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002922 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002923 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002924}
2925
Avi Kivity851ba692009-08-24 11:10:17 +03002926static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002927{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002928 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002929 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002930}
2931
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002932static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2933{
2934 struct vcpu_svm *svm = to_svm(vcpu);
2935
2936 return svm->nested.nested_cr3;
2937}
2938
Avi Kivitye4e517b2011-07-28 11:36:17 +03002939static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2940{
2941 struct vcpu_svm *svm = to_svm(vcpu);
2942 u64 cr3 = svm->nested.nested_cr3;
2943 u64 pdpte;
2944 int ret;
2945
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002946 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002947 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002948 if (ret)
2949 return 0;
2950 return pdpte;
2951}
2952
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002953static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2954 unsigned long root)
2955{
2956 struct vcpu_svm *svm = to_svm(vcpu);
2957
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002958 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002959 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002960}
2961
Avi Kivity6389ee92010-11-29 16:12:30 +02002962static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2963 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002964{
2965 struct vcpu_svm *svm = to_svm(vcpu);
2966
Paolo Bonzini5e352512014-09-02 13:18:37 +02002967 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2968 /*
2969 * TODO: track the cause of the nested page fault, and
2970 * correctly fill in the high bits of exit_info_1.
2971 */
2972 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2973 svm->vmcb->control.exit_code_hi = 0;
2974 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2975 svm->vmcb->control.exit_info_2 = fault->address;
2976 }
2977
2978 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2979 svm->vmcb->control.exit_info_1 |= fault->error_code;
2980
2981 /*
2982 * The present bit is always zero for page structure faults on real
2983 * hardware.
2984 */
2985 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2986 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002987
2988 nested_svm_vmexit(svm);
2989}
2990
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002991static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002992{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002993 WARN_ON(mmu_is_nested(vcpu));
2994 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002995 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2996 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002997 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002998 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002999 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08003000 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02003001 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02003002}
3003
3004static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
3005{
3006 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
3007}
3008
Alexander Grafc0725422008-11-25 20:17:03 +01003009static int nested_svm_check_permissions(struct vcpu_svm *svm)
3010{
Dan Carpentere9196ce2017-05-18 10:39:53 +03003011 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
3012 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01003013 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3014 return 1;
3015 }
3016
3017 if (svm->vmcb->save.cpl) {
3018 kvm_inject_gp(&svm->vcpu, 0);
3019 return 1;
3020 }
3021
Dan Carpentere9196ce2017-05-18 10:39:53 +03003022 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01003023}
3024
Alexander Grafcf74a782008-11-25 20:17:08 +01003025static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
3026 bool has_error_code, u32 error_code)
3027{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003028 int vmexit;
3029
Joerg Roedel20307532010-11-29 17:51:48 +01003030 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02003031 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003032
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003033 vmexit = nested_svm_intercept(svm);
3034 if (vmexit != NESTED_EXIT_DONE)
3035 return 0;
3036
Joerg Roedel0295ad72009-08-07 11:49:37 +02003037 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
3038 svm->vmcb->control.exit_code_hi = 0;
3039 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003040
3041 /*
3042 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
3043 * The fix is to add the ancillary datum (CR2 or DR6) to structs
3044 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
3045 * written only when inject_pending_event runs (DR6 would written here
3046 * too). This should be conditional on a new capability---if the
3047 * capability is disabled, kvm_multiple_exception would write the
3048 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
3049 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003050 if (svm->vcpu.arch.exception.nested_apf)
3051 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
3052 else
3053 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003054
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003055 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003056 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003057}
3058
Joerg Roedel8fe54652010-02-19 16:23:01 +01003059/* This function returns true if it is save to enable the irq window */
3060static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003061{
Joerg Roedel20307532010-11-29 17:51:48 +01003062 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003063 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003064
Joerg Roedel26666952009-08-07 11:49:46 +02003065 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003066 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003067
Joerg Roedel26666952009-08-07 11:49:46 +02003068 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003069 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003070
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003071 /*
3072 * if vmexit was already requested (by intercepted exception
3073 * for instance) do not overwrite it with "external interrupt"
3074 * vmexit.
3075 */
3076 if (svm->nested.exit_required)
3077 return false;
3078
Joerg Roedel197717d2010-02-24 18:59:19 +01003079 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3080 svm->vmcb->control.exit_info_1 = 0;
3081 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003082
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003083 if (svm->nested.intercept & 1ULL) {
3084 /*
3085 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003086 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003087 * #vmexit emulation might sleep. Only signal request for
3088 * the #vmexit here.
3089 */
3090 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003091 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003092 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003093 }
3094
Joerg Roedel8fe54652010-02-19 16:23:01 +01003095 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003096}
3097
Joerg Roedel887f5002010-02-24 18:59:12 +01003098/* This function returns true if it is save to enable the nmi window */
3099static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3100{
Joerg Roedel20307532010-11-29 17:51:48 +01003101 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003102 return true;
3103
3104 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3105 return true;
3106
3107 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3108 svm->nested.exit_required = true;
3109
3110 return false;
3111}
3112
Joerg Roedel7597f122010-02-19 16:23:00 +01003113static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003114{
3115 struct page *page;
3116
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003117 might_sleep();
3118
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003119 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003120 if (is_error_page(page))
3121 goto error;
3122
Joerg Roedel7597f122010-02-19 16:23:00 +01003123 *_page = page;
3124
3125 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003126
3127error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003128 kvm_inject_gp(&svm->vcpu, 0);
3129
3130 return NULL;
3131}
3132
Joerg Roedel7597f122010-02-19 16:23:00 +01003133static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003134{
Joerg Roedel7597f122010-02-19 16:23:00 +01003135 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003136 kvm_release_page_dirty(page);
3137}
3138
Joerg Roedelce2ac082010-03-01 15:34:39 +01003139static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003140{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003141 unsigned port, size, iopm_len;
3142 u16 val, mask;
3143 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003144 u64 gpa;
3145
3146 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3147 return NESTED_EXIT_HOST;
3148
3149 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003150 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3151 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003152 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003153 start_bit = port % 8;
3154 iopm_len = (start_bit + size > 8) ? 2 : 1;
3155 mask = (0xf >> (4 - size)) << start_bit;
3156 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003157
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003158 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003159 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003160
Jan Kiszka9bf41832014-06-30 10:54:17 +02003161 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003162}
3163
Joerg Roedeld2477822010-03-01 15:34:34 +01003164static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003165{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003166 u32 offset, msr, value;
3167 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003168
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003169 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003170 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003171
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003172 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3173 offset = svm_msrpm_offset(msr);
3174 write = svm->vmcb->control.exit_info_1 & 1;
3175 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003176
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003177 if (offset == MSR_INVALID)
3178 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003179
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003180 /* Offset is in 32 bit units but need in 8 bit units */
3181 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003182
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003183 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003184 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003185
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003186 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003187}
3188
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003189/* DB exceptions for our internal use must not cause vmexit */
3190static int nested_svm_intercept_db(struct vcpu_svm *svm)
3191{
3192 unsigned long dr6;
3193
3194 /* if we're not singlestepping, it's not ours */
3195 if (!svm->nmi_singlestep)
3196 return NESTED_EXIT_DONE;
3197
3198 /* if it's not a singlestep exception, it's not ours */
3199 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3200 return NESTED_EXIT_DONE;
3201 if (!(dr6 & DR6_BS))
3202 return NESTED_EXIT_DONE;
3203
3204 /* if the guest is singlestepping, it should get the vmexit */
3205 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3206 disable_nmi_singlestep(svm);
3207 return NESTED_EXIT_DONE;
3208 }
3209
3210 /* it's ours, the nested hypervisor must not see this one */
3211 return NESTED_EXIT_HOST;
3212}
3213
Joerg Roedel410e4d52009-08-07 11:49:44 +02003214static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003215{
Alexander Grafcf74a782008-11-25 20:17:08 +01003216 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003217
Joerg Roedel410e4d52009-08-07 11:49:44 +02003218 switch (exit_code) {
3219 case SVM_EXIT_INTR:
3220 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003221 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003222 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003223 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003224 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003225 if (npt_enabled)
3226 return NESTED_EXIT_HOST;
3227 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003228 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003229 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003230 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003231 return NESTED_EXIT_HOST;
3232 break;
3233 default:
3234 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003235 }
3236
Joerg Roedel410e4d52009-08-07 11:49:44 +02003237 return NESTED_EXIT_CONTINUE;
3238}
3239
3240/*
3241 * If this function returns true, this #vmexit was already handled
3242 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003243static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003244{
3245 u32 exit_code = svm->vmcb->control.exit_code;
3246 int vmexit = NESTED_EXIT_HOST;
3247
Alexander Grafcf74a782008-11-25 20:17:08 +01003248 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003249 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003250 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003251 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003252 case SVM_EXIT_IOIO:
3253 vmexit = nested_svm_intercept_ioio(svm);
3254 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003255 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3256 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3257 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003258 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003259 break;
3260 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003261 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3262 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3263 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003264 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003265 break;
3266 }
3267 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3268 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003269 if (svm->nested.intercept_exceptions & excp_bits) {
3270 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3271 vmexit = nested_svm_intercept_db(svm);
3272 else
3273 vmexit = NESTED_EXIT_DONE;
3274 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003275 /* async page fault always cause vmexit */
3276 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003277 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003278 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003279 break;
3280 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003281 case SVM_EXIT_ERR: {
3282 vmexit = NESTED_EXIT_DONE;
3283 break;
3284 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003285 default: {
3286 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003287 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003288 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003289 }
3290 }
3291
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003292 return vmexit;
3293}
3294
3295static int nested_svm_exit_handled(struct vcpu_svm *svm)
3296{
3297 int vmexit;
3298
3299 vmexit = nested_svm_intercept(svm);
3300
3301 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003302 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003303
3304 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003305}
3306
Joerg Roedel0460a972009-08-07 11:49:31 +02003307static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3308{
3309 struct vmcb_control_area *dst = &dst_vmcb->control;
3310 struct vmcb_control_area *from = &from_vmcb->control;
3311
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003312 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003313 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003314 dst->intercept_exceptions = from->intercept_exceptions;
3315 dst->intercept = from->intercept;
3316 dst->iopm_base_pa = from->iopm_base_pa;
3317 dst->msrpm_base_pa = from->msrpm_base_pa;
3318 dst->tsc_offset = from->tsc_offset;
3319 dst->asid = from->asid;
3320 dst->tlb_ctl = from->tlb_ctl;
3321 dst->int_ctl = from->int_ctl;
3322 dst->int_vector = from->int_vector;
3323 dst->int_state = from->int_state;
3324 dst->exit_code = from->exit_code;
3325 dst->exit_code_hi = from->exit_code_hi;
3326 dst->exit_info_1 = from->exit_info_1;
3327 dst->exit_info_2 = from->exit_info_2;
3328 dst->exit_int_info = from->exit_int_info;
3329 dst->exit_int_info_err = from->exit_int_info_err;
3330 dst->nested_ctl = from->nested_ctl;
3331 dst->event_inj = from->event_inj;
3332 dst->event_inj_err = from->event_inj_err;
3333 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003334 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003335}
3336
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003337static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003338{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003339 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003340 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003341 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003342 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003343
Joerg Roedel17897f32009-10-09 16:08:29 +02003344 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3345 vmcb->control.exit_info_1,
3346 vmcb->control.exit_info_2,
3347 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003348 vmcb->control.exit_int_info_err,
3349 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003350
Joerg Roedel7597f122010-02-19 16:23:00 +01003351 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003352 if (!nested_vmcb)
3353 return 1;
3354
Joerg Roedel20307532010-11-29 17:51:48 +01003355 /* Exit Guest-Mode */
3356 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003357 svm->nested.vmcb = 0;
3358
Alexander Grafcf74a782008-11-25 20:17:08 +01003359 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003360 disable_gif(svm);
3361
3362 nested_vmcb->save.es = vmcb->save.es;
3363 nested_vmcb->save.cs = vmcb->save.cs;
3364 nested_vmcb->save.ss = vmcb->save.ss;
3365 nested_vmcb->save.ds = vmcb->save.ds;
3366 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3367 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003368 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003369 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003370 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003371 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003372 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003373 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003374 nested_vmcb->save.rip = vmcb->save.rip;
3375 nested_vmcb->save.rsp = vmcb->save.rsp;
3376 nested_vmcb->save.rax = vmcb->save.rax;
3377 nested_vmcb->save.dr7 = vmcb->save.dr7;
3378 nested_vmcb->save.dr6 = vmcb->save.dr6;
3379 nested_vmcb->save.cpl = vmcb->save.cpl;
3380
3381 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3382 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3383 nested_vmcb->control.int_state = vmcb->control.int_state;
3384 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3385 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3386 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3387 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3388 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3389 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003390
3391 if (svm->nrips_enabled)
3392 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003393
3394 /*
3395 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3396 * to make sure that we do not lose injected events. So check event_inj
3397 * here and copy it to exit_int_info if it is valid.
3398 * Exit_int_info and event_inj can't be both valid because the case
3399 * below only happens on a VMRUN instruction intercept which has
3400 * no valid exit_int_info set.
3401 */
3402 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3403 struct vmcb_control_area *nc = &nested_vmcb->control;
3404
3405 nc->exit_int_info = vmcb->control.event_inj;
3406 nc->exit_int_info_err = vmcb->control.event_inj_err;
3407 }
3408
Joerg Roedel33740e42009-08-07 11:49:29 +02003409 nested_vmcb->control.tlb_ctl = 0;
3410 nested_vmcb->control.event_inj = 0;
3411 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003412
3413 /* We always set V_INTR_MASKING and remember the old value in hflags */
3414 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3415 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3416
Alexander Grafcf74a782008-11-25 20:17:08 +01003417 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003418 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003419
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003420 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003421 kvm_clear_exception_queue(&svm->vcpu);
3422 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003423
Joerg Roedel4b161842010-09-10 17:31:03 +02003424 svm->nested.nested_cr3 = 0;
3425
Alexander Grafcf74a782008-11-25 20:17:08 +01003426 /* Restore selected save entries */
3427 svm->vmcb->save.es = hsave->save.es;
3428 svm->vmcb->save.cs = hsave->save.cs;
3429 svm->vmcb->save.ss = hsave->save.ss;
3430 svm->vmcb->save.ds = hsave->save.ds;
3431 svm->vmcb->save.gdtr = hsave->save.gdtr;
3432 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003433 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003434 svm_set_efer(&svm->vcpu, hsave->save.efer);
3435 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3436 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3437 if (npt_enabled) {
3438 svm->vmcb->save.cr3 = hsave->save.cr3;
3439 svm->vcpu.arch.cr3 = hsave->save.cr3;
3440 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003441 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003442 }
3443 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3444 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3445 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3446 svm->vmcb->save.dr7 = 0;
3447 svm->vmcb->save.cpl = 0;
3448 svm->vmcb->control.exit_int_info = 0;
3449
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003450 mark_all_dirty(svm->vmcb);
3451
Joerg Roedel7597f122010-02-19 16:23:00 +01003452 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003453
Joerg Roedel4b161842010-09-10 17:31:03 +02003454 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003455 kvm_mmu_reset_context(&svm->vcpu);
3456 kvm_mmu_load(&svm->vcpu);
3457
Vitaly Kuznetsov60a4b3f2019-01-07 19:44:51 +01003458 /*
3459 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3460 * doesn't end up in L1.
3461 */
3462 svm->vcpu.arch.nmi_injected = false;
3463 kvm_clear_exception_queue(&svm->vcpu);
3464 kvm_clear_interrupt_queue(&svm->vcpu);
3465
Alexander Grafcf74a782008-11-25 20:17:08 +01003466 return 0;
3467}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003468
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003469static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003470{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003471 /*
3472 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003473 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003474 * the kvm msr permission bitmap may contain zero bits
3475 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003476 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003477
Joerg Roedel323c3d82010-03-01 15:34:37 +01003478 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3479 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003480
Joerg Roedel323c3d82010-03-01 15:34:37 +01003481 for (i = 0; i < MSRPM_OFFSETS; i++) {
3482 u32 value, p;
3483 u64 offset;
3484
3485 if (msrpm_offsets[i] == 0xffffffff)
3486 break;
3487
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003488 p = msrpm_offsets[i];
3489 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003490
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003491 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003492 return false;
3493
3494 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3495 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003496
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003497 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003498
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003499 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003500}
3501
Joerg Roedel52c65a302010-08-02 16:46:44 +02003502static bool nested_vmcb_checks(struct vmcb *vmcb)
3503{
3504 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3505 return false;
3506
Joerg Roedeldbe77582010-08-02 16:46:45 +02003507 if (vmcb->control.asid == 0)
3508 return false;
3509
Tom Lendackycea3a192017-12-04 10:57:24 -06003510 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3511 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003512 return false;
3513
Joerg Roedel52c65a302010-08-02 16:46:44 +02003514 return true;
3515}
3516
Ladi Prosekc2634062017-10-11 16:54:44 +02003517static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3518 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003519{
Avi Kivityf6e78472010-08-02 15:30:20 +03003520 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003521 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3522 else
3523 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3524
Tom Lendackycea3a192017-12-04 10:57:24 -06003525 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003526 kvm_mmu_unload(&svm->vcpu);
3527 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3528 nested_svm_init_mmu_context(&svm->vcpu);
3529 }
3530
Alexander Graf3d6368e2008-11-25 20:17:07 +01003531 /* Load the nested guest state */
3532 svm->vmcb->save.es = nested_vmcb->save.es;
3533 svm->vmcb->save.cs = nested_vmcb->save.cs;
3534 svm->vmcb->save.ss = nested_vmcb->save.ss;
3535 svm->vmcb->save.ds = nested_vmcb->save.ds;
3536 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3537 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003538 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003539 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3540 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3541 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3542 if (npt_enabled) {
3543 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3544 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003545 } else
Avi Kivity23902182010-06-10 17:02:16 +03003546 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003547
3548 /* Guest paging mode is active - reset mmu */
3549 kvm_mmu_reset_context(&svm->vcpu);
3550
Joerg Roedeldefbba52009-08-07 11:49:30 +02003551 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003552 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3553 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3554 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003555
Alexander Graf3d6368e2008-11-25 20:17:07 +01003556 /* In case we don't even reach vcpu_run, the fields are not updated */
3557 svm->vmcb->save.rax = nested_vmcb->save.rax;
3558 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3559 svm->vmcb->save.rip = nested_vmcb->save.rip;
3560 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3561 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3562 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3563
Joerg Roedelf7138532010-03-01 15:34:40 +01003564 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003565 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003566
Joerg Roedelaad42c62009-08-07 11:49:34 +02003567 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003568 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003569 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003570 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3571 svm->nested.intercept = nested_vmcb->control.intercept;
3572
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003573 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003574 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003575 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3576 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3577 else
3578 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3579
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003580 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3581 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003582 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3583 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003584 }
3585
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003586 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003587 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003588
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003589 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3590 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3591
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003592 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003593 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3594 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003595 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3596 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3597
Joerg Roedel7597f122010-02-19 16:23:00 +01003598 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003599
Joerg Roedel20307532010-11-29 17:51:48 +01003600 /* Enter Guest-Mode */
3601 enter_guest_mode(&svm->vcpu);
3602
Joerg Roedel384c6362010-11-30 18:03:56 +01003603 /*
3604 * Merge guest and host intercepts - must be called with vcpu in
3605 * guest-mode to take affect here
3606 */
3607 recalc_intercepts(svm);
3608
Joerg Roedel06fc77722010-02-19 16:23:07 +01003609 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003610
Joerg Roedel2af91942009-08-07 11:49:28 +02003611 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003612
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003613 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003614}
3615
3616static bool nested_svm_vmrun(struct vcpu_svm *svm)
3617{
3618 struct vmcb *nested_vmcb;
3619 struct vmcb *hsave = svm->nested.hsave;
3620 struct vmcb *vmcb = svm->vmcb;
3621 struct page *page;
3622 u64 vmcb_gpa;
3623
3624 vmcb_gpa = svm->vmcb->save.rax;
3625
3626 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3627 if (!nested_vmcb)
3628 return false;
3629
3630 if (!nested_vmcb_checks(nested_vmcb)) {
3631 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3632 nested_vmcb->control.exit_code_hi = 0;
3633 nested_vmcb->control.exit_info_1 = 0;
3634 nested_vmcb->control.exit_info_2 = 0;
3635
3636 nested_svm_unmap(page);
3637
3638 return false;
3639 }
3640
3641 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3642 nested_vmcb->save.rip,
3643 nested_vmcb->control.int_ctl,
3644 nested_vmcb->control.event_inj,
3645 nested_vmcb->control.nested_ctl);
3646
3647 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3648 nested_vmcb->control.intercept_cr >> 16,
3649 nested_vmcb->control.intercept_exceptions,
3650 nested_vmcb->control.intercept);
3651
3652 /* Clear internal status */
3653 kvm_clear_exception_queue(&svm->vcpu);
3654 kvm_clear_interrupt_queue(&svm->vcpu);
3655
3656 /*
3657 * Save the old vmcb, so we don't need to pick what we save, but can
3658 * restore everything when a VMEXIT occurs
3659 */
3660 hsave->save.es = vmcb->save.es;
3661 hsave->save.cs = vmcb->save.cs;
3662 hsave->save.ss = vmcb->save.ss;
3663 hsave->save.ds = vmcb->save.ds;
3664 hsave->save.gdtr = vmcb->save.gdtr;
3665 hsave->save.idtr = vmcb->save.idtr;
3666 hsave->save.efer = svm->vcpu.arch.efer;
3667 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3668 hsave->save.cr4 = svm->vcpu.arch.cr4;
3669 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3670 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3671 hsave->save.rsp = vmcb->save.rsp;
3672 hsave->save.rax = vmcb->save.rax;
3673 if (npt_enabled)
3674 hsave->save.cr3 = vmcb->save.cr3;
3675 else
3676 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3677
3678 copy_vmcb_control_area(hsave, vmcb);
3679
3680 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003681
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003682 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003683}
3684
Joerg Roedel9966bf62009-08-07 11:49:40 +02003685static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003686{
3687 to_vmcb->save.fs = from_vmcb->save.fs;
3688 to_vmcb->save.gs = from_vmcb->save.gs;
3689 to_vmcb->save.tr = from_vmcb->save.tr;
3690 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3691 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3692 to_vmcb->save.star = from_vmcb->save.star;
3693 to_vmcb->save.lstar = from_vmcb->save.lstar;
3694 to_vmcb->save.cstar = from_vmcb->save.cstar;
3695 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3696 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3697 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3698 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003699}
3700
Avi Kivity851ba692009-08-24 11:10:17 +03003701static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003702{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003703 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003704 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003705 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003706
Alexander Graf55426752008-11-25 20:17:06 +01003707 if (nested_svm_check_permissions(svm))
3708 return 1;
3709
Joerg Roedel7597f122010-02-19 16:23:00 +01003710 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003711 if (!nested_vmcb)
3712 return 1;
3713
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003714 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003715 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003716
Joerg Roedel9966bf62009-08-07 11:49:40 +02003717 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003718 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003719
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003720 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003721}
3722
Avi Kivity851ba692009-08-24 11:10:17 +03003723static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003724{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003725 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003726 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003727 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003728
Alexander Graf55426752008-11-25 20:17:06 +01003729 if (nested_svm_check_permissions(svm))
3730 return 1;
3731
Joerg Roedel7597f122010-02-19 16:23:00 +01003732 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003733 if (!nested_vmcb)
3734 return 1;
3735
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003736 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003737 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003738
Joerg Roedel9966bf62009-08-07 11:49:40 +02003739 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003740 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003741
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003742 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003743}
3744
Avi Kivity851ba692009-08-24 11:10:17 +03003745static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003746{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003747 if (nested_svm_check_permissions(svm))
3748 return 1;
3749
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003750 /* Save rip after vmrun instruction */
3751 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003752
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003753 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003754 return 1;
3755
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003756 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003757 goto failed;
3758
3759 return 1;
3760
3761failed:
3762
3763 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3764 svm->vmcb->control.exit_code_hi = 0;
3765 svm->vmcb->control.exit_info_1 = 0;
3766 svm->vmcb->control.exit_info_2 = 0;
3767
3768 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003769
3770 return 1;
3771}
3772
Avi Kivity851ba692009-08-24 11:10:17 +03003773static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003774{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003775 int ret;
3776
Alexander Graf1371d902008-11-25 20:17:04 +01003777 if (nested_svm_check_permissions(svm))
3778 return 1;
3779
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003780 /*
3781 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003782 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003783 */
3784 if (vgif_enabled(svm))
3785 clr_intercept(svm, INTERCEPT_STGI);
3786
Alexander Graf1371d902008-11-25 20:17:04 +01003787 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003788 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003789 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003790
Joerg Roedel2af91942009-08-07 11:49:28 +02003791 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003792
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003793 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003794}
3795
Avi Kivity851ba692009-08-24 11:10:17 +03003796static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003797{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003798 int ret;
3799
Alexander Graf1371d902008-11-25 20:17:04 +01003800 if (nested_svm_check_permissions(svm))
3801 return 1;
3802
3803 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003804 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003805
Joerg Roedel2af91942009-08-07 11:49:28 +02003806 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003807
3808 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003809 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3810 svm_clear_vintr(svm);
3811 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3812 mark_dirty(svm->vmcb, VMCB_INTR);
3813 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003814
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003815 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003816}
3817
Avi Kivity851ba692009-08-24 11:10:17 +03003818static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003819{
3820 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003821
David Kaplan668f1982015-02-20 16:02:10 -06003822 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3823 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003824
Alexander Grafff092382009-06-15 15:21:24 +02003825 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003826 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003827
3828 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003829 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003830}
3831
Joerg Roedel532a46b2009-10-09 16:08:32 +02003832static int skinit_interception(struct vcpu_svm *svm)
3833{
David Kaplan668f1982015-02-20 16:02:10 -06003834 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003835
3836 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3837 return 1;
3838}
3839
David Kaplandab429a2015-03-02 13:43:37 -06003840static int wbinvd_interception(struct vcpu_svm *svm)
3841{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003842 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003843}
3844
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003845static int xsetbv_interception(struct vcpu_svm *svm)
3846{
3847 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3848 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3849
3850 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3851 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003852 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003853 }
3854
3855 return 1;
3856}
3857
Avi Kivity851ba692009-08-24 11:10:17 +03003858static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003859{
Izik Eidus37817f22008-03-24 23:14:53 +02003860 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003861 int reason;
3862 int int_type = svm->vmcb->control.exit_int_info &
3863 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003864 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003865 uint32_t type =
3866 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3867 uint32_t idt_v =
3868 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003869 bool has_error_code = false;
3870 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003871
3872 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003873
Izik Eidus37817f22008-03-24 23:14:53 +02003874 if (svm->vmcb->control.exit_info_2 &
3875 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003876 reason = TASK_SWITCH_IRET;
3877 else if (svm->vmcb->control.exit_info_2 &
3878 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3879 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003880 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003881 reason = TASK_SWITCH_GATE;
3882 else
3883 reason = TASK_SWITCH_CALL;
3884
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003885 if (reason == TASK_SWITCH_GATE) {
3886 switch (type) {
3887 case SVM_EXITINTINFO_TYPE_NMI:
3888 svm->vcpu.arch.nmi_injected = false;
3889 break;
3890 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003891 if (svm->vmcb->control.exit_info_2 &
3892 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3893 has_error_code = true;
3894 error_code =
3895 (u32)svm->vmcb->control.exit_info_2;
3896 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003897 kvm_clear_exception_queue(&svm->vcpu);
3898 break;
3899 case SVM_EXITINTINFO_TYPE_INTR:
3900 kvm_clear_interrupt_queue(&svm->vcpu);
3901 break;
3902 default:
3903 break;
3904 }
3905 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003906
Gleb Natapov8317c292009-04-12 13:37:02 +03003907 if (reason != TASK_SWITCH_GATE ||
3908 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3909 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003910 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3911 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003912
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003913 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3914 int_vec = -1;
3915
3916 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003917 has_error_code, error_code) == EMULATE_FAIL) {
3918 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3919 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3920 svm->vcpu.run->internal.ndata = 0;
3921 return 0;
3922 }
3923 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924}
3925
Avi Kivity851ba692009-08-24 11:10:17 +03003926static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003927{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003928 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003929 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003930}
3931
Avi Kivity851ba692009-08-24 11:10:17 +03003932static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003933{
3934 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003935 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003936 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003937 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003938 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003939 return 1;
3940}
3941
Avi Kivity851ba692009-08-24 11:10:17 +03003942static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003943{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003944 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003945 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003946
3947 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003948 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003949}
3950
Avi Kivity851ba692009-08-24 11:10:17 +03003951static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003952{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003953 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003954}
3955
Brijesh Singh7607b712018-02-19 10:14:44 -06003956static int rsm_interception(struct vcpu_svm *svm)
3957{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003958 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3959 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003960}
3961
Avi Kivity332b56e2011-11-10 14:57:24 +02003962static int rdpmc_interception(struct vcpu_svm *svm)
3963{
3964 int err;
3965
3966 if (!static_cpu_has(X86_FEATURE_NRIPS))
3967 return emulate_on_interception(svm);
3968
3969 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003970 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003971}
3972
Xiubo Li52eb5a62015-03-13 17:39:45 +08003973static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3974 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003975{
3976 unsigned long cr0 = svm->vcpu.arch.cr0;
3977 bool ret = false;
3978 u64 intercept;
3979
3980 intercept = svm->nested.intercept;
3981
3982 if (!is_guest_mode(&svm->vcpu) ||
3983 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3984 return false;
3985
3986 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3987 val &= ~SVM_CR0_SELECTIVE_MASK;
3988
3989 if (cr0 ^ val) {
3990 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3991 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3992 }
3993
3994 return ret;
3995}
3996
Andre Przywara7ff76d52010-12-21 11:12:04 +01003997#define CR_VALID (1ULL << 63)
3998
3999static int cr_interception(struct vcpu_svm *svm)
4000{
4001 int reg, cr;
4002 unsigned long val;
4003 int err;
4004
4005 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
4006 return emulate_on_interception(svm);
4007
4008 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
4009 return emulate_on_interception(svm);
4010
4011 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06004012 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
4013 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
4014 else
4015 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01004016
4017 err = 0;
4018 if (cr >= 16) { /* mov to cr */
4019 cr -= 16;
4020 val = kvm_register_read(&svm->vcpu, reg);
4021 switch (cr) {
4022 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02004023 if (!check_selective_cr0_intercepted(svm, val))
4024 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02004025 else
4026 return 1;
4027
Andre Przywara7ff76d52010-12-21 11:12:04 +01004028 break;
4029 case 3:
4030 err = kvm_set_cr3(&svm->vcpu, val);
4031 break;
4032 case 4:
4033 err = kvm_set_cr4(&svm->vcpu, val);
4034 break;
4035 case 8:
4036 err = kvm_set_cr8(&svm->vcpu, val);
4037 break;
4038 default:
4039 WARN(1, "unhandled write to CR%d", cr);
4040 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4041 return 1;
4042 }
4043 } else { /* mov from cr */
4044 switch (cr) {
4045 case 0:
4046 val = kvm_read_cr0(&svm->vcpu);
4047 break;
4048 case 2:
4049 val = svm->vcpu.arch.cr2;
4050 break;
4051 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004052 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004053 break;
4054 case 4:
4055 val = kvm_read_cr4(&svm->vcpu);
4056 break;
4057 case 8:
4058 val = kvm_get_cr8(&svm->vcpu);
4059 break;
4060 default:
4061 WARN(1, "unhandled read from CR%d", cr);
4062 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4063 return 1;
4064 }
4065 kvm_register_write(&svm->vcpu, reg, val);
4066 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004067 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004068}
4069
Andre Przywaracae37972010-12-21 11:12:05 +01004070static int dr_interception(struct vcpu_svm *svm)
4071{
4072 int reg, dr;
4073 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004074
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004075 if (svm->vcpu.guest_debug == 0) {
4076 /*
4077 * No more DR vmexits; force a reload of the debug registers
4078 * and reenter on this instruction. The next vmexit will
4079 * retrieve the full state of the debug registers.
4080 */
4081 clr_dr_intercepts(svm);
4082 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4083 return 1;
4084 }
4085
Andre Przywaracae37972010-12-21 11:12:05 +01004086 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4087 return emulate_on_interception(svm);
4088
4089 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4090 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4091
4092 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004093 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4094 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004095 val = kvm_register_read(&svm->vcpu, reg);
4096 kvm_set_dr(&svm->vcpu, dr - 16, val);
4097 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004098 if (!kvm_require_dr(&svm->vcpu, dr))
4099 return 1;
4100 kvm_get_dr(&svm->vcpu, dr, &val);
4101 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004102 }
4103
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004104 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004105}
4106
Avi Kivity851ba692009-08-24 11:10:17 +03004107static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004108{
Avi Kivity851ba692009-08-24 11:10:17 +03004109 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004110 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004111
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004112 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4113 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004114 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004115 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004116 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004117 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004118 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004119 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4120 return 0;
4121}
4122
Tom Lendacky801e4592018-02-21 13:39:51 -06004123static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4124{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004125 msr->data = 0;
4126
4127 switch (msr->index) {
4128 case MSR_F10H_DECFG:
4129 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4130 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4131 break;
4132 default:
4133 return 1;
4134 }
4135
4136 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004137}
4138
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004139static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004140{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004141 struct vcpu_svm *svm = to_svm(vcpu);
4142
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004143 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004144 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004145 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004146 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004147#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004148 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004149 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004150 break;
4151 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004152 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004153 break;
4154 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004155 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004156 break;
4157 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004158 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004159 break;
4160#endif
4161 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004162 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004163 break;
4164 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004165 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004166 break;
4167 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004168 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004169 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004170 case MSR_TSC_AUX:
4171 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4172 return 1;
4173 msr_info->data = svm->tsc_aux;
4174 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004175 /*
4176 * Nobody will change the following 5 values in the VMCB so we can
4177 * safely return them on rdmsr. They will always be 0 until LBRV is
4178 * implemented.
4179 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004180 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004181 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004182 break;
4183 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004184 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004185 break;
4186 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004187 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004188 break;
4189 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004190 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004191 break;
4192 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004193 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004194 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004195 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004196 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004197 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004198 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004199 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004200 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004201 case MSR_IA32_SPEC_CTRL:
4202 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004203 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4204 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004205 return 1;
4206
4207 msr_info->data = svm->spec_ctrl;
4208 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004209 case MSR_AMD64_VIRT_SPEC_CTRL:
4210 if (!msr_info->host_initiated &&
4211 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4212 return 1;
4213
4214 msr_info->data = svm->virt_spec_ctrl;
4215 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004216 case MSR_F15H_IC_CFG: {
4217
4218 int family, model;
4219
4220 family = guest_cpuid_family(vcpu);
4221 model = guest_cpuid_model(vcpu);
4222
4223 if (family < 0 || model < 0)
4224 return kvm_get_msr_common(vcpu, msr_info);
4225
4226 msr_info->data = 0;
4227
4228 if (family == 0x15 &&
4229 (model >= 0x2 && model < 0x20))
4230 msr_info->data = 0x1E;
4231 }
4232 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004233 case MSR_F10H_DECFG:
4234 msr_info->data = svm->msr_decfg;
4235 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004236 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004237 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004238 }
4239 return 0;
4240}
4241
Avi Kivity851ba692009-08-24 11:10:17 +03004242static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004243{
David Kaplan668f1982015-02-20 16:02:10 -06004244 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004245 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004246
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004247 msr_info.index = ecx;
4248 msr_info.host_initiated = false;
4249 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004250 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004251 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004252 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004253 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004254 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004255
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004256 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4257 msr_info.data & 0xffffffff);
4258 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4259 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004260 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004261 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004263}
4264
Joerg Roedel4a810182010-02-24 18:59:15 +01004265static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4266{
4267 struct vcpu_svm *svm = to_svm(vcpu);
4268 int svm_dis, chg_mask;
4269
4270 if (data & ~SVM_VM_CR_VALID_MASK)
4271 return 1;
4272
4273 chg_mask = SVM_VM_CR_VALID_MASK;
4274
4275 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4276 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4277
4278 svm->nested.vm_cr_msr &= ~chg_mask;
4279 svm->nested.vm_cr_msr |= (data & chg_mask);
4280
4281 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4282
4283 /* check for svm_disable while efer.svme is set */
4284 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4285 return 1;
4286
4287 return 0;
4288}
4289
Will Auld8fe8ab42012-11-29 12:42:12 -08004290static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004292 struct vcpu_svm *svm = to_svm(vcpu);
4293
Will Auld8fe8ab42012-11-29 12:42:12 -08004294 u32 ecx = msr->index;
4295 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004297 case MSR_IA32_CR_PAT:
4298 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4299 return 1;
4300 vcpu->arch.pat = data;
4301 svm->vmcb->save.g_pat = data;
4302 mark_dirty(svm->vmcb, VMCB_NPT);
4303 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004304 case MSR_IA32_SPEC_CTRL:
4305 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004306 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4307 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004308 return 1;
4309
4310 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004311 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004312 return 1;
4313
4314 svm->spec_ctrl = data;
4315
4316 if (!data)
4317 break;
4318
4319 /*
4320 * For non-nested:
4321 * When it's written (to non-zero) for the first time, pass
4322 * it through.
4323 *
4324 * For nested:
4325 * The handling of the MSR bitmap for L2 guests is done in
4326 * nested_svm_vmrun_msrpm.
4327 * We update the L1 MSR bit as well since it will end up
4328 * touching the MSR anyway now.
4329 */
4330 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4331 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004332 case MSR_IA32_PRED_CMD:
4333 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004334 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004335 return 1;
4336
4337 if (data & ~PRED_CMD_IBPB)
4338 return 1;
4339
4340 if (!data)
4341 break;
4342
4343 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4344 if (is_guest_mode(vcpu))
4345 break;
4346 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4347 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004348 case MSR_AMD64_VIRT_SPEC_CTRL:
4349 if (!msr->host_initiated &&
4350 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4351 return 1;
4352
4353 if (data & ~SPEC_CTRL_SSBD)
4354 return 1;
4355
4356 svm->virt_spec_ctrl = data;
4357 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004358 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004359 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004360 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004361#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004362 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004363 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364 break;
4365 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004366 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 break;
4368 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004369 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370 break;
4371 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004372 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004373 break;
4374#endif
4375 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004376 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004377 break;
4378 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004379 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004380 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004381 break;
4382 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004383 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004384 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004385 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004386 case MSR_TSC_AUX:
4387 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4388 return 1;
4389
4390 /*
4391 * This is rare, so we update the MSR here instead of using
4392 * direct_access_msrs. Doing that would require a rdmsr in
4393 * svm_vcpu_put.
4394 */
4395 svm->tsc_aux = data;
4396 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4397 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004398 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004399 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004400 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4401 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004402 break;
4403 }
4404 if (data & DEBUGCTL_RESERVED_BITS)
4405 return 1;
4406
4407 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004408 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004409 if (data & (1ULL<<0))
4410 svm_enable_lbrv(svm);
4411 else
4412 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004413 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004414 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004415 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004416 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004417 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004418 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004419 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004420 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004421 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004422 case MSR_F10H_DECFG: {
4423 struct kvm_msr_entry msr_entry;
4424
4425 msr_entry.index = msr->index;
4426 if (svm_get_msr_feature(&msr_entry))
4427 return 1;
4428
4429 /* Check the supported bits */
4430 if (data & ~msr_entry.data)
4431 return 1;
4432
4433 /* Don't allow the guest to change a bit, #GP */
4434 if (!msr->host_initiated && (data ^ msr_entry.data))
4435 return 1;
4436
4437 svm->msr_decfg = data;
4438 break;
4439 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004440 case MSR_IA32_APICBASE:
4441 if (kvm_vcpu_apicv_active(vcpu))
4442 avic_update_vapic_bar(to_svm(vcpu), data);
4443 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004444 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004445 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004446 }
4447 return 0;
4448}
4449
Avi Kivity851ba692009-08-24 11:10:17 +03004450static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451{
Will Auld8fe8ab42012-11-29 12:42:12 -08004452 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004453 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4454 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004455
Will Auld8fe8ab42012-11-29 12:42:12 -08004456 msr.data = data;
4457 msr.index = ecx;
4458 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004459
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004460 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004461 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004462 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004463 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004464 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004465 } else {
4466 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004467 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004468 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004469}
4470
Avi Kivity851ba692009-08-24 11:10:17 +03004471static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004472{
Rusty Russelle756fc62007-07-30 20:07:08 +10004473 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004474 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004475 else
Avi Kivity851ba692009-08-24 11:10:17 +03004476 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004477}
4478
Avi Kivity851ba692009-08-24 11:10:17 +03004479static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004480{
Avi Kivity3842d132010-07-27 12:30:24 +03004481 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004482 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004483 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004484 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004485 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004486 return 1;
4487}
4488
Mark Langsdorf565d0992009-10-06 14:25:02 -05004489static int pause_interception(struct vcpu_svm *svm)
4490{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004491 struct kvm_vcpu *vcpu = &svm->vcpu;
4492 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4493
Babu Moger8566ac82018-03-16 16:37:26 -04004494 if (pause_filter_thresh)
4495 grow_ple_window(vcpu);
4496
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004497 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004498 return 1;
4499}
4500
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004501static int nop_interception(struct vcpu_svm *svm)
4502{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004503 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004504}
4505
4506static int monitor_interception(struct vcpu_svm *svm)
4507{
4508 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4509 return nop_interception(svm);
4510}
4511
4512static int mwait_interception(struct vcpu_svm *svm)
4513{
4514 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4515 return nop_interception(svm);
4516}
4517
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004518enum avic_ipi_failure_cause {
4519 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4520 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4521 AVIC_IPI_FAILURE_INVALID_TARGET,
4522 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4523};
4524
4525static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4526{
4527 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4528 u32 icrl = svm->vmcb->control.exit_info_1;
4529 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004530 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004531 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4532
4533 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4534
4535 switch (id) {
4536 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4537 /*
4538 * AVIC hardware handles the generation of
4539 * IPIs when the specified Message Type is Fixed
4540 * (also known as fixed delivery mode) and
4541 * the Trigger Mode is edge-triggered. The hardware
4542 * also supports self and broadcast delivery modes
4543 * specified via the Destination Shorthand(DSH)
4544 * field of the ICRL. Logical and physical APIC ID
4545 * formats are supported. All other IPI types cause
4546 * a #VMEXIT, which needs to emulated.
4547 */
4548 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4549 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4550 break;
4551 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suthikulpanit, Suravee3e1b3e42019-03-20 08:12:28 +00004552 int i;
4553 struct kvm_vcpu *vcpu;
4554 struct kvm *kvm = svm->vcpu.kvm;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004555 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4556
4557 /*
Suthikulpanit, Suravee3e1b3e42019-03-20 08:12:28 +00004558 * At this point, we expect that the AVIC HW has already
4559 * set the appropriate IRR bits on the valid target
4560 * vcpus. So, we just need to kick the appropriate vcpu.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004561 */
Suthikulpanit, Suravee3e1b3e42019-03-20 08:12:28 +00004562 kvm_for_each_vcpu(i, vcpu, kvm) {
4563 bool m = kvm_apic_match_dest(vcpu, apic,
4564 icrl & KVM_APIC_SHORT_MASK,
4565 GET_APIC_DEST_FIELD(icrh),
4566 icrl & KVM_APIC_DEST_MASK);
4567
4568 if (m && !avic_vcpu_is_running(vcpu))
4569 kvm_vcpu_wake_up(vcpu);
4570 }
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004571 break;
4572 }
4573 case AVIC_IPI_FAILURE_INVALID_TARGET:
4574 break;
4575 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4576 WARN_ONCE(1, "Invalid backing page\n");
4577 break;
4578 default:
4579 pr_err("Unknown IPI interception\n");
4580 }
4581
4582 return 1;
4583}
4584
4585static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4586{
Sean Christopherson81811c12018-03-20 12:17:21 -07004587 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004588 int index;
4589 u32 *logical_apic_id_table;
4590 int dlid = GET_APIC_LOGICAL_ID(ldr);
4591
4592 if (!dlid)
4593 return NULL;
4594
4595 if (flat) { /* flat */
4596 index = ffs(dlid) - 1;
4597 if (index > 7)
4598 return NULL;
4599 } else { /* cluster */
4600 int cluster = (dlid & 0xf0) >> 4;
4601 int apic = ffs(dlid & 0x0f) - 1;
4602
4603 if ((apic < 0) || (apic > 7) ||
4604 (cluster >= 0xf))
4605 return NULL;
4606 index = (cluster << 2) + apic;
4607 }
4608
Sean Christopherson81811c12018-03-20 12:17:21 -07004609 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004610
4611 return &logical_apic_id_table[index];
4612}
4613
4614static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4615 bool valid)
4616{
4617 bool flat;
4618 u32 *entry, new_entry;
4619
4620 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4621 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4622 if (!entry)
4623 return -EINVAL;
4624
4625 new_entry = READ_ONCE(*entry);
4626 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4627 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4628 if (valid)
4629 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4630 else
4631 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4632 WRITE_ONCE(*entry, new_entry);
4633
4634 return 0;
4635}
4636
4637static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4638{
4639 int ret;
4640 struct vcpu_svm *svm = to_svm(vcpu);
4641 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4642
4643 if (!ldr)
4644 return 1;
4645
4646 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4647 if (ret && svm->ldr_reg) {
4648 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4649 svm->ldr_reg = 0;
4650 } else {
4651 svm->ldr_reg = ldr;
4652 }
4653 return ret;
4654}
4655
4656static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4657{
4658 u64 *old, *new;
4659 struct vcpu_svm *svm = to_svm(vcpu);
4660 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4661 u32 id = (apic_id_reg >> 24) & 0xff;
4662
4663 if (vcpu->vcpu_id == id)
4664 return 0;
4665
4666 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4667 new = avic_get_physical_id_entry(vcpu, id);
4668 if (!new || !old)
4669 return 1;
4670
4671 /* We need to move physical_id_entry to new offset */
4672 *new = *old;
4673 *old = 0ULL;
4674 to_svm(vcpu)->avic_physical_id_cache = new;
4675
4676 /*
4677 * Also update the guest physical APIC ID in the logical
4678 * APIC ID table entry if already setup the LDR.
4679 */
4680 if (svm->ldr_reg)
4681 avic_handle_ldr_update(vcpu);
4682
4683 return 0;
4684}
4685
4686static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4687{
4688 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004689 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004690 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4691 u32 mod = (dfr >> 28) & 0xf;
4692
4693 /*
4694 * We assume that all local APICs are using the same type.
4695 * If this changes, we need to flush the AVIC logical
4696 * APID id table.
4697 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004698 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004699 return 0;
4700
Sean Christopherson81811c12018-03-20 12:17:21 -07004701 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4702 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004703
4704 if (svm->ldr_reg)
4705 avic_handle_ldr_update(vcpu);
4706 return 0;
4707}
4708
4709static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4710{
4711 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4712 u32 offset = svm->vmcb->control.exit_info_1 &
4713 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4714
4715 switch (offset) {
4716 case APIC_ID:
4717 if (avic_handle_apic_id_update(&svm->vcpu))
4718 return 0;
4719 break;
4720 case APIC_LDR:
4721 if (avic_handle_ldr_update(&svm->vcpu))
4722 return 0;
4723 break;
4724 case APIC_DFR:
4725 avic_handle_dfr_update(&svm->vcpu);
4726 break;
4727 default:
4728 break;
4729 }
4730
4731 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4732
4733 return 1;
4734}
4735
4736static bool is_avic_unaccelerated_access_trap(u32 offset)
4737{
4738 bool ret = false;
4739
4740 switch (offset) {
4741 case APIC_ID:
4742 case APIC_EOI:
4743 case APIC_RRR:
4744 case APIC_LDR:
4745 case APIC_DFR:
4746 case APIC_SPIV:
4747 case APIC_ESR:
4748 case APIC_ICR:
4749 case APIC_LVTT:
4750 case APIC_LVTTHMR:
4751 case APIC_LVTPC:
4752 case APIC_LVT0:
4753 case APIC_LVT1:
4754 case APIC_LVTERR:
4755 case APIC_TMICT:
4756 case APIC_TDCR:
4757 ret = true;
4758 break;
4759 default:
4760 break;
4761 }
4762 return ret;
4763}
4764
4765static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4766{
4767 int ret = 0;
4768 u32 offset = svm->vmcb->control.exit_info_1 &
4769 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4770 u32 vector = svm->vmcb->control.exit_info_2 &
4771 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4772 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4773 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4774 bool trap = is_avic_unaccelerated_access_trap(offset);
4775
4776 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4777 trap, write, vector);
4778 if (trap) {
4779 /* Handling Trap */
4780 WARN_ONCE(!write, "svm: Handling trap read.\n");
4781 ret = avic_unaccel_trap_write(svm);
4782 } else {
4783 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004784 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004785 }
4786
4787 return ret;
4788}
4789
Mathias Krause09941fb2012-08-30 01:30:20 +02004790static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004791 [SVM_EXIT_READ_CR0] = cr_interception,
4792 [SVM_EXIT_READ_CR3] = cr_interception,
4793 [SVM_EXIT_READ_CR4] = cr_interception,
4794 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004795 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004796 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004797 [SVM_EXIT_WRITE_CR3] = cr_interception,
4798 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004799 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004800 [SVM_EXIT_READ_DR0] = dr_interception,
4801 [SVM_EXIT_READ_DR1] = dr_interception,
4802 [SVM_EXIT_READ_DR2] = dr_interception,
4803 [SVM_EXIT_READ_DR3] = dr_interception,
4804 [SVM_EXIT_READ_DR4] = dr_interception,
4805 [SVM_EXIT_READ_DR5] = dr_interception,
4806 [SVM_EXIT_READ_DR6] = dr_interception,
4807 [SVM_EXIT_READ_DR7] = dr_interception,
4808 [SVM_EXIT_WRITE_DR0] = dr_interception,
4809 [SVM_EXIT_WRITE_DR1] = dr_interception,
4810 [SVM_EXIT_WRITE_DR2] = dr_interception,
4811 [SVM_EXIT_WRITE_DR3] = dr_interception,
4812 [SVM_EXIT_WRITE_DR4] = dr_interception,
4813 [SVM_EXIT_WRITE_DR5] = dr_interception,
4814 [SVM_EXIT_WRITE_DR6] = dr_interception,
4815 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004816 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4817 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004818 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004819 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004820 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004821 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004822 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004823 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004824 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825 [SVM_EXIT_SMI] = nop_on_interception,
4826 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004827 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004828 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004830 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004831 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004832 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004833 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004834 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004835 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004836 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004837 [SVM_EXIT_MSR] = msr_interception,
4838 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004839 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004840 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004841 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004842 [SVM_EXIT_VMLOAD] = vmload_interception,
4843 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004844 [SVM_EXIT_STGI] = stgi_interception,
4845 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004846 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004847 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004848 [SVM_EXIT_MONITOR] = monitor_interception,
4849 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004850 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004851 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004852 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004853 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4854 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004855};
4856
Joe Perchesae8cc052011-04-24 22:00:50 -07004857static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004858{
4859 struct vcpu_svm *svm = to_svm(vcpu);
4860 struct vmcb_control_area *control = &svm->vmcb->control;
4861 struct vmcb_save_area *save = &svm->vmcb->save;
4862
4863 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004864 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4865 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4866 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4867 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4868 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4869 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4870 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004871 pr_err("%-20s%d\n", "pause filter threshold:",
4872 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004873 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4874 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4875 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4876 pr_err("%-20s%d\n", "asid:", control->asid);
4877 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4878 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4879 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4880 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4881 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4882 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4883 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4884 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4885 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4886 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4887 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004888 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004889 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4890 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004891 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004892 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004893 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4894 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4895 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004896 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004897 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4898 "es:",
4899 save->es.selector, save->es.attrib,
4900 save->es.limit, save->es.base);
4901 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4902 "cs:",
4903 save->cs.selector, save->cs.attrib,
4904 save->cs.limit, save->cs.base);
4905 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4906 "ss:",
4907 save->ss.selector, save->ss.attrib,
4908 save->ss.limit, save->ss.base);
4909 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4910 "ds:",
4911 save->ds.selector, save->ds.attrib,
4912 save->ds.limit, save->ds.base);
4913 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4914 "fs:",
4915 save->fs.selector, save->fs.attrib,
4916 save->fs.limit, save->fs.base);
4917 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4918 "gs:",
4919 save->gs.selector, save->gs.attrib,
4920 save->gs.limit, save->gs.base);
4921 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4922 "gdtr:",
4923 save->gdtr.selector, save->gdtr.attrib,
4924 save->gdtr.limit, save->gdtr.base);
4925 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4926 "ldtr:",
4927 save->ldtr.selector, save->ldtr.attrib,
4928 save->ldtr.limit, save->ldtr.base);
4929 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4930 "idtr:",
4931 save->idtr.selector, save->idtr.attrib,
4932 save->idtr.limit, save->idtr.base);
4933 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4934 "tr:",
4935 save->tr.selector, save->tr.attrib,
4936 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004937 pr_err("cpl: %d efer: %016llx\n",
4938 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004939 pr_err("%-15s %016llx %-13s %016llx\n",
4940 "cr0:", save->cr0, "cr2:", save->cr2);
4941 pr_err("%-15s %016llx %-13s %016llx\n",
4942 "cr3:", save->cr3, "cr4:", save->cr4);
4943 pr_err("%-15s %016llx %-13s %016llx\n",
4944 "dr6:", save->dr6, "dr7:", save->dr7);
4945 pr_err("%-15s %016llx %-13s %016llx\n",
4946 "rip:", save->rip, "rflags:", save->rflags);
4947 pr_err("%-15s %016llx %-13s %016llx\n",
4948 "rsp:", save->rsp, "rax:", save->rax);
4949 pr_err("%-15s %016llx %-13s %016llx\n",
4950 "star:", save->star, "lstar:", save->lstar);
4951 pr_err("%-15s %016llx %-13s %016llx\n",
4952 "cstar:", save->cstar, "sfmask:", save->sfmask);
4953 pr_err("%-15s %016llx %-13s %016llx\n",
4954 "kernel_gs_base:", save->kernel_gs_base,
4955 "sysenter_cs:", save->sysenter_cs);
4956 pr_err("%-15s %016llx %-13s %016llx\n",
4957 "sysenter_esp:", save->sysenter_esp,
4958 "sysenter_eip:", save->sysenter_eip);
4959 pr_err("%-15s %016llx %-13s %016llx\n",
4960 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4961 pr_err("%-15s %016llx %-13s %016llx\n",
4962 "br_from:", save->br_from, "br_to:", save->br_to);
4963 pr_err("%-15s %016llx %-13s %016llx\n",
4964 "excp_from:", save->last_excp_from,
4965 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004966}
4967
Avi Kivity586f9602010-11-18 13:09:54 +02004968static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4969{
4970 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4971
4972 *info1 = control->exit_info_1;
4973 *info2 = control->exit_info_2;
4974}
4975
Avi Kivity851ba692009-08-24 11:10:17 +03004976static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004977{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004978 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004979 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004980 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004981
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004982 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4983
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004984 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004985 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4986 if (npt_enabled)
4987 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004988
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004989 if (unlikely(svm->nested.exit_required)) {
4990 nested_svm_vmexit(svm);
4991 svm->nested.exit_required = false;
4992
4993 return 1;
4994 }
4995
Joerg Roedel20307532010-11-29 17:51:48 +01004996 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004997 int vmexit;
4998
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004999 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
5000 svm->vmcb->control.exit_info_1,
5001 svm->vmcb->control.exit_info_2,
5002 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01005003 svm->vmcb->control.exit_int_info_err,
5004 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02005005
Joerg Roedel410e4d52009-08-07 11:49:44 +02005006 vmexit = nested_svm_exit_special(svm);
5007
5008 if (vmexit == NESTED_EXIT_CONTINUE)
5009 vmexit = nested_svm_exit_handled(svm);
5010
5011 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01005012 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01005013 }
5014
Joerg Roedela5c38322009-08-07 11:49:32 +02005015 svm_complete_interrupts(svm);
5016
Avi Kivity04d2cc72007-09-10 18:10:54 +03005017 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
5018 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5019 kvm_run->fail_entry.hardware_entry_failure_reason
5020 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02005021 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
5022 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005023 return 0;
5024 }
5025
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005026 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01005027 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02005028 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
5029 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02005030 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005031 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08005032 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005033 exit_code);
5034
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02005035 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08005036 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04005037 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005038 kvm_queue_exception(vcpu, UD_VECTOR);
5039 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005040 }
5041
Avi Kivity851ba692009-08-24 11:10:17 +03005042 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005043}
5044
5045static void reload_tss(struct kvm_vcpu *vcpu)
5046{
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);
5050 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051 load_TR_desc();
5052}
5053
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005054static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5055{
5056 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5057 int asid = sev_get_asid(svm->vcpu.kvm);
5058
5059 /* Assign the asid allocated with this SEV guest */
5060 svm->vmcb->control.asid = asid;
5061
5062 /*
5063 * Flush guest TLB:
5064 *
5065 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5066 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5067 */
5068 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5069 svm->last_cpu == cpu)
5070 return;
5071
5072 svm->last_cpu = cpu;
5073 sd->sev_vmcbs[asid] = svm->vmcb;
5074 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5075 mark_dirty(svm->vmcb, VMCB_ASID);
5076}
5077
Rusty Russelle756fc62007-07-30 20:07:08 +10005078static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005079{
5080 int cpu = raw_smp_processor_id();
5081
Tejun Heo0fe1e002009-10-29 22:34:14 +09005082 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005083
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005084 if (sev_guest(svm->vcpu.kvm))
5085 return pre_sev_run(svm, cpu);
5086
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005087 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005088 if (svm->asid_generation != sd->asid_generation)
5089 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005090}
5091
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005092static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5093{
5094 struct vcpu_svm *svm = to_svm(vcpu);
5095
5096 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5097 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005098 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005099 ++vcpu->stat.nmi_injections;
5100}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005101
Eddie Dong85f455f2007-07-06 12:20:49 +03005102static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005103{
5104 struct vmcb_control_area *control;
5105
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005106 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005107 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005108 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005109 control->int_ctl &= ~V_INTR_PRIO_MASK;
5110 control->int_ctl |= V_IRQ_MASK |
5111 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005112 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005113}
5114
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005115static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005116{
5117 struct vcpu_svm *svm = to_svm(vcpu);
5118
Joerg Roedel2af91942009-08-07 11:49:28 +02005119 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005120
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005121 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5122 ++vcpu->stat.irq_injections;
5123
Alexander Graf219b65d2009-06-15 15:21:25 +02005124 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5125 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005126}
5127
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005128static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5129{
5130 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5131}
5132
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005133static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5134{
5135 struct vcpu_svm *svm = to_svm(vcpu);
5136
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005137 if (svm_nested_virtualize_tpr(vcpu) ||
5138 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005139 return;
5140
Radim Krčmář596f3142014-03-11 19:11:18 +01005141 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5142
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005143 if (irr == -1)
5144 return;
5145
5146 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005147 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005148}
5149
Jim Mattson8d860bb2018-05-09 16:56:05 -04005150static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005151{
5152 return;
5153}
5154
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005155static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005156{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005157 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005158}
5159
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005160static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5161{
5162}
5163
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005164static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005165{
5166}
5167
5168/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005169static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5170{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005171 struct vcpu_svm *svm = to_svm(vcpu);
5172 struct vmcb *vmcb = svm->vmcb;
5173
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005174 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005175 return;
5176
5177 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5178 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005179}
5180
Andrey Smetanin63086302015-11-10 15:36:32 +03005181static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005182{
5183 return;
5184}
5185
Vitaly Kuznetsov267eec22020-02-20 18:22:05 +01005186static int svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005187{
Vitaly Kuznetsov267eec22020-02-20 18:22:05 +01005188 if (!vcpu->arch.apicv_active)
5189 return -1;
5190
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005191 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5192 smp_mb__after_atomic();
5193
5194 if (avic_vcpu_is_running(vcpu))
5195 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005196 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005197 else
5198 kvm_vcpu_wake_up(vcpu);
Vitaly Kuznetsov267eec22020-02-20 18:22:05 +01005199
5200 return 0;
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005201}
5202
Wanpeng Li2bc73d92019-08-05 10:03:19 +08005203static bool svm_dy_apicv_has_pending_interrupt(struct kvm_vcpu *vcpu)
5204{
5205 return false;
5206}
5207
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005208static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5209{
5210 unsigned long flags;
5211 struct amd_svm_iommu_ir *cur;
5212
5213 spin_lock_irqsave(&svm->ir_list_lock, flags);
5214 list_for_each_entry(cur, &svm->ir_list, node) {
5215 if (cur->data != pi->ir_data)
5216 continue;
5217 list_del(&cur->node);
5218 kfree(cur);
5219 break;
5220 }
5221 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5222}
5223
5224static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5225{
5226 int ret = 0;
5227 unsigned long flags;
5228 struct amd_svm_iommu_ir *ir;
5229
5230 /**
5231 * In some cases, the existing irte is updaed and re-set,
5232 * so we need to check here if it's already been * added
5233 * to the ir_list.
5234 */
5235 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5236 struct kvm *kvm = svm->vcpu.kvm;
5237 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5238 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5239 struct vcpu_svm *prev_svm;
5240
5241 if (!prev_vcpu) {
5242 ret = -EINVAL;
5243 goto out;
5244 }
5245
5246 prev_svm = to_svm(prev_vcpu);
5247 svm_ir_list_del(prev_svm, pi);
5248 }
5249
5250 /**
5251 * Allocating new amd_iommu_pi_data, which will get
5252 * add to the per-vcpu ir_list.
5253 */
5254 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5255 if (!ir) {
5256 ret = -ENOMEM;
5257 goto out;
5258 }
5259 ir->data = pi->ir_data;
5260
5261 spin_lock_irqsave(&svm->ir_list_lock, flags);
5262 list_add(&ir->node, &svm->ir_list);
5263 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5264out:
5265 return ret;
5266}
5267
5268/**
5269 * Note:
5270 * The HW cannot support posting multicast/broadcast
5271 * interrupts to a vCPU. So, we still use legacy interrupt
5272 * remapping for these kind of interrupts.
5273 *
5274 * For lowest-priority interrupts, we only support
5275 * those with single CPU as the destination, e.g. user
5276 * configures the interrupts via /proc/irq or uses
5277 * irqbalance to make the interrupts single-CPU.
5278 */
5279static int
5280get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5281 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5282{
5283 struct kvm_lapic_irq irq;
5284 struct kvm_vcpu *vcpu = NULL;
5285
5286 kvm_set_msi_irq(kvm, e, &irq);
5287
5288 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5289 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5290 __func__, irq.vector);
5291 return -1;
5292 }
5293
5294 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5295 irq.vector);
5296 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005297 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005298 vcpu_info->vector = irq.vector;
5299
5300 return 0;
5301}
5302
5303/*
5304 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5305 *
5306 * @kvm: kvm
5307 * @host_irq: host irq of the interrupt
5308 * @guest_irq: gsi of the interrupt
5309 * @set: set or unset PI
5310 * returns 0 on success, < 0 on failure
5311 */
5312static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5313 uint32_t guest_irq, bool set)
5314{
5315 struct kvm_kernel_irq_routing_entry *e;
5316 struct kvm_irq_routing_table *irq_rt;
5317 int idx, ret = -EINVAL;
5318
5319 if (!kvm_arch_has_assigned_device(kvm) ||
5320 !irq_remapping_cap(IRQ_POSTING_CAP))
5321 return 0;
5322
5323 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5324 __func__, host_irq, guest_irq, set);
5325
5326 idx = srcu_read_lock(&kvm->irq_srcu);
5327 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5328 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5329
5330 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5331 struct vcpu_data vcpu_info;
5332 struct vcpu_svm *svm = NULL;
5333
5334 if (e->type != KVM_IRQ_ROUTING_MSI)
5335 continue;
5336
5337 /**
5338 * Here, we setup with legacy mode in the following cases:
5339 * 1. When cannot target interrupt to a specific vcpu.
5340 * 2. Unsetting posted interrupt.
5341 * 3. APIC virtialization is disabled for the vcpu.
5342 */
5343 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5344 kvm_vcpu_apicv_active(&svm->vcpu)) {
5345 struct amd_iommu_pi_data pi;
5346
5347 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005348 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5349 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005350 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005351 svm->vcpu.vcpu_id);
5352 pi.is_guest_mode = true;
5353 pi.vcpu_data = &vcpu_info;
5354 ret = irq_set_vcpu_affinity(host_irq, &pi);
5355
5356 /**
5357 * Here, we successfully setting up vcpu affinity in
5358 * IOMMU guest mode. Now, we need to store the posted
5359 * interrupt information in a per-vcpu ir_list so that
5360 * we can reference to them directly when we update vcpu
5361 * scheduling information in IOMMU irte.
5362 */
5363 if (!ret && pi.is_guest_mode)
5364 svm_ir_list_add(svm, &pi);
5365 } else {
5366 /* Use legacy mode in IRTE */
5367 struct amd_iommu_pi_data pi;
5368
5369 /**
5370 * Here, pi is used to:
5371 * - Tell IOMMU to use legacy mode for this interrupt.
5372 * - Retrieve ga_tag of prior interrupt remapping data.
5373 */
5374 pi.is_guest_mode = false;
5375 ret = irq_set_vcpu_affinity(host_irq, &pi);
5376
5377 /**
5378 * Check if the posted interrupt was previously
5379 * setup with the guest_mode by checking if the ga_tag
5380 * was cached. If so, we need to clean up the per-vcpu
5381 * ir_list.
5382 */
5383 if (!ret && pi.prev_ga_tag) {
5384 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5385 struct kvm_vcpu *vcpu;
5386
5387 vcpu = kvm_get_vcpu_by_id(kvm, id);
5388 if (vcpu)
5389 svm_ir_list_del(to_svm(vcpu), &pi);
5390 }
5391 }
5392
5393 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005394 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5395 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005396 vcpu_info.pi_desc_addr, set);
5397 }
5398
5399 if (ret < 0) {
5400 pr_err("%s: failed to update PI IRTE\n", __func__);
5401 goto out;
5402 }
5403 }
5404
5405 ret = 0;
5406out:
5407 srcu_read_unlock(&kvm->irq_srcu, idx);
5408 return ret;
5409}
5410
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005411static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005412{
5413 struct vcpu_svm *svm = to_svm(vcpu);
5414 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005415 int ret;
5416 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5417 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5418 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5419
5420 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005421}
5422
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005423static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5424{
5425 struct vcpu_svm *svm = to_svm(vcpu);
5426
5427 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5428}
5429
5430static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5431{
5432 struct vcpu_svm *svm = to_svm(vcpu);
5433
5434 if (masked) {
5435 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005436 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005437 } else {
5438 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005439 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005440 }
5441}
5442
Gleb Natapov78646122009-03-23 12:12:11 +02005443static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5444{
5445 struct vcpu_svm *svm = to_svm(vcpu);
5446 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005447 int ret;
5448
5449 if (!gif_set(svm) ||
5450 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5451 return 0;
5452
Avi Kivityf6e78472010-08-02 15:30:20 +03005453 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005454
Joerg Roedel20307532010-11-29 17:51:48 +01005455 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005456 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5457
5458 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005459}
5460
Jan Kiszkac9a79532014-03-07 20:03:15 +01005461static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005462{
Alexander Graf219b65d2009-06-15 15:21:25 +02005463 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005464
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005465 if (kvm_vcpu_apicv_active(vcpu))
5466 return;
5467
Joerg Roedele0231712010-02-24 18:59:10 +01005468 /*
5469 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5470 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5471 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005472 * we'll get the vintr intercept. However, if the vGIF feature is
5473 * enabled, the STGI interception will not occur. Enable the irq
5474 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005475 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005476 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005477 svm_set_vintr(svm);
5478 svm_inject_irq(svm, 0x0);
5479 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005480}
5481
Jan Kiszkac9a79532014-03-07 20:03:15 +01005482static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005483{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005484 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005485
Gleb Natapov44c11432009-05-11 13:35:52 +03005486 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5487 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005488 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005489
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005490 if (!gif_set(svm)) {
5491 if (vgif_enabled(svm))
5492 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005493 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005494 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005495
5496 if (svm->nested.exit_required)
5497 return; /* we're not going to run the guest yet */
5498
Joerg Roedele0231712010-02-24 18:59:10 +01005499 /*
5500 * Something prevents NMI from been injected. Single step over possible
5501 * problem (IRET or exception injection or interrupt shadow)
5502 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005503 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005504 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005505 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005506}
5507
Izik Eiduscbc94022007-10-25 00:29:55 +02005508static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5509{
5510 return 0;
5511}
5512
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005513static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5514{
5515 return 0;
5516}
5517
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005518static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005519{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005520 struct vcpu_svm *svm = to_svm(vcpu);
5521
5522 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5523 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5524 else
5525 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005526}
5527
Junaid Shahidfaff8752018-06-29 13:10:05 -07005528static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5529{
5530 struct vcpu_svm *svm = to_svm(vcpu);
5531
5532 invlpga(gva, svm->vmcb->control.asid);
5533}
5534
Avi Kivity04d2cc72007-09-10 18:10:54 +03005535static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5536{
5537}
5538
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005539static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5540{
5541 struct vcpu_svm *svm = to_svm(vcpu);
5542
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005543 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005544 return;
5545
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005546 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005547 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005548 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005549 }
5550}
5551
Joerg Roedel649d6862008-04-16 16:51:15 +02005552static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5553{
5554 struct vcpu_svm *svm = to_svm(vcpu);
5555 u64 cr8;
5556
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005557 if (svm_nested_virtualize_tpr(vcpu) ||
5558 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005559 return;
5560
Joerg Roedel649d6862008-04-16 16:51:15 +02005561 cr8 = kvm_get_cr8(vcpu);
5562 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5563 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5564}
5565
Gleb Natapov9222be12009-04-23 17:14:37 +03005566static void svm_complete_interrupts(struct vcpu_svm *svm)
5567{
5568 u8 vector;
5569 int type;
5570 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005571 unsigned int3_injected = svm->int3_injected;
5572
5573 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005574
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005575 /*
5576 * If we've made progress since setting HF_IRET_MASK, we've
5577 * executed an IRET and can allow NMI injection.
5578 */
5579 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5580 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005581 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005582 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5583 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005584
Gleb Natapov9222be12009-04-23 17:14:37 +03005585 svm->vcpu.arch.nmi_injected = false;
5586 kvm_clear_exception_queue(&svm->vcpu);
5587 kvm_clear_interrupt_queue(&svm->vcpu);
5588
5589 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5590 return;
5591
Avi Kivity3842d132010-07-27 12:30:24 +03005592 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5593
Gleb Natapov9222be12009-04-23 17:14:37 +03005594 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5595 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5596
5597 switch (type) {
5598 case SVM_EXITINTINFO_TYPE_NMI:
5599 svm->vcpu.arch.nmi_injected = true;
5600 break;
5601 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005602 /*
5603 * In case of software exceptions, do not reinject the vector,
5604 * but re-execute the instruction instead. Rewind RIP first
5605 * if we emulated INT3 before.
5606 */
5607 if (kvm_exception_is_soft(vector)) {
5608 if (vector == BP_VECTOR && int3_injected &&
5609 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5610 kvm_rip_write(&svm->vcpu,
5611 kvm_rip_read(&svm->vcpu) -
5612 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005613 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005614 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005615 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5616 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005617 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005618
5619 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005620 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005621 break;
5622 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005623 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005624 break;
5625 default:
5626 break;
5627 }
5628}
5629
Avi Kivityb463a6f2010-07-20 15:06:17 +03005630static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5631{
5632 struct vcpu_svm *svm = to_svm(vcpu);
5633 struct vmcb_control_area *control = &svm->vmcb->control;
5634
5635 control->exit_int_info = control->event_inj;
5636 control->exit_int_info_err = control->event_inj_err;
5637 control->event_inj = 0;
5638 svm_complete_interrupts(svm);
5639}
5640
Avi Kivity851ba692009-08-24 11:10:17 +03005641static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005642{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005643 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005644
Joerg Roedel2041a062010-04-22 12:33:08 +02005645 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5646 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5647 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5648
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005649 /*
5650 * A vmexit emulation is required before the vcpu can be executed
5651 * again.
5652 */
5653 if (unlikely(svm->nested.exit_required))
5654 return;
5655
Ladi Proseka12713c2017-06-21 09:07:00 +02005656 /*
5657 * Disable singlestep if we're injecting an interrupt/exception.
5658 * We don't want our modified rflags to be pushed on the stack where
5659 * we might not be able to easily reset them if we disabled NMI
5660 * singlestep later.
5661 */
5662 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5663 /*
5664 * Event injection happens before external interrupts cause a
5665 * vmexit and interrupts are disabled here, so smp_send_reschedule
5666 * is enough to force an immediate vmexit.
5667 */
5668 disable_nmi_singlestep(svm);
5669 smp_send_reschedule(vcpu->cpu);
5670 }
5671
Rusty Russelle756fc62007-07-30 20:07:08 +10005672 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005673
Joerg Roedel649d6862008-04-16 16:51:15 +02005674 sync_lapic_to_cr8(vcpu);
5675
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005676 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005677
Avi Kivity04d2cc72007-09-10 18:10:54 +03005678 clgi();
WANG Chao7a74d802019-04-12 15:55:39 +08005679 kvm_load_guest_xcr0(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03005680
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005681 /*
5682 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5683 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5684 * is no need to worry about the conditional branch over the wrmsr
5685 * being speculatively taken.
5686 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005687 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005688
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005689 local_irq_enable();
5690
Avi Kivity6aa8b732006-12-10 02:21:36 -08005691 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005692 "push %%" _ASM_BP "; \n\t"
5693 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5694 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5695 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5696 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5697 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5698 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005699#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005700 "mov %c[r8](%[svm]), %%r8 \n\t"
5701 "mov %c[r9](%[svm]), %%r9 \n\t"
5702 "mov %c[r10](%[svm]), %%r10 \n\t"
5703 "mov %c[r11](%[svm]), %%r11 \n\t"
5704 "mov %c[r12](%[svm]), %%r12 \n\t"
5705 "mov %c[r13](%[svm]), %%r13 \n\t"
5706 "mov %c[r14](%[svm]), %%r14 \n\t"
5707 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708#endif
5709
Avi Kivity6aa8b732006-12-10 02:21:36 -08005710 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005711 "push %%" _ASM_AX " \n\t"
5712 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005713 __ex(SVM_VMLOAD) "\n\t"
5714 __ex(SVM_VMRUN) "\n\t"
5715 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005716 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005717
5718 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005719 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5720 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5721 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5722 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5723 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5724 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005725#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005726 "mov %%r8, %c[r8](%[svm]) \n\t"
5727 "mov %%r9, %c[r9](%[svm]) \n\t"
5728 "mov %%r10, %c[r10](%[svm]) \n\t"
5729 "mov %%r11, %c[r11](%[svm]) \n\t"
5730 "mov %%r12, %c[r12](%[svm]) \n\t"
5731 "mov %%r13, %c[r13](%[svm]) \n\t"
5732 "mov %%r14, %c[r14](%[svm]) \n\t"
5733 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005734#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005735 /*
5736 * Clear host registers marked as clobbered to prevent
5737 * speculative use.
5738 */
5739 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5740 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5741 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5742 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5743 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5744#ifdef CONFIG_X86_64
5745 "xor %%r8, %%r8 \n\t"
5746 "xor %%r9, %%r9 \n\t"
5747 "xor %%r10, %%r10 \n\t"
5748 "xor %%r11, %%r11 \n\t"
5749 "xor %%r12, %%r12 \n\t"
5750 "xor %%r13, %%r13 \n\t"
5751 "xor %%r14, %%r14 \n\t"
5752 "xor %%r15, %%r15 \n\t"
5753#endif
Avi Kivity74547662012-09-16 15:10:59 +03005754 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005755 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005756 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005757 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005758 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5759 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5760 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5761 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5762 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5763 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005764#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005765 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5766 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5767 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5768 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5769 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5770 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5771 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5772 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005773#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005774 : "cc", "memory"
5775#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005776 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005777 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005778#else
5779 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005780#endif
5781 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005782
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005783 /* Eliminate branch target predictions from guest mode */
5784 vmexit_fill_RSB();
5785
5786#ifdef CONFIG_X86_64
5787 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5788#else
5789 loadsegment(fs, svm->host.fs);
5790#ifndef CONFIG_X86_32_LAZY_GS
5791 loadsegment(gs, svm->host.gs);
5792#endif
5793#endif
5794
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005795 /*
5796 * We do not use IBRS in the kernel. If this vCPU has used the
5797 * SPEC_CTRL MSR it may have left it on; save the value and
5798 * turn it off. This is much more efficient than blindly adding
5799 * it to the atomic save/restore list. Especially as the former
5800 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5801 *
5802 * For non-nested case:
5803 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5804 * save it.
5805 *
5806 * For nested case:
5807 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5808 * save it.
5809 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005810 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005811 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005812
Avi Kivity6aa8b732006-12-10 02:21:36 -08005813 reload_tss(vcpu);
5814
Avi Kivity56ba47d2007-11-07 17:14:18 +02005815 local_irq_disable();
5816
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005817 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5818
Avi Kivity13c34e02010-10-21 12:20:31 +02005819 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5820 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5821 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5822 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5823
Joerg Roedel3781c012011-01-14 16:45:02 +01005824 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005825 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005826
WANG Chao7a74d802019-04-12 15:55:39 +08005827 kvm_put_guest_xcr0(vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005828 stgi();
5829
5830 /* Any pending NMI will happen here */
5831
5832 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005833 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005834
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005835 sync_cr8_to_lapic(vcpu);
5836
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005837 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005838
Joerg Roedel38e5e922010-12-03 15:25:16 +01005839 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5840
Gleb Natapov631bc482010-10-14 11:22:52 +02005841 /* if exit due to PF check for async PF */
5842 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005843 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005844
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005845 if (npt_enabled) {
5846 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5847 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5848 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005849
5850 /*
5851 * We need to handle MC intercepts here before the vcpu has a chance to
5852 * change the physical cpu
5853 */
5854 if (unlikely(svm->vmcb->control.exit_code ==
5855 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5856 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005857
5858 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005860STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005861
Avi Kivity6aa8b732006-12-10 02:21:36 -08005862static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5863{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005864 struct vcpu_svm *svm = to_svm(vcpu);
5865
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005866 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005867 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005868}
5869
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005870static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5871{
5872 struct vcpu_svm *svm = to_svm(vcpu);
5873
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005874 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005875 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005876
5877 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005878 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005879 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005880}
5881
Avi Kivity6aa8b732006-12-10 02:21:36 -08005882static int is_disabled(void)
5883{
Joerg Roedel6031a612007-06-22 12:29:50 +03005884 u64 vm_cr;
5885
5886 rdmsrl(MSR_VM_CR, vm_cr);
5887 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5888 return 1;
5889
Avi Kivity6aa8b732006-12-10 02:21:36 -08005890 return 0;
5891}
5892
Ingo Molnar102d8322007-02-19 14:37:47 +02005893static void
5894svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5895{
5896 /*
5897 * Patch in the VMMCALL instruction:
5898 */
5899 hypercall[0] = 0x0f;
5900 hypercall[1] = 0x01;
5901 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005902}
5903
Yang, Sheng002c7f72007-07-31 14:23:01 +03005904static void svm_check_processor_compat(void *rtn)
5905{
5906 *(int *)rtn = 0;
5907}
5908
Avi Kivity774ead32007-12-26 13:57:04 +02005909static bool svm_cpu_has_accelerated_tpr(void)
5910{
5911 return false;
5912}
5913
Tom Lendackybc226f02018-05-10 22:06:39 +02005914static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005915{
Vitaly Kuznetsov84a45722018-12-19 12:06:13 +01005916 switch (index) {
5917 case MSR_IA32_MCG_EXT_CTL:
5918 return false;
5919 default:
5920 break;
5921 }
5922
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005923 return true;
5924}
5925
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005926static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5927{
5928 return 0;
5929}
5930
Sheng Yang0e851882009-12-18 16:48:46 +08005931static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5932{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005933 struct vcpu_svm *svm = to_svm(vcpu);
5934
5935 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005936 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005937
5938 if (!kvm_vcpu_apicv_active(vcpu))
5939 return;
5940
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005941 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005942}
5943
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005944static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5945{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005946 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005947 case 0x1:
5948 if (avic)
5949 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5950 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005951 case 0x80000001:
5952 if (nested)
5953 entry->ecx |= (1 << 2); /* Set SVM bit */
5954 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005955 case 0x8000000A:
5956 entry->eax = 1; /* SVM revision 1 */
5957 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5958 ASID emulation to nested SVM */
5959 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005960 entry->edx = 0; /* Per default do not support any
5961 additional features */
5962
5963 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005964 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005965 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005966
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005967 /* Support NPT for the guest if enabled */
5968 if (npt_enabled)
5969 entry->edx |= SVM_FEATURE_NPT;
5970
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005971 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005972 case 0x8000001F:
5973 /* Support memory encryption cpuid if host supports it */
5974 if (boot_cpu_has(X86_FEATURE_SEV))
5975 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5976 &entry->ecx, &entry->edx);
5977
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005978 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005979}
5980
Sheng Yang17cc3932010-01-05 19:02:27 +08005981static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005982{
Sheng Yang17cc3932010-01-05 19:02:27 +08005983 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005984}
5985
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005986static bool svm_rdtscp_supported(void)
5987{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005988 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005989}
5990
Mao, Junjiead756a12012-07-02 01:18:48 +00005991static bool svm_invpcid_supported(void)
5992{
5993 return false;
5994}
5995
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005996static bool svm_mpx_supported(void)
5997{
5998 return false;
5999}
6000
Wanpeng Li55412b22014-12-02 19:21:30 +08006001static bool svm_xsaves_supported(void)
6002{
6003 return false;
6004}
6005
Paolo Bonzini66336ca2016-07-12 10:36:41 +02006006static bool svm_umip_emulated(void)
6007{
6008 return false;
6009}
6010
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006011static bool svm_has_wbinvd_exit(void)
6012{
6013 return true;
6014}
6015
Joerg Roedel80612522011-04-04 12:39:33 +02006016#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006017 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006018#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006019 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006020#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03006021 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006022
Mathias Krause09941fb2012-08-30 01:30:20 +02006023static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006024 u32 exit_code;
6025 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006026} x86_intercept_map[] = {
6027 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
6028 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
6029 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
6030 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
6031 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02006032 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
6033 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02006034 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
6035 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
6036 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
6037 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
6038 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
6039 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
6040 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
6041 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02006042 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
6043 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
6044 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
6045 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
6046 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
6047 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
6048 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
6049 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006050 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
6051 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
6052 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02006053 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
6054 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6055 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6056 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6057 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6058 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6059 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6060 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6061 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006062 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6063 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6064 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6065 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6066 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6067 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6068 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006069 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6070 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6071 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6072 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006073};
6074
Joerg Roedel80612522011-04-04 12:39:33 +02006075#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006076#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006077#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006078
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006079static int svm_check_intercept(struct kvm_vcpu *vcpu,
6080 struct x86_instruction_info *info,
6081 enum x86_intercept_stage stage)
6082{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006083 struct vcpu_svm *svm = to_svm(vcpu);
6084 int vmexit, ret = X86EMUL_CONTINUE;
6085 struct __x86_intercept icpt_info;
6086 struct vmcb *vmcb = svm->vmcb;
6087
6088 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6089 goto out;
6090
6091 icpt_info = x86_intercept_map[info->intercept];
6092
Avi Kivity40e19b52011-04-21 12:35:41 +03006093 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006094 goto out;
6095
6096 switch (icpt_info.exit_code) {
6097 case SVM_EXIT_READ_CR0:
6098 if (info->intercept == x86_intercept_cr_read)
6099 icpt_info.exit_code += info->modrm_reg;
6100 break;
6101 case SVM_EXIT_WRITE_CR0: {
6102 unsigned long cr0, val;
6103 u64 intercept;
6104
6105 if (info->intercept == x86_intercept_cr_write)
6106 icpt_info.exit_code += info->modrm_reg;
6107
Jan Kiszka62baf442014-06-29 21:55:53 +02006108 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6109 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006110 break;
6111
6112 intercept = svm->nested.intercept;
6113
6114 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6115 break;
6116
6117 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6118 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6119
6120 if (info->intercept == x86_intercept_lmsw) {
6121 cr0 &= 0xfUL;
6122 val &= 0xfUL;
6123 /* lmsw can't clear PE - catch this here */
6124 if (cr0 & X86_CR0_PE)
6125 val |= X86_CR0_PE;
6126 }
6127
6128 if (cr0 ^ val)
6129 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6130
6131 break;
6132 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006133 case SVM_EXIT_READ_DR0:
6134 case SVM_EXIT_WRITE_DR0:
6135 icpt_info.exit_code += info->modrm_reg;
6136 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006137 case SVM_EXIT_MSR:
6138 if (info->intercept == x86_intercept_wrmsr)
6139 vmcb->control.exit_info_1 = 1;
6140 else
6141 vmcb->control.exit_info_1 = 0;
6142 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006143 case SVM_EXIT_PAUSE:
6144 /*
6145 * We get this for NOP only, but pause
6146 * is rep not, check this here
6147 */
6148 if (info->rep_prefix != REPE_PREFIX)
6149 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006150 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006151 case SVM_EXIT_IOIO: {
6152 u64 exit_info;
6153 u32 bytes;
6154
Joerg Roedelf6511932011-04-04 12:39:35 +02006155 if (info->intercept == x86_intercept_in ||
6156 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006157 exit_info = ((info->src_val & 0xffff) << 16) |
6158 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006159 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006160 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006161 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006162 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006163 }
6164
6165 if (info->intercept == x86_intercept_outs ||
6166 info->intercept == x86_intercept_ins)
6167 exit_info |= SVM_IOIO_STR_MASK;
6168
6169 if (info->rep_prefix)
6170 exit_info |= SVM_IOIO_REP_MASK;
6171
6172 bytes = min(bytes, 4u);
6173
6174 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6175
6176 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6177
6178 vmcb->control.exit_info_1 = exit_info;
6179 vmcb->control.exit_info_2 = info->next_rip;
6180
6181 break;
6182 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006183 default:
6184 break;
6185 }
6186
Bandan Dasf1047652015-06-11 02:05:33 -04006187 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6188 if (static_cpu_has(X86_FEATURE_NRIPS))
6189 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006190 vmcb->control.exit_code = icpt_info.exit_code;
6191 vmexit = nested_svm_exit_handled(svm);
6192
6193 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6194 : X86EMUL_CONTINUE;
6195
6196out:
6197 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006198}
6199
Yang Zhanga547c6d2013-04-11 19:25:10 +08006200static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6201{
6202 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006203 /*
6204 * We must have an instruction with interrupts enabled, so
6205 * the timer interrupt isn't delayed by the interrupt shadow.
6206 */
6207 asm("nop");
6208 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006209}
6210
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006211static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6212{
Babu Moger8566ac82018-03-16 16:37:26 -04006213 if (pause_filter_thresh)
6214 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006215}
6216
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006217static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6218{
6219 if (avic_handle_apic_id_update(vcpu) != 0)
6220 return;
6221 if (avic_handle_dfr_update(vcpu) != 0)
6222 return;
6223 avic_handle_ldr_update(vcpu);
6224}
6225
Borislav Petkov74f16902017-03-26 23:51:24 +02006226static void svm_setup_mce(struct kvm_vcpu *vcpu)
6227{
6228 /* [63:9] are reserved. */
6229 vcpu->arch.mcg_cap &= 0x1ff;
6230}
6231
Ladi Prosek72d7b372017-10-11 16:54:41 +02006232static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6233{
Ladi Prosek05cade72017-10-11 16:54:45 +02006234 struct vcpu_svm *svm = to_svm(vcpu);
6235
6236 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6237 if (!gif_set(svm))
6238 return 0;
6239
6240 if (is_guest_mode(&svm->vcpu) &&
6241 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6242 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6243 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6244 svm->nested.exit_required = true;
6245 return 0;
6246 }
6247
Ladi Prosek72d7b372017-10-11 16:54:41 +02006248 return 1;
6249}
6250
Ladi Prosek0234bf82017-10-11 16:54:40 +02006251static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6252{
Ladi Prosek05cade72017-10-11 16:54:45 +02006253 struct vcpu_svm *svm = to_svm(vcpu);
6254 int ret;
6255
6256 if (is_guest_mode(vcpu)) {
6257 /* FED8h - SVM Guest */
6258 put_smstate(u64, smstate, 0x7ed8, 1);
6259 /* FEE0h - SVM Guest VMCB Physical Address */
6260 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6261
6262 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6263 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6264 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6265
6266 ret = nested_svm_vmexit(svm);
6267 if (ret)
6268 return ret;
6269 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006270 return 0;
6271}
6272
6273static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6274{
Ladi Prosek05cade72017-10-11 16:54:45 +02006275 struct vcpu_svm *svm = to_svm(vcpu);
6276 struct vmcb *nested_vmcb;
6277 struct page *page;
6278 struct {
6279 u64 guest;
6280 u64 vmcb;
6281 } svm_state_save;
6282 int ret;
6283
6284 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6285 sizeof(svm_state_save));
6286 if (ret)
6287 return ret;
6288
6289 if (svm_state_save.guest) {
6290 vcpu->arch.hflags &= ~HF_SMM_MASK;
6291 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6292 if (nested_vmcb)
6293 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6294 else
6295 ret = 1;
6296 vcpu->arch.hflags |= HF_SMM_MASK;
6297 }
6298 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006299}
6300
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006301static int enable_smi_window(struct kvm_vcpu *vcpu)
6302{
6303 struct vcpu_svm *svm = to_svm(vcpu);
6304
6305 if (!gif_set(svm)) {
6306 if (vgif_enabled(svm))
6307 set_intercept(svm, INTERCEPT_STGI);
6308 /* STGI will cause a vm exit */
6309 return 1;
6310 }
6311 return 0;
6312}
6313
Brijesh Singh1654efc2017-12-04 10:57:34 -06006314static int sev_asid_new(void)
6315{
6316 int pos;
6317
6318 /*
6319 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6320 */
6321 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6322 if (pos >= max_sev_asid)
6323 return -EBUSY;
6324
6325 set_bit(pos, sev_asid_bitmap);
6326 return pos + 1;
6327}
6328
6329static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6330{
Sean Christopherson81811c12018-03-20 12:17:21 -07006331 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006332 int asid, ret;
6333
6334 ret = -EBUSY;
David Rientjes6804b3e2019-01-02 12:56:33 -08006335 if (unlikely(sev->active))
6336 return ret;
6337
Brijesh Singh1654efc2017-12-04 10:57:34 -06006338 asid = sev_asid_new();
6339 if (asid < 0)
6340 return ret;
6341
6342 ret = sev_platform_init(&argp->error);
6343 if (ret)
6344 goto e_free;
6345
6346 sev->active = true;
6347 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006348 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006349
6350 return 0;
6351
6352e_free:
6353 __sev_asid_free(asid);
6354 return ret;
6355}
6356
Brijesh Singh59414c92017-12-04 10:57:35 -06006357static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6358{
6359 struct sev_data_activate *data;
6360 int asid = sev_get_asid(kvm);
6361 int ret;
6362
6363 wbinvd_on_all_cpus();
6364
6365 ret = sev_guest_df_flush(error);
6366 if (ret)
6367 return ret;
6368
6369 data = kzalloc(sizeof(*data), GFP_KERNEL);
6370 if (!data)
6371 return -ENOMEM;
6372
6373 /* activate ASID on the given handle */
6374 data->handle = handle;
6375 data->asid = asid;
6376 ret = sev_guest_activate(data, error);
6377 kfree(data);
6378
6379 return ret;
6380}
6381
Brijesh Singh89c50582017-12-04 10:57:35 -06006382static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006383{
6384 struct fd f;
6385 int ret;
6386
6387 f = fdget(fd);
6388 if (!f.file)
6389 return -EBADF;
6390
6391 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6392
6393 fdput(f);
6394 return ret;
6395}
6396
Brijesh Singh89c50582017-12-04 10:57:35 -06006397static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6398{
Sean Christopherson81811c12018-03-20 12:17:21 -07006399 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006400
6401 return __sev_issue_cmd(sev->fd, id, data, error);
6402}
6403
Brijesh Singh59414c92017-12-04 10:57:35 -06006404static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6405{
Sean Christopherson81811c12018-03-20 12:17:21 -07006406 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006407 struct sev_data_launch_start *start;
6408 struct kvm_sev_launch_start params;
6409 void *dh_blob, *session_blob;
6410 int *error = &argp->error;
6411 int ret;
6412
6413 if (!sev_guest(kvm))
6414 return -ENOTTY;
6415
6416 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6417 return -EFAULT;
6418
6419 start = kzalloc(sizeof(*start), GFP_KERNEL);
6420 if (!start)
6421 return -ENOMEM;
6422
6423 dh_blob = NULL;
6424 if (params.dh_uaddr) {
6425 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6426 if (IS_ERR(dh_blob)) {
6427 ret = PTR_ERR(dh_blob);
6428 goto e_free;
6429 }
6430
6431 start->dh_cert_address = __sme_set(__pa(dh_blob));
6432 start->dh_cert_len = params.dh_len;
6433 }
6434
6435 session_blob = NULL;
6436 if (params.session_uaddr) {
6437 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6438 if (IS_ERR(session_blob)) {
6439 ret = PTR_ERR(session_blob);
6440 goto e_free_dh;
6441 }
6442
6443 start->session_address = __sme_set(__pa(session_blob));
6444 start->session_len = params.session_len;
6445 }
6446
6447 start->handle = params.handle;
6448 start->policy = params.policy;
6449
6450 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006451 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006452 if (ret)
6453 goto e_free_session;
6454
6455 /* Bind ASID to this guest */
6456 ret = sev_bind_asid(kvm, start->handle, error);
6457 if (ret)
6458 goto e_free_session;
6459
6460 /* return handle to userspace */
6461 params.handle = start->handle;
6462 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6463 sev_unbind_asid(kvm, start->handle);
6464 ret = -EFAULT;
6465 goto e_free_session;
6466 }
6467
6468 sev->handle = start->handle;
6469 sev->fd = argp->sev_fd;
6470
6471e_free_session:
6472 kfree(session_blob);
6473e_free_dh:
6474 kfree(dh_blob);
6475e_free:
6476 kfree(start);
6477 return ret;
6478}
6479
David Rientjesc4f103f2019-03-19 15:19:56 -07006480static unsigned long get_num_contig_pages(unsigned long idx,
6481 struct page **inpages, unsigned long npages)
Brijesh Singh89c50582017-12-04 10:57:35 -06006482{
6483 unsigned long paddr, next_paddr;
David Rientjesc4f103f2019-03-19 15:19:56 -07006484 unsigned long i = idx + 1, pages = 1;
Brijesh Singh89c50582017-12-04 10:57:35 -06006485
6486 /* find the number of contiguous pages starting from idx */
6487 paddr = __sme_page_pa(inpages[idx]);
6488 while (i < npages) {
6489 next_paddr = __sme_page_pa(inpages[i++]);
6490 if ((paddr + PAGE_SIZE) == next_paddr) {
6491 pages++;
6492 paddr = next_paddr;
6493 continue;
6494 }
6495 break;
6496 }
6497
6498 return pages;
6499}
6500
6501static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6502{
David Rientjesc4f103f2019-03-19 15:19:56 -07006503 unsigned long vaddr, vaddr_end, next_vaddr, npages, pages, size, i;
Sean Christopherson81811c12018-03-20 12:17:21 -07006504 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006505 struct kvm_sev_launch_update_data params;
6506 struct sev_data_launch_update_data *data;
6507 struct page **inpages;
David Rientjesc4f103f2019-03-19 15:19:56 -07006508 int ret;
Brijesh Singh89c50582017-12-04 10:57:35 -06006509
6510 if (!sev_guest(kvm))
6511 return -ENOTTY;
6512
6513 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6514 return -EFAULT;
6515
6516 data = kzalloc(sizeof(*data), GFP_KERNEL);
6517 if (!data)
6518 return -ENOMEM;
6519
6520 vaddr = params.uaddr;
6521 size = params.len;
6522 vaddr_end = vaddr + size;
6523
6524 /* Lock the user memory. */
6525 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6526 if (!inpages) {
6527 ret = -ENOMEM;
6528 goto e_free;
6529 }
6530
6531 /*
6532 * The LAUNCH_UPDATE command will perform in-place encryption of the
6533 * memory content (i.e it will write the same memory region with C=1).
6534 * It's possible that the cache may contain the data with C=0, i.e.,
6535 * unencrypted so invalidate it first.
6536 */
6537 sev_clflush_pages(inpages, npages);
6538
6539 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6540 int offset, len;
6541
6542 /*
6543 * If the user buffer is not page-aligned, calculate the offset
6544 * within the page.
6545 */
6546 offset = vaddr & (PAGE_SIZE - 1);
6547
6548 /* Calculate the number of pages that can be encrypted in one go. */
6549 pages = get_num_contig_pages(i, inpages, npages);
6550
6551 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6552
6553 data->handle = sev->handle;
6554 data->len = len;
6555 data->address = __sme_page_pa(inpages[i]) + offset;
6556 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6557 if (ret)
6558 goto e_unpin;
6559
6560 size -= len;
6561 next_vaddr = vaddr + len;
6562 }
6563
6564e_unpin:
6565 /* content of memory is updated, mark pages dirty */
6566 for (i = 0; i < npages; i++) {
6567 set_page_dirty_lock(inpages[i]);
6568 mark_page_accessed(inpages[i]);
6569 }
6570 /* unlock the user pages */
6571 sev_unpin_memory(kvm, inpages, npages);
6572e_free:
6573 kfree(data);
6574 return ret;
6575}
6576
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006577static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6578{
Brijesh Singh3e233382018-02-23 12:36:50 -06006579 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006580 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006581 struct sev_data_launch_measure *data;
6582 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006583 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006584 void *blob = NULL;
6585 int ret;
6586
6587 if (!sev_guest(kvm))
6588 return -ENOTTY;
6589
Brijesh Singh3e233382018-02-23 12:36:50 -06006590 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006591 return -EFAULT;
6592
6593 data = kzalloc(sizeof(*data), GFP_KERNEL);
6594 if (!data)
6595 return -ENOMEM;
6596
6597 /* User wants to query the blob length */
6598 if (!params.len)
6599 goto cmd;
6600
Brijesh Singh3e233382018-02-23 12:36:50 -06006601 p = (void __user *)(uintptr_t)params.uaddr;
6602 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006603 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6604 ret = -EINVAL;
6605 goto e_free;
6606 }
6607
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006608 ret = -ENOMEM;
6609 blob = kmalloc(params.len, GFP_KERNEL);
6610 if (!blob)
6611 goto e_free;
6612
6613 data->address = __psp_pa(blob);
6614 data->len = params.len;
6615 }
6616
6617cmd:
6618 data->handle = sev->handle;
6619 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6620
6621 /*
6622 * If we query the session length, FW responded with expected data.
6623 */
6624 if (!params.len)
6625 goto done;
6626
6627 if (ret)
6628 goto e_free_blob;
6629
6630 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006631 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006632 ret = -EFAULT;
6633 }
6634
6635done:
6636 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006637 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006638 ret = -EFAULT;
6639e_free_blob:
6640 kfree(blob);
6641e_free:
6642 kfree(data);
6643 return ret;
6644}
6645
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006646static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6647{
Sean Christopherson81811c12018-03-20 12:17:21 -07006648 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006649 struct sev_data_launch_finish *data;
6650 int ret;
6651
6652 if (!sev_guest(kvm))
6653 return -ENOTTY;
6654
6655 data = kzalloc(sizeof(*data), GFP_KERNEL);
6656 if (!data)
6657 return -ENOMEM;
6658
6659 data->handle = sev->handle;
6660 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6661
6662 kfree(data);
6663 return ret;
6664}
6665
Brijesh Singh255d9e72017-12-04 10:57:37 -06006666static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6667{
Sean Christopherson81811c12018-03-20 12:17:21 -07006668 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006669 struct kvm_sev_guest_status params;
6670 struct sev_data_guest_status *data;
6671 int ret;
6672
6673 if (!sev_guest(kvm))
6674 return -ENOTTY;
6675
6676 data = kzalloc(sizeof(*data), GFP_KERNEL);
6677 if (!data)
6678 return -ENOMEM;
6679
6680 data->handle = sev->handle;
6681 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6682 if (ret)
6683 goto e_free;
6684
6685 params.policy = data->policy;
6686 params.state = data->state;
6687 params.handle = data->handle;
6688
6689 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6690 ret = -EFAULT;
6691e_free:
6692 kfree(data);
6693 return ret;
6694}
6695
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006696static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6697 unsigned long dst, int size,
6698 int *error, bool enc)
6699{
Sean Christopherson81811c12018-03-20 12:17:21 -07006700 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006701 struct sev_data_dbg *data;
6702 int ret;
6703
6704 data = kzalloc(sizeof(*data), GFP_KERNEL);
6705 if (!data)
6706 return -ENOMEM;
6707
6708 data->handle = sev->handle;
6709 data->dst_addr = dst;
6710 data->src_addr = src;
6711 data->len = size;
6712
6713 ret = sev_issue_cmd(kvm,
6714 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6715 data, error);
6716 kfree(data);
6717 return ret;
6718}
6719
6720static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6721 unsigned long dst_paddr, int sz, int *err)
6722{
6723 int offset;
6724
6725 /*
6726 * Its safe to read more than we are asked, caller should ensure that
6727 * destination has enough space.
6728 */
6729 src_paddr = round_down(src_paddr, 16);
6730 offset = src_paddr & 15;
6731 sz = round_up(sz + offset, 16);
6732
6733 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6734}
6735
6736static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6737 unsigned long __user dst_uaddr,
6738 unsigned long dst_paddr,
6739 int size, int *err)
6740{
6741 struct page *tpage = NULL;
6742 int ret, offset;
6743
6744 /* if inputs are not 16-byte then use intermediate buffer */
6745 if (!IS_ALIGNED(dst_paddr, 16) ||
6746 !IS_ALIGNED(paddr, 16) ||
6747 !IS_ALIGNED(size, 16)) {
6748 tpage = (void *)alloc_page(GFP_KERNEL);
6749 if (!tpage)
6750 return -ENOMEM;
6751
6752 dst_paddr = __sme_page_pa(tpage);
6753 }
6754
6755 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6756 if (ret)
6757 goto e_free;
6758
6759 if (tpage) {
6760 offset = paddr & 15;
6761 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6762 page_address(tpage) + offset, size))
6763 ret = -EFAULT;
6764 }
6765
6766e_free:
6767 if (tpage)
6768 __free_page(tpage);
6769
6770 return ret;
6771}
6772
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006773static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6774 unsigned long __user vaddr,
6775 unsigned long dst_paddr,
6776 unsigned long __user dst_vaddr,
6777 int size, int *error)
6778{
6779 struct page *src_tpage = NULL;
6780 struct page *dst_tpage = NULL;
6781 int ret, len = size;
6782
6783 /* If source buffer is not aligned then use an intermediate buffer */
6784 if (!IS_ALIGNED(vaddr, 16)) {
6785 src_tpage = alloc_page(GFP_KERNEL);
6786 if (!src_tpage)
6787 return -ENOMEM;
6788
6789 if (copy_from_user(page_address(src_tpage),
6790 (void __user *)(uintptr_t)vaddr, size)) {
6791 __free_page(src_tpage);
6792 return -EFAULT;
6793 }
6794
6795 paddr = __sme_page_pa(src_tpage);
6796 }
6797
6798 /*
6799 * If destination buffer or length is not aligned then do read-modify-write:
6800 * - decrypt destination in an intermediate buffer
6801 * - copy the source buffer in an intermediate buffer
6802 * - use the intermediate buffer as source buffer
6803 */
6804 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6805 int dst_offset;
6806
6807 dst_tpage = alloc_page(GFP_KERNEL);
6808 if (!dst_tpage) {
6809 ret = -ENOMEM;
6810 goto e_free;
6811 }
6812
6813 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6814 __sme_page_pa(dst_tpage), size, error);
6815 if (ret)
6816 goto e_free;
6817
6818 /*
6819 * If source is kernel buffer then use memcpy() otherwise
6820 * copy_from_user().
6821 */
6822 dst_offset = dst_paddr & 15;
6823
6824 if (src_tpage)
6825 memcpy(page_address(dst_tpage) + dst_offset,
6826 page_address(src_tpage), size);
6827 else {
6828 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6829 (void __user *)(uintptr_t)vaddr, size)) {
6830 ret = -EFAULT;
6831 goto e_free;
6832 }
6833 }
6834
6835 paddr = __sme_page_pa(dst_tpage);
6836 dst_paddr = round_down(dst_paddr, 16);
6837 len = round_up(size, 16);
6838 }
6839
6840 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6841
6842e_free:
6843 if (src_tpage)
6844 __free_page(src_tpage);
6845 if (dst_tpage)
6846 __free_page(dst_tpage);
6847 return ret;
6848}
6849
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006850static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6851{
6852 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006853 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006854 struct page **src_p, **dst_p;
6855 struct kvm_sev_dbg debug;
6856 unsigned long n;
David Rientjes82e8da12019-03-25 11:47:31 -07006857 unsigned int size;
6858 int ret;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006859
6860 if (!sev_guest(kvm))
6861 return -ENOTTY;
6862
6863 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6864 return -EFAULT;
6865
David Rientjes82e8da12019-03-25 11:47:31 -07006866 if (!debug.len || debug.src_uaddr + debug.len < debug.src_uaddr)
6867 return -EINVAL;
6868 if (!debug.dst_uaddr)
6869 return -EINVAL;
6870
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006871 vaddr = debug.src_uaddr;
6872 size = debug.len;
6873 vaddr_end = vaddr + size;
6874 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006875
6876 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6877 int len, s_off, d_off;
6878
6879 /* lock userspace source and destination page */
6880 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6881 if (!src_p)
6882 return -EFAULT;
6883
6884 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6885 if (!dst_p) {
6886 sev_unpin_memory(kvm, src_p, n);
6887 return -EFAULT;
6888 }
6889
6890 /*
6891 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6892 * memory content (i.e it will write the same memory region with C=1).
6893 * It's possible that the cache may contain the data with C=0, i.e.,
6894 * unencrypted so invalidate it first.
6895 */
6896 sev_clflush_pages(src_p, 1);
6897 sev_clflush_pages(dst_p, 1);
6898
6899 /*
6900 * Since user buffer may not be page aligned, calculate the
6901 * offset within the page.
6902 */
6903 s_off = vaddr & ~PAGE_MASK;
6904 d_off = dst_vaddr & ~PAGE_MASK;
6905 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6906
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006907 if (dec)
6908 ret = __sev_dbg_decrypt_user(kvm,
6909 __sme_page_pa(src_p[0]) + s_off,
6910 dst_vaddr,
6911 __sme_page_pa(dst_p[0]) + d_off,
6912 len, &argp->error);
6913 else
6914 ret = __sev_dbg_encrypt_user(kvm,
6915 __sme_page_pa(src_p[0]) + s_off,
6916 vaddr,
6917 __sme_page_pa(dst_p[0]) + d_off,
6918 dst_vaddr,
6919 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006920
David Rientjes82e8da12019-03-25 11:47:31 -07006921 sev_unpin_memory(kvm, src_p, n);
6922 sev_unpin_memory(kvm, dst_p, n);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006923
6924 if (ret)
6925 goto err;
6926
6927 next_vaddr = vaddr + len;
6928 dst_vaddr = dst_vaddr + len;
6929 size -= len;
6930 }
6931err:
6932 return ret;
6933}
6934
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006935static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6936{
Sean Christopherson81811c12018-03-20 12:17:21 -07006937 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006938 struct sev_data_launch_secret *data;
6939 struct kvm_sev_launch_secret params;
6940 struct page **pages;
6941 void *blob, *hdr;
6942 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006943 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006944
6945 if (!sev_guest(kvm))
6946 return -ENOTTY;
6947
6948 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6949 return -EFAULT;
6950
6951 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6952 if (!pages)
6953 return -ENOMEM;
6954
6955 /*
6956 * The secret must be copied into contiguous memory region, lets verify
6957 * that userspace memory pages are contiguous before we issue command.
6958 */
6959 if (get_num_contig_pages(0, pages, n) != n) {
6960 ret = -EINVAL;
6961 goto e_unpin_memory;
6962 }
6963
6964 ret = -ENOMEM;
6965 data = kzalloc(sizeof(*data), GFP_KERNEL);
6966 if (!data)
6967 goto e_unpin_memory;
6968
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006969 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6970 data->guest_address = __sme_page_pa(pages[0]) + offset;
6971 data->guest_len = params.guest_len;
6972
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006973 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6974 if (IS_ERR(blob)) {
6975 ret = PTR_ERR(blob);
6976 goto e_free;
6977 }
6978
6979 data->trans_address = __psp_pa(blob);
6980 data->trans_len = params.trans_len;
6981
6982 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6983 if (IS_ERR(hdr)) {
6984 ret = PTR_ERR(hdr);
6985 goto e_free_blob;
6986 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006987 data->hdr_address = __psp_pa(hdr);
6988 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006989
6990 data->handle = sev->handle;
6991 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6992
6993 kfree(hdr);
6994
6995e_free_blob:
6996 kfree(blob);
6997e_free:
6998 kfree(data);
6999e_unpin_memory:
7000 sev_unpin_memory(kvm, pages, n);
7001 return ret;
7002}
7003
Brijesh Singh1654efc2017-12-04 10:57:34 -06007004static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
7005{
7006 struct kvm_sev_cmd sev_cmd;
7007 int r;
7008
7009 if (!svm_sev_enabled())
7010 return -ENOTTY;
7011
7012 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
7013 return -EFAULT;
7014
7015 mutex_lock(&kvm->lock);
7016
7017 switch (sev_cmd.id) {
7018 case KVM_SEV_INIT:
7019 r = sev_guest_init(kvm, &sev_cmd);
7020 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06007021 case KVM_SEV_LAUNCH_START:
7022 r = sev_launch_start(kvm, &sev_cmd);
7023 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06007024 case KVM_SEV_LAUNCH_UPDATE_DATA:
7025 r = sev_launch_update_data(kvm, &sev_cmd);
7026 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06007027 case KVM_SEV_LAUNCH_MEASURE:
7028 r = sev_launch_measure(kvm, &sev_cmd);
7029 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06007030 case KVM_SEV_LAUNCH_FINISH:
7031 r = sev_launch_finish(kvm, &sev_cmd);
7032 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06007033 case KVM_SEV_GUEST_STATUS:
7034 r = sev_guest_status(kvm, &sev_cmd);
7035 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06007036 case KVM_SEV_DBG_DECRYPT:
7037 r = sev_dbg_crypt(kvm, &sev_cmd, true);
7038 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06007039 case KVM_SEV_DBG_ENCRYPT:
7040 r = sev_dbg_crypt(kvm, &sev_cmd, false);
7041 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06007042 case KVM_SEV_LAUNCH_SECRET:
7043 r = sev_launch_secret(kvm, &sev_cmd);
7044 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06007045 default:
7046 r = -EINVAL;
7047 goto out;
7048 }
7049
7050 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
7051 r = -EFAULT;
7052
7053out:
7054 mutex_unlock(&kvm->lock);
7055 return r;
7056}
7057
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007058static int svm_register_enc_region(struct kvm *kvm,
7059 struct kvm_enc_region *range)
7060{
Sean Christopherson81811c12018-03-20 12:17:21 -07007061 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007062 struct enc_region *region;
7063 int ret = 0;
7064
7065 if (!sev_guest(kvm))
7066 return -ENOTTY;
7067
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007068 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7069 return -EINVAL;
7070
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007071 region = kzalloc(sizeof(*region), GFP_KERNEL);
7072 if (!region)
7073 return -ENOMEM;
7074
7075 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7076 if (!region->pages) {
7077 ret = -ENOMEM;
7078 goto e_free;
7079 }
7080
7081 /*
7082 * The guest may change the memory encryption attribute from C=0 -> C=1
7083 * or vice versa for this memory range. Lets make sure caches are
7084 * flushed to ensure that guest data gets written into memory with
7085 * correct C-bit.
7086 */
7087 sev_clflush_pages(region->pages, region->npages);
7088
7089 region->uaddr = range->addr;
7090 region->size = range->size;
7091
7092 mutex_lock(&kvm->lock);
7093 list_add_tail(&region->list, &sev->regions_list);
7094 mutex_unlock(&kvm->lock);
7095
7096 return ret;
7097
7098e_free:
7099 kfree(region);
7100 return ret;
7101}
7102
7103static struct enc_region *
7104find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7105{
Sean Christopherson81811c12018-03-20 12:17:21 -07007106 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007107 struct list_head *head = &sev->regions_list;
7108 struct enc_region *i;
7109
7110 list_for_each_entry(i, head, list) {
7111 if (i->uaddr == range->addr &&
7112 i->size == range->size)
7113 return i;
7114 }
7115
7116 return NULL;
7117}
7118
7119
7120static int svm_unregister_enc_region(struct kvm *kvm,
7121 struct kvm_enc_region *range)
7122{
7123 struct enc_region *region;
7124 int ret;
7125
7126 mutex_lock(&kvm->lock);
7127
7128 if (!sev_guest(kvm)) {
7129 ret = -ENOTTY;
7130 goto failed;
7131 }
7132
7133 region = find_enc_region(kvm, range);
7134 if (!region) {
7135 ret = -EINVAL;
7136 goto failed;
7137 }
7138
7139 __unregister_enc_region_locked(kvm, region);
7140
7141 mutex_unlock(&kvm->lock);
7142 return 0;
7143
7144failed:
7145 mutex_unlock(&kvm->lock);
7146 return ret;
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,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007248
7249 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007250
7251 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007252
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007253 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz76c84762018-11-06 12:14:25 +02007254 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007255
7256 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007257
7258 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007259 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007260
Sean Christophersond264ee02018-08-27 15:21:12 -07007261 .request_immediate_exit = __kvm_request_immediate_exit,
7262
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007263 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007264
7265 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007266 .deliver_posted_interrupt = svm_deliver_avic_intr,
Wanpeng Li2bc73d92019-08-05 10:03:19 +08007267 .dy_apicv_has_pending_interrupt = svm_dy_apicv_has_pending_interrupt,
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,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007279};
7280
7281static int __init svm_init(void)
7282{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007283 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007284 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007285}
7286
7287static void __exit svm_exit(void)
7288{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007289 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007290}
7291
7292module_init(svm_init)
7293module_exit(svm_exit)