blob: f13a3a24d3609e03b2bd849c0058ff41a670f2ca [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
Mathias Krause09941fb2012-08-30 01:30:20 +0200678static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200680#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681#define MSRS_RANGE_SIZE 2048
682#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
683
Joerg Roedel455716f2010-03-01 15:34:35 +0100684static u32 svm_msrpm_offset(u32 msr)
685{
686 u32 offset;
687 int i;
688
689 for (i = 0; i < NUM_MSR_MAPS; i++) {
690 if (msr < msrpm_ranges[i] ||
691 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
692 continue;
693
694 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
695 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
696
697 /* Now we have the u8 offset - but need the u32 offset */
698 return offset / 4;
699 }
700
701 /* MSR not in any range */
702 return MSR_INVALID;
703}
704
Avi Kivity6aa8b732006-12-10 02:21:36 -0800705#define MAX_INST_SIZE 15
706
Avi Kivity6aa8b732006-12-10 02:21:36 -0800707static inline void clgi(void)
708{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100709 asm volatile (__ex("clgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710}
711
712static inline void stgi(void)
713{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100714 asm volatile (__ex("stgi"));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715}
716
717static inline void invlpga(unsigned long addr, u32 asid)
718{
Uros Bizjakac5ffda22018-11-26 17:00:08 +0100719 asm volatile (__ex("invlpga %1, %0") : : "c"(asid), "a"(addr));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720}
721
Yu Zhang855feb62017-08-24 20:27:55 +0800722static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200723{
724#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800725 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200726#else
727 return PT32E_ROOT_LEVEL;
728#endif
729}
730
Avi Kivity6aa8b732006-12-10 02:21:36 -0800731static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
732{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000733 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100734 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600735 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736
Alexander Graf9962d032008-11-25 20:17:02 +0100737 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100738 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739}
740
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741static int is_external_interrupt(u32 info)
742{
743 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
744 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
745}
746
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200747static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400748{
749 struct vcpu_svm *svm = to_svm(vcpu);
750 u32 ret = 0;
751
752 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200753 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
754 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400755}
756
757static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
758{
759 struct vcpu_svm *svm = to_svm(vcpu);
760
761 if (mask == 0)
762 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
763 else
764 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
765
766}
767
Avi Kivity6aa8b732006-12-10 02:21:36 -0800768static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
769{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400770 struct vcpu_svm *svm = to_svm(vcpu);
771
Bandan Dasf1047652015-06-11 02:05:33 -0400772 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200773 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200774 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400775 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200776
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400777 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700778 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300779 EMULATE_DONE)
780 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781 return;
782 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300783 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
784 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
785 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300787 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400788 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789}
790
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700791static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100792{
793 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700794 unsigned nr = vcpu->arch.exception.nr;
795 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700796 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700797 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100798
Joerg Roedele0231712010-02-24 18:59:10 +0100799 /*
800 * If we are within a nested VM we'd better #VMEXIT and let the guest
801 * handle the exception
802 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200803 if (!reinject &&
804 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100805 return;
806
Jim Mattsonda998b42018-10-16 14:29:22 -0700807 kvm_deliver_exception_payload(&svm->vcpu);
808
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200809 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100810 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
811
812 /*
813 * For guest debugging where we have to reinject #BP if some
814 * INT3 is guest-owned:
815 * Emulate nRIP by moving RIP forward. Will fail if injection
816 * raises a fault that is not intercepted. Still better than
817 * failing in all cases.
818 */
819 skip_emulated_instruction(&svm->vcpu);
820 rip = kvm_rip_read(&svm->vcpu);
821 svm->int3_rip = rip + svm->vmcb->save.cs.base;
822 svm->int3_injected = rip - old_rip;
823 }
824
Jan Kiszka116a4752010-02-23 17:47:54 +0100825 svm->vmcb->control.event_inj = nr
826 | SVM_EVTINJ_VALID
827 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
828 | SVM_EVTINJ_TYPE_EXEPT;
829 svm->vmcb->control.event_inj_err = error_code;
830}
831
Joerg Roedel67ec6602010-05-17 14:43:35 +0200832static void svm_init_erratum_383(void)
833{
834 u32 low, high;
835 int err;
836 u64 val;
837
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100838 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200839 return;
840
841 /* Use _safe variants to not break nested virtualization */
842 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
843 if (err)
844 return;
845
846 val |= (1ULL << 47);
847
848 low = lower_32_bits(val);
849 high = upper_32_bits(val);
850
851 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
852
853 erratum_383_found = true;
854}
855
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500856static void svm_init_osvw(struct kvm_vcpu *vcpu)
857{
858 /*
859 * Guests should see errata 400 and 415 as fixed (assuming that
860 * HLT and IO instructions are intercepted).
861 */
862 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
863 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
864
865 /*
866 * By increasing VCPU's osvw.length to 3 we are telling the guest that
867 * all osvw.status bits inside that length, including bit 0 (which is
868 * reserved for erratum 298), are valid. However, if host processor's
869 * osvw_len is 0 then osvw_status[0] carries no information. We need to
870 * be conservative here and therefore we tell the guest that erratum 298
871 * is present (because we really don't know).
872 */
873 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
874 vcpu->arch.osvw.status |= 1;
875}
876
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877static int has_svm(void)
878{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200879 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800880
Eduardo Habkost63d11422008-11-17 19:03:20 -0200881 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800882 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883 return 0;
884 }
885
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 return 1;
887}
888
Radim Krčmář13a34e02014-08-28 15:13:03 +0200889static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100891 /* Make sure we clean up behind us */
892 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
893 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
894
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200895 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100896
897 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898}
899
Radim Krčmář13a34e02014-08-28 15:13:03 +0200900static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901{
902
Tejun Heo0fe1e002009-10-29 22:34:14 +0900903 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 struct desc_struct *gdt;
906 int me = raw_smp_processor_id();
907
Alexander Graf10474ae2009-09-15 11:37:46 +0200908 rdmsrl(MSR_EFER, efer);
909 if (efer & EFER_SVME)
910 return -EBUSY;
911
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200913 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200914 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900916 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900917 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200918 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200919 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 }
921
Tejun Heo0fe1e002009-10-29 22:34:14 +0900922 sd->asid_generation = 1;
923 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
924 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600925 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926
Thomas Garnier45fc8752017-03-14 10:05:08 -0700927 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900928 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929
Alexander Graf9962d032008-11-25 20:17:02 +0100930 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931
Linus Torvaldsd0316552009-12-14 09:58:24 -0800932 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200933
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100934 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
935 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500936 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100937 }
938
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500939
940 /*
941 * Get OSVW bits.
942 *
943 * Note that it is possible to have a system with mixed processor
944 * revisions and therefore different OSVW bits. If bits are not the same
945 * on different processors then choose the worst case (i.e. if erratum
946 * is present on one processor and not on another then assume that the
947 * erratum is present everywhere).
948 */
949 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
950 uint64_t len, status = 0;
951 int err;
952
953 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
954 if (!err)
955 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
956 &err);
957
958 if (err)
959 osvw_status = osvw_len = 0;
960 else {
961 if (len < osvw_len)
962 osvw_len = len;
963 osvw_status |= status;
964 osvw_status &= (1ULL << osvw_len) - 1;
965 }
966 } else
967 osvw_status = osvw_len = 0;
968
Joerg Roedel67ec6602010-05-17 14:43:35 +0200969 svm_init_erratum_383();
970
Joerg Roedel1018faa2012-02-29 14:57:32 +0100971 amd_pmu_enable_virt();
972
Alexander Graf10474ae2009-09-15 11:37:46 +0200973 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974}
975
Joerg Roedel0da1db752008-07-02 16:02:11 +0200976static void svm_cpu_uninit(int cpu)
977{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900978 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200979
Tejun Heo0fe1e002009-10-29 22:34:14 +0900980 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200981 return;
982
983 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600984 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900985 __free_page(sd->save_area);
986 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200987}
988
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989static int svm_cpu_init(int cpu)
990{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900991 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 int r;
993
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
995 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +0900997 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600999 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001000 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 goto err_1;
1002
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001003 if (svm_sev_enabled()) {
1004 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001005 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1006 sizeof(void *),
1007 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001008 if (!sd->sev_vmcbs)
1009 goto err_1;
1010 }
1011
Tejun Heo0fe1e002009-10-29 22:34:14 +09001012 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013
1014 return 0;
1015
1016err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001017 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018 return r;
1019
1020}
1021
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001022static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
1024 int i;
1025
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001026 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1027 if (direct_access_msrs[i].index == index)
1028 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001030 return false;
1031}
1032
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001033static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1034{
1035 u8 bit_write;
1036 unsigned long tmp;
1037 u32 offset;
1038 u32 *msrpm;
1039
1040 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1041 to_svm(vcpu)->msrpm;
1042
1043 offset = svm_msrpm_offset(msr);
1044 bit_write = 2 * (msr & 0x0f) + 1;
1045 tmp = msrpm[offset];
1046
1047 BUG_ON(offset == MSR_INVALID);
1048
1049 return !!test_bit(bit_write, &tmp);
1050}
1051
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052static void set_msr_interception(u32 *msrpm, unsigned msr,
1053 int read, int write)
1054{
Joerg Roedel455716f2010-03-01 15:34:35 +01001055 u8 bit_read, bit_write;
1056 unsigned long tmp;
1057 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001059 /*
1060 * If this warning triggers extend the direct_access_msrs list at the
1061 * beginning of the file
1062 */
1063 WARN_ON(!valid_msr_intercept(msr));
1064
Joerg Roedel455716f2010-03-01 15:34:35 +01001065 offset = svm_msrpm_offset(msr);
1066 bit_read = 2 * (msr & 0x0f);
1067 bit_write = 2 * (msr & 0x0f) + 1;
1068 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069
Joerg Roedel455716f2010-03-01 15:34:35 +01001070 BUG_ON(offset == MSR_INVALID);
1071
1072 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1073 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1074
1075 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076}
1077
Joerg Roedelf65c2292008-02-13 18:58:46 +01001078static void svm_vcpu_init_msrpm(u32 *msrpm)
1079{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001080 int i;
1081
Joerg Roedelf65c2292008-02-13 18:58:46 +01001082 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1083
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001084 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1085 if (!direct_access_msrs[i].always)
1086 continue;
1087
1088 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1089 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001090}
1091
Joerg Roedel323c3d82010-03-01 15:34:37 +01001092static void add_msr_offset(u32 offset)
1093{
1094 int i;
1095
1096 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1097
1098 /* Offset already in list? */
1099 if (msrpm_offsets[i] == offset)
1100 return;
1101
1102 /* Slot used by another offset? */
1103 if (msrpm_offsets[i] != MSR_INVALID)
1104 continue;
1105
1106 /* Add offset to list */
1107 msrpm_offsets[i] = offset;
1108
1109 return;
1110 }
1111
1112 /*
1113 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1114 * increase MSRPM_OFFSETS in this case.
1115 */
1116 BUG();
1117}
1118
1119static void init_msrpm_offsets(void)
1120{
1121 int i;
1122
1123 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1124
1125 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1126 u32 offset;
1127
1128 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1129 BUG_ON(offset == MSR_INVALID);
1130
1131 add_msr_offset(offset);
1132 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133}
1134
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001135static void svm_enable_lbrv(struct vcpu_svm *svm)
1136{
1137 u32 *msrpm = svm->msrpm;
1138
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001139 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001140 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1141 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1142 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1143 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1144}
1145
1146static void svm_disable_lbrv(struct vcpu_svm *svm)
1147{
1148 u32 *msrpm = svm->msrpm;
1149
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001150 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001151 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1152 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1153 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1154 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1155}
1156
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001157static void disable_nmi_singlestep(struct vcpu_svm *svm)
1158{
1159 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001160
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001161 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1162 /* Clear our flags if they were not set by the guest */
1163 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1164 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1165 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1166 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1167 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001168}
1169
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001170/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001171 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001172 * when handling AMD IOMMU GALOG notification to schedule in
1173 * a particular vCPU.
1174 */
1175#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001176static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001177static u32 next_vm_id = 0;
1178static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001179static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001180
1181/* Note:
1182 * This function is called from IOMMU driver to notify
1183 * SVM to schedule in a particular vCPU of a particular VM.
1184 */
1185static int avic_ga_log_notifier(u32 ga_tag)
1186{
1187 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001188 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001189 struct kvm_vcpu *vcpu = NULL;
1190 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1191 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1192
1193 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1194
1195 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001196 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1197 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001198 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001199 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001200 break;
1201 }
1202 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1203
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001204 /* Note:
1205 * At this point, the IOMMU should have already set the pending
1206 * bit in the vAPIC backing page. So, we just need to schedule
1207 * in the vcpu.
1208 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001209 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001210 kvm_vcpu_wake_up(vcpu);
1211
1212 return 0;
1213}
1214
Brijesh Singhe9df0942017-12-04 10:57:33 -06001215static __init int sev_hardware_setup(void)
1216{
1217 struct sev_user_data_status *status;
1218 int rc;
1219
1220 /* Maximum number of encrypted guests supported simultaneously */
1221 max_sev_asid = cpuid_ecx(0x8000001F);
1222
1223 if (!max_sev_asid)
1224 return 1;
1225
Brijesh Singh1654efc2017-12-04 10:57:34 -06001226 /* Minimum ASID value that should be used for SEV guest */
1227 min_sev_asid = cpuid_edx(0x8000001F);
1228
1229 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001230 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001231 if (!sev_asid_bitmap)
1232 return 1;
1233
Brijesh Singhe9df0942017-12-04 10:57:33 -06001234 status = kmalloc(sizeof(*status), GFP_KERNEL);
1235 if (!status)
1236 return 1;
1237
1238 /*
1239 * Check SEV platform status.
1240 *
1241 * PLATFORM_STATUS can be called in any state, if we failed to query
1242 * the PLATFORM status then either PSP firmware does not support SEV
1243 * feature or SEV firmware is dead.
1244 */
1245 rc = sev_platform_status(status, NULL);
1246 if (rc)
1247 goto err;
1248
1249 pr_info("SEV supported\n");
1250
1251err:
1252 kfree(status);
1253 return rc;
1254}
1255
Babu Moger8566ac82018-03-16 16:37:26 -04001256static void grow_ple_window(struct kvm_vcpu *vcpu)
1257{
1258 struct vcpu_svm *svm = to_svm(vcpu);
1259 struct vmcb_control_area *control = &svm->vmcb->control;
1260 int old = control->pause_filter_count;
1261
1262 control->pause_filter_count = __grow_ple_window(old,
1263 pause_filter_count,
1264 pause_filter_count_grow,
1265 pause_filter_count_max);
1266
1267 if (control->pause_filter_count != old)
1268 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1269
1270 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1271 control->pause_filter_count, old);
1272}
1273
1274static void shrink_ple_window(struct kvm_vcpu *vcpu)
1275{
1276 struct vcpu_svm *svm = to_svm(vcpu);
1277 struct vmcb_control_area *control = &svm->vmcb->control;
1278 int old = control->pause_filter_count;
1279
1280 control->pause_filter_count =
1281 __shrink_ple_window(old,
1282 pause_filter_count,
1283 pause_filter_count_shrink,
1284 pause_filter_count);
1285 if (control->pause_filter_count != old)
1286 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1287
1288 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1289 control->pause_filter_count, old);
1290}
1291
Avi Kivity6aa8b732006-12-10 02:21:36 -08001292static __init int svm_hardware_setup(void)
1293{
1294 int cpu;
1295 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001296 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 int r;
1298
Avi Kivity6aa8b732006-12-10 02:21:36 -08001299 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1300
1301 if (!iopm_pages)
1302 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001303
1304 iopm_va = page_address(iopm_pages);
1305 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001306 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1307
Joerg Roedel323c3d82010-03-01 15:34:37 +01001308 init_msrpm_offsets();
1309
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001310 if (boot_cpu_has(X86_FEATURE_NX))
1311 kvm_enable_efer_bits(EFER_NX);
1312
Alexander Graf1b2fd702009-02-02 16:23:51 +01001313 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1314 kvm_enable_efer_bits(EFER_FFXSR);
1315
Joerg Roedel92a1f122011-03-25 09:44:51 +01001316 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001317 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001318 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1319 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001320 }
1321
Babu Moger8566ac82018-03-16 16:37:26 -04001322 /* Check for pause filtering support */
1323 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1324 pause_filter_count = 0;
1325 pause_filter_thresh = 0;
1326 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1327 pause_filter_thresh = 0;
1328 }
1329
Alexander Graf236de052008-11-25 20:17:10 +01001330 if (nested) {
1331 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001332 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001333 }
1334
Brijesh Singhe9df0942017-12-04 10:57:33 -06001335 if (sev) {
1336 if (boot_cpu_has(X86_FEATURE_SEV) &&
1337 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1338 r = sev_hardware_setup();
1339 if (r)
1340 sev = false;
1341 } else {
1342 sev = false;
1343 }
1344 }
1345
Zachary Amsden3230bb42009-09-29 11:38:37 -10001346 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347 r = svm_cpu_init(cpu);
1348 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001349 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001351
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001352 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001353 npt_enabled = false;
1354
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001355 if (npt_enabled && !npt) {
1356 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1357 npt_enabled = false;
1358 }
1359
Joerg Roedel18552672008-02-07 13:47:41 +01001360 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001361 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001362 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001363 } else
1364 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001365
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001366 if (avic) {
1367 if (!npt_enabled ||
1368 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001369 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001370 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001371 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001372 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001373
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001374 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1375 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001376 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001377
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001378 if (vls) {
1379 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001380 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001381 !IS_ENABLED(CONFIG_X86_64)) {
1382 vls = false;
1383 } else {
1384 pr_info("Virtual VMLOAD VMSAVE supported\n");
1385 }
1386 }
1387
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001388 if (vgif) {
1389 if (!boot_cpu_has(X86_FEATURE_VGIF))
1390 vgif = false;
1391 else
1392 pr_info("Virtual GIF supported\n");
1393 }
1394
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395 return 0;
1396
Joerg Roedelf65c2292008-02-13 18:58:46 +01001397err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1399 iopm_base = 0;
1400 return r;
1401}
1402
1403static __exit void svm_hardware_unsetup(void)
1404{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001405 int cpu;
1406
Brijesh Singh1654efc2017-12-04 10:57:34 -06001407 if (svm_sev_enabled())
Andy Shevchenkoa101c9d632018-08-30 14:49:59 +03001408 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001409
Zachary Amsden3230bb42009-09-29 11:38:37 -10001410 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001411 svm_cpu_uninit(cpu);
1412
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001414 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415}
1416
1417static void init_seg(struct vmcb_seg *seg)
1418{
1419 seg->selector = 0;
1420 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001421 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422 seg->limit = 0xffff;
1423 seg->base = 0;
1424}
1425
1426static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1427{
1428 seg->selector = 0;
1429 seg->attrib = SVM_SELECTOR_P_MASK | type;
1430 seg->limit = 0xffff;
1431 seg->base = 0;
1432}
1433
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001434static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1435{
1436 struct vcpu_svm *svm = to_svm(vcpu);
1437
1438 if (is_guest_mode(vcpu))
1439 return svm->nested.hsave->control.tsc_offset;
1440
1441 return vcpu->arch.tsc_offset;
1442}
1443
Leonid Shatz326e7422018-11-06 12:14:25 +02001444static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001445{
1446 struct vcpu_svm *svm = to_svm(vcpu);
1447 u64 g_tsc_offset = 0;
1448
Joerg Roedel20307532010-11-29 17:51:48 +01001449 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001450 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001451 g_tsc_offset = svm->vmcb->control.tsc_offset -
1452 svm->nested.hsave->control.tsc_offset;
1453 svm->nested.hsave->control.tsc_offset = offset;
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001454 }
1455
1456 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1457 svm->vmcb->control.tsc_offset - g_tsc_offset,
1458 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001459
1460 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001461
1462 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz326e7422018-11-06 12:14:25 +02001463 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001464}
1465
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001466static void avic_init_vmcb(struct vcpu_svm *svm)
1467{
1468 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001469 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001470 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001471 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1472 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001473
1474 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1475 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1476 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1477 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1478 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001479}
1480
Paolo Bonzini56908912015-10-19 11:30:19 +02001481static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001482{
Joerg Roedele6101a92008-02-13 18:58:45 +01001483 struct vmcb_control_area *control = &svm->vmcb->control;
1484 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001486 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001487
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001488 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1489 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1490 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1491 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1492 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1493 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001494 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1495 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496
Paolo Bonzini5315c712014-03-03 13:08:29 +01001497 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498
Joerg Roedel18c918c2010-11-30 18:03:59 +01001499 set_exception_intercept(svm, PF_VECTOR);
1500 set_exception_intercept(svm, UD_VECTOR);
1501 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001502 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001503 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001504 /*
1505 * Guest access to VMware backdoor ports could legitimately
1506 * trigger #GP because of TSS I/O permission bitmap.
1507 * We intercept those #GP and allow access to them anyway
1508 * as VMware does.
1509 */
1510 if (enable_vmware_backdoor)
1511 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001513 set_intercept(svm, INTERCEPT_INTR);
1514 set_intercept(svm, INTERCEPT_NMI);
1515 set_intercept(svm, INTERCEPT_SMI);
1516 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001517 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001518 set_intercept(svm, INTERCEPT_CPUID);
1519 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001520 set_intercept(svm, INTERCEPT_INVLPG);
1521 set_intercept(svm, INTERCEPT_INVLPGA);
1522 set_intercept(svm, INTERCEPT_IOIO_PROT);
1523 set_intercept(svm, INTERCEPT_MSR_PROT);
1524 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1525 set_intercept(svm, INTERCEPT_SHUTDOWN);
1526 set_intercept(svm, INTERCEPT_VMRUN);
1527 set_intercept(svm, INTERCEPT_VMMCALL);
1528 set_intercept(svm, INTERCEPT_VMLOAD);
1529 set_intercept(svm, INTERCEPT_VMSAVE);
1530 set_intercept(svm, INTERCEPT_STGI);
1531 set_intercept(svm, INTERCEPT_CLGI);
1532 set_intercept(svm, INTERCEPT_SKINIT);
1533 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001534 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001535 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001536
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001537 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001538 set_intercept(svm, INTERCEPT_MONITOR);
1539 set_intercept(svm, INTERCEPT_MWAIT);
1540 }
1541
Wanpeng Licaa057a2018-03-12 04:53:03 -07001542 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1543 set_intercept(svm, INTERCEPT_HLT);
1544
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001545 control->iopm_base_pa = __sme_set(iopm_base);
1546 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547 control->int_ctl = V_INTR_MASKING_MASK;
1548
1549 init_seg(&save->es);
1550 init_seg(&save->ss);
1551 init_seg(&save->ds);
1552 init_seg(&save->fs);
1553 init_seg(&save->gs);
1554
1555 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001556 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557 /* Executable/Readable Code Segment */
1558 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1559 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1560 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561
1562 save->gdtr.limit = 0xffff;
1563 save->idtr.limit = 0xffff;
1564
1565 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1566 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1567
Paolo Bonzini56908912015-10-19 11:30:19 +02001568 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001569 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001570 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001572 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573
Joerg Roedele0231712010-02-24 18:59:10 +01001574 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001575 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001576 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001578 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001579 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001580
Rusty Russell66aee912007-07-17 23:34:16 +10001581 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001583
1584 if (npt_enabled) {
1585 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001586 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001587 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001588 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001589 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1590 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001591 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001592 save->cr3 = 0;
1593 save->cr4 = 0;
1594 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001595 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001596
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001597 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001598 svm->vcpu.arch.hflags = 0;
1599
Babu Moger8566ac82018-03-16 16:37:26 -04001600 if (pause_filter_count) {
1601 control->pause_filter_count = pause_filter_count;
1602 if (pause_filter_thresh)
1603 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001604 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001605 } else {
1606 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001607 }
1608
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001609 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001610 avic_init_vmcb(svm);
1611
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001612 /*
1613 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1614 * in VMCB and clear intercepts to avoid #VMEXIT.
1615 */
1616 if (vls) {
1617 clr_intercept(svm, INTERCEPT_VMLOAD);
1618 clr_intercept(svm, INTERCEPT_VMSAVE);
1619 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1620 }
1621
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001622 if (vgif) {
1623 clr_intercept(svm, INTERCEPT_STGI);
1624 clr_intercept(svm, INTERCEPT_CLGI);
1625 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1626 }
1627
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001628 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001629 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001630 clr_exception_intercept(svm, UD_VECTOR);
1631 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001632
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001633 mark_all_dirty(svm->vmcb);
1634
Joerg Roedel2af91942009-08-07 11:49:28 +02001635 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001636
1637}
1638
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001639static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1640 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001641{
1642 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001643 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001644
1645 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1646 return NULL;
1647
Sean Christopherson81811c12018-03-20 12:17:21 -07001648 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001649
1650 return &avic_physical_id_table[index];
1651}
1652
1653/**
1654 * Note:
1655 * AVIC hardware walks the nested page table to check permissions,
1656 * but does not use the SPA address specified in the leaf page
1657 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1658 * field of the VMCB. Therefore, we set up the
1659 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1660 */
1661static int avic_init_access_page(struct kvm_vcpu *vcpu)
1662{
1663 struct kvm *kvm = vcpu->kvm;
Wei Wang30510382018-11-12 12:23:14 +00001664 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001665
Wei Wang30510382018-11-12 12:23:14 +00001666 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001667 if (kvm->arch.apic_access_page_done)
Wei Wang30510382018-11-12 12:23:14 +00001668 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001669
Wei Wang30510382018-11-12 12:23:14 +00001670 ret = __x86_set_memory_region(kvm,
1671 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1672 APIC_DEFAULT_PHYS_BASE,
1673 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001674 if (ret)
Wei Wang30510382018-11-12 12:23:14 +00001675 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001676
1677 kvm->arch.apic_access_page_done = true;
Wei Wang30510382018-11-12 12:23:14 +00001678out:
1679 mutex_unlock(&kvm->slots_lock);
1680 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001681}
1682
1683static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1684{
1685 int ret;
1686 u64 *entry, new_entry;
1687 int id = vcpu->vcpu_id;
1688 struct vcpu_svm *svm = to_svm(vcpu);
1689
1690 ret = avic_init_access_page(vcpu);
1691 if (ret)
1692 return ret;
1693
1694 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1695 return -EINVAL;
1696
1697 if (!svm->vcpu.arch.apic->regs)
1698 return -EINVAL;
1699
1700 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1701
1702 /* Setting AVIC backing page address in the phy APIC ID table */
1703 entry = avic_get_physical_id_entry(vcpu, id);
1704 if (!entry)
1705 return -EINVAL;
1706
1707 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001708 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1709 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1710 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001711 WRITE_ONCE(*entry, new_entry);
1712
1713 svm->avic_physical_id_cache = entry;
1714
1715 return 0;
1716}
1717
Brijesh Singh1654efc2017-12-04 10:57:34 -06001718static void __sev_asid_free(int asid)
1719{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001720 struct svm_cpu_data *sd;
1721 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001722
1723 pos = asid - 1;
1724 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001725
1726 for_each_possible_cpu(cpu) {
1727 sd = per_cpu(svm_data, cpu);
1728 sd->sev_vmcbs[pos] = NULL;
1729 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001730}
1731
1732static void sev_asid_free(struct kvm *kvm)
1733{
Sean Christopherson81811c12018-03-20 12:17:21 -07001734 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001735
1736 __sev_asid_free(sev->asid);
1737}
1738
Brijesh Singh59414c92017-12-04 10:57:35 -06001739static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1740{
1741 struct sev_data_decommission *decommission;
1742 struct sev_data_deactivate *data;
1743
1744 if (!handle)
1745 return;
1746
1747 data = kzalloc(sizeof(*data), GFP_KERNEL);
1748 if (!data)
1749 return;
1750
1751 /* deactivate handle */
1752 data->handle = handle;
1753 sev_guest_deactivate(data, NULL);
1754
1755 wbinvd_on_all_cpus();
1756 sev_guest_df_flush(NULL);
1757 kfree(data);
1758
1759 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1760 if (!decommission)
1761 return;
1762
1763 /* decommission handle */
1764 decommission->handle = handle;
1765 sev_guest_decommission(decommission, NULL);
1766
1767 kfree(decommission);
1768}
1769
Brijesh Singh89c50582017-12-04 10:57:35 -06001770static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1771 unsigned long ulen, unsigned long *n,
1772 int write)
1773{
Sean Christopherson81811c12018-03-20 12:17:21 -07001774 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001775 unsigned long npages, npinned, size;
1776 unsigned long locked, lock_limit;
1777 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001778 unsigned long first, last;
1779
1780 if (ulen == 0 || uaddr + ulen < uaddr)
1781 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001782
1783 /* Calculate number of pages. */
1784 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1785 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1786 npages = (last - first + 1);
1787
1788 locked = sev->pages_locked + npages;
1789 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1790 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1791 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1792 return NULL;
1793 }
1794
1795 /* Avoid using vmalloc for smaller buffers. */
1796 size = npages * sizeof(struct page *);
1797 if (size > PAGE_SIZE)
1798 pages = vmalloc(size);
1799 else
1800 pages = kmalloc(size, GFP_KERNEL);
1801
1802 if (!pages)
1803 return NULL;
1804
1805 /* Pin the user virtual address. */
1806 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1807 if (npinned != npages) {
1808 pr_err("SEV: Failure locking %lu pages.\n", npages);
1809 goto err;
1810 }
1811
1812 *n = npages;
1813 sev->pages_locked = locked;
1814
1815 return pages;
1816
1817err:
1818 if (npinned > 0)
1819 release_pages(pages, npinned);
1820
1821 kvfree(pages);
1822 return NULL;
1823}
1824
1825static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1826 unsigned long npages)
1827{
Sean Christopherson81811c12018-03-20 12:17:21 -07001828 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001829
1830 release_pages(pages, npages);
1831 kvfree(pages);
1832 sev->pages_locked -= npages;
1833}
1834
1835static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1836{
1837 uint8_t *page_virtual;
1838 unsigned long i;
1839
1840 if (npages == 0 || pages == NULL)
1841 return;
1842
1843 for (i = 0; i < npages; i++) {
1844 page_virtual = kmap_atomic(pages[i]);
1845 clflush_cache_range(page_virtual, PAGE_SIZE);
1846 kunmap_atomic(page_virtual);
1847 }
1848}
1849
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001850static void __unregister_enc_region_locked(struct kvm *kvm,
1851 struct enc_region *region)
1852{
1853 /*
1854 * The guest may change the memory encryption attribute from C=0 -> C=1
1855 * or vice versa for this memory range. Lets make sure caches are
1856 * flushed to ensure that guest data gets written into memory with
1857 * correct C-bit.
1858 */
1859 sev_clflush_pages(region->pages, region->npages);
1860
1861 sev_unpin_memory(kvm, region->pages, region->npages);
1862 list_del(&region->list);
1863 kfree(region);
1864}
1865
Sean Christopherson434a1e92018-03-20 12:17:18 -07001866static struct kvm *svm_vm_alloc(void)
1867{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001868 struct kvm_svm *kvm_svm = vzalloc(sizeof(struct kvm_svm));
Sean Christopherson81811c12018-03-20 12:17:21 -07001869 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001870}
1871
1872static void svm_vm_free(struct kvm *kvm)
1873{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001874 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001875}
1876
Brijesh Singh1654efc2017-12-04 10:57:34 -06001877static void sev_vm_destroy(struct kvm *kvm)
1878{
Sean Christopherson81811c12018-03-20 12:17:21 -07001879 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001880 struct list_head *head = &sev->regions_list;
1881 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001882
Brijesh Singh1654efc2017-12-04 10:57:34 -06001883 if (!sev_guest(kvm))
1884 return;
1885
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001886 mutex_lock(&kvm->lock);
1887
1888 /*
1889 * if userspace was terminated before unregistering the memory regions
1890 * then lets unpin all the registered memory.
1891 */
1892 if (!list_empty(head)) {
1893 list_for_each_safe(pos, q, head) {
1894 __unregister_enc_region_locked(kvm,
1895 list_entry(pos, struct enc_region, list));
1896 }
1897 }
1898
1899 mutex_unlock(&kvm->lock);
1900
Brijesh Singh59414c92017-12-04 10:57:35 -06001901 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001902 sev_asid_free(kvm);
1903}
1904
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001905static void avic_vm_destroy(struct kvm *kvm)
1906{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001907 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001908 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001909
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001910 if (!avic)
1911 return;
1912
Sean Christopherson81811c12018-03-20 12:17:21 -07001913 if (kvm_svm->avic_logical_id_table_page)
1914 __free_page(kvm_svm->avic_logical_id_table_page);
1915 if (kvm_svm->avic_physical_id_table_page)
1916 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001917
1918 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001919 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001920 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001921}
1922
Brijesh Singh1654efc2017-12-04 10:57:34 -06001923static void svm_vm_destroy(struct kvm *kvm)
1924{
1925 avic_vm_destroy(kvm);
1926 sev_vm_destroy(kvm);
1927}
1928
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001929static int avic_vm_init(struct kvm *kvm)
1930{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001931 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001932 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001933 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1934 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001935 struct page *p_page;
1936 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001937 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001938
1939 if (!avic)
1940 return 0;
1941
1942 /* Allocating physical APIC ID table (4KB) */
1943 p_page = alloc_page(GFP_KERNEL);
1944 if (!p_page)
1945 goto free_avic;
1946
Sean Christopherson81811c12018-03-20 12:17:21 -07001947 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001948 clear_page(page_address(p_page));
1949
1950 /* Allocating logical APIC ID table (4KB) */
1951 l_page = alloc_page(GFP_KERNEL);
1952 if (!l_page)
1953 goto free_avic;
1954
Sean Christopherson81811c12018-03-20 12:17:21 -07001955 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001956 clear_page(page_address(l_page));
1957
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001958 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001959 again:
1960 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1961 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1962 next_vm_id_wrapped = 1;
1963 goto again;
1964 }
1965 /* Is it still in use? Only possible if wrapped at least once */
1966 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001967 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1968 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001969 goto again;
1970 }
1971 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001972 kvm_svm->avic_vm_id = vm_id;
1973 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001974 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1975
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001976 return 0;
1977
1978free_avic:
1979 avic_vm_destroy(kvm);
1980 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981}
1982
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001983static inline int
1984avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001985{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001986 int ret = 0;
1987 unsigned long flags;
1988 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001989 struct vcpu_svm *svm = to_svm(vcpu);
1990
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001991 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1992 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001993
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001994 /*
1995 * Here, we go through the per-vcpu ir_list to update all existing
1996 * interrupt remapping table entry targeting this vcpu.
1997 */
1998 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001999
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002000 if (list_empty(&svm->ir_list))
2001 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002002
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002003 list_for_each_entry(ir, &svm->ir_list, node) {
2004 ret = amd_iommu_update_ga(cpu, r, ir->data);
2005 if (ret)
2006 break;
2007 }
2008out:
2009 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2010 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002011}
2012
2013static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2014{
2015 u64 entry;
2016 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002017 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002018 struct vcpu_svm *svm = to_svm(vcpu);
2019
2020 if (!kvm_vcpu_apicv_active(vcpu))
2021 return;
2022
2023 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2024 return;
2025
2026 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2027 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2028
2029 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2030 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2031
2032 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2033 if (svm->avic_is_running)
2034 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2035
2036 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002037 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2038 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002039}
2040
2041static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2042{
2043 u64 entry;
2044 struct vcpu_svm *svm = to_svm(vcpu);
2045
2046 if (!kvm_vcpu_apicv_active(vcpu))
2047 return;
2048
2049 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002050 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2051 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2052
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002053 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2054 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002055}
2056
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002057/**
2058 * This function is called during VCPU halt/unhalt.
2059 */
2060static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2061{
2062 struct vcpu_svm *svm = to_svm(vcpu);
2063
2064 svm->avic_is_running = is_run;
2065 if (is_run)
2066 avic_vcpu_load(vcpu, vcpu->cpu);
2067 else
2068 avic_vcpu_put(vcpu);
2069}
2070
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002071static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002072{
2073 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002074 u32 dummy;
2075 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002076
Wanpeng Li518e7b92018-02-28 14:03:31 +08002077 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002078 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002079 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002080
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002081 if (!init_event) {
2082 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2083 MSR_IA32_APICBASE_ENABLE;
2084 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2085 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2086 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002087 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002088
Yu Zhange911eb32017-08-24 20:27:52 +08002089 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002090 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002091
2092 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2093 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002094}
2095
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002096static int avic_init_vcpu(struct vcpu_svm *svm)
2097{
2098 int ret;
2099
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002100 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002101 return 0;
2102
2103 ret = avic_init_backing_page(&svm->vcpu);
2104 if (ret)
2105 return ret;
2106
2107 INIT_LIST_HEAD(&svm->ir_list);
2108 spin_lock_init(&svm->ir_list_lock);
2109
2110 return ret;
2111}
2112
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002113static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002115 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002117 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002118 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002119 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002120 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002121
Rusty Russellc16f8622007-07-30 21:12:19 +10002122 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002123 if (!svm) {
2124 err = -ENOMEM;
2125 goto out;
2126 }
2127
Marc Orrb666a4b2018-11-06 14:53:56 -08002128 svm->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache, GFP_KERNEL);
2129 if (!svm->vcpu.arch.guest_fpu) {
2130 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
2131 err = -ENOMEM;
2132 goto free_partial_svm;
2133 }
2134
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002135 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2136 if (err)
2137 goto free_svm;
2138
Joerg Roedelf65c2292008-02-13 18:58:46 +01002139 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002140 page = alloc_page(GFP_KERNEL);
2141 if (!page)
2142 goto uninit;
2143
Joerg Roedelf65c2292008-02-13 18:58:46 +01002144 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2145 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002146 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002147
2148 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2149 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002150 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002151
Alexander Grafb286d5d2008-11-25 20:17:05 +01002152 hsave_page = alloc_page(GFP_KERNEL);
2153 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002154 goto free_page3;
2155
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002156 err = avic_init_vcpu(svm);
2157 if (err)
2158 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002159
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002160 /* We initialize this flag to true to make sure that the is_running
2161 * bit would be set the first time the vcpu is loaded.
2162 */
2163 svm->avic_is_running = true;
2164
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002165 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002166
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002167 svm->msrpm = page_address(msrpm_pages);
2168 svm_vcpu_init_msrpm(svm->msrpm);
2169
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002170 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002171 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002172
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002173 svm->vmcb = page_address(page);
2174 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002175 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002176 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002177 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002178
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002179 svm_init_osvw(&svm->vcpu);
2180
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002181 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002182
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002183free_page4:
2184 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002185free_page3:
2186 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2187free_page2:
2188 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2189free_page1:
2190 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002191uninit:
2192 kvm_vcpu_uninit(&svm->vcpu);
2193free_svm:
Marc Orrb666a4b2018-11-06 14:53:56 -08002194 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
2195free_partial_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002196 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002197out:
2198 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002199}
2200
Jim Mattsonfd65d312018-05-22 09:54:20 -07002201static void svm_clear_current_vmcb(struct vmcb *vmcb)
2202{
2203 int i;
2204
2205 for_each_online_cpu(i)
2206 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2207}
2208
Avi Kivity6aa8b732006-12-10 02:21:36 -08002209static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2210{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002211 struct vcpu_svm *svm = to_svm(vcpu);
2212
Jim Mattsonfd65d312018-05-22 09:54:20 -07002213 /*
2214 * The vmcb page can be recycled, causing a false negative in
2215 * svm_vcpu_load(). So, ensure that no logical CPU has this
2216 * vmcb page recorded as its current vmcb.
2217 */
2218 svm_clear_current_vmcb(svm->vmcb);
2219
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002220 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002221 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002222 __free_page(virt_to_page(svm->nested.hsave));
2223 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002224 kvm_vcpu_uninit(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08002225 kmem_cache_free(x86_fpu_cache, svm->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10002226 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002227}
2228
Avi Kivity15ad7142007-07-11 18:17:21 +03002229static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002230{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002231 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002232 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002233 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002234
Avi Kivity0cc50642007-03-25 12:07:27 +02002235 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002236 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002237 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002238 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002239
Avi Kivity82ca2d12010-10-21 12:20:34 +02002240#ifdef CONFIG_X86_64
2241 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2242#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002243 savesegment(fs, svm->host.fs);
2244 savesegment(gs, svm->host.gs);
2245 svm->host.ldt = kvm_read_ldt();
2246
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002247 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002248 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002249
Haozhong Zhangad7218832015-10-20 15:39:02 +08002250 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2251 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2252 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2253 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2254 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2255 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002256 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002257 /* This assumes that the kernel never uses MSR_TSC_AUX */
2258 if (static_cpu_has(X86_FEATURE_RDTSCP))
2259 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002260
Ashok Raj15d45072018-02-01 22:59:43 +01002261 if (sd->current_vmcb != svm->vmcb) {
2262 sd->current_vmcb = svm->vmcb;
2263 indirect_branch_prediction_barrier();
2264 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002265 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266}
2267
2268static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2269{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002270 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002271 int i;
2272
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002273 avic_vcpu_put(vcpu);
2274
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002275 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002276 kvm_load_ldt(svm->host.ldt);
2277#ifdef CONFIG_X86_64
2278 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002279 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002280 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002281#else
Avi Kivity831ca602011-03-08 16:09:51 +02002282#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002283 loadsegment(gs, svm->host.gs);
2284#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002285#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002286 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002287 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288}
2289
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002290static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2291{
2292 avic_set_running(vcpu, false);
2293}
2294
2295static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2296{
2297 avic_set_running(vcpu, true);
2298}
2299
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2301{
Ladi Prosek9b611742017-06-21 09:06:59 +02002302 struct vcpu_svm *svm = to_svm(vcpu);
2303 unsigned long rflags = svm->vmcb->save.rflags;
2304
2305 if (svm->nmi_singlestep) {
2306 /* Hide our flags if they were not set by the guest */
2307 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2308 rflags &= ~X86_EFLAGS_TF;
2309 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2310 rflags &= ~X86_EFLAGS_RF;
2311 }
2312 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002313}
2314
2315static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2316{
Ladi Prosek9b611742017-06-21 09:06:59 +02002317 if (to_svm(vcpu)->nmi_singlestep)
2318 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2319
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002320 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002321 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002322 * (caused by either a task switch or an inter-privilege IRET),
2323 * so we do not need to update the CPL here.
2324 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002325 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002326}
2327
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002328static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2329{
2330 switch (reg) {
2331 case VCPU_EXREG_PDPTR:
2332 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002333 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002334 break;
2335 default:
2336 BUG();
2337 }
2338}
2339
Alexander Graff0b85052008-11-25 20:17:01 +01002340static void svm_set_vintr(struct vcpu_svm *svm)
2341{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002342 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002343}
2344
2345static void svm_clear_vintr(struct vcpu_svm *svm)
2346{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002347 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002348}
2349
Avi Kivity6aa8b732006-12-10 02:21:36 -08002350static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2351{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002352 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353
2354 switch (seg) {
2355 case VCPU_SREG_CS: return &save->cs;
2356 case VCPU_SREG_DS: return &save->ds;
2357 case VCPU_SREG_ES: return &save->es;
2358 case VCPU_SREG_FS: return &save->fs;
2359 case VCPU_SREG_GS: return &save->gs;
2360 case VCPU_SREG_SS: return &save->ss;
2361 case VCPU_SREG_TR: return &save->tr;
2362 case VCPU_SREG_LDTR: return &save->ldtr;
2363 }
2364 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002365 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366}
2367
2368static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2369{
2370 struct vmcb_seg *s = svm_seg(vcpu, seg);
2371
2372 return s->base;
2373}
2374
2375static void svm_get_segment(struct kvm_vcpu *vcpu,
2376 struct kvm_segment *var, int seg)
2377{
2378 struct vmcb_seg *s = svm_seg(vcpu, seg);
2379
2380 var->base = s->base;
2381 var->limit = s->limit;
2382 var->selector = s->selector;
2383 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2384 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2385 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2386 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2387 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2388 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2389 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302390
2391 /*
2392 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2393 * However, the SVM spec states that the G bit is not observed by the
2394 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2395 * So let's synthesize a legal G bit for all segments, this helps
2396 * running KVM nested. It also helps cross-vendor migration, because
2397 * Intel's vmentry has a check on the 'G' bit.
2398 */
2399 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002400
Joerg Roedele0231712010-02-24 18:59:10 +01002401 /*
2402 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002403 * for cross vendor migration purposes by "not present"
2404 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002405 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002406
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002407 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002408 case VCPU_SREG_TR:
2409 /*
2410 * Work around a bug where the busy flag in the tr selector
2411 * isn't exposed
2412 */
Amit Shahc0d09822008-10-27 09:04:18 +00002413 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002414 break;
2415 case VCPU_SREG_DS:
2416 case VCPU_SREG_ES:
2417 case VCPU_SREG_FS:
2418 case VCPU_SREG_GS:
2419 /*
2420 * The accessed bit must always be set in the segment
2421 * descriptor cache, although it can be cleared in the
2422 * descriptor, the cached bit always remains at 1. Since
2423 * Intel has a check on this, set it here to support
2424 * cross-vendor migration.
2425 */
2426 if (!var->unusable)
2427 var->type |= 0x1;
2428 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002429 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002430 /*
2431 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002432 * descriptor is left as 1, although the whole segment has
2433 * been made unusable. Clear it here to pass an Intel VMX
2434 * entry check when cross vendor migrating.
2435 */
2436 if (var->unusable)
2437 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002438 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002439 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002440 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002441 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442}
2443
Izik Eidus2e4d2652008-03-24 19:38:34 +02002444static int svm_get_cpl(struct kvm_vcpu *vcpu)
2445{
2446 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2447
2448 return save->cpl;
2449}
2450
Gleb Natapov89a27f42010-02-16 10:51:48 +02002451static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002453 struct vcpu_svm *svm = to_svm(vcpu);
2454
Gleb Natapov89a27f42010-02-16 10:51:48 +02002455 dt->size = svm->vmcb->save.idtr.limit;
2456 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457}
2458
Gleb Natapov89a27f42010-02-16 10:51:48 +02002459static void svm_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002460{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002461 struct vcpu_svm *svm = to_svm(vcpu);
2462
Gleb Natapov89a27f42010-02-16 10:51:48 +02002463 svm->vmcb->save.idtr.limit = dt->size;
2464 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002465 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002466}
2467
Gleb Natapov89a27f42010-02-16 10:51:48 +02002468static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002469{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002470 struct vcpu_svm *svm = to_svm(vcpu);
2471
Gleb Natapov89a27f42010-02-16 10:51:48 +02002472 dt->size = svm->vmcb->save.gdtr.limit;
2473 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474}
2475
Gleb Natapov89a27f42010-02-16 10:51:48 +02002476static void svm_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002477{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002478 struct vcpu_svm *svm = to_svm(vcpu);
2479
Gleb Natapov89a27f42010-02-16 10:51:48 +02002480 svm->vmcb->save.gdtr.limit = dt->size;
2481 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002482 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002483}
2484
Avi Kivitye8467fd2009-12-29 18:43:06 +02002485static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2486{
2487}
2488
Avi Kivityaff48ba2010-12-05 18:56:11 +02002489static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2490{
2491}
2492
Anthony Liguori25c4c272007-04-27 09:29:21 +03002493static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002494{
2495}
2496
Avi Kivityd2251572010-01-06 10:55:27 +02002497static void update_cr0_intercept(struct vcpu_svm *svm)
2498{
2499 ulong gcr0 = svm->vcpu.arch.cr0;
2500 u64 *hcr0 = &svm->vmcb->save.cr0;
2501
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002502 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2503 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002504
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002505 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002506
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002507 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002508 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2509 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002510 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002511 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2512 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002513 }
2514}
2515
Avi Kivity6aa8b732006-12-10 02:21:36 -08002516static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2517{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002518 struct vcpu_svm *svm = to_svm(vcpu);
2519
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002520#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002521 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002522 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002523 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002524 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002525 }
2526
Mike Dayd77c26f2007-10-08 09:02:08 -04002527 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002528 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002529 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530 }
2531 }
2532#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002533 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002534
2535 if (!npt_enabled)
2536 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002537
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002538 /*
2539 * re-enable caching here because the QEMU bios
2540 * does not do it - this results in some delay at
2541 * reboot
2542 */
2543 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2544 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002545 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002546 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002547 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002548}
2549
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002550static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002551{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002552 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002553 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2554
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002555 if (cr4 & X86_CR4_VMXE)
2556 return 1;
2557
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002558 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002559 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002560
Joerg Roedelec077262008-04-09 14:15:28 +02002561 vcpu->arch.cr4 = cr4;
2562 if (!npt_enabled)
2563 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002564 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002565 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002566 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002567 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002568}
2569
2570static void svm_set_segment(struct kvm_vcpu *vcpu,
2571 struct kvm_segment *var, int seg)
2572{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002573 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574 struct vmcb_seg *s = svm_seg(vcpu, seg);
2575
2576 s->base = var->base;
2577 s->limit = var->limit;
2578 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002579 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2580 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2581 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2582 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2583 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2584 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2585 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2586 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002587
2588 /*
2589 * This is always accurate, except if SYSRET returned to a segment
2590 * with SS.DPL != 3. Intel does not have this quirk, and always
2591 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2592 * would entail passing the CPL to userspace and back.
2593 */
2594 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002595 /* This is symmetric with svm_get_segment() */
2596 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597
Joerg Roedel060d0c92010-12-03 11:45:57 +01002598 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002599}
2600
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002601static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002603 struct vcpu_svm *svm = to_svm(vcpu);
2604
Joerg Roedel18c918c2010-11-30 18:03:59 +01002605 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002606
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002607 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002608 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002609 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002610 } else
2611 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002612}
2613
Tejun Heo0fe1e002009-10-29 22:34:14 +09002614static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002615{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002616 if (sd->next_asid > sd->max_asid) {
2617 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002618 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002619 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002620 }
2621
Tejun Heo0fe1e002009-10-29 22:34:14 +09002622 svm->asid_generation = sd->asid_generation;
2623 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002624
2625 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626}
2627
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002628static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2629{
2630 return to_svm(vcpu)->vmcb->save.dr6;
2631}
2632
2633static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2634{
2635 struct vcpu_svm *svm = to_svm(vcpu);
2636
2637 svm->vmcb->save.dr6 = value;
2638 mark_dirty(svm->vmcb, VMCB_DR);
2639}
2640
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002641static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2642{
2643 struct vcpu_svm *svm = to_svm(vcpu);
2644
2645 get_debugreg(vcpu->arch.db[0], 0);
2646 get_debugreg(vcpu->arch.db[1], 1);
2647 get_debugreg(vcpu->arch.db[2], 2);
2648 get_debugreg(vcpu->arch.db[3], 3);
2649 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2650 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2651
2652 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2653 set_dr_intercepts(svm);
2654}
2655
Gleb Natapov020df072010-04-13 10:05:23 +03002656static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002658 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002659
Gleb Natapov020df072010-04-13 10:05:23 +03002660 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002661 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002662}
2663
Avi Kivity851ba692009-08-24 11:10:17 +03002664static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002666 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002667 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002669 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002670 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2671 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002672 svm->vmcb->control.insn_len);
2673}
2674
2675static int npf_interception(struct vcpu_svm *svm)
2676{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002677 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002678 u64 error_code = svm->vmcb->control.exit_info_1;
2679
2680 trace_kvm_page_fault(fault_address, error_code);
2681 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002682 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2683 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002684 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685}
2686
Avi Kivity851ba692009-08-24 11:10:17 +03002687static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002688{
Avi Kivity851ba692009-08-24 11:10:17 +03002689 struct kvm_run *kvm_run = svm->vcpu.run;
2690
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002691 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002692 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002693 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002694 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2695 return 1;
2696 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002697
Jan Kiszka6be7d302009-10-18 13:24:54 +02002698 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002699 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002700 }
2701
2702 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002703 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002704 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2705 kvm_run->debug.arch.pc =
2706 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2707 kvm_run->debug.arch.exception = DB_VECTOR;
2708 return 0;
2709 }
2710
2711 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002712}
2713
Avi Kivity851ba692009-08-24 11:10:17 +03002714static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002715{
Avi Kivity851ba692009-08-24 11:10:17 +03002716 struct kvm_run *kvm_run = svm->vcpu.run;
2717
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002718 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2719 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2720 kvm_run->debug.arch.exception = BP_VECTOR;
2721 return 0;
2722}
2723
Avi Kivity851ba692009-08-24 11:10:17 +03002724static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002725{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002726 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002727}
2728
Eric Northup54a20552015-11-03 18:03:53 +01002729static int ac_interception(struct vcpu_svm *svm)
2730{
2731 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2732 return 1;
2733}
2734
Liran Alon97184202018-03-12 13:12:52 +02002735static int gp_interception(struct vcpu_svm *svm)
2736{
2737 struct kvm_vcpu *vcpu = &svm->vcpu;
2738 u32 error_code = svm->vmcb->control.exit_info_1;
2739 int er;
2740
2741 WARN_ON_ONCE(!enable_vmware_backdoor);
2742
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002743 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002744 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2745 if (er == EMULATE_USER_EXIT)
2746 return 0;
2747 else if (er != EMULATE_DONE)
2748 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2749 return 1;
2750}
2751
Joerg Roedel67ec6602010-05-17 14:43:35 +02002752static bool is_erratum_383(void)
2753{
2754 int err, i;
2755 u64 value;
2756
2757 if (!erratum_383_found)
2758 return false;
2759
2760 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2761 if (err)
2762 return false;
2763
2764 /* Bit 62 may or may not be set for this mce */
2765 value &= ~(1ULL << 62);
2766
2767 if (value != 0xb600000000010015ULL)
2768 return false;
2769
2770 /* Clear MCi_STATUS registers */
2771 for (i = 0; i < 6; ++i)
2772 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2773
2774 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2775 if (!err) {
2776 u32 low, high;
2777
2778 value &= ~(1ULL << 2);
2779 low = lower_32_bits(value);
2780 high = upper_32_bits(value);
2781
2782 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2783 }
2784
2785 /* Flush tlb to evict multi-match entries */
2786 __flush_tlb_all();
2787
2788 return true;
2789}
2790
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002791static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002792{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002793 if (is_erratum_383()) {
2794 /*
2795 * Erratum 383 triggered. Guest state is corrupt so kill the
2796 * guest.
2797 */
2798 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2799
Avi Kivitya8eeb042010-05-10 12:34:53 +03002800 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002801
2802 return;
2803 }
2804
Joerg Roedel53371b52008-04-09 14:15:30 +02002805 /*
2806 * On an #MC intercept the MCE handler is not called automatically in
2807 * the host. So do it by hand here.
2808 */
2809 asm volatile (
2810 "int $0x12\n");
2811 /* not sure if we ever come back to this point */
2812
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002813 return;
2814}
2815
2816static int mc_interception(struct vcpu_svm *svm)
2817{
Joerg Roedel53371b52008-04-09 14:15:30 +02002818 return 1;
2819}
2820
Avi Kivity851ba692009-08-24 11:10:17 +03002821static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002822{
Avi Kivity851ba692009-08-24 11:10:17 +03002823 struct kvm_run *kvm_run = svm->vcpu.run;
2824
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002825 /*
2826 * VMCB is undefined after a SHUTDOWN intercept
2827 * so reinitialize it.
2828 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002829 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002830 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002831
2832 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2833 return 0;
2834}
2835
Avi Kivity851ba692009-08-24 11:10:17 +03002836static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002838 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002839 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002840 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002841 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842
Rusty Russelle756fc62007-07-30 20:07:08 +10002843 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002844 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002845 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002846 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002847 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002848
Avi Kivity039576c2007-03-20 12:46:50 +02002849 port = io_info >> 16;
2850 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002851 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002852
Sean Christophersondca7f122018-03-08 08:57:27 -08002853 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854}
2855
Avi Kivity851ba692009-08-24 11:10:17 +03002856static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002857{
2858 return 1;
2859}
2860
Avi Kivity851ba692009-08-24 11:10:17 +03002861static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002862{
2863 ++svm->vcpu.stat.irq_exits;
2864 return 1;
2865}
2866
Avi Kivity851ba692009-08-24 11:10:17 +03002867static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002868{
2869 return 1;
2870}
2871
Avi Kivity851ba692009-08-24 11:10:17 +03002872static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002874 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002875 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876}
2877
Avi Kivity851ba692009-08-24 11:10:17 +03002878static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002879{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002880 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002881 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002882}
2883
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002884static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2885{
2886 struct vcpu_svm *svm = to_svm(vcpu);
2887
2888 return svm->nested.nested_cr3;
2889}
2890
Avi Kivitye4e517b2011-07-28 11:36:17 +03002891static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2892{
2893 struct vcpu_svm *svm = to_svm(vcpu);
2894 u64 cr3 = svm->nested.nested_cr3;
2895 u64 pdpte;
2896 int ret;
2897
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002898 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002899 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002900 if (ret)
2901 return 0;
2902 return pdpte;
2903}
2904
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002905static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2906 unsigned long root)
2907{
2908 struct vcpu_svm *svm = to_svm(vcpu);
2909
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002910 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002911 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002912}
2913
Avi Kivity6389ee92010-11-29 16:12:30 +02002914static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2915 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002916{
2917 struct vcpu_svm *svm = to_svm(vcpu);
2918
Paolo Bonzini5e352512014-09-02 13:18:37 +02002919 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2920 /*
2921 * TODO: track the cause of the nested page fault, and
2922 * correctly fill in the high bits of exit_info_1.
2923 */
2924 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2925 svm->vmcb->control.exit_code_hi = 0;
2926 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2927 svm->vmcb->control.exit_info_2 = fault->address;
2928 }
2929
2930 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2931 svm->vmcb->control.exit_info_1 |= fault->error_code;
2932
2933 /*
2934 * The present bit is always zero for page structure faults on real
2935 * hardware.
2936 */
2937 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2938 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002939
2940 nested_svm_vmexit(svm);
2941}
2942
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002943static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002944{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002945 WARN_ON(mmu_is_nested(vcpu));
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002946
2947 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Paolo Bonziniad896af2013-10-02 16:56:14 +02002948 kvm_init_shadow_mmu(vcpu);
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002949 vcpu->arch.mmu->set_cr3 = nested_svm_set_tdp_cr3;
2950 vcpu->arch.mmu->get_cr3 = nested_svm_get_tdp_cr3;
2951 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
2952 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
2953 vcpu->arch.mmu->shadow_root_level = get_npt_level(vcpu);
2954 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002955 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002956}
2957
2958static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2959{
Vitaly Kuznetsov3cf85f92018-12-19 17:25:14 +01002960 vcpu->arch.mmu = &vcpu->arch.root_mmu;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02002961 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002962}
2963
Alexander Grafc0725422008-11-25 20:17:03 +01002964static int nested_svm_check_permissions(struct vcpu_svm *svm)
2965{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002966 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2967 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002968 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2969 return 1;
2970 }
2971
2972 if (svm->vmcb->save.cpl) {
2973 kvm_inject_gp(&svm->vcpu, 0);
2974 return 1;
2975 }
2976
Dan Carpentere9196ce2017-05-18 10:39:53 +03002977 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002978}
2979
Alexander Grafcf74a782008-11-25 20:17:08 +01002980static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2981 bool has_error_code, u32 error_code)
2982{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002983 int vmexit;
2984
Joerg Roedel20307532010-11-29 17:51:48 +01002985 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002986 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002987
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002988 vmexit = nested_svm_intercept(svm);
2989 if (vmexit != NESTED_EXIT_DONE)
2990 return 0;
2991
Joerg Roedel0295ad72009-08-07 11:49:37 +02002992 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2993 svm->vmcb->control.exit_code_hi = 0;
2994 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002995
2996 /*
Jim Mattsonda998b42018-10-16 14:29:22 -07002997 * EXITINFO2 is undefined for all exception intercepts other
2998 * than #PF.
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002999 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003000 if (svm->vcpu.arch.exception.nested_apf)
3001 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
Jim Mattsonda998b42018-10-16 14:29:22 -07003002 else if (svm->vcpu.arch.exception.has_payload)
3003 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003004 else
3005 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02003006
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003007 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003008 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003009}
3010
Joerg Roedel8fe54652010-02-19 16:23:01 +01003011/* This function returns true if it is save to enable the irq window */
3012static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003013{
Joerg Roedel20307532010-11-29 17:51:48 +01003014 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003015 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003016
Joerg Roedel26666952009-08-07 11:49:46 +02003017 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003018 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003019
Joerg Roedel26666952009-08-07 11:49:46 +02003020 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003021 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003022
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003023 /*
3024 * if vmexit was already requested (by intercepted exception
3025 * for instance) do not overwrite it with "external interrupt"
3026 * vmexit.
3027 */
3028 if (svm->nested.exit_required)
3029 return false;
3030
Joerg Roedel197717d2010-02-24 18:59:19 +01003031 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3032 svm->vmcb->control.exit_info_1 = 0;
3033 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003034
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003035 if (svm->nested.intercept & 1ULL) {
3036 /*
3037 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003038 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003039 * #vmexit emulation might sleep. Only signal request for
3040 * the #vmexit here.
3041 */
3042 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003043 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003044 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003045 }
3046
Joerg Roedel8fe54652010-02-19 16:23:01 +01003047 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003048}
3049
Joerg Roedel887f5002010-02-24 18:59:12 +01003050/* This function returns true if it is save to enable the nmi window */
3051static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3052{
Joerg Roedel20307532010-11-29 17:51:48 +01003053 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003054 return true;
3055
3056 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3057 return true;
3058
3059 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3060 svm->nested.exit_required = true;
3061
3062 return false;
3063}
3064
Joerg Roedel7597f122010-02-19 16:23:00 +01003065static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003066{
3067 struct page *page;
3068
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003069 might_sleep();
3070
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003071 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003072 if (is_error_page(page))
3073 goto error;
3074
Joerg Roedel7597f122010-02-19 16:23:00 +01003075 *_page = page;
3076
3077 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003078
3079error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003080 kvm_inject_gp(&svm->vcpu, 0);
3081
3082 return NULL;
3083}
3084
Joerg Roedel7597f122010-02-19 16:23:00 +01003085static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003086{
Joerg Roedel7597f122010-02-19 16:23:00 +01003087 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003088 kvm_release_page_dirty(page);
3089}
3090
Joerg Roedelce2ac082010-03-01 15:34:39 +01003091static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003092{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003093 unsigned port, size, iopm_len;
3094 u16 val, mask;
3095 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003096 u64 gpa;
3097
3098 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3099 return NESTED_EXIT_HOST;
3100
3101 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003102 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3103 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003104 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003105 start_bit = port % 8;
3106 iopm_len = (start_bit + size > 8) ? 2 : 1;
3107 mask = (0xf >> (4 - size)) << start_bit;
3108 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003109
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003110 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003111 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003112
Jan Kiszka9bf41832014-06-30 10:54:17 +02003113 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003114}
3115
Joerg Roedeld2477822010-03-01 15:34:34 +01003116static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003117{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003118 u32 offset, msr, value;
3119 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003120
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003121 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003122 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003123
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003124 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3125 offset = svm_msrpm_offset(msr);
3126 write = svm->vmcb->control.exit_info_1 & 1;
3127 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003128
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003129 if (offset == MSR_INVALID)
3130 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003131
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003132 /* Offset is in 32 bit units but need in 8 bit units */
3133 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003134
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003135 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003136 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003137
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003138 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003139}
3140
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003141/* DB exceptions for our internal use must not cause vmexit */
3142static int nested_svm_intercept_db(struct vcpu_svm *svm)
3143{
3144 unsigned long dr6;
3145
3146 /* if we're not singlestepping, it's not ours */
3147 if (!svm->nmi_singlestep)
3148 return NESTED_EXIT_DONE;
3149
3150 /* if it's not a singlestep exception, it's not ours */
3151 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3152 return NESTED_EXIT_DONE;
3153 if (!(dr6 & DR6_BS))
3154 return NESTED_EXIT_DONE;
3155
3156 /* if the guest is singlestepping, it should get the vmexit */
3157 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3158 disable_nmi_singlestep(svm);
3159 return NESTED_EXIT_DONE;
3160 }
3161
3162 /* it's ours, the nested hypervisor must not see this one */
3163 return NESTED_EXIT_HOST;
3164}
3165
Joerg Roedel410e4d52009-08-07 11:49:44 +02003166static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003167{
Alexander Grafcf74a782008-11-25 20:17:08 +01003168 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003169
Joerg Roedel410e4d52009-08-07 11:49:44 +02003170 switch (exit_code) {
3171 case SVM_EXIT_INTR:
3172 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003173 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003174 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003175 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003176 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003177 if (npt_enabled)
3178 return NESTED_EXIT_HOST;
3179 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003180 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003181 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003182 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003183 return NESTED_EXIT_HOST;
3184 break;
3185 default:
3186 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003187 }
3188
Joerg Roedel410e4d52009-08-07 11:49:44 +02003189 return NESTED_EXIT_CONTINUE;
3190}
3191
3192/*
3193 * If this function returns true, this #vmexit was already handled
3194 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003195static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003196{
3197 u32 exit_code = svm->vmcb->control.exit_code;
3198 int vmexit = NESTED_EXIT_HOST;
3199
Alexander Grafcf74a782008-11-25 20:17:08 +01003200 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003201 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003202 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003203 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003204 case SVM_EXIT_IOIO:
3205 vmexit = nested_svm_intercept_ioio(svm);
3206 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003207 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3208 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3209 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003210 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003211 break;
3212 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003213 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3214 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3215 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003216 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003217 break;
3218 }
3219 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3220 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003221 if (svm->nested.intercept_exceptions & excp_bits) {
3222 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3223 vmexit = nested_svm_intercept_db(svm);
3224 else
3225 vmexit = NESTED_EXIT_DONE;
3226 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003227 /* async page fault always cause vmexit */
3228 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003229 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003230 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003231 break;
3232 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003233 case SVM_EXIT_ERR: {
3234 vmexit = NESTED_EXIT_DONE;
3235 break;
3236 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003237 default: {
3238 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003239 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003240 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003241 }
3242 }
3243
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003244 return vmexit;
3245}
3246
3247static int nested_svm_exit_handled(struct vcpu_svm *svm)
3248{
3249 int vmexit;
3250
3251 vmexit = nested_svm_intercept(svm);
3252
3253 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003254 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003255
3256 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003257}
3258
Joerg Roedel0460a972009-08-07 11:49:31 +02003259static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3260{
3261 struct vmcb_control_area *dst = &dst_vmcb->control;
3262 struct vmcb_control_area *from = &from_vmcb->control;
3263
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003264 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003265 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003266 dst->intercept_exceptions = from->intercept_exceptions;
3267 dst->intercept = from->intercept;
3268 dst->iopm_base_pa = from->iopm_base_pa;
3269 dst->msrpm_base_pa = from->msrpm_base_pa;
3270 dst->tsc_offset = from->tsc_offset;
3271 dst->asid = from->asid;
3272 dst->tlb_ctl = from->tlb_ctl;
3273 dst->int_ctl = from->int_ctl;
3274 dst->int_vector = from->int_vector;
3275 dst->int_state = from->int_state;
3276 dst->exit_code = from->exit_code;
3277 dst->exit_code_hi = from->exit_code_hi;
3278 dst->exit_info_1 = from->exit_info_1;
3279 dst->exit_info_2 = from->exit_info_2;
3280 dst->exit_int_info = from->exit_int_info;
3281 dst->exit_int_info_err = from->exit_int_info_err;
3282 dst->nested_ctl = from->nested_ctl;
3283 dst->event_inj = from->event_inj;
3284 dst->event_inj_err = from->event_inj_err;
3285 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003286 dst->virt_ext = from->virt_ext;
Tambe, Williame0813542018-11-13 16:51:20 +00003287 dst->pause_filter_count = from->pause_filter_count;
3288 dst->pause_filter_thresh = from->pause_filter_thresh;
Joerg Roedel0460a972009-08-07 11:49:31 +02003289}
3290
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003291static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003292{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003293 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003294 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003295 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003296 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003297
Joerg Roedel17897f32009-10-09 16:08:29 +02003298 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3299 vmcb->control.exit_info_1,
3300 vmcb->control.exit_info_2,
3301 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003302 vmcb->control.exit_int_info_err,
3303 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003304
Joerg Roedel7597f122010-02-19 16:23:00 +01003305 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003306 if (!nested_vmcb)
3307 return 1;
3308
Joerg Roedel20307532010-11-29 17:51:48 +01003309 /* Exit Guest-Mode */
3310 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003311 svm->nested.vmcb = 0;
3312
Alexander Grafcf74a782008-11-25 20:17:08 +01003313 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003314 disable_gif(svm);
3315
3316 nested_vmcb->save.es = vmcb->save.es;
3317 nested_vmcb->save.cs = vmcb->save.cs;
3318 nested_vmcb->save.ss = vmcb->save.ss;
3319 nested_vmcb->save.ds = vmcb->save.ds;
3320 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3321 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003322 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003323 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003324 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003325 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003326 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003327 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003328 nested_vmcb->save.rip = vmcb->save.rip;
3329 nested_vmcb->save.rsp = vmcb->save.rsp;
3330 nested_vmcb->save.rax = vmcb->save.rax;
3331 nested_vmcb->save.dr7 = vmcb->save.dr7;
3332 nested_vmcb->save.dr6 = vmcb->save.dr6;
3333 nested_vmcb->save.cpl = vmcb->save.cpl;
3334
3335 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3336 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3337 nested_vmcb->control.int_state = vmcb->control.int_state;
3338 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3339 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3340 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3341 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3342 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3343 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003344
3345 if (svm->nrips_enabled)
3346 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003347
3348 /*
3349 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3350 * to make sure that we do not lose injected events. So check event_inj
3351 * here and copy it to exit_int_info if it is valid.
3352 * Exit_int_info and event_inj can't be both valid because the case
3353 * below only happens on a VMRUN instruction intercept which has
3354 * no valid exit_int_info set.
3355 */
3356 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3357 struct vmcb_control_area *nc = &nested_vmcb->control;
3358
3359 nc->exit_int_info = vmcb->control.event_inj;
3360 nc->exit_int_info_err = vmcb->control.event_inj_err;
3361 }
3362
Joerg Roedel33740e42009-08-07 11:49:29 +02003363 nested_vmcb->control.tlb_ctl = 0;
3364 nested_vmcb->control.event_inj = 0;
3365 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003366
Tambe, Williame0813542018-11-13 16:51:20 +00003367 nested_vmcb->control.pause_filter_count =
3368 svm->vmcb->control.pause_filter_count;
3369 nested_vmcb->control.pause_filter_thresh =
3370 svm->vmcb->control.pause_filter_thresh;
3371
Alexander Grafcf74a782008-11-25 20:17:08 +01003372 /* We always set V_INTR_MASKING and remember the old value in hflags */
3373 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3374 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3375
Alexander Grafcf74a782008-11-25 20:17:08 +01003376 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003377 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003378
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003379 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003380 kvm_clear_exception_queue(&svm->vcpu);
3381 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003382
Joerg Roedel4b161842010-09-10 17:31:03 +02003383 svm->nested.nested_cr3 = 0;
3384
Alexander Grafcf74a782008-11-25 20:17:08 +01003385 /* Restore selected save entries */
3386 svm->vmcb->save.es = hsave->save.es;
3387 svm->vmcb->save.cs = hsave->save.cs;
3388 svm->vmcb->save.ss = hsave->save.ss;
3389 svm->vmcb->save.ds = hsave->save.ds;
3390 svm->vmcb->save.gdtr = hsave->save.gdtr;
3391 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003392 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003393 svm_set_efer(&svm->vcpu, hsave->save.efer);
3394 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3395 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3396 if (npt_enabled) {
3397 svm->vmcb->save.cr3 = hsave->save.cr3;
3398 svm->vcpu.arch.cr3 = hsave->save.cr3;
3399 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003400 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003401 }
3402 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3403 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3404 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3405 svm->vmcb->save.dr7 = 0;
3406 svm->vmcb->save.cpl = 0;
3407 svm->vmcb->control.exit_int_info = 0;
3408
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003409 mark_all_dirty(svm->vmcb);
3410
Joerg Roedel7597f122010-02-19 16:23:00 +01003411 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003412
Joerg Roedel4b161842010-09-10 17:31:03 +02003413 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003414 kvm_mmu_reset_context(&svm->vcpu);
3415 kvm_mmu_load(&svm->vcpu);
3416
Vitaly Kuznetsov619ad842019-01-07 19:44:51 +01003417 /*
3418 * Drop what we picked up for L2 via svm_complete_interrupts() so it
3419 * doesn't end up in L1.
3420 */
3421 svm->vcpu.arch.nmi_injected = false;
3422 kvm_clear_exception_queue(&svm->vcpu);
3423 kvm_clear_interrupt_queue(&svm->vcpu);
3424
Alexander Grafcf74a782008-11-25 20:17:08 +01003425 return 0;
3426}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003427
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003428static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003429{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003430 /*
3431 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003432 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003433 * the kvm msr permission bitmap may contain zero bits
3434 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003435 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003436
Joerg Roedel323c3d82010-03-01 15:34:37 +01003437 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3438 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003439
Joerg Roedel323c3d82010-03-01 15:34:37 +01003440 for (i = 0; i < MSRPM_OFFSETS; i++) {
3441 u32 value, p;
3442 u64 offset;
3443
3444 if (msrpm_offsets[i] == 0xffffffff)
3445 break;
3446
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003447 p = msrpm_offsets[i];
3448 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003449
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003450 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003451 return false;
3452
3453 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3454 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003455
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003456 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003457
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003458 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003459}
3460
Joerg Roedel52c65a302010-08-02 16:46:44 +02003461static bool nested_vmcb_checks(struct vmcb *vmcb)
3462{
3463 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3464 return false;
3465
Joerg Roedeldbe77582010-08-02 16:46:45 +02003466 if (vmcb->control.asid == 0)
3467 return false;
3468
Tom Lendackycea3a192017-12-04 10:57:24 -06003469 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3470 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003471 return false;
3472
Joerg Roedel52c65a302010-08-02 16:46:44 +02003473 return true;
3474}
3475
Ladi Prosekc2634062017-10-11 16:54:44 +02003476static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3477 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003478{
Avi Kivityf6e78472010-08-02 15:30:20 +03003479 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003480 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3481 else
3482 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3483
Tom Lendackycea3a192017-12-04 10:57:24 -06003484 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003485 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3486 nested_svm_init_mmu_context(&svm->vcpu);
3487 }
3488
Alexander Graf3d6368e2008-11-25 20:17:07 +01003489 /* Load the nested guest state */
3490 svm->vmcb->save.es = nested_vmcb->save.es;
3491 svm->vmcb->save.cs = nested_vmcb->save.cs;
3492 svm->vmcb->save.ss = nested_vmcb->save.ss;
3493 svm->vmcb->save.ds = nested_vmcb->save.ds;
3494 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3495 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003496 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003497 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3498 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3499 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3500 if (npt_enabled) {
3501 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3502 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003503 } else
Avi Kivity23902182010-06-10 17:02:16 +03003504 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003505
3506 /* Guest paging mode is active - reset mmu */
3507 kvm_mmu_reset_context(&svm->vcpu);
3508
Joerg Roedeldefbba52009-08-07 11:49:30 +02003509 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003510 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3511 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3512 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003513
Alexander Graf3d6368e2008-11-25 20:17:07 +01003514 /* In case we don't even reach vcpu_run, the fields are not updated */
3515 svm->vmcb->save.rax = nested_vmcb->save.rax;
3516 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3517 svm->vmcb->save.rip = nested_vmcb->save.rip;
3518 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3519 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3520 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3521
Joerg Roedelf7138532010-03-01 15:34:40 +01003522 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003523 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003524
Joerg Roedelaad42c62009-08-07 11:49:34 +02003525 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003526 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003527 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003528 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3529 svm->nested.intercept = nested_vmcb->control.intercept;
3530
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003531 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003532 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003533 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3534 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3535 else
3536 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3537
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003538 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3539 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003540 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3541 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003542 }
3543
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003544 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003545 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003546
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003547 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3548 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3549
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003550 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003551 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3552 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003553 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3554 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3555
Tambe, Williame0813542018-11-13 16:51:20 +00003556 svm->vmcb->control.pause_filter_count =
3557 nested_vmcb->control.pause_filter_count;
3558 svm->vmcb->control.pause_filter_thresh =
3559 nested_vmcb->control.pause_filter_thresh;
3560
Joerg Roedel7597f122010-02-19 16:23:00 +01003561 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003562
Joerg Roedel20307532010-11-29 17:51:48 +01003563 /* Enter Guest-Mode */
3564 enter_guest_mode(&svm->vcpu);
3565
Joerg Roedel384c6362010-11-30 18:03:56 +01003566 /*
3567 * Merge guest and host intercepts - must be called with vcpu in
3568 * guest-mode to take affect here
3569 */
3570 recalc_intercepts(svm);
3571
Joerg Roedel06fc77722010-02-19 16:23:07 +01003572 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003573
Joerg Roedel2af91942009-08-07 11:49:28 +02003574 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003575
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003576 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003577}
3578
3579static bool nested_svm_vmrun(struct vcpu_svm *svm)
3580{
3581 struct vmcb *nested_vmcb;
3582 struct vmcb *hsave = svm->nested.hsave;
3583 struct vmcb *vmcb = svm->vmcb;
3584 struct page *page;
3585 u64 vmcb_gpa;
3586
3587 vmcb_gpa = svm->vmcb->save.rax;
3588
3589 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3590 if (!nested_vmcb)
3591 return false;
3592
3593 if (!nested_vmcb_checks(nested_vmcb)) {
3594 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3595 nested_vmcb->control.exit_code_hi = 0;
3596 nested_vmcb->control.exit_info_1 = 0;
3597 nested_vmcb->control.exit_info_2 = 0;
3598
3599 nested_svm_unmap(page);
3600
3601 return false;
3602 }
3603
3604 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3605 nested_vmcb->save.rip,
3606 nested_vmcb->control.int_ctl,
3607 nested_vmcb->control.event_inj,
3608 nested_vmcb->control.nested_ctl);
3609
3610 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3611 nested_vmcb->control.intercept_cr >> 16,
3612 nested_vmcb->control.intercept_exceptions,
3613 nested_vmcb->control.intercept);
3614
3615 /* Clear internal status */
3616 kvm_clear_exception_queue(&svm->vcpu);
3617 kvm_clear_interrupt_queue(&svm->vcpu);
3618
3619 /*
3620 * Save the old vmcb, so we don't need to pick what we save, but can
3621 * restore everything when a VMEXIT occurs
3622 */
3623 hsave->save.es = vmcb->save.es;
3624 hsave->save.cs = vmcb->save.cs;
3625 hsave->save.ss = vmcb->save.ss;
3626 hsave->save.ds = vmcb->save.ds;
3627 hsave->save.gdtr = vmcb->save.gdtr;
3628 hsave->save.idtr = vmcb->save.idtr;
3629 hsave->save.efer = svm->vcpu.arch.efer;
3630 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3631 hsave->save.cr4 = svm->vcpu.arch.cr4;
3632 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3633 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3634 hsave->save.rsp = vmcb->save.rsp;
3635 hsave->save.rax = vmcb->save.rax;
3636 if (npt_enabled)
3637 hsave->save.cr3 = vmcb->save.cr3;
3638 else
3639 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3640
3641 copy_vmcb_control_area(hsave, vmcb);
3642
3643 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003644
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003645 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003646}
3647
Joerg Roedel9966bf62009-08-07 11:49:40 +02003648static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003649{
3650 to_vmcb->save.fs = from_vmcb->save.fs;
3651 to_vmcb->save.gs = from_vmcb->save.gs;
3652 to_vmcb->save.tr = from_vmcb->save.tr;
3653 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3654 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3655 to_vmcb->save.star = from_vmcb->save.star;
3656 to_vmcb->save.lstar = from_vmcb->save.lstar;
3657 to_vmcb->save.cstar = from_vmcb->save.cstar;
3658 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3659 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3660 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3661 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003662}
3663
Avi Kivity851ba692009-08-24 11:10:17 +03003664static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003665{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003666 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003667 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003668 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003669
Alexander Graf55426752008-11-25 20:17:06 +01003670 if (nested_svm_check_permissions(svm))
3671 return 1;
3672
Joerg Roedel7597f122010-02-19 16:23:00 +01003673 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003674 if (!nested_vmcb)
3675 return 1;
3676
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003677 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003678 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003679
Joerg Roedel9966bf62009-08-07 11:49:40 +02003680 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003681 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003682
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003683 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003684}
3685
Avi Kivity851ba692009-08-24 11:10:17 +03003686static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003687{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003688 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003689 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003690 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003691
Alexander Graf55426752008-11-25 20:17:06 +01003692 if (nested_svm_check_permissions(svm))
3693 return 1;
3694
Joerg Roedel7597f122010-02-19 16:23:00 +01003695 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003696 if (!nested_vmcb)
3697 return 1;
3698
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003699 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003700 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003701
Joerg Roedel9966bf62009-08-07 11:49:40 +02003702 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003703 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003704
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003705 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003706}
3707
Avi Kivity851ba692009-08-24 11:10:17 +03003708static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003709{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003710 if (nested_svm_check_permissions(svm))
3711 return 1;
3712
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003713 /* Save rip after vmrun instruction */
3714 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003715
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003716 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003717 return 1;
3718
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003719 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003720 goto failed;
3721
3722 return 1;
3723
3724failed:
3725
3726 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3727 svm->vmcb->control.exit_code_hi = 0;
3728 svm->vmcb->control.exit_info_1 = 0;
3729 svm->vmcb->control.exit_info_2 = 0;
3730
3731 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003732
3733 return 1;
3734}
3735
Avi Kivity851ba692009-08-24 11:10:17 +03003736static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003737{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003738 int ret;
3739
Alexander Graf1371d902008-11-25 20:17:04 +01003740 if (nested_svm_check_permissions(svm))
3741 return 1;
3742
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003743 /*
3744 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003745 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003746 */
3747 if (vgif_enabled(svm))
3748 clr_intercept(svm, INTERCEPT_STGI);
3749
Alexander Graf1371d902008-11-25 20:17:04 +01003750 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003751 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003752 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003753
Joerg Roedel2af91942009-08-07 11:49:28 +02003754 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003755
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003756 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003757}
3758
Avi Kivity851ba692009-08-24 11:10:17 +03003759static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003760{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003761 int ret;
3762
Alexander Graf1371d902008-11-25 20:17:04 +01003763 if (nested_svm_check_permissions(svm))
3764 return 1;
3765
3766 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003767 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003768
Joerg Roedel2af91942009-08-07 11:49:28 +02003769 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003770
3771 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003772 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3773 svm_clear_vintr(svm);
3774 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3775 mark_dirty(svm->vmcb, VMCB_INTR);
3776 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003777
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003778 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003779}
3780
Avi Kivity851ba692009-08-24 11:10:17 +03003781static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003782{
3783 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003784
David Kaplan668f1982015-02-20 16:02:10 -06003785 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3786 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003787
Alexander Grafff092382009-06-15 15:21:24 +02003788 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003789 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003790
3791 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003792 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003793}
3794
Joerg Roedel532a46b2009-10-09 16:08:32 +02003795static int skinit_interception(struct vcpu_svm *svm)
3796{
David Kaplan668f1982015-02-20 16:02:10 -06003797 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003798
3799 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3800 return 1;
3801}
3802
David Kaplandab429a2015-03-02 13:43:37 -06003803static int wbinvd_interception(struct vcpu_svm *svm)
3804{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003805 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003806}
3807
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003808static int xsetbv_interception(struct vcpu_svm *svm)
3809{
3810 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3811 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3812
3813 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3814 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003815 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003816 }
3817
3818 return 1;
3819}
3820
Avi Kivity851ba692009-08-24 11:10:17 +03003821static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003822{
Izik Eidus37817f22008-03-24 23:14:53 +02003823 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003824 int reason;
3825 int int_type = svm->vmcb->control.exit_int_info &
3826 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003827 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003828 uint32_t type =
3829 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3830 uint32_t idt_v =
3831 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003832 bool has_error_code = false;
3833 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003834
3835 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003836
Izik Eidus37817f22008-03-24 23:14:53 +02003837 if (svm->vmcb->control.exit_info_2 &
3838 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003839 reason = TASK_SWITCH_IRET;
3840 else if (svm->vmcb->control.exit_info_2 &
3841 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3842 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003843 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003844 reason = TASK_SWITCH_GATE;
3845 else
3846 reason = TASK_SWITCH_CALL;
3847
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003848 if (reason == TASK_SWITCH_GATE) {
3849 switch (type) {
3850 case SVM_EXITINTINFO_TYPE_NMI:
3851 svm->vcpu.arch.nmi_injected = false;
3852 break;
3853 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003854 if (svm->vmcb->control.exit_info_2 &
3855 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3856 has_error_code = true;
3857 error_code =
3858 (u32)svm->vmcb->control.exit_info_2;
3859 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003860 kvm_clear_exception_queue(&svm->vcpu);
3861 break;
3862 case SVM_EXITINTINFO_TYPE_INTR:
3863 kvm_clear_interrupt_queue(&svm->vcpu);
3864 break;
3865 default:
3866 break;
3867 }
3868 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003869
Gleb Natapov8317c292009-04-12 13:37:02 +03003870 if (reason != TASK_SWITCH_GATE ||
3871 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3872 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003873 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3874 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003875
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003876 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3877 int_vec = -1;
3878
3879 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003880 has_error_code, error_code) == EMULATE_FAIL) {
3881 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3882 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3883 svm->vcpu.run->internal.ndata = 0;
3884 return 0;
3885 }
3886 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003887}
3888
Avi Kivity851ba692009-08-24 11:10:17 +03003889static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003890{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003891 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003892 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003893}
3894
Avi Kivity851ba692009-08-24 11:10:17 +03003895static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003896{
3897 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003898 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003899 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003900 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003901 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003902 return 1;
3903}
3904
Avi Kivity851ba692009-08-24 11:10:17 +03003905static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003906{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003907 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003908 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003909
3910 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003911 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003912}
3913
Avi Kivity851ba692009-08-24 11:10:17 +03003914static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003916 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917}
3918
Brijesh Singh7607b712018-02-19 10:14:44 -06003919static int rsm_interception(struct vcpu_svm *svm)
3920{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003921 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3922 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003923}
3924
Avi Kivity332b56e2011-11-10 14:57:24 +02003925static int rdpmc_interception(struct vcpu_svm *svm)
3926{
3927 int err;
3928
3929 if (!static_cpu_has(X86_FEATURE_NRIPS))
3930 return emulate_on_interception(svm);
3931
3932 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003933 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003934}
3935
Xiubo Li52eb5a62015-03-13 17:39:45 +08003936static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3937 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003938{
3939 unsigned long cr0 = svm->vcpu.arch.cr0;
3940 bool ret = false;
3941 u64 intercept;
3942
3943 intercept = svm->nested.intercept;
3944
3945 if (!is_guest_mode(&svm->vcpu) ||
3946 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3947 return false;
3948
3949 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3950 val &= ~SVM_CR0_SELECTIVE_MASK;
3951
3952 if (cr0 ^ val) {
3953 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3954 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3955 }
3956
3957 return ret;
3958}
3959
Andre Przywara7ff76d52010-12-21 11:12:04 +01003960#define CR_VALID (1ULL << 63)
3961
3962static int cr_interception(struct vcpu_svm *svm)
3963{
3964 int reg, cr;
3965 unsigned long val;
3966 int err;
3967
3968 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3969 return emulate_on_interception(svm);
3970
3971 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3972 return emulate_on_interception(svm);
3973
3974 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003975 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3976 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3977 else
3978 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003979
3980 err = 0;
3981 if (cr >= 16) { /* mov to cr */
3982 cr -= 16;
3983 val = kvm_register_read(&svm->vcpu, reg);
3984 switch (cr) {
3985 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003986 if (!check_selective_cr0_intercepted(svm, val))
3987 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003988 else
3989 return 1;
3990
Andre Przywara7ff76d52010-12-21 11:12:04 +01003991 break;
3992 case 3:
3993 err = kvm_set_cr3(&svm->vcpu, val);
3994 break;
3995 case 4:
3996 err = kvm_set_cr4(&svm->vcpu, val);
3997 break;
3998 case 8:
3999 err = kvm_set_cr8(&svm->vcpu, val);
4000 break;
4001 default:
4002 WARN(1, "unhandled write to CR%d", cr);
4003 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4004 return 1;
4005 }
4006 } else { /* mov from cr */
4007 switch (cr) {
4008 case 0:
4009 val = kvm_read_cr0(&svm->vcpu);
4010 break;
4011 case 2:
4012 val = svm->vcpu.arch.cr2;
4013 break;
4014 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004015 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004016 break;
4017 case 4:
4018 val = kvm_read_cr4(&svm->vcpu);
4019 break;
4020 case 8:
4021 val = kvm_get_cr8(&svm->vcpu);
4022 break;
4023 default:
4024 WARN(1, "unhandled read from CR%d", cr);
4025 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
4026 return 1;
4027 }
4028 kvm_register_write(&svm->vcpu, reg, val);
4029 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004030 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004031}
4032
Andre Przywaracae37972010-12-21 11:12:05 +01004033static int dr_interception(struct vcpu_svm *svm)
4034{
4035 int reg, dr;
4036 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004037
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004038 if (svm->vcpu.guest_debug == 0) {
4039 /*
4040 * No more DR vmexits; force a reload of the debug registers
4041 * and reenter on this instruction. The next vmexit will
4042 * retrieve the full state of the debug registers.
4043 */
4044 clr_dr_intercepts(svm);
4045 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4046 return 1;
4047 }
4048
Andre Przywaracae37972010-12-21 11:12:05 +01004049 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4050 return emulate_on_interception(svm);
4051
4052 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4053 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4054
4055 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004056 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4057 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004058 val = kvm_register_read(&svm->vcpu, reg);
4059 kvm_set_dr(&svm->vcpu, dr - 16, val);
4060 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004061 if (!kvm_require_dr(&svm->vcpu, dr))
4062 return 1;
4063 kvm_get_dr(&svm->vcpu, dr, &val);
4064 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004065 }
4066
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004067 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004068}
4069
Avi Kivity851ba692009-08-24 11:10:17 +03004070static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004071{
Avi Kivity851ba692009-08-24 11:10:17 +03004072 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004073 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004074
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004075 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4076 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004077 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004078 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004079 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004080 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004081 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004082 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4083 return 0;
4084}
4085
Tom Lendacky801e4592018-02-21 13:39:51 -06004086static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4087{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004088 msr->data = 0;
4089
4090 switch (msr->index) {
4091 case MSR_F10H_DECFG:
4092 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4093 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4094 break;
4095 default:
4096 return 1;
4097 }
4098
4099 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004100}
4101
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004102static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004103{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004104 struct vcpu_svm *svm = to_svm(vcpu);
4105
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004106 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004107 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004108 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004110#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004111 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004112 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004113 break;
4114 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004115 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004116 break;
4117 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004118 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004119 break;
4120 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004121 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004122 break;
4123#endif
4124 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004125 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004126 break;
4127 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004128 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004129 break;
4130 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004131 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004133 case MSR_TSC_AUX:
4134 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4135 return 1;
4136 msr_info->data = svm->tsc_aux;
4137 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004138 /*
4139 * Nobody will change the following 5 values in the VMCB so we can
4140 * safely return them on rdmsr. They will always be 0 until LBRV is
4141 * implemented.
4142 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004143 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004144 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004145 break;
4146 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004147 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004148 break;
4149 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004150 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004151 break;
4152 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004153 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004154 break;
4155 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004156 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004157 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004158 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004159 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004160 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004161 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004162 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004163 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004164 case MSR_IA32_SPEC_CTRL:
4165 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004166 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4167 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004168 return 1;
4169
4170 msr_info->data = svm->spec_ctrl;
4171 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004172 case MSR_AMD64_VIRT_SPEC_CTRL:
4173 if (!msr_info->host_initiated &&
4174 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4175 return 1;
4176
4177 msr_info->data = svm->virt_spec_ctrl;
4178 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004179 case MSR_F15H_IC_CFG: {
4180
4181 int family, model;
4182
4183 family = guest_cpuid_family(vcpu);
4184 model = guest_cpuid_model(vcpu);
4185
4186 if (family < 0 || model < 0)
4187 return kvm_get_msr_common(vcpu, msr_info);
4188
4189 msr_info->data = 0;
4190
4191 if (family == 0x15 &&
4192 (model >= 0x2 && model < 0x20))
4193 msr_info->data = 0x1E;
4194 }
4195 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004196 case MSR_F10H_DECFG:
4197 msr_info->data = svm->msr_decfg;
4198 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004199 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004200 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004201 }
4202 return 0;
4203}
4204
Avi Kivity851ba692009-08-24 11:10:17 +03004205static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004206{
David Kaplan668f1982015-02-20 16:02:10 -06004207 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004208 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004209
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004210 msr_info.index = ecx;
4211 msr_info.host_initiated = false;
4212 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004213 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004214 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004215 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004216 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004217 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004218
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004219 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4220 msr_info.data & 0xffffffff);
4221 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4222 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004223 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004224 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004225 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004226}
4227
Joerg Roedel4a810182010-02-24 18:59:15 +01004228static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4229{
4230 struct vcpu_svm *svm = to_svm(vcpu);
4231 int svm_dis, chg_mask;
4232
4233 if (data & ~SVM_VM_CR_VALID_MASK)
4234 return 1;
4235
4236 chg_mask = SVM_VM_CR_VALID_MASK;
4237
4238 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4239 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4240
4241 svm->nested.vm_cr_msr &= ~chg_mask;
4242 svm->nested.vm_cr_msr |= (data & chg_mask);
4243
4244 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4245
4246 /* check for svm_disable while efer.svme is set */
4247 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4248 return 1;
4249
4250 return 0;
4251}
4252
Will Auld8fe8ab42012-11-29 12:42:12 -08004253static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004255 struct vcpu_svm *svm = to_svm(vcpu);
4256
Will Auld8fe8ab42012-11-29 12:42:12 -08004257 u32 ecx = msr->index;
4258 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004260 case MSR_IA32_CR_PAT:
4261 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4262 return 1;
4263 vcpu->arch.pat = data;
4264 svm->vmcb->save.g_pat = data;
4265 mark_dirty(svm->vmcb, VMCB_NPT);
4266 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004267 case MSR_IA32_SPEC_CTRL:
4268 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004269 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4270 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004271 return 1;
4272
4273 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004274 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004275 return 1;
4276
4277 svm->spec_ctrl = data;
4278
4279 if (!data)
4280 break;
4281
4282 /*
4283 * For non-nested:
4284 * When it's written (to non-zero) for the first time, pass
4285 * it through.
4286 *
4287 * For nested:
4288 * The handling of the MSR bitmap for L2 guests is done in
4289 * nested_svm_vmrun_msrpm.
4290 * We update the L1 MSR bit as well since it will end up
4291 * touching the MSR anyway now.
4292 */
4293 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4294 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004295 case MSR_IA32_PRED_CMD:
4296 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004297 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004298 return 1;
4299
4300 if (data & ~PRED_CMD_IBPB)
4301 return 1;
4302
4303 if (!data)
4304 break;
4305
4306 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4307 if (is_guest_mode(vcpu))
4308 break;
4309 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4310 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004311 case MSR_AMD64_VIRT_SPEC_CTRL:
4312 if (!msr->host_initiated &&
4313 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4314 return 1;
4315
4316 if (data & ~SPEC_CTRL_SSBD)
4317 return 1;
4318
4319 svm->virt_spec_ctrl = data;
4320 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004321 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004322 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004323 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004324#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004325 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004326 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004327 break;
4328 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004329 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004330 break;
4331 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004332 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333 break;
4334 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004335 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004336 break;
4337#endif
4338 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004339 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004340 break;
4341 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004342 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004343 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344 break;
4345 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004346 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004347 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004348 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004349 case MSR_TSC_AUX:
4350 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4351 return 1;
4352
4353 /*
4354 * This is rare, so we update the MSR here instead of using
4355 * direct_access_msrs. Doing that would require a rdmsr in
4356 * svm_vcpu_put.
4357 */
4358 svm->tsc_aux = data;
4359 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4360 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004361 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004362 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004363 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4364 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004365 break;
4366 }
4367 if (data & DEBUGCTL_RESERVED_BITS)
4368 return 1;
4369
4370 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004371 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004372 if (data & (1ULL<<0))
4373 svm_enable_lbrv(svm);
4374 else
4375 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004376 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004377 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004378 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004379 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004380 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004381 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004382 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004383 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004384 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004385 case MSR_F10H_DECFG: {
4386 struct kvm_msr_entry msr_entry;
4387
4388 msr_entry.index = msr->index;
4389 if (svm_get_msr_feature(&msr_entry))
4390 return 1;
4391
4392 /* Check the supported bits */
4393 if (data & ~msr_entry.data)
4394 return 1;
4395
4396 /* Don't allow the guest to change a bit, #GP */
4397 if (!msr->host_initiated && (data ^ msr_entry.data))
4398 return 1;
4399
4400 svm->msr_decfg = data;
4401 break;
4402 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004403 case MSR_IA32_APICBASE:
4404 if (kvm_vcpu_apicv_active(vcpu))
4405 avic_update_vapic_bar(to_svm(vcpu), data);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004406 /* Fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004407 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004408 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004409 }
4410 return 0;
4411}
4412
Avi Kivity851ba692009-08-24 11:10:17 +03004413static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004414{
Will Auld8fe8ab42012-11-29 12:42:12 -08004415 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004416 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4417 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004418
Will Auld8fe8ab42012-11-29 12:42:12 -08004419 msr.data = data;
4420 msr.index = ecx;
4421 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004422
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004423 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004424 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004425 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004426 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004427 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004428 } else {
4429 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004430 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004431 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004432}
4433
Avi Kivity851ba692009-08-24 11:10:17 +03004434static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004435{
Rusty Russelle756fc62007-07-30 20:07:08 +10004436 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004437 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004438 else
Avi Kivity851ba692009-08-24 11:10:17 +03004439 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004440}
4441
Avi Kivity851ba692009-08-24 11:10:17 +03004442static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004443{
Avi Kivity3842d132010-07-27 12:30:24 +03004444 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004445 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004446 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004447 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004448 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004449 return 1;
4450}
4451
Mark Langsdorf565d0992009-10-06 14:25:02 -05004452static int pause_interception(struct vcpu_svm *svm)
4453{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004454 struct kvm_vcpu *vcpu = &svm->vcpu;
4455 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4456
Babu Moger8566ac82018-03-16 16:37:26 -04004457 if (pause_filter_thresh)
4458 grow_ple_window(vcpu);
4459
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004460 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004461 return 1;
4462}
4463
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004464static int nop_interception(struct vcpu_svm *svm)
4465{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004466 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004467}
4468
4469static int monitor_interception(struct vcpu_svm *svm)
4470{
4471 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4472 return nop_interception(svm);
4473}
4474
4475static int mwait_interception(struct vcpu_svm *svm)
4476{
4477 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4478 return nop_interception(svm);
4479}
4480
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004481enum avic_ipi_failure_cause {
4482 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4483 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4484 AVIC_IPI_FAILURE_INVALID_TARGET,
4485 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4486};
4487
4488static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4489{
4490 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4491 u32 icrl = svm->vmcb->control.exit_info_1;
4492 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004493 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004494 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4495
4496 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4497
4498 switch (id) {
4499 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4500 /*
4501 * AVIC hardware handles the generation of
4502 * IPIs when the specified Message Type is Fixed
4503 * (also known as fixed delivery mode) and
4504 * the Trigger Mode is edge-triggered. The hardware
4505 * also supports self and broadcast delivery modes
4506 * specified via the Destination Shorthand(DSH)
4507 * field of the ICRL. Logical and physical APIC ID
4508 * formats are supported. All other IPI types cause
4509 * a #VMEXIT, which needs to emulated.
4510 */
4511 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4512 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4513 break;
4514 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004515 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4516
4517 /*
Suravee Suthikulpanitbb218fb2019-01-22 10:25:13 +00004518 * Update ICR high and low, then emulate sending IPI,
4519 * which is handled when writing APIC_ICR.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004520 */
Suravee Suthikulpanitbb218fb2019-01-22 10:25:13 +00004521 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4522 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004523 break;
4524 }
4525 case AVIC_IPI_FAILURE_INVALID_TARGET:
Suravee Suthikulpanit37ef0c42019-01-22 10:24:19 +00004526 WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
4527 index, svm->vcpu.vcpu_id, icrh, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004528 break;
4529 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4530 WARN_ONCE(1, "Invalid backing page\n");
4531 break;
4532 default:
4533 pr_err("Unknown IPI interception\n");
4534 }
4535
4536 return 1;
4537}
4538
4539static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4540{
Sean Christopherson81811c12018-03-20 12:17:21 -07004541 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004542 int index;
4543 u32 *logical_apic_id_table;
4544 int dlid = GET_APIC_LOGICAL_ID(ldr);
4545
4546 if (!dlid)
4547 return NULL;
4548
4549 if (flat) { /* flat */
4550 index = ffs(dlid) - 1;
4551 if (index > 7)
4552 return NULL;
4553 } else { /* cluster */
4554 int cluster = (dlid & 0xf0) >> 4;
4555 int apic = ffs(dlid & 0x0f) - 1;
4556
4557 if ((apic < 0) || (apic > 7) ||
4558 (cluster >= 0xf))
4559 return NULL;
4560 index = (cluster << 2) + apic;
4561 }
4562
Sean Christopherson81811c12018-03-20 12:17:21 -07004563 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004564
4565 return &logical_apic_id_table[index];
4566}
4567
4568static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4569 bool valid)
4570{
4571 bool flat;
4572 u32 *entry, new_entry;
4573
4574 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4575 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4576 if (!entry)
4577 return -EINVAL;
4578
4579 new_entry = READ_ONCE(*entry);
4580 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4581 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4582 if (valid)
4583 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4584 else
4585 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4586 WRITE_ONCE(*entry, new_entry);
4587
4588 return 0;
4589}
4590
4591static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4592{
4593 int ret;
4594 struct vcpu_svm *svm = to_svm(vcpu);
4595 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4596
4597 if (!ldr)
4598 return 1;
4599
4600 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4601 if (ret && svm->ldr_reg) {
4602 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4603 svm->ldr_reg = 0;
4604 } else {
4605 svm->ldr_reg = ldr;
4606 }
4607 return ret;
4608}
4609
4610static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4611{
4612 u64 *old, *new;
4613 struct vcpu_svm *svm = to_svm(vcpu);
4614 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4615 u32 id = (apic_id_reg >> 24) & 0xff;
4616
4617 if (vcpu->vcpu_id == id)
4618 return 0;
4619
4620 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4621 new = avic_get_physical_id_entry(vcpu, id);
4622 if (!new || !old)
4623 return 1;
4624
4625 /* We need to move physical_id_entry to new offset */
4626 *new = *old;
4627 *old = 0ULL;
4628 to_svm(vcpu)->avic_physical_id_cache = new;
4629
4630 /*
4631 * Also update the guest physical APIC ID in the logical
4632 * APIC ID table entry if already setup the LDR.
4633 */
4634 if (svm->ldr_reg)
4635 avic_handle_ldr_update(vcpu);
4636
4637 return 0;
4638}
4639
4640static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4641{
4642 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004643 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004644 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4645 u32 mod = (dfr >> 28) & 0xf;
4646
4647 /*
4648 * We assume that all local APICs are using the same type.
4649 * If this changes, we need to flush the AVIC logical
4650 * APID id table.
4651 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004652 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004653 return 0;
4654
Sean Christopherson81811c12018-03-20 12:17:21 -07004655 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4656 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004657
4658 if (svm->ldr_reg)
4659 avic_handle_ldr_update(vcpu);
4660 return 0;
4661}
4662
4663static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4664{
4665 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4666 u32 offset = svm->vmcb->control.exit_info_1 &
4667 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4668
4669 switch (offset) {
4670 case APIC_ID:
4671 if (avic_handle_apic_id_update(&svm->vcpu))
4672 return 0;
4673 break;
4674 case APIC_LDR:
4675 if (avic_handle_ldr_update(&svm->vcpu))
4676 return 0;
4677 break;
4678 case APIC_DFR:
4679 avic_handle_dfr_update(&svm->vcpu);
4680 break;
4681 default:
4682 break;
4683 }
4684
4685 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4686
4687 return 1;
4688}
4689
4690static bool is_avic_unaccelerated_access_trap(u32 offset)
4691{
4692 bool ret = false;
4693
4694 switch (offset) {
4695 case APIC_ID:
4696 case APIC_EOI:
4697 case APIC_RRR:
4698 case APIC_LDR:
4699 case APIC_DFR:
4700 case APIC_SPIV:
4701 case APIC_ESR:
4702 case APIC_ICR:
4703 case APIC_LVTT:
4704 case APIC_LVTTHMR:
4705 case APIC_LVTPC:
4706 case APIC_LVT0:
4707 case APIC_LVT1:
4708 case APIC_LVTERR:
4709 case APIC_TMICT:
4710 case APIC_TDCR:
4711 ret = true;
4712 break;
4713 default:
4714 break;
4715 }
4716 return ret;
4717}
4718
4719static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4720{
4721 int ret = 0;
4722 u32 offset = svm->vmcb->control.exit_info_1 &
4723 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4724 u32 vector = svm->vmcb->control.exit_info_2 &
4725 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4726 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4727 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4728 bool trap = is_avic_unaccelerated_access_trap(offset);
4729
4730 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4731 trap, write, vector);
4732 if (trap) {
4733 /* Handling Trap */
4734 WARN_ONCE(!write, "svm: Handling trap read.\n");
4735 ret = avic_unaccel_trap_write(svm);
4736 } else {
4737 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004738 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004739 }
4740
4741 return ret;
4742}
4743
Mathias Krause09941fb2012-08-30 01:30:20 +02004744static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004745 [SVM_EXIT_READ_CR0] = cr_interception,
4746 [SVM_EXIT_READ_CR3] = cr_interception,
4747 [SVM_EXIT_READ_CR4] = cr_interception,
4748 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004749 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004750 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004751 [SVM_EXIT_WRITE_CR3] = cr_interception,
4752 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004753 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004754 [SVM_EXIT_READ_DR0] = dr_interception,
4755 [SVM_EXIT_READ_DR1] = dr_interception,
4756 [SVM_EXIT_READ_DR2] = dr_interception,
4757 [SVM_EXIT_READ_DR3] = dr_interception,
4758 [SVM_EXIT_READ_DR4] = dr_interception,
4759 [SVM_EXIT_READ_DR5] = dr_interception,
4760 [SVM_EXIT_READ_DR6] = dr_interception,
4761 [SVM_EXIT_READ_DR7] = dr_interception,
4762 [SVM_EXIT_WRITE_DR0] = dr_interception,
4763 [SVM_EXIT_WRITE_DR1] = dr_interception,
4764 [SVM_EXIT_WRITE_DR2] = dr_interception,
4765 [SVM_EXIT_WRITE_DR3] = dr_interception,
4766 [SVM_EXIT_WRITE_DR4] = dr_interception,
4767 [SVM_EXIT_WRITE_DR5] = dr_interception,
4768 [SVM_EXIT_WRITE_DR6] = dr_interception,
4769 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004770 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4771 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004772 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004773 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004774 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004775 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004776 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004777 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004778 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004779 [SVM_EXIT_SMI] = nop_on_interception,
4780 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004781 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004782 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004783 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004784 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004785 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004786 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004787 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004788 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004789 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004790 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004791 [SVM_EXIT_MSR] = msr_interception,
4792 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004793 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004794 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004795 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004796 [SVM_EXIT_VMLOAD] = vmload_interception,
4797 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004798 [SVM_EXIT_STGI] = stgi_interception,
4799 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004800 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004801 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004802 [SVM_EXIT_MONITOR] = monitor_interception,
4803 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004804 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004805 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004806 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004807 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4808 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004809};
4810
Joe Perchesae8cc052011-04-24 22:00:50 -07004811static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004812{
4813 struct vcpu_svm *svm = to_svm(vcpu);
4814 struct vmcb_control_area *control = &svm->vmcb->control;
4815 struct vmcb_save_area *save = &svm->vmcb->save;
4816
4817 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004818 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4819 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4820 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4821 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4822 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4823 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4824 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004825 pr_err("%-20s%d\n", "pause filter threshold:",
4826 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004827 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4828 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4829 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4830 pr_err("%-20s%d\n", "asid:", control->asid);
4831 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4832 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4833 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4834 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4835 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4836 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4837 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4838 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4839 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4840 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4841 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004842 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004843 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4844 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004845 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004846 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004847 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4848 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4849 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004850 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004851 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4852 "es:",
4853 save->es.selector, save->es.attrib,
4854 save->es.limit, save->es.base);
4855 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4856 "cs:",
4857 save->cs.selector, save->cs.attrib,
4858 save->cs.limit, save->cs.base);
4859 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4860 "ss:",
4861 save->ss.selector, save->ss.attrib,
4862 save->ss.limit, save->ss.base);
4863 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4864 "ds:",
4865 save->ds.selector, save->ds.attrib,
4866 save->ds.limit, save->ds.base);
4867 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4868 "fs:",
4869 save->fs.selector, save->fs.attrib,
4870 save->fs.limit, save->fs.base);
4871 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4872 "gs:",
4873 save->gs.selector, save->gs.attrib,
4874 save->gs.limit, save->gs.base);
4875 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4876 "gdtr:",
4877 save->gdtr.selector, save->gdtr.attrib,
4878 save->gdtr.limit, save->gdtr.base);
4879 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4880 "ldtr:",
4881 save->ldtr.selector, save->ldtr.attrib,
4882 save->ldtr.limit, save->ldtr.base);
4883 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4884 "idtr:",
4885 save->idtr.selector, save->idtr.attrib,
4886 save->idtr.limit, save->idtr.base);
4887 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4888 "tr:",
4889 save->tr.selector, save->tr.attrib,
4890 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004891 pr_err("cpl: %d efer: %016llx\n",
4892 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004893 pr_err("%-15s %016llx %-13s %016llx\n",
4894 "cr0:", save->cr0, "cr2:", save->cr2);
4895 pr_err("%-15s %016llx %-13s %016llx\n",
4896 "cr3:", save->cr3, "cr4:", save->cr4);
4897 pr_err("%-15s %016llx %-13s %016llx\n",
4898 "dr6:", save->dr6, "dr7:", save->dr7);
4899 pr_err("%-15s %016llx %-13s %016llx\n",
4900 "rip:", save->rip, "rflags:", save->rflags);
4901 pr_err("%-15s %016llx %-13s %016llx\n",
4902 "rsp:", save->rsp, "rax:", save->rax);
4903 pr_err("%-15s %016llx %-13s %016llx\n",
4904 "star:", save->star, "lstar:", save->lstar);
4905 pr_err("%-15s %016llx %-13s %016llx\n",
4906 "cstar:", save->cstar, "sfmask:", save->sfmask);
4907 pr_err("%-15s %016llx %-13s %016llx\n",
4908 "kernel_gs_base:", save->kernel_gs_base,
4909 "sysenter_cs:", save->sysenter_cs);
4910 pr_err("%-15s %016llx %-13s %016llx\n",
4911 "sysenter_esp:", save->sysenter_esp,
4912 "sysenter_eip:", save->sysenter_eip);
4913 pr_err("%-15s %016llx %-13s %016llx\n",
4914 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4915 pr_err("%-15s %016llx %-13s %016llx\n",
4916 "br_from:", save->br_from, "br_to:", save->br_to);
4917 pr_err("%-15s %016llx %-13s %016llx\n",
4918 "excp_from:", save->last_excp_from,
4919 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004920}
4921
Avi Kivity586f9602010-11-18 13:09:54 +02004922static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4923{
4924 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4925
4926 *info1 = control->exit_info_1;
4927 *info2 = control->exit_info_2;
4928}
4929
Avi Kivity851ba692009-08-24 11:10:17 +03004930static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004931{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004932 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004933 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004934 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004935
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004936 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4937
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004938 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004939 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4940 if (npt_enabled)
4941 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004942
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004943 if (unlikely(svm->nested.exit_required)) {
4944 nested_svm_vmexit(svm);
4945 svm->nested.exit_required = false;
4946
4947 return 1;
4948 }
4949
Joerg Roedel20307532010-11-29 17:51:48 +01004950 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004951 int vmexit;
4952
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004953 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4954 svm->vmcb->control.exit_info_1,
4955 svm->vmcb->control.exit_info_2,
4956 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004957 svm->vmcb->control.exit_int_info_err,
4958 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004959
Joerg Roedel410e4d52009-08-07 11:49:44 +02004960 vmexit = nested_svm_exit_special(svm);
4961
4962 if (vmexit == NESTED_EXIT_CONTINUE)
4963 vmexit = nested_svm_exit_handled(svm);
4964
4965 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004966 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004967 }
4968
Joerg Roedela5c38322009-08-07 11:49:32 +02004969 svm_complete_interrupts(svm);
4970
Avi Kivity04d2cc72007-09-10 18:10:54 +03004971 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4972 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4973 kvm_run->fail_entry.hardware_entry_failure_reason
4974 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004975 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4976 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004977 return 0;
4978 }
4979
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004980 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004981 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004982 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4983 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004984 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004985 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004986 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004987 exit_code);
4988
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004989 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004990 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004991 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004992 kvm_queue_exception(vcpu, UD_VECTOR);
4993 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004994 }
4995
Avi Kivity851ba692009-08-24 11:10:17 +03004996 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997}
4998
4999static void reload_tss(struct kvm_vcpu *vcpu)
5000{
5001 int cpu = raw_smp_processor_id();
5002
Tejun Heo0fe1e002009-10-29 22:34:14 +09005003 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5004 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005 load_TR_desc();
5006}
5007
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005008static void pre_sev_run(struct vcpu_svm *svm, int cpu)
5009{
5010 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
5011 int asid = sev_get_asid(svm->vcpu.kvm);
5012
5013 /* Assign the asid allocated with this SEV guest */
5014 svm->vmcb->control.asid = asid;
5015
5016 /*
5017 * Flush guest TLB:
5018 *
5019 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
5020 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
5021 */
5022 if (sd->sev_vmcbs[asid] == svm->vmcb &&
5023 svm->last_cpu == cpu)
5024 return;
5025
5026 svm->last_cpu = cpu;
5027 sd->sev_vmcbs[asid] = svm->vmcb;
5028 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5029 mark_dirty(svm->vmcb, VMCB_ASID);
5030}
5031
Rusty Russelle756fc62007-07-30 20:07:08 +10005032static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005033{
5034 int cpu = raw_smp_processor_id();
5035
Tejun Heo0fe1e002009-10-29 22:34:14 +09005036 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005037
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005038 if (sev_guest(svm->vcpu.kvm))
5039 return pre_sev_run(svm, cpu);
5040
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005041 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005042 if (svm->asid_generation != sd->asid_generation)
5043 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005044}
5045
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005046static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5047{
5048 struct vcpu_svm *svm = to_svm(vcpu);
5049
5050 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5051 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005052 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005053 ++vcpu->stat.nmi_injections;
5054}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005055
Eddie Dong85f455f2007-07-06 12:20:49 +03005056static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005057{
5058 struct vmcb_control_area *control;
5059
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005060 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005061 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005062 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005063 control->int_ctl &= ~V_INTR_PRIO_MASK;
5064 control->int_ctl |= V_IRQ_MASK |
5065 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005066 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005067}
5068
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005069static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005070{
5071 struct vcpu_svm *svm = to_svm(vcpu);
5072
Joerg Roedel2af91942009-08-07 11:49:28 +02005073 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005074
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005075 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5076 ++vcpu->stat.irq_injections;
5077
Alexander Graf219b65d2009-06-15 15:21:25 +02005078 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5079 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005080}
5081
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005082static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5083{
5084 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5085}
5086
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005087static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5088{
5089 struct vcpu_svm *svm = to_svm(vcpu);
5090
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005091 if (svm_nested_virtualize_tpr(vcpu) ||
5092 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005093 return;
5094
Radim Krčmář596f3142014-03-11 19:11:18 +01005095 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5096
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005097 if (irr == -1)
5098 return;
5099
5100 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005101 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005102}
5103
Jim Mattson8d860bb2018-05-09 16:56:05 -04005104static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005105{
5106 return;
5107}
5108
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005109static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005110{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005111 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005112}
5113
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005114static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5115{
5116}
5117
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005118static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005119{
5120}
5121
5122/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005123static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5124{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005125 struct vcpu_svm *svm = to_svm(vcpu);
5126 struct vmcb *vmcb = svm->vmcb;
5127
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005128 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005129 return;
5130
5131 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5132 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005133}
5134
Andrey Smetanin63086302015-11-10 15:36:32 +03005135static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005136{
5137 return;
5138}
5139
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005140static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5141{
5142 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5143 smp_mb__after_atomic();
5144
5145 if (avic_vcpu_is_running(vcpu))
5146 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005147 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005148 else
5149 kvm_vcpu_wake_up(vcpu);
5150}
5151
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005152static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5153{
5154 unsigned long flags;
5155 struct amd_svm_iommu_ir *cur;
5156
5157 spin_lock_irqsave(&svm->ir_list_lock, flags);
5158 list_for_each_entry(cur, &svm->ir_list, node) {
5159 if (cur->data != pi->ir_data)
5160 continue;
5161 list_del(&cur->node);
5162 kfree(cur);
5163 break;
5164 }
5165 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5166}
5167
5168static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5169{
5170 int ret = 0;
5171 unsigned long flags;
5172 struct amd_svm_iommu_ir *ir;
5173
5174 /**
5175 * In some cases, the existing irte is updaed and re-set,
5176 * so we need to check here if it's already been * added
5177 * to the ir_list.
5178 */
5179 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5180 struct kvm *kvm = svm->vcpu.kvm;
5181 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5182 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5183 struct vcpu_svm *prev_svm;
5184
5185 if (!prev_vcpu) {
5186 ret = -EINVAL;
5187 goto out;
5188 }
5189
5190 prev_svm = to_svm(prev_vcpu);
5191 svm_ir_list_del(prev_svm, pi);
5192 }
5193
5194 /**
5195 * Allocating new amd_iommu_pi_data, which will get
5196 * add to the per-vcpu ir_list.
5197 */
5198 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5199 if (!ir) {
5200 ret = -ENOMEM;
5201 goto out;
5202 }
5203 ir->data = pi->ir_data;
5204
5205 spin_lock_irqsave(&svm->ir_list_lock, flags);
5206 list_add(&ir->node, &svm->ir_list);
5207 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5208out:
5209 return ret;
5210}
5211
5212/**
5213 * Note:
5214 * The HW cannot support posting multicast/broadcast
5215 * interrupts to a vCPU. So, we still use legacy interrupt
5216 * remapping for these kind of interrupts.
5217 *
5218 * For lowest-priority interrupts, we only support
5219 * those with single CPU as the destination, e.g. user
5220 * configures the interrupts via /proc/irq or uses
5221 * irqbalance to make the interrupts single-CPU.
5222 */
5223static int
5224get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5225 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5226{
5227 struct kvm_lapic_irq irq;
5228 struct kvm_vcpu *vcpu = NULL;
5229
5230 kvm_set_msi_irq(kvm, e, &irq);
5231
5232 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5233 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5234 __func__, irq.vector);
5235 return -1;
5236 }
5237
5238 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5239 irq.vector);
5240 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005241 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005242 vcpu_info->vector = irq.vector;
5243
5244 return 0;
5245}
5246
5247/*
5248 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5249 *
5250 * @kvm: kvm
5251 * @host_irq: host irq of the interrupt
5252 * @guest_irq: gsi of the interrupt
5253 * @set: set or unset PI
5254 * returns 0 on success, < 0 on failure
5255 */
5256static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5257 uint32_t guest_irq, bool set)
5258{
5259 struct kvm_kernel_irq_routing_entry *e;
5260 struct kvm_irq_routing_table *irq_rt;
5261 int idx, ret = -EINVAL;
5262
5263 if (!kvm_arch_has_assigned_device(kvm) ||
5264 !irq_remapping_cap(IRQ_POSTING_CAP))
5265 return 0;
5266
5267 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5268 __func__, host_irq, guest_irq, set);
5269
5270 idx = srcu_read_lock(&kvm->irq_srcu);
5271 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5272 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5273
5274 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5275 struct vcpu_data vcpu_info;
5276 struct vcpu_svm *svm = NULL;
5277
5278 if (e->type != KVM_IRQ_ROUTING_MSI)
5279 continue;
5280
5281 /**
5282 * Here, we setup with legacy mode in the following cases:
5283 * 1. When cannot target interrupt to a specific vcpu.
5284 * 2. Unsetting posted interrupt.
5285 * 3. APIC virtialization is disabled for the vcpu.
5286 */
5287 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5288 kvm_vcpu_apicv_active(&svm->vcpu)) {
5289 struct amd_iommu_pi_data pi;
5290
5291 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005292 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5293 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005294 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005295 svm->vcpu.vcpu_id);
5296 pi.is_guest_mode = true;
5297 pi.vcpu_data = &vcpu_info;
5298 ret = irq_set_vcpu_affinity(host_irq, &pi);
5299
5300 /**
5301 * Here, we successfully setting up vcpu affinity in
5302 * IOMMU guest mode. Now, we need to store the posted
5303 * interrupt information in a per-vcpu ir_list so that
5304 * we can reference to them directly when we update vcpu
5305 * scheduling information in IOMMU irte.
5306 */
5307 if (!ret && pi.is_guest_mode)
5308 svm_ir_list_add(svm, &pi);
5309 } else {
5310 /* Use legacy mode in IRTE */
5311 struct amd_iommu_pi_data pi;
5312
5313 /**
5314 * Here, pi is used to:
5315 * - Tell IOMMU to use legacy mode for this interrupt.
5316 * - Retrieve ga_tag of prior interrupt remapping data.
5317 */
5318 pi.is_guest_mode = false;
5319 ret = irq_set_vcpu_affinity(host_irq, &pi);
5320
5321 /**
5322 * Check if the posted interrupt was previously
5323 * setup with the guest_mode by checking if the ga_tag
5324 * was cached. If so, we need to clean up the per-vcpu
5325 * ir_list.
5326 */
5327 if (!ret && pi.prev_ga_tag) {
5328 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5329 struct kvm_vcpu *vcpu;
5330
5331 vcpu = kvm_get_vcpu_by_id(kvm, id);
5332 if (vcpu)
5333 svm_ir_list_del(to_svm(vcpu), &pi);
5334 }
5335 }
5336
5337 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005338 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5339 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005340 vcpu_info.pi_desc_addr, set);
5341 }
5342
5343 if (ret < 0) {
5344 pr_err("%s: failed to update PI IRTE\n", __func__);
5345 goto out;
5346 }
5347 }
5348
5349 ret = 0;
5350out:
5351 srcu_read_unlock(&kvm->irq_srcu, idx);
5352 return ret;
5353}
5354
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005355static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005356{
5357 struct vcpu_svm *svm = to_svm(vcpu);
5358 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005359 int ret;
5360 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5361 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5362 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5363
5364 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005365}
5366
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005367static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5368{
5369 struct vcpu_svm *svm = to_svm(vcpu);
5370
5371 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5372}
5373
5374static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5375{
5376 struct vcpu_svm *svm = to_svm(vcpu);
5377
5378 if (masked) {
5379 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005380 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005381 } else {
5382 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005383 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005384 }
5385}
5386
Gleb Natapov78646122009-03-23 12:12:11 +02005387static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5388{
5389 struct vcpu_svm *svm = to_svm(vcpu);
5390 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005391 int ret;
5392
5393 if (!gif_set(svm) ||
5394 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5395 return 0;
5396
Avi Kivityf6e78472010-08-02 15:30:20 +03005397 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005398
Joerg Roedel20307532010-11-29 17:51:48 +01005399 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005400 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5401
5402 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005403}
5404
Jan Kiszkac9a79532014-03-07 20:03:15 +01005405static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005406{
Alexander Graf219b65d2009-06-15 15:21:25 +02005407 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005408
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005409 if (kvm_vcpu_apicv_active(vcpu))
5410 return;
5411
Joerg Roedele0231712010-02-24 18:59:10 +01005412 /*
5413 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5414 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5415 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005416 * we'll get the vintr intercept. However, if the vGIF feature is
5417 * enabled, the STGI interception will not occur. Enable the irq
5418 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005419 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005420 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005421 svm_set_vintr(svm);
5422 svm_inject_irq(svm, 0x0);
5423 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005424}
5425
Jan Kiszkac9a79532014-03-07 20:03:15 +01005426static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005427{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005428 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005429
Gleb Natapov44c11432009-05-11 13:35:52 +03005430 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5431 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005432 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005433
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005434 if (!gif_set(svm)) {
5435 if (vgif_enabled(svm))
5436 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005437 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005438 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005439
5440 if (svm->nested.exit_required)
5441 return; /* we're not going to run the guest yet */
5442
Joerg Roedele0231712010-02-24 18:59:10 +01005443 /*
5444 * Something prevents NMI from been injected. Single step over possible
5445 * problem (IRET or exception injection or interrupt shadow)
5446 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005447 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005448 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005449 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005450}
5451
Izik Eiduscbc94022007-10-25 00:29:55 +02005452static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5453{
5454 return 0;
5455}
5456
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005457static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5458{
5459 return 0;
5460}
5461
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005462static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005463{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005464 struct vcpu_svm *svm = to_svm(vcpu);
5465
5466 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5467 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5468 else
5469 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005470}
5471
Junaid Shahidfaff8752018-06-29 13:10:05 -07005472static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5473{
5474 struct vcpu_svm *svm = to_svm(vcpu);
5475
5476 invlpga(gva, svm->vmcb->control.asid);
5477}
5478
Avi Kivity04d2cc72007-09-10 18:10:54 +03005479static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5480{
5481}
5482
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005483static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5484{
5485 struct vcpu_svm *svm = to_svm(vcpu);
5486
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005487 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005488 return;
5489
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005490 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005491 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005492 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005493 }
5494}
5495
Joerg Roedel649d6862008-04-16 16:51:15 +02005496static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5497{
5498 struct vcpu_svm *svm = to_svm(vcpu);
5499 u64 cr8;
5500
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005501 if (svm_nested_virtualize_tpr(vcpu) ||
5502 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005503 return;
5504
Joerg Roedel649d6862008-04-16 16:51:15 +02005505 cr8 = kvm_get_cr8(vcpu);
5506 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5507 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5508}
5509
Gleb Natapov9222be12009-04-23 17:14:37 +03005510static void svm_complete_interrupts(struct vcpu_svm *svm)
5511{
5512 u8 vector;
5513 int type;
5514 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005515 unsigned int3_injected = svm->int3_injected;
5516
5517 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005518
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005519 /*
5520 * If we've made progress since setting HF_IRET_MASK, we've
5521 * executed an IRET and can allow NMI injection.
5522 */
5523 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5524 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005525 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005526 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5527 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005528
Gleb Natapov9222be12009-04-23 17:14:37 +03005529 svm->vcpu.arch.nmi_injected = false;
5530 kvm_clear_exception_queue(&svm->vcpu);
5531 kvm_clear_interrupt_queue(&svm->vcpu);
5532
5533 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5534 return;
5535
Avi Kivity3842d132010-07-27 12:30:24 +03005536 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5537
Gleb Natapov9222be12009-04-23 17:14:37 +03005538 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5539 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5540
5541 switch (type) {
5542 case SVM_EXITINTINFO_TYPE_NMI:
5543 svm->vcpu.arch.nmi_injected = true;
5544 break;
5545 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005546 /*
5547 * In case of software exceptions, do not reinject the vector,
5548 * but re-execute the instruction instead. Rewind RIP first
5549 * if we emulated INT3 before.
5550 */
5551 if (kvm_exception_is_soft(vector)) {
5552 if (vector == BP_VECTOR && int3_injected &&
5553 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5554 kvm_rip_write(&svm->vcpu,
5555 kvm_rip_read(&svm->vcpu) -
5556 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005557 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005558 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005559 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5560 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005561 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005562
5563 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005564 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005565 break;
5566 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005567 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005568 break;
5569 default:
5570 break;
5571 }
5572}
5573
Avi Kivityb463a6f2010-07-20 15:06:17 +03005574static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5575{
5576 struct vcpu_svm *svm = to_svm(vcpu);
5577 struct vmcb_control_area *control = &svm->vmcb->control;
5578
5579 control->exit_int_info = control->event_inj;
5580 control->exit_int_info_err = control->event_inj_err;
5581 control->event_inj = 0;
5582 svm_complete_interrupts(svm);
5583}
5584
Avi Kivity851ba692009-08-24 11:10:17 +03005585static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005586{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005587 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005588
Joerg Roedel2041a062010-04-22 12:33:08 +02005589 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5590 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5591 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5592
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005593 /*
5594 * A vmexit emulation is required before the vcpu can be executed
5595 * again.
5596 */
5597 if (unlikely(svm->nested.exit_required))
5598 return;
5599
Ladi Proseka12713c2017-06-21 09:07:00 +02005600 /*
5601 * Disable singlestep if we're injecting an interrupt/exception.
5602 * We don't want our modified rflags to be pushed on the stack where
5603 * we might not be able to easily reset them if we disabled NMI
5604 * singlestep later.
5605 */
5606 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5607 /*
5608 * Event injection happens before external interrupts cause a
5609 * vmexit and interrupts are disabled here, so smp_send_reschedule
5610 * is enough to force an immediate vmexit.
5611 */
5612 disable_nmi_singlestep(svm);
5613 smp_send_reschedule(vcpu->cpu);
5614 }
5615
Rusty Russelle756fc62007-07-30 20:07:08 +10005616 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005617
Joerg Roedel649d6862008-04-16 16:51:15 +02005618 sync_lapic_to_cr8(vcpu);
5619
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005620 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005621
Avi Kivity04d2cc72007-09-10 18:10:54 +03005622 clgi();
5623
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005624 /*
5625 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5626 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5627 * is no need to worry about the conditional branch over the wrmsr
5628 * being speculatively taken.
5629 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005630 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005631
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005632 local_irq_enable();
5633
Avi Kivity6aa8b732006-12-10 02:21:36 -08005634 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005635 "push %%" _ASM_BP "; \n\t"
5636 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5637 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5638 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5639 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5640 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5641 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005642#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005643 "mov %c[r8](%[svm]), %%r8 \n\t"
5644 "mov %c[r9](%[svm]), %%r9 \n\t"
5645 "mov %c[r10](%[svm]), %%r10 \n\t"
5646 "mov %c[r11](%[svm]), %%r11 \n\t"
5647 "mov %c[r12](%[svm]), %%r12 \n\t"
5648 "mov %c[r13](%[svm]), %%r13 \n\t"
5649 "mov %c[r14](%[svm]), %%r14 \n\t"
5650 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005651#endif
5652
Avi Kivity6aa8b732006-12-10 02:21:36 -08005653 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005654 "push %%" _ASM_AX " \n\t"
5655 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Uros Bizjakac5ffda22018-11-26 17:00:08 +01005656 __ex("vmload %%" _ASM_AX) "\n\t"
5657 __ex("vmrun %%" _ASM_AX) "\n\t"
5658 __ex("vmsave %%" _ASM_AX) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005659 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005660
5661 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005662 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5663 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5664 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5665 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5666 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5667 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005668#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005669 "mov %%r8, %c[r8](%[svm]) \n\t"
5670 "mov %%r9, %c[r9](%[svm]) \n\t"
5671 "mov %%r10, %c[r10](%[svm]) \n\t"
5672 "mov %%r11, %c[r11](%[svm]) \n\t"
5673 "mov %%r12, %c[r12](%[svm]) \n\t"
5674 "mov %%r13, %c[r13](%[svm]) \n\t"
5675 "mov %%r14, %c[r14](%[svm]) \n\t"
5676 "mov %%r15, %c[r15](%[svm]) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005677 /*
5678 * Clear host registers marked as clobbered to prevent
5679 * speculative use.
5680 */
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005681 "xor %%r8d, %%r8d \n\t"
5682 "xor %%r9d, %%r9d \n\t"
5683 "xor %%r10d, %%r10d \n\t"
5684 "xor %%r11d, %%r11d \n\t"
5685 "xor %%r12d, %%r12d \n\t"
5686 "xor %%r13d, %%r13d \n\t"
5687 "xor %%r14d, %%r14d \n\t"
5688 "xor %%r15d, %%r15d \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08005689#endif
Uros Bizjak43ce76c2018-10-17 16:46:57 +02005690 "xor %%ebx, %%ebx \n\t"
5691 "xor %%ecx, %%ecx \n\t"
5692 "xor %%edx, %%edx \n\t"
5693 "xor %%esi, %%esi \n\t"
5694 "xor %%edi, %%edi \n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005695 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005696 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005697 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005698 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005699 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5700 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5701 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5702 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5703 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5704 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005705#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005706 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5707 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5708 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5709 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5710 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5711 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5712 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5713 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005714#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005715 : "cc", "memory"
5716#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005717 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005718 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005719#else
5720 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005721#endif
5722 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005723
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005724 /* Eliminate branch target predictions from guest mode */
5725 vmexit_fill_RSB();
5726
5727#ifdef CONFIG_X86_64
5728 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5729#else
5730 loadsegment(fs, svm->host.fs);
5731#ifndef CONFIG_X86_32_LAZY_GS
5732 loadsegment(gs, svm->host.gs);
5733#endif
5734#endif
5735
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005736 /*
5737 * We do not use IBRS in the kernel. If this vCPU has used the
5738 * SPEC_CTRL MSR it may have left it on; save the value and
5739 * turn it off. This is much more efficient than blindly adding
5740 * it to the atomic save/restore list. Especially as the former
5741 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5742 *
5743 * For non-nested case:
5744 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5745 * save it.
5746 *
5747 * For nested case:
5748 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5749 * save it.
5750 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005751 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005752 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005753
Avi Kivity6aa8b732006-12-10 02:21:36 -08005754 reload_tss(vcpu);
5755
Avi Kivity56ba47d2007-11-07 17:14:18 +02005756 local_irq_disable();
5757
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005758 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5759
Avi Kivity13c34e02010-10-21 12:20:31 +02005760 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5761 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5762 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5763 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5764
Joerg Roedel3781c012011-01-14 16:45:02 +01005765 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005766 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005767
5768 stgi();
5769
5770 /* Any pending NMI will happen here */
5771
5772 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005773 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005774
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005775 sync_cr8_to_lapic(vcpu);
5776
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005777 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005778
Joerg Roedel38e5e922010-12-03 15:25:16 +01005779 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5780
Gleb Natapov631bc482010-10-14 11:22:52 +02005781 /* if exit due to PF check for async PF */
5782 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005783 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005784
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005785 if (npt_enabled) {
5786 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5787 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5788 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005789
5790 /*
5791 * We need to handle MC intercepts here before the vcpu has a chance to
5792 * change the physical cpu
5793 */
5794 if (unlikely(svm->vmcb->control.exit_code ==
5795 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5796 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005797
5798 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005799}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005800STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005801
Avi Kivity6aa8b732006-12-10 02:21:36 -08005802static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5803{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005804 struct vcpu_svm *svm = to_svm(vcpu);
5805
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005806 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005807 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005808}
5809
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005810static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5811{
5812 struct vcpu_svm *svm = to_svm(vcpu);
5813
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005814 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005815 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005816
5817 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005818 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005819 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005820}
5821
Avi Kivity6aa8b732006-12-10 02:21:36 -08005822static int is_disabled(void)
5823{
Joerg Roedel6031a612007-06-22 12:29:50 +03005824 u64 vm_cr;
5825
5826 rdmsrl(MSR_VM_CR, vm_cr);
5827 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5828 return 1;
5829
Avi Kivity6aa8b732006-12-10 02:21:36 -08005830 return 0;
5831}
5832
Ingo Molnar102d8322007-02-19 14:37:47 +02005833static void
5834svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5835{
5836 /*
5837 * Patch in the VMMCALL instruction:
5838 */
5839 hypercall[0] = 0x0f;
5840 hypercall[1] = 0x01;
5841 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005842}
5843
Yang, Sheng002c7f72007-07-31 14:23:01 +03005844static void svm_check_processor_compat(void *rtn)
5845{
5846 *(int *)rtn = 0;
5847}
5848
Avi Kivity774ead32007-12-26 13:57:04 +02005849static bool svm_cpu_has_accelerated_tpr(void)
5850{
5851 return false;
5852}
5853
Tom Lendackybc226f02018-05-10 22:06:39 +02005854static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005855{
Vitaly Kuznetsove87555e2018-12-19 12:06:13 +01005856 switch (index) {
5857 case MSR_IA32_MCG_EXT_CTL:
5858 return false;
5859 default:
5860 break;
5861 }
5862
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005863 return true;
5864}
5865
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005866static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5867{
5868 return 0;
5869}
5870
Sheng Yang0e851882009-12-18 16:48:46 +08005871static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5872{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005873 struct vcpu_svm *svm = to_svm(vcpu);
5874
5875 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005876 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005877
5878 if (!kvm_vcpu_apicv_active(vcpu))
5879 return;
5880
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005881 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005882}
5883
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005884static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5885{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005886 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005887 case 0x1:
5888 if (avic)
5889 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5890 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005891 case 0x80000001:
5892 if (nested)
5893 entry->ecx |= (1 << 2); /* Set SVM bit */
5894 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005895 case 0x8000000A:
5896 entry->eax = 1; /* SVM revision 1 */
5897 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5898 ASID emulation to nested SVM */
5899 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005900 entry->edx = 0; /* Per default do not support any
5901 additional features */
5902
5903 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005904 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005905 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005906
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005907 /* Support NPT for the guest if enabled */
5908 if (npt_enabled)
5909 entry->edx |= SVM_FEATURE_NPT;
5910
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005911 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005912 case 0x8000001F:
5913 /* Support memory encryption cpuid if host supports it */
5914 if (boot_cpu_has(X86_FEATURE_SEV))
5915 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5916 &entry->ecx, &entry->edx);
5917
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005918 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005919}
5920
Sheng Yang17cc3932010-01-05 19:02:27 +08005921static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005922{
Sheng Yang17cc3932010-01-05 19:02:27 +08005923 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005924}
5925
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005926static bool svm_rdtscp_supported(void)
5927{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005928 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005929}
5930
Mao, Junjiead756a12012-07-02 01:18:48 +00005931static bool svm_invpcid_supported(void)
5932{
5933 return false;
5934}
5935
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005936static bool svm_mpx_supported(void)
5937{
5938 return false;
5939}
5940
Wanpeng Li55412b22014-12-02 19:21:30 +08005941static bool svm_xsaves_supported(void)
5942{
5943 return false;
5944}
5945
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005946static bool svm_umip_emulated(void)
5947{
5948 return false;
5949}
5950
Chao Peng86f52012018-10-24 16:05:11 +08005951static bool svm_pt_supported(void)
5952{
5953 return false;
5954}
5955
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005956static bool svm_has_wbinvd_exit(void)
5957{
5958 return true;
5959}
5960
Joerg Roedel80612522011-04-04 12:39:33 +02005961#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005962 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005963#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005964 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005965#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005966 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005967
Mathias Krause09941fb2012-08-30 01:30:20 +02005968static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005969 u32 exit_code;
5970 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005971} x86_intercept_map[] = {
5972 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5973 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5974 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5975 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5976 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005977 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5978 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005979 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5980 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5981 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5982 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5983 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5984 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5985 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5986 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005987 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5988 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5989 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5990 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5991 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5992 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5993 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5994 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005995 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5996 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5997 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005998 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5999 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
6000 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
6001 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
6002 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
6003 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
6004 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
6005 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
6006 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02006007 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
6008 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
6009 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
6010 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
6011 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
6012 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
6013 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02006014 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
6015 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
6016 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
6017 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006018};
6019
Joerg Roedel80612522011-04-04 12:39:33 +02006020#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006021#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02006022#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006023
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006024static int svm_check_intercept(struct kvm_vcpu *vcpu,
6025 struct x86_instruction_info *info,
6026 enum x86_intercept_stage stage)
6027{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006028 struct vcpu_svm *svm = to_svm(vcpu);
6029 int vmexit, ret = X86EMUL_CONTINUE;
6030 struct __x86_intercept icpt_info;
6031 struct vmcb *vmcb = svm->vmcb;
6032
6033 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6034 goto out;
6035
6036 icpt_info = x86_intercept_map[info->intercept];
6037
Avi Kivity40e19b52011-04-21 12:35:41 +03006038 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006039 goto out;
6040
6041 switch (icpt_info.exit_code) {
6042 case SVM_EXIT_READ_CR0:
6043 if (info->intercept == x86_intercept_cr_read)
6044 icpt_info.exit_code += info->modrm_reg;
6045 break;
6046 case SVM_EXIT_WRITE_CR0: {
6047 unsigned long cr0, val;
6048 u64 intercept;
6049
6050 if (info->intercept == x86_intercept_cr_write)
6051 icpt_info.exit_code += info->modrm_reg;
6052
Jan Kiszka62baf442014-06-29 21:55:53 +02006053 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6054 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006055 break;
6056
6057 intercept = svm->nested.intercept;
6058
6059 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6060 break;
6061
6062 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6063 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6064
6065 if (info->intercept == x86_intercept_lmsw) {
6066 cr0 &= 0xfUL;
6067 val &= 0xfUL;
6068 /* lmsw can't clear PE - catch this here */
6069 if (cr0 & X86_CR0_PE)
6070 val |= X86_CR0_PE;
6071 }
6072
6073 if (cr0 ^ val)
6074 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6075
6076 break;
6077 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006078 case SVM_EXIT_READ_DR0:
6079 case SVM_EXIT_WRITE_DR0:
6080 icpt_info.exit_code += info->modrm_reg;
6081 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006082 case SVM_EXIT_MSR:
6083 if (info->intercept == x86_intercept_wrmsr)
6084 vmcb->control.exit_info_1 = 1;
6085 else
6086 vmcb->control.exit_info_1 = 0;
6087 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006088 case SVM_EXIT_PAUSE:
6089 /*
6090 * We get this for NOP only, but pause
6091 * is rep not, check this here
6092 */
6093 if (info->rep_prefix != REPE_PREFIX)
6094 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006095 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006096 case SVM_EXIT_IOIO: {
6097 u64 exit_info;
6098 u32 bytes;
6099
Joerg Roedelf6511932011-04-04 12:39:35 +02006100 if (info->intercept == x86_intercept_in ||
6101 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006102 exit_info = ((info->src_val & 0xffff) << 16) |
6103 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006104 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006105 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006106 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006107 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006108 }
6109
6110 if (info->intercept == x86_intercept_outs ||
6111 info->intercept == x86_intercept_ins)
6112 exit_info |= SVM_IOIO_STR_MASK;
6113
6114 if (info->rep_prefix)
6115 exit_info |= SVM_IOIO_REP_MASK;
6116
6117 bytes = min(bytes, 4u);
6118
6119 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6120
6121 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6122
6123 vmcb->control.exit_info_1 = exit_info;
6124 vmcb->control.exit_info_2 = info->next_rip;
6125
6126 break;
6127 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006128 default:
6129 break;
6130 }
6131
Bandan Dasf1047652015-06-11 02:05:33 -04006132 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6133 if (static_cpu_has(X86_FEATURE_NRIPS))
6134 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006135 vmcb->control.exit_code = icpt_info.exit_code;
6136 vmexit = nested_svm_exit_handled(svm);
6137
6138 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6139 : X86EMUL_CONTINUE;
6140
6141out:
6142 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006143}
6144
Yang Zhanga547c6d2013-04-11 19:25:10 +08006145static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6146{
6147 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006148 /*
6149 * We must have an instruction with interrupts enabled, so
6150 * the timer interrupt isn't delayed by the interrupt shadow.
6151 */
6152 asm("nop");
6153 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006154}
6155
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006156static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6157{
Babu Moger8566ac82018-03-16 16:37:26 -04006158 if (pause_filter_thresh)
6159 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006160}
6161
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006162static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6163{
6164 if (avic_handle_apic_id_update(vcpu) != 0)
6165 return;
6166 if (avic_handle_dfr_update(vcpu) != 0)
6167 return;
6168 avic_handle_ldr_update(vcpu);
6169}
6170
Borislav Petkov74f16902017-03-26 23:51:24 +02006171static void svm_setup_mce(struct kvm_vcpu *vcpu)
6172{
6173 /* [63:9] are reserved. */
6174 vcpu->arch.mcg_cap &= 0x1ff;
6175}
6176
Ladi Prosek72d7b372017-10-11 16:54:41 +02006177static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6178{
Ladi Prosek05cade72017-10-11 16:54:45 +02006179 struct vcpu_svm *svm = to_svm(vcpu);
6180
6181 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6182 if (!gif_set(svm))
6183 return 0;
6184
6185 if (is_guest_mode(&svm->vcpu) &&
6186 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6187 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6188 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6189 svm->nested.exit_required = true;
6190 return 0;
6191 }
6192
Ladi Prosek72d7b372017-10-11 16:54:41 +02006193 return 1;
6194}
6195
Ladi Prosek0234bf82017-10-11 16:54:40 +02006196static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6197{
Ladi Prosek05cade72017-10-11 16:54:45 +02006198 struct vcpu_svm *svm = to_svm(vcpu);
6199 int ret;
6200
6201 if (is_guest_mode(vcpu)) {
6202 /* FED8h - SVM Guest */
6203 put_smstate(u64, smstate, 0x7ed8, 1);
6204 /* FEE0h - SVM Guest VMCB Physical Address */
6205 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6206
6207 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6208 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6209 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6210
6211 ret = nested_svm_vmexit(svm);
6212 if (ret)
6213 return ret;
6214 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006215 return 0;
6216}
6217
6218static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6219{
Ladi Prosek05cade72017-10-11 16:54:45 +02006220 struct vcpu_svm *svm = to_svm(vcpu);
6221 struct vmcb *nested_vmcb;
6222 struct page *page;
6223 struct {
6224 u64 guest;
6225 u64 vmcb;
6226 } svm_state_save;
6227 int ret;
6228
6229 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6230 sizeof(svm_state_save));
6231 if (ret)
6232 return ret;
6233
6234 if (svm_state_save.guest) {
6235 vcpu->arch.hflags &= ~HF_SMM_MASK;
6236 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6237 if (nested_vmcb)
6238 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6239 else
6240 ret = 1;
6241 vcpu->arch.hflags |= HF_SMM_MASK;
6242 }
6243 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006244}
6245
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006246static int enable_smi_window(struct kvm_vcpu *vcpu)
6247{
6248 struct vcpu_svm *svm = to_svm(vcpu);
6249
6250 if (!gif_set(svm)) {
6251 if (vgif_enabled(svm))
6252 set_intercept(svm, INTERCEPT_STGI);
6253 /* STGI will cause a vm exit */
6254 return 1;
6255 }
6256 return 0;
6257}
6258
Brijesh Singh1654efc2017-12-04 10:57:34 -06006259static int sev_asid_new(void)
6260{
6261 int pos;
6262
6263 /*
6264 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6265 */
6266 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6267 if (pos >= max_sev_asid)
6268 return -EBUSY;
6269
6270 set_bit(pos, sev_asid_bitmap);
6271 return pos + 1;
6272}
6273
6274static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6275{
Sean Christopherson81811c12018-03-20 12:17:21 -07006276 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006277 int asid, ret;
6278
6279 ret = -EBUSY;
David Rientjes3f14a892019-01-02 12:56:33 -08006280 if (unlikely(sev->active))
6281 return ret;
6282
Brijesh Singh1654efc2017-12-04 10:57:34 -06006283 asid = sev_asid_new();
6284 if (asid < 0)
6285 return ret;
6286
6287 ret = sev_platform_init(&argp->error);
6288 if (ret)
6289 goto e_free;
6290
6291 sev->active = true;
6292 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006293 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006294
6295 return 0;
6296
6297e_free:
6298 __sev_asid_free(asid);
6299 return ret;
6300}
6301
Brijesh Singh59414c92017-12-04 10:57:35 -06006302static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6303{
6304 struct sev_data_activate *data;
6305 int asid = sev_get_asid(kvm);
6306 int ret;
6307
6308 wbinvd_on_all_cpus();
6309
6310 ret = sev_guest_df_flush(error);
6311 if (ret)
6312 return ret;
6313
6314 data = kzalloc(sizeof(*data), GFP_KERNEL);
6315 if (!data)
6316 return -ENOMEM;
6317
6318 /* activate ASID on the given handle */
6319 data->handle = handle;
6320 data->asid = asid;
6321 ret = sev_guest_activate(data, error);
6322 kfree(data);
6323
6324 return ret;
6325}
6326
Brijesh Singh89c50582017-12-04 10:57:35 -06006327static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006328{
6329 struct fd f;
6330 int ret;
6331
6332 f = fdget(fd);
6333 if (!f.file)
6334 return -EBADF;
6335
6336 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6337
6338 fdput(f);
6339 return ret;
6340}
6341
Brijesh Singh89c50582017-12-04 10:57:35 -06006342static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6343{
Sean Christopherson81811c12018-03-20 12:17:21 -07006344 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006345
6346 return __sev_issue_cmd(sev->fd, id, data, error);
6347}
6348
Brijesh Singh59414c92017-12-04 10:57:35 -06006349static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6350{
Sean Christopherson81811c12018-03-20 12:17:21 -07006351 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006352 struct sev_data_launch_start *start;
6353 struct kvm_sev_launch_start params;
6354 void *dh_blob, *session_blob;
6355 int *error = &argp->error;
6356 int ret;
6357
6358 if (!sev_guest(kvm))
6359 return -ENOTTY;
6360
6361 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6362 return -EFAULT;
6363
6364 start = kzalloc(sizeof(*start), GFP_KERNEL);
6365 if (!start)
6366 return -ENOMEM;
6367
6368 dh_blob = NULL;
6369 if (params.dh_uaddr) {
6370 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6371 if (IS_ERR(dh_blob)) {
6372 ret = PTR_ERR(dh_blob);
6373 goto e_free;
6374 }
6375
6376 start->dh_cert_address = __sme_set(__pa(dh_blob));
6377 start->dh_cert_len = params.dh_len;
6378 }
6379
6380 session_blob = NULL;
6381 if (params.session_uaddr) {
6382 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6383 if (IS_ERR(session_blob)) {
6384 ret = PTR_ERR(session_blob);
6385 goto e_free_dh;
6386 }
6387
6388 start->session_address = __sme_set(__pa(session_blob));
6389 start->session_len = params.session_len;
6390 }
6391
6392 start->handle = params.handle;
6393 start->policy = params.policy;
6394
6395 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006396 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006397 if (ret)
6398 goto e_free_session;
6399
6400 /* Bind ASID to this guest */
6401 ret = sev_bind_asid(kvm, start->handle, error);
6402 if (ret)
6403 goto e_free_session;
6404
6405 /* return handle to userspace */
6406 params.handle = start->handle;
6407 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6408 sev_unbind_asid(kvm, start->handle);
6409 ret = -EFAULT;
6410 goto e_free_session;
6411 }
6412
6413 sev->handle = start->handle;
6414 sev->fd = argp->sev_fd;
6415
6416e_free_session:
6417 kfree(session_blob);
6418e_free_dh:
6419 kfree(dh_blob);
6420e_free:
6421 kfree(start);
6422 return ret;
6423}
6424
Brijesh Singh89c50582017-12-04 10:57:35 -06006425static int get_num_contig_pages(int idx, struct page **inpages,
6426 unsigned long npages)
6427{
6428 unsigned long paddr, next_paddr;
6429 int i = idx + 1, pages = 1;
6430
6431 /* find the number of contiguous pages starting from idx */
6432 paddr = __sme_page_pa(inpages[idx]);
6433 while (i < npages) {
6434 next_paddr = __sme_page_pa(inpages[i++]);
6435 if ((paddr + PAGE_SIZE) == next_paddr) {
6436 pages++;
6437 paddr = next_paddr;
6438 continue;
6439 }
6440 break;
6441 }
6442
6443 return pages;
6444}
6445
6446static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6447{
6448 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006449 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006450 struct kvm_sev_launch_update_data params;
6451 struct sev_data_launch_update_data *data;
6452 struct page **inpages;
6453 int i, ret, pages;
6454
6455 if (!sev_guest(kvm))
6456 return -ENOTTY;
6457
6458 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6459 return -EFAULT;
6460
6461 data = kzalloc(sizeof(*data), GFP_KERNEL);
6462 if (!data)
6463 return -ENOMEM;
6464
6465 vaddr = params.uaddr;
6466 size = params.len;
6467 vaddr_end = vaddr + size;
6468
6469 /* Lock the user memory. */
6470 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6471 if (!inpages) {
6472 ret = -ENOMEM;
6473 goto e_free;
6474 }
6475
6476 /*
6477 * The LAUNCH_UPDATE command will perform in-place encryption of the
6478 * memory content (i.e it will write the same memory region with C=1).
6479 * It's possible that the cache may contain the data with C=0, i.e.,
6480 * unencrypted so invalidate it first.
6481 */
6482 sev_clflush_pages(inpages, npages);
6483
6484 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6485 int offset, len;
6486
6487 /*
6488 * If the user buffer is not page-aligned, calculate the offset
6489 * within the page.
6490 */
6491 offset = vaddr & (PAGE_SIZE - 1);
6492
6493 /* Calculate the number of pages that can be encrypted in one go. */
6494 pages = get_num_contig_pages(i, inpages, npages);
6495
6496 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6497
6498 data->handle = sev->handle;
6499 data->len = len;
6500 data->address = __sme_page_pa(inpages[i]) + offset;
6501 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6502 if (ret)
6503 goto e_unpin;
6504
6505 size -= len;
6506 next_vaddr = vaddr + len;
6507 }
6508
6509e_unpin:
6510 /* content of memory is updated, mark pages dirty */
6511 for (i = 0; i < npages; i++) {
6512 set_page_dirty_lock(inpages[i]);
6513 mark_page_accessed(inpages[i]);
6514 }
6515 /* unlock the user pages */
6516 sev_unpin_memory(kvm, inpages, npages);
6517e_free:
6518 kfree(data);
6519 return ret;
6520}
6521
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006522static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6523{
Brijesh Singh3e233382018-02-23 12:36:50 -06006524 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006525 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006526 struct sev_data_launch_measure *data;
6527 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006528 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006529 void *blob = NULL;
6530 int ret;
6531
6532 if (!sev_guest(kvm))
6533 return -ENOTTY;
6534
Brijesh Singh3e233382018-02-23 12:36:50 -06006535 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006536 return -EFAULT;
6537
6538 data = kzalloc(sizeof(*data), GFP_KERNEL);
6539 if (!data)
6540 return -ENOMEM;
6541
6542 /* User wants to query the blob length */
6543 if (!params.len)
6544 goto cmd;
6545
Brijesh Singh3e233382018-02-23 12:36:50 -06006546 p = (void __user *)(uintptr_t)params.uaddr;
6547 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006548 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6549 ret = -EINVAL;
6550 goto e_free;
6551 }
6552
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006553 ret = -ENOMEM;
6554 blob = kmalloc(params.len, GFP_KERNEL);
6555 if (!blob)
6556 goto e_free;
6557
6558 data->address = __psp_pa(blob);
6559 data->len = params.len;
6560 }
6561
6562cmd:
6563 data->handle = sev->handle;
6564 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6565
6566 /*
6567 * If we query the session length, FW responded with expected data.
6568 */
6569 if (!params.len)
6570 goto done;
6571
6572 if (ret)
6573 goto e_free_blob;
6574
6575 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006576 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006577 ret = -EFAULT;
6578 }
6579
6580done:
6581 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006582 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006583 ret = -EFAULT;
6584e_free_blob:
6585 kfree(blob);
6586e_free:
6587 kfree(data);
6588 return ret;
6589}
6590
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006591static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6592{
Sean Christopherson81811c12018-03-20 12:17:21 -07006593 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006594 struct sev_data_launch_finish *data;
6595 int ret;
6596
6597 if (!sev_guest(kvm))
6598 return -ENOTTY;
6599
6600 data = kzalloc(sizeof(*data), GFP_KERNEL);
6601 if (!data)
6602 return -ENOMEM;
6603
6604 data->handle = sev->handle;
6605 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6606
6607 kfree(data);
6608 return ret;
6609}
6610
Brijesh Singh255d9e72017-12-04 10:57:37 -06006611static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6612{
Sean Christopherson81811c12018-03-20 12:17:21 -07006613 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006614 struct kvm_sev_guest_status params;
6615 struct sev_data_guest_status *data;
6616 int ret;
6617
6618 if (!sev_guest(kvm))
6619 return -ENOTTY;
6620
6621 data = kzalloc(sizeof(*data), GFP_KERNEL);
6622 if (!data)
6623 return -ENOMEM;
6624
6625 data->handle = sev->handle;
6626 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6627 if (ret)
6628 goto e_free;
6629
6630 params.policy = data->policy;
6631 params.state = data->state;
6632 params.handle = data->handle;
6633
6634 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6635 ret = -EFAULT;
6636e_free:
6637 kfree(data);
6638 return ret;
6639}
6640
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006641static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6642 unsigned long dst, int size,
6643 int *error, bool enc)
6644{
Sean Christopherson81811c12018-03-20 12:17:21 -07006645 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006646 struct sev_data_dbg *data;
6647 int ret;
6648
6649 data = kzalloc(sizeof(*data), GFP_KERNEL);
6650 if (!data)
6651 return -ENOMEM;
6652
6653 data->handle = sev->handle;
6654 data->dst_addr = dst;
6655 data->src_addr = src;
6656 data->len = size;
6657
6658 ret = sev_issue_cmd(kvm,
6659 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6660 data, error);
6661 kfree(data);
6662 return ret;
6663}
6664
6665static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6666 unsigned long dst_paddr, int sz, int *err)
6667{
6668 int offset;
6669
6670 /*
6671 * Its safe to read more than we are asked, caller should ensure that
6672 * destination has enough space.
6673 */
6674 src_paddr = round_down(src_paddr, 16);
6675 offset = src_paddr & 15;
6676 sz = round_up(sz + offset, 16);
6677
6678 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6679}
6680
6681static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6682 unsigned long __user dst_uaddr,
6683 unsigned long dst_paddr,
6684 int size, int *err)
6685{
6686 struct page *tpage = NULL;
6687 int ret, offset;
6688
6689 /* if inputs are not 16-byte then use intermediate buffer */
6690 if (!IS_ALIGNED(dst_paddr, 16) ||
6691 !IS_ALIGNED(paddr, 16) ||
6692 !IS_ALIGNED(size, 16)) {
6693 tpage = (void *)alloc_page(GFP_KERNEL);
6694 if (!tpage)
6695 return -ENOMEM;
6696
6697 dst_paddr = __sme_page_pa(tpage);
6698 }
6699
6700 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6701 if (ret)
6702 goto e_free;
6703
6704 if (tpage) {
6705 offset = paddr & 15;
6706 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6707 page_address(tpage) + offset, size))
6708 ret = -EFAULT;
6709 }
6710
6711e_free:
6712 if (tpage)
6713 __free_page(tpage);
6714
6715 return ret;
6716}
6717
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006718static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6719 unsigned long __user vaddr,
6720 unsigned long dst_paddr,
6721 unsigned long __user dst_vaddr,
6722 int size, int *error)
6723{
6724 struct page *src_tpage = NULL;
6725 struct page *dst_tpage = NULL;
6726 int ret, len = size;
6727
6728 /* If source buffer is not aligned then use an intermediate buffer */
6729 if (!IS_ALIGNED(vaddr, 16)) {
6730 src_tpage = alloc_page(GFP_KERNEL);
6731 if (!src_tpage)
6732 return -ENOMEM;
6733
6734 if (copy_from_user(page_address(src_tpage),
6735 (void __user *)(uintptr_t)vaddr, size)) {
6736 __free_page(src_tpage);
6737 return -EFAULT;
6738 }
6739
6740 paddr = __sme_page_pa(src_tpage);
6741 }
6742
6743 /*
6744 * If destination buffer or length is not aligned then do read-modify-write:
6745 * - decrypt destination in an intermediate buffer
6746 * - copy the source buffer in an intermediate buffer
6747 * - use the intermediate buffer as source buffer
6748 */
6749 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6750 int dst_offset;
6751
6752 dst_tpage = alloc_page(GFP_KERNEL);
6753 if (!dst_tpage) {
6754 ret = -ENOMEM;
6755 goto e_free;
6756 }
6757
6758 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6759 __sme_page_pa(dst_tpage), size, error);
6760 if (ret)
6761 goto e_free;
6762
6763 /*
6764 * If source is kernel buffer then use memcpy() otherwise
6765 * copy_from_user().
6766 */
6767 dst_offset = dst_paddr & 15;
6768
6769 if (src_tpage)
6770 memcpy(page_address(dst_tpage) + dst_offset,
6771 page_address(src_tpage), size);
6772 else {
6773 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6774 (void __user *)(uintptr_t)vaddr, size)) {
6775 ret = -EFAULT;
6776 goto e_free;
6777 }
6778 }
6779
6780 paddr = __sme_page_pa(dst_tpage);
6781 dst_paddr = round_down(dst_paddr, 16);
6782 len = round_up(size, 16);
6783 }
6784
6785 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6786
6787e_free:
6788 if (src_tpage)
6789 __free_page(src_tpage);
6790 if (dst_tpage)
6791 __free_page(dst_tpage);
6792 return ret;
6793}
6794
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006795static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6796{
6797 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006798 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006799 struct page **src_p, **dst_p;
6800 struct kvm_sev_dbg debug;
6801 unsigned long n;
6802 int ret, size;
6803
6804 if (!sev_guest(kvm))
6805 return -ENOTTY;
6806
6807 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6808 return -EFAULT;
6809
6810 vaddr = debug.src_uaddr;
6811 size = debug.len;
6812 vaddr_end = vaddr + size;
6813 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006814
6815 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6816 int len, s_off, d_off;
6817
6818 /* lock userspace source and destination page */
6819 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6820 if (!src_p)
6821 return -EFAULT;
6822
6823 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6824 if (!dst_p) {
6825 sev_unpin_memory(kvm, src_p, n);
6826 return -EFAULT;
6827 }
6828
6829 /*
6830 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6831 * memory content (i.e it will write the same memory region with C=1).
6832 * It's possible that the cache may contain the data with C=0, i.e.,
6833 * unencrypted so invalidate it first.
6834 */
6835 sev_clflush_pages(src_p, 1);
6836 sev_clflush_pages(dst_p, 1);
6837
6838 /*
6839 * Since user buffer may not be page aligned, calculate the
6840 * offset within the page.
6841 */
6842 s_off = vaddr & ~PAGE_MASK;
6843 d_off = dst_vaddr & ~PAGE_MASK;
6844 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6845
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006846 if (dec)
6847 ret = __sev_dbg_decrypt_user(kvm,
6848 __sme_page_pa(src_p[0]) + s_off,
6849 dst_vaddr,
6850 __sme_page_pa(dst_p[0]) + d_off,
6851 len, &argp->error);
6852 else
6853 ret = __sev_dbg_encrypt_user(kvm,
6854 __sme_page_pa(src_p[0]) + s_off,
6855 vaddr,
6856 __sme_page_pa(dst_p[0]) + d_off,
6857 dst_vaddr,
6858 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006859
6860 sev_unpin_memory(kvm, src_p, 1);
6861 sev_unpin_memory(kvm, dst_p, 1);
6862
6863 if (ret)
6864 goto err;
6865
6866 next_vaddr = vaddr + len;
6867 dst_vaddr = dst_vaddr + len;
6868 size -= len;
6869 }
6870err:
6871 return ret;
6872}
6873
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006874static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6875{
Sean Christopherson81811c12018-03-20 12:17:21 -07006876 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006877 struct sev_data_launch_secret *data;
6878 struct kvm_sev_launch_secret params;
6879 struct page **pages;
6880 void *blob, *hdr;
6881 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006882 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006883
6884 if (!sev_guest(kvm))
6885 return -ENOTTY;
6886
6887 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6888 return -EFAULT;
6889
6890 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6891 if (!pages)
6892 return -ENOMEM;
6893
6894 /*
6895 * The secret must be copied into contiguous memory region, lets verify
6896 * that userspace memory pages are contiguous before we issue command.
6897 */
6898 if (get_num_contig_pages(0, pages, n) != n) {
6899 ret = -EINVAL;
6900 goto e_unpin_memory;
6901 }
6902
6903 ret = -ENOMEM;
6904 data = kzalloc(sizeof(*data), GFP_KERNEL);
6905 if (!data)
6906 goto e_unpin_memory;
6907
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006908 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6909 data->guest_address = __sme_page_pa(pages[0]) + offset;
6910 data->guest_len = params.guest_len;
6911
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006912 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6913 if (IS_ERR(blob)) {
6914 ret = PTR_ERR(blob);
6915 goto e_free;
6916 }
6917
6918 data->trans_address = __psp_pa(blob);
6919 data->trans_len = params.trans_len;
6920
6921 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6922 if (IS_ERR(hdr)) {
6923 ret = PTR_ERR(hdr);
6924 goto e_free_blob;
6925 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006926 data->hdr_address = __psp_pa(hdr);
6927 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006928
6929 data->handle = sev->handle;
6930 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6931
6932 kfree(hdr);
6933
6934e_free_blob:
6935 kfree(blob);
6936e_free:
6937 kfree(data);
6938e_unpin_memory:
6939 sev_unpin_memory(kvm, pages, n);
6940 return ret;
6941}
6942
Brijesh Singh1654efc2017-12-04 10:57:34 -06006943static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6944{
6945 struct kvm_sev_cmd sev_cmd;
6946 int r;
6947
6948 if (!svm_sev_enabled())
6949 return -ENOTTY;
6950
6951 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6952 return -EFAULT;
6953
6954 mutex_lock(&kvm->lock);
6955
6956 switch (sev_cmd.id) {
6957 case KVM_SEV_INIT:
6958 r = sev_guest_init(kvm, &sev_cmd);
6959 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006960 case KVM_SEV_LAUNCH_START:
6961 r = sev_launch_start(kvm, &sev_cmd);
6962 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006963 case KVM_SEV_LAUNCH_UPDATE_DATA:
6964 r = sev_launch_update_data(kvm, &sev_cmd);
6965 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006966 case KVM_SEV_LAUNCH_MEASURE:
6967 r = sev_launch_measure(kvm, &sev_cmd);
6968 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006969 case KVM_SEV_LAUNCH_FINISH:
6970 r = sev_launch_finish(kvm, &sev_cmd);
6971 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006972 case KVM_SEV_GUEST_STATUS:
6973 r = sev_guest_status(kvm, &sev_cmd);
6974 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006975 case KVM_SEV_DBG_DECRYPT:
6976 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6977 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006978 case KVM_SEV_DBG_ENCRYPT:
6979 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6980 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006981 case KVM_SEV_LAUNCH_SECRET:
6982 r = sev_launch_secret(kvm, &sev_cmd);
6983 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006984 default:
6985 r = -EINVAL;
6986 goto out;
6987 }
6988
6989 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6990 r = -EFAULT;
6991
6992out:
6993 mutex_unlock(&kvm->lock);
6994 return r;
6995}
6996
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006997static int svm_register_enc_region(struct kvm *kvm,
6998 struct kvm_enc_region *range)
6999{
Sean Christopherson81811c12018-03-20 12:17:21 -07007000 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007001 struct enc_region *region;
7002 int ret = 0;
7003
7004 if (!sev_guest(kvm))
7005 return -ENOTTY;
7006
Dan Carpenter86bf20c2018-05-19 09:01:36 +03007007 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
7008 return -EINVAL;
7009
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007010 region = kzalloc(sizeof(*region), GFP_KERNEL);
7011 if (!region)
7012 return -ENOMEM;
7013
7014 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
7015 if (!region->pages) {
7016 ret = -ENOMEM;
7017 goto e_free;
7018 }
7019
7020 /*
7021 * The guest may change the memory encryption attribute from C=0 -> C=1
7022 * or vice versa for this memory range. Lets make sure caches are
7023 * flushed to ensure that guest data gets written into memory with
7024 * correct C-bit.
7025 */
7026 sev_clflush_pages(region->pages, region->npages);
7027
7028 region->uaddr = range->addr;
7029 region->size = range->size;
7030
7031 mutex_lock(&kvm->lock);
7032 list_add_tail(&region->list, &sev->regions_list);
7033 mutex_unlock(&kvm->lock);
7034
7035 return ret;
7036
7037e_free:
7038 kfree(region);
7039 return ret;
7040}
7041
7042static struct enc_region *
7043find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7044{
Sean Christopherson81811c12018-03-20 12:17:21 -07007045 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007046 struct list_head *head = &sev->regions_list;
7047 struct enc_region *i;
7048
7049 list_for_each_entry(i, head, list) {
7050 if (i->uaddr == range->addr &&
7051 i->size == range->size)
7052 return i;
7053 }
7054
7055 return NULL;
7056}
7057
7058
7059static int svm_unregister_enc_region(struct kvm *kvm,
7060 struct kvm_enc_region *range)
7061{
7062 struct enc_region *region;
7063 int ret;
7064
7065 mutex_lock(&kvm->lock);
7066
7067 if (!sev_guest(kvm)) {
7068 ret = -ENOTTY;
7069 goto failed;
7070 }
7071
7072 region = find_enc_region(kvm, range);
7073 if (!region) {
7074 ret = -EINVAL;
7075 goto failed;
7076 }
7077
7078 __unregister_enc_region_locked(kvm, region);
7079
7080 mutex_unlock(&kvm->lock);
7081 return 0;
7082
7083failed:
7084 mutex_unlock(&kvm->lock);
7085 return ret;
7086}
7087
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007088static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
7089{
7090 /* Not supported */
7091 return 0;
7092}
7093
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007094static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
7095 uint16_t *vmcs_version)
7096{
7097 /* Intel-only feature */
7098 return -ENODEV;
7099}
7100
Kees Cook404f6aa2016-08-08 16:29:06 -07007101static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007102 .cpu_has_kvm_support = has_svm,
7103 .disabled_by_bios = is_disabled,
7104 .hardware_setup = svm_hardware_setup,
7105 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007106 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007107 .hardware_enable = svm_hardware_enable,
7108 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007109 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007110 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007111
7112 .vcpu_create = svm_create_vcpu,
7113 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007114 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007115
Sean Christopherson434a1e92018-03-20 12:17:18 -07007116 .vm_alloc = svm_vm_alloc,
7117 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007118 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007119 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007120
Avi Kivity04d2cc72007-09-10 18:10:54 +03007121 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007122 .vcpu_load = svm_vcpu_load,
7123 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007124 .vcpu_blocking = svm_vcpu_blocking,
7125 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007126
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007127 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007128 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007129 .get_msr = svm_get_msr,
7130 .set_msr = svm_set_msr,
7131 .get_segment_base = svm_get_segment_base,
7132 .get_segment = svm_get_segment,
7133 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007134 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007135 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007136 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007137 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007138 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007139 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007140 .set_cr3 = svm_set_cr3,
7141 .set_cr4 = svm_set_cr4,
7142 .set_efer = svm_set_efer,
7143 .get_idt = svm_get_idt,
7144 .set_idt = svm_set_idt,
7145 .get_gdt = svm_get_gdt,
7146 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007147 .get_dr6 = svm_get_dr6,
7148 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007149 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007150 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007151 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007152 .get_rflags = svm_get_rflags,
7153 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007154
Avi Kivity6aa8b732006-12-10 02:21:36 -08007155 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007156 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007157
Avi Kivity6aa8b732006-12-10 02:21:36 -08007158 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007159 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007160 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007161 .set_interrupt_shadow = svm_set_interrupt_shadow,
7162 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007163 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007164 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007165 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007166 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007167 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007168 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007169 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007170 .get_nmi_mask = svm_get_nmi_mask,
7171 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007172 .enable_nmi_window = enable_nmi_window,
7173 .enable_irq_window = enable_irq_window,
7174 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007175 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007176 .get_enable_apicv = svm_get_enable_apicv,
7177 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007178 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007179 .hwapic_irr_update = svm_hwapic_irr_update,
7180 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007181 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007182 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007183
7184 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007185 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007186 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007187 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007188
Avi Kivity586f9602010-11-18 13:09:54 +02007189 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007190
Sheng Yang17cc3932010-01-05 19:02:27 +08007191 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007192
7193 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007194
7195 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007196 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007197 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007198 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007199 .umip_emulated = svm_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007200 .pt_supported = svm_pt_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007201
7202 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007203
7204 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007205
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007206 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007207 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007208
7209 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007210
7211 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007212 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007213
Sean Christophersond264ee02018-08-27 15:21:12 -07007214 .request_immediate_exit = __kvm_request_immediate_exit,
7215
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007216 .sched_in = svm_sched_in,
Wei Huang25462f72015-06-19 15:45:05 +02007217
7218 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007219 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007220 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007221 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007222
Ladi Prosek72d7b372017-10-11 16:54:41 +02007223 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007224 .pre_enter_smm = svm_pre_enter_smm,
7225 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007226 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007227
7228 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007229 .mem_enc_reg_region = svm_register_enc_region,
7230 .mem_enc_unreg_region = svm_unregister_enc_region,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007231
7232 .nested_enable_evmcs = nested_enable_evmcs,
Vitaly Kuznetsove2e871a2018-12-10 18:21:55 +01007233 .nested_get_evmcs_version = nested_get_evmcs_version,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007234};
7235
7236static int __init svm_init(void)
7237{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007238 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007239 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007240}
7241
7242static void __exit svm_exit(void)
7243{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007244 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007245}
7246
7247module_init(svm_init)
7248module_exit(svm_exit)