blob: 8241fd27de19c4ddd8e1497539f9e502260af11d [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 Huang25462f7f2015-06-19 15:45:05 +020027#include "pmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040028
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/module.h>
Josh Triplettae759542012-03-28 11:32:28 -070030#include <linux/mod_devicetable.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020031#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/vmalloc.h>
33#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040034#include <linux/sched.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040035#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -050037#include <linux/amd-iommu.h>
38#include <linux/hashtable.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050039#include <linux/frame.h>
Brijesh Singhe9df0942017-12-04 10:57:33 -060040#include <linux/psp-sev.h>
Brijesh Singh1654efc2017-12-04 10:57:34 -060041#include <linux/file.h>
Brijesh Singh89c50582017-12-04 10:57:35 -060042#include <linux/pagemap.h>
43#include <linux/swap.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080044
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -050045#include <asm/apic.h>
Joerg Roedel1018faa2012-02-29 14:57:32 +010046#include <asm/perf_event.h>
Joerg Roedel67ec6602010-05-17 14:43:35 +020047#include <asm/tlbflush.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048#include <asm/desc.h>
Paolo Bonzinifacb0132014-02-21 10:32:27 +010049#include <asm/debugreg.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020050#include <asm/kvm_para.h>
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -050051#include <asm/irq_remapping.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020052#include <asm/spec-ctrl.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Eduardo Habkost63d11422008-11-17 19:03:20 -020054#include <asm/virtext.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030055#include "trace.h"
Eduardo Habkost63d11422008-11-17 19:03:20 -020056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
58
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplettae759542012-03-28 11:32:28 -070062static const struct x86_cpu_id svm_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_SVM),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, svm_cpu_id);
67
Avi Kivity6aa8b732006-12-10 02:21:36 -080068#define IOPM_ALLOC_ORDER 2
69#define MSRPM_ALLOC_ORDER 1
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071#define SEG_TYPE_LDT 2
72#define SEG_TYPE_BUSY_TSS16 3
73
Andre Przywara6bc31bd2010-04-11 23:07:28 +020074#define SVM_FEATURE_NPT (1 << 0)
75#define SVM_FEATURE_LBRV (1 << 1)
76#define SVM_FEATURE_SVML (1 << 2)
77#define SVM_FEATURE_NRIP (1 << 3)
Andre Przywaraddce97a2010-12-21 11:12:03 +010078#define SVM_FEATURE_TSC_RATE (1 << 4)
79#define SVM_FEATURE_VMCB_CLEAN (1 << 5)
80#define SVM_FEATURE_FLUSH_ASID (1 << 6)
81#define SVM_FEATURE_DECODE_ASSIST (1 << 7)
Andre Przywara6bc31bd2010-04-11 23:07:28 +020082#define SVM_FEATURE_PAUSE_FILTER (1 << 10)
Joerg Roedel80b77062007-03-30 17:02:14 +030083
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -050084#define SVM_AVIC_DOORBELL 0xc001011b
85
Joerg Roedel410e4d52009-08-07 11:49:44 +020086#define NESTED_EXIT_HOST 0 /* Exit handled on host level */
87#define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
88#define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
89
Joerg Roedel24e09cb2008-02-13 18:58:47 +010090#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
91
Joerg Roedelfbc0db72011-03-25 09:44:46 +010092#define TSC_RATIO_RSVD 0xffffff0000000000ULL
Joerg Roedel92a1f122011-03-25 09:44:51 +010093#define TSC_RATIO_MIN 0x0000000000000001ULL
94#define TSC_RATIO_MAX 0x000000ffffffffffULL
Joerg Roedelfbc0db72011-03-25 09:44:46 +010095
Dan Carpenter5446a972016-05-23 13:20:10 +030096#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -050097
98/*
99 * 0xff is broadcast, so the max index allowed for physical APIC ID
100 * table is 0xfe. APIC IDs above 0xff are reserved.
101 */
102#define AVIC_MAX_PHYSICAL_ID_COUNT 255
103
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500104#define AVIC_UNACCEL_ACCESS_WRITE_MASK 1
105#define AVIC_UNACCEL_ACCESS_OFFSET_MASK 0xFF0
106#define AVIC_UNACCEL_ACCESS_VECTOR_MASK 0xFFFFFFFF
107
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500108/* AVIC GATAG is encoded using VM and VCPU IDs */
109#define AVIC_VCPU_ID_BITS 8
110#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1)
111
112#define AVIC_VM_ID_BITS 24
113#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS)
114#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1)
115
116#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \
117 (y & AVIC_VCPU_ID_MASK))
118#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK)
119#define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK)
120
Joerg Roedel67ec6602010-05-17 14:43:35 +0200121static bool erratum_383_found __read_mostly;
122
Avi Kivity6c8166a2009-05-31 18:15:37 +0300123static const u32 host_save_user_msrs[] = {
124#ifdef CONFIG_X86_64
125 MSR_STAR, MSR_LSTAR, MSR_CSTAR, MSR_SYSCALL_MASK, MSR_KERNEL_GS_BASE,
126 MSR_FS_BASE,
127#endif
128 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Paolo Bonzini46896c72015-11-12 14:49:16 +0100129 MSR_TSC_AUX,
Avi Kivity6c8166a2009-05-31 18:15:37 +0300130};
131
132#define NR_HOST_SAVE_USER_MSRS ARRAY_SIZE(host_save_user_msrs)
133
Sean Christopherson81811c12018-03-20 12:17:21 -0700134struct kvm_sev_info {
135 bool active; /* SEV enabled guest */
136 unsigned int asid; /* ASID used for this guest */
137 unsigned int handle; /* SEV firmware handle */
138 int fd; /* SEV device fd */
139 unsigned long pages_locked; /* Number of pages locked */
140 struct list_head regions_list; /* List of registered regions */
141};
142
143struct kvm_svm {
144 struct kvm kvm;
145
146 /* Struct members for AVIC */
147 u32 avic_vm_id;
148 u32 ldr_mode;
149 struct page *avic_logical_id_table_page;
150 struct page *avic_physical_id_table_page;
151 struct hlist_node hnode;
152
153 struct kvm_sev_info sev_info;
154};
155
Avi Kivity6c8166a2009-05-31 18:15:37 +0300156struct kvm_vcpu;
157
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200158struct nested_state {
159 struct vmcb *hsave;
160 u64 hsave_msr;
Joerg Roedel4a810182010-02-24 18:59:15 +0100161 u64 vm_cr_msr;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200162 u64 vmcb;
163
164 /* These are the merged vectors */
165 u32 *msrpm;
166
167 /* gpa pointers to the real vectors */
168 u64 vmcb_msrpm;
Joerg Roedelce2ac082010-03-01 15:34:39 +0100169 u64 vmcb_iopm;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200170
Joerg Roedelcd3ff652009-10-09 16:08:26 +0200171 /* A VMEXIT is required but not yet emulated */
172 bool exit_required;
173
Joerg Roedelaad42c62009-08-07 11:49:34 +0200174 /* cache for intercepts of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100175 u32 intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100176 u32 intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +0200177 u32 intercept_exceptions;
178 u64 intercept;
179
Joerg Roedel5bd2edc2010-09-10 17:31:02 +0200180 /* Nested Paging related state */
181 u64 nested_cr3;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200182};
183
Joerg Roedel323c3d82010-03-01 15:34:37 +0100184#define MSRPM_OFFSETS 16
185static u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
186
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500187/*
188 * Set osvw_len to higher value when updated Revision Guides
189 * are published and we know what the new status bits are
190 */
191static uint64_t osvw_len = 4, osvw_status;
192
Avi Kivity6c8166a2009-05-31 18:15:37 +0300193struct vcpu_svm {
194 struct kvm_vcpu vcpu;
195 struct vmcb *vmcb;
196 unsigned long vmcb_pa;
197 struct svm_cpu_data *svm_data;
198 uint64_t asid_generation;
199 uint64_t sysenter_esp;
200 uint64_t sysenter_eip;
Paolo Bonzini46896c72015-11-12 14:49:16 +0100201 uint64_t tsc_aux;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300202
Tom Lendackyd1d93fa2018-02-24 00:18:20 +0100203 u64 msr_decfg;
204
Avi Kivity6c8166a2009-05-31 18:15:37 +0300205 u64 next_rip;
206
207 u64 host_user_msrs[NR_HOST_SAVE_USER_MSRS];
Avi Kivityafe9e662010-10-21 12:20:32 +0200208 struct {
Avi Kivitydacccfd2010-10-21 12:20:33 +0200209 u16 fs;
210 u16 gs;
211 u16 ldt;
Avi Kivityafe9e662010-10-21 12:20:32 +0200212 u64 gs_base;
213 } host;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300214
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100215 u64 spec_ctrl;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +0200216 /*
217 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
218 * translated into the appropriate L2_CFG bits on the host to
219 * perform speculative control.
220 */
221 u64 virt_spec_ctrl;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100222
Avi Kivity6c8166a2009-05-31 18:15:37 +0300223 u32 *msrpm;
Avi Kivity6c8166a2009-05-31 18:15:37 +0300224
Avi Kivitybd3d1ec2011-02-03 15:29:52 +0200225 ulong nmi_iret_rip;
226
Joerg Roedele6aa9ab2009-08-07 11:49:33 +0200227 struct nested_state nested;
Jan Kiszka6be7d302009-10-18 13:24:54 +0200228
229 bool nmi_singlestep;
Ladi Prosekab2f4d732017-06-21 09:06:58 +0200230 u64 nmi_singlestep_guest_rflags;
Jan Kiszka66b71382010-02-23 17:47:56 +0100231
232 unsigned int3_injected;
233 unsigned long int3_rip;
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100234
Joerg Roedel6092d3d2015-10-14 15:10:54 +0200235 /* cached guest cpuid flags for faster access */
236 bool nrips_enabled : 1;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500237
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -0500238 u32 ldr_reg;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500239 struct page *avic_backing_page;
240 u64 *avic_physical_id_cache;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -0500241 bool avic_is_running;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500242
243 /*
244 * Per-vcpu list of struct amd_svm_iommu_ir:
245 * This is used mainly to store interrupt remapping information used
246 * when update the vcpu affinity. This avoids the need to scan for
247 * IRTE and try to match ga_tag in the IOMMU driver.
248 */
249 struct list_head ir_list;
250 spinlock_t ir_list_lock;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600251
252 /* which host CPU was used for running this vcpu */
253 unsigned int last_cpu;
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -0500254};
255
256/*
257 * This is a wrapper of struct amd_iommu_ir_data.
258 */
259struct amd_svm_iommu_ir {
260 struct list_head node; /* Used by SVM for per-vcpu ir_list */
261 void *data; /* Storing pointer to struct amd_ir_data */
Avi Kivity6c8166a2009-05-31 18:15:37 +0300262};
263
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500264#define AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK (0xFF)
265#define AVIC_LOGICAL_ID_ENTRY_VALID_MASK (1 << 31)
266
267#define AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK (0xFFULL)
268#define AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK (0xFFFFFFFFFFULL << 12)
269#define AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK (1ULL << 62)
270#define AVIC_PHYSICAL_ID_ENTRY_VALID_MASK (1ULL << 63)
271
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100272static DEFINE_PER_CPU(u64, current_tsc_ratio);
273#define TSC_RATIO_DEFAULT 0x0100000000ULL
274
Joerg Roedel455716f2010-03-01 15:34:35 +0100275#define MSR_INVALID 0xffffffffU
276
Mathias Krause09941fb2012-08-30 01:30:20 +0200277static const struct svm_direct_access_msrs {
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100278 u32 index; /* Index of the MSR */
279 bool always; /* True if intercept is always on */
280} direct_access_msrs[] = {
Brian Gerst8c065852010-07-17 09:03:26 -0400281 { .index = MSR_STAR, .always = true },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100282 { .index = MSR_IA32_SYSENTER_CS, .always = true },
283#ifdef CONFIG_X86_64
284 { .index = MSR_GS_BASE, .always = true },
285 { .index = MSR_FS_BASE, .always = true },
286 { .index = MSR_KERNEL_GS_BASE, .always = true },
287 { .index = MSR_LSTAR, .always = true },
288 { .index = MSR_CSTAR, .always = true },
289 { .index = MSR_SYSCALL_MASK, .always = true },
290#endif
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +0100291 { .index = MSR_IA32_SPEC_CTRL, .always = false },
Ashok Raj15d45072018-02-01 22:59:43 +0100292 { .index = MSR_IA32_PRED_CMD, .always = false },
Joerg Roedelac72a9b2010-03-01 15:34:36 +0100293 { .index = MSR_IA32_LASTBRANCHFROMIP, .always = false },
294 { .index = MSR_IA32_LASTBRANCHTOIP, .always = false },
295 { .index = MSR_IA32_LASTINTFROMIP, .always = false },
296 { .index = MSR_IA32_LASTINTTOIP, .always = false },
297 { .index = MSR_INVALID, .always = false },
Avi Kivity6aa8b732006-12-10 02:21:36 -0800298};
299
300/* enable NPT for AMD64 and X86 with PAE */
301#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
302static bool npt_enabled = true;
303#else
Joerg Roedele0231712010-02-24 18:59:10 +0100304static bool npt_enabled;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800305#endif
306
Babu Moger8566ac82018-03-16 16:37:26 -0400307/*
308 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
309 * pause_filter_count: On processors that support Pause filtering(indicated
310 * by CPUID Fn8000_000A_EDX), the VMCB provides a 16 bit pause filter
311 * count value. On VMRUN this value is loaded into an internal counter.
312 * Each time a pause instruction is executed, this counter is decremented
313 * until it reaches zero at which time a #VMEXIT is generated if pause
314 * intercept is enabled. Refer to AMD APM Vol 2 Section 15.14.4 Pause
315 * Intercept Filtering for more details.
316 * This also indicate if ple logic enabled.
317 *
318 * pause_filter_thresh: In addition, some processor families support advanced
319 * pause filtering (indicated by CPUID Fn8000_000A_EDX) upper bound on
320 * the amount of time a guest is allowed to execute in a pause loop.
321 * In this mode, a 16-bit pause filter threshold field is added in the
322 * VMCB. The threshold value is a cycle count that is used to reset the
323 * pause counter. As with simple pause filtering, VMRUN loads the pause
324 * count value from VMCB into an internal counter. Then, on each pause
325 * instruction the hardware checks the elapsed number of cycles since
326 * the most recent pause instruction against the pause filter threshold.
327 * If the elapsed cycle count is greater than the pause filter threshold,
328 * then the internal pause count is reloaded from the VMCB and execution
329 * continues. If the elapsed cycle count is less than the pause filter
330 * threshold, then the internal pause count is decremented. If the count
331 * value is less than zero and PAUSE intercept is enabled, a #VMEXIT is
332 * triggered. If advanced pause filtering is supported and pause filter
333 * threshold field is set to zero, the filter will operate in the simpler,
334 * count only mode.
335 */
336
337static unsigned short pause_filter_thresh = KVM_DEFAULT_PLE_GAP;
338module_param(pause_filter_thresh, ushort, 0444);
339
340static unsigned short pause_filter_count = KVM_SVM_DEFAULT_PLE_WINDOW;
341module_param(pause_filter_count, ushort, 0444);
342
343/* Default doubles per-vcpu window every exit. */
344static unsigned short pause_filter_count_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
345module_param(pause_filter_count_grow, ushort, 0444);
346
347/* Default resets per-vcpu window every exit to pause_filter_count. */
348static unsigned short pause_filter_count_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
349module_param(pause_filter_count_shrink, ushort, 0444);
350
351/* Default is to compute the maximum so we can never overflow. */
352static unsigned short pause_filter_count_max = KVM_SVM_DEFAULT_PLE_WINDOW_MAX;
353module_param(pause_filter_count_max, ushort, 0444);
354
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100355/* allow nested paging (virtualized MMU) for all guests */
356static int npt = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357module_param(npt, int, S_IRUGO);
358
Davidlohr Buesoe2358852012-01-17 14:09:50 +0100359/* allow nested virtualization in KVM/SVM */
360static int nested = true;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800361module_param(nested, int, S_IRUGO);
362
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500363/* enable / disable AVIC */
364static int avic;
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500365#ifdef CONFIG_X86_LOCAL_APIC
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500366module_param(avic, int, S_IRUGO);
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -0500367#endif
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500368
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -0500369/* enable/disable Virtual VMLOAD VMSAVE */
370static int vls = true;
371module_param(vls, int, 0444);
372
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500373/* enable/disable Virtual GIF */
374static int vgif = true;
375module_param(vgif, int, 0444);
Suravee Suthikulpanit5ea11f22016-08-23 13:52:41 -0500376
Brijesh Singhe9df0942017-12-04 10:57:33 -0600377/* enable/disable SEV support */
378static int sev = IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT);
379module_param(sev, int, 0444);
380
Brijesh Singh7607b712018-02-19 10:14:44 -0600381static u8 rsm_ins_bytes[] = "\x0f\xaa";
382
Paolo Bonzini79a80592015-09-21 07:46:55 +0200383static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
Wanpeng Lic2ba05c2017-12-12 17:33:03 -0800384static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa);
Joerg Roedela5c38322009-08-07 11:49:32 +0200385static void svm_complete_interrupts(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386
Joerg Roedel410e4d52009-08-07 11:49:44 +0200387static int nested_svm_exit_handled(struct vcpu_svm *svm);
Joerg Roedelb8e88bc2010-02-19 16:23:02 +0100388static int nested_svm_intercept(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800389static int nested_svm_vmexit(struct vcpu_svm *svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
391 bool has_error_code, u32 error_code);
392
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100393enum {
Joerg Roedel116a0a22010-12-03 11:45:49 +0100394 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
395 pause filter count */
Joerg Roedelf56838e2010-12-03 11:45:50 +0100396 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
Joerg Roedeld48086d2010-12-03 11:45:51 +0100397 VMCB_ASID, /* ASID */
Joerg Roedeldecdbf62010-12-03 11:45:52 +0100398 VMCB_INTR, /* int_ctl, int_vector */
Joerg Roedelb2747162010-12-03 11:45:53 +0100399 VMCB_NPT, /* npt_en, nCR3, gPAT */
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100400 VMCB_CR, /* CR0, CR3, CR4, EFER */
Joerg Roedel72214b92010-12-03 11:45:55 +0100401 VMCB_DR, /* DR6, DR7 */
Joerg Roedel17a703c2010-12-03 11:45:56 +0100402 VMCB_DT, /* GDT, IDT */
Joerg Roedel060d0c92010-12-03 11:45:57 +0100403 VMCB_SEG, /* CS, DS, SS, ES, CPL */
Joerg Roedel0574dec2010-12-03 11:45:58 +0100404 VMCB_CR2, /* CR2 only */
Joerg Roedelb53ba3f2010-12-03 11:45:59 +0100405 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500406 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
407 * AVIC PHYSICAL_TABLE pointer,
408 * AVIC LOGICAL_TABLE pointer
409 */
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100410 VMCB_DIRTY_MAX,
411};
412
Joerg Roedel0574dec2010-12-03 11:45:58 +0100413/* TPR and CR2 are always written before VMRUN */
414#define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100415
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500416#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL
417
Brijesh Singhed3cd232017-12-04 10:57:32 -0600418static unsigned int max_sev_asid;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600419static unsigned int min_sev_asid;
420static unsigned long *sev_asid_bitmap;
Brijesh Singh89c50582017-12-04 10:57:35 -0600421#define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
Brijesh Singh1654efc2017-12-04 10:57:34 -0600422
Brijesh Singh1e80fdc2017-12-04 10:57:38 -0600423struct enc_region {
424 struct list_head list;
425 unsigned long npages;
426 struct page **pages;
427 unsigned long uaddr;
428 unsigned long size;
429};
430
Sean Christopherson81811c12018-03-20 12:17:21 -0700431
432static inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
433{
434 return container_of(kvm, struct kvm_svm, kvm);
435}
436
Brijesh Singh1654efc2017-12-04 10:57:34 -0600437static inline bool svm_sev_enabled(void)
438{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200439 return IS_ENABLED(CONFIG_KVM_AMD_SEV) ? max_sev_asid : 0;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600440}
441
442static inline bool sev_guest(struct kvm *kvm)
443{
Paolo Bonzini853c1102018-10-09 18:35:29 +0200444#ifdef CONFIG_KVM_AMD_SEV
Sean Christopherson81811c12018-03-20 12:17:21 -0700445 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -0600446
447 return sev->active;
Paolo Bonzini853c1102018-10-09 18:35:29 +0200448#else
449 return false;
450#endif
Brijesh Singh1654efc2017-12-04 10:57:34 -0600451}
Brijesh Singhed3cd232017-12-04 10:57:32 -0600452
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600453static inline int sev_get_asid(struct kvm *kvm)
454{
Sean Christopherson81811c12018-03-20 12:17:21 -0700455 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600456
457 return sev->asid;
458}
459
Roedel, Joerg8d28fec2010-12-03 13:15:21 +0100460static inline void mark_all_dirty(struct vmcb *vmcb)
461{
462 vmcb->control.clean = 0;
463}
464
465static inline void mark_all_clean(struct vmcb *vmcb)
466{
467 vmcb->control.clean = ((1 << VMCB_DIRTY_MAX) - 1)
468 & ~VMCB_ALWAYS_DIRTY_MASK;
469}
470
471static inline void mark_dirty(struct vmcb *vmcb, int bit)
472{
473 vmcb->control.clean &= ~(1 << bit);
474}
475
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
477{
478 return container_of(vcpu, struct vcpu_svm, vcpu);
479}
480
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -0500481static inline void avic_update_vapic_bar(struct vcpu_svm *svm, u64 data)
482{
483 svm->vmcb->control.avic_vapic_bar = data & VMCB_AVIC_APIC_BAR_MASK;
484 mark_dirty(svm->vmcb, VMCB_AVIC);
485}
486
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -0500487static inline bool avic_vcpu_is_running(struct kvm_vcpu *vcpu)
488{
489 struct vcpu_svm *svm = to_svm(vcpu);
490 u64 *entry = svm->avic_physical_id_cache;
491
492 if (!entry)
493 return false;
494
495 return (READ_ONCE(*entry) & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
496}
497
Joerg Roedel384c6362010-11-30 18:03:56 +0100498static void recalc_intercepts(struct vcpu_svm *svm)
499{
500 struct vmcb_control_area *c, *h;
501 struct nested_state *g;
502
Joerg Roedel116a0a22010-12-03 11:45:49 +0100503 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
504
Joerg Roedel384c6362010-11-30 18:03:56 +0100505 if (!is_guest_mode(&svm->vcpu))
506 return;
507
508 c = &svm->vmcb->control;
509 h = &svm->nested.hsave->control;
510 g = &svm->nested;
511
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100512 c->intercept_cr = h->intercept_cr | g->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100513 c->intercept_dr = h->intercept_dr | g->intercept_dr;
Paolo Bonzinibd895252018-01-11 16:55:24 +0100514 c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions;
Joerg Roedel384c6362010-11-30 18:03:56 +0100515 c->intercept = h->intercept | g->intercept;
516}
517
Roedel, Joerg4ee546b2010-12-03 10:50:51 +0100518static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm)
519{
520 if (is_guest_mode(&svm->vcpu))
521 return svm->nested.hsave;
522 else
523 return svm->vmcb;
524}
525
526static inline void set_cr_intercept(struct vcpu_svm *svm, int bit)
527{
528 struct vmcb *vmcb = get_host_vmcb(svm);
529
530 vmcb->control.intercept_cr |= (1U << bit);
531
532 recalc_intercepts(svm);
533}
534
535static inline void clr_cr_intercept(struct vcpu_svm *svm, int bit)
536{
537 struct vmcb *vmcb = get_host_vmcb(svm);
538
539 vmcb->control.intercept_cr &= ~(1U << bit);
540
541 recalc_intercepts(svm);
542}
543
544static inline bool is_cr_intercept(struct vcpu_svm *svm, int bit)
545{
546 struct vmcb *vmcb = get_host_vmcb(svm);
547
548 return vmcb->control.intercept_cr & (1U << bit);
549}
550
Paolo Bonzini5315c712014-03-03 13:08:29 +0100551static inline void set_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100552{
553 struct vmcb *vmcb = get_host_vmcb(svm);
554
Paolo Bonzini5315c712014-03-03 13:08:29 +0100555 vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ)
556 | (1 << INTERCEPT_DR1_READ)
557 | (1 << INTERCEPT_DR2_READ)
558 | (1 << INTERCEPT_DR3_READ)
559 | (1 << INTERCEPT_DR4_READ)
560 | (1 << INTERCEPT_DR5_READ)
561 | (1 << INTERCEPT_DR6_READ)
562 | (1 << INTERCEPT_DR7_READ)
563 | (1 << INTERCEPT_DR0_WRITE)
564 | (1 << INTERCEPT_DR1_WRITE)
565 | (1 << INTERCEPT_DR2_WRITE)
566 | (1 << INTERCEPT_DR3_WRITE)
567 | (1 << INTERCEPT_DR4_WRITE)
568 | (1 << INTERCEPT_DR5_WRITE)
569 | (1 << INTERCEPT_DR6_WRITE)
570 | (1 << INTERCEPT_DR7_WRITE);
Joerg Roedel3aed0412010-11-30 18:03:58 +0100571
572 recalc_intercepts(svm);
573}
574
Paolo Bonzini5315c712014-03-03 13:08:29 +0100575static inline void clr_dr_intercepts(struct vcpu_svm *svm)
Joerg Roedel3aed0412010-11-30 18:03:58 +0100576{
577 struct vmcb *vmcb = get_host_vmcb(svm);
578
Paolo Bonzini5315c712014-03-03 13:08:29 +0100579 vmcb->control.intercept_dr = 0;
Joerg Roedel3aed0412010-11-30 18:03:58 +0100580
581 recalc_intercepts(svm);
582}
583
Joerg Roedel18c918c2010-11-30 18:03:59 +0100584static inline void set_exception_intercept(struct vcpu_svm *svm, int bit)
585{
586 struct vmcb *vmcb = get_host_vmcb(svm);
587
588 vmcb->control.intercept_exceptions |= (1U << bit);
589
590 recalc_intercepts(svm);
591}
592
593static inline void clr_exception_intercept(struct vcpu_svm *svm, int bit)
594{
595 struct vmcb *vmcb = get_host_vmcb(svm);
596
597 vmcb->control.intercept_exceptions &= ~(1U << bit);
598
599 recalc_intercepts(svm);
600}
601
Joerg Roedel8a05a1b82010-11-30 18:04:00 +0100602static inline void set_intercept(struct vcpu_svm *svm, int bit)
603{
604 struct vmcb *vmcb = get_host_vmcb(svm);
605
606 vmcb->control.intercept |= (1ULL << bit);
607
608 recalc_intercepts(svm);
609}
610
611static inline void clr_intercept(struct vcpu_svm *svm, int bit)
612{
613 struct vmcb *vmcb = get_host_vmcb(svm);
614
615 vmcb->control.intercept &= ~(1ULL << bit);
616
617 recalc_intercepts(svm);
618}
619
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500620static inline bool vgif_enabled(struct vcpu_svm *svm)
621{
622 return !!(svm->vmcb->control.int_ctl & V_GIF_ENABLE_MASK);
623}
624
Joerg Roedel2af91942009-08-07 11:49:28 +0200625static inline void enable_gif(struct vcpu_svm *svm)
626{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500627 if (vgif_enabled(svm))
628 svm->vmcb->control.int_ctl |= V_GIF_MASK;
629 else
630 svm->vcpu.arch.hflags |= HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200631}
632
633static inline void disable_gif(struct vcpu_svm *svm)
634{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500635 if (vgif_enabled(svm))
636 svm->vmcb->control.int_ctl &= ~V_GIF_MASK;
637 else
638 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
Joerg Roedel2af91942009-08-07 11:49:28 +0200639}
640
641static inline bool gif_set(struct vcpu_svm *svm)
642{
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -0500643 if (vgif_enabled(svm))
644 return !!(svm->vmcb->control.int_ctl & V_GIF_MASK);
645 else
646 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
Joerg Roedel2af91942009-08-07 11:49:28 +0200647}
648
Avi Kivity6aa8b732006-12-10 02:21:36 -0800649static unsigned long iopm_base;
650
651struct kvm_ldttss_desc {
652 u16 limit0;
653 u16 base0;
Joerg Roedele0231712010-02-24 18:59:10 +0100654 unsigned base1:8, type:5, dpl:2, p:1;
655 unsigned limit1:4, zero0:3, g:1, base2:8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656 u32 base3;
657 u32 zero1;
658} __attribute__((packed));
659
660struct svm_cpu_data {
661 int cpu;
662
Avi Kivity5008fdf2007-04-02 13:05:50 +0300663 u64 asid_generation;
664 u32 max_asid;
665 u32 next_asid;
Brijesh Singh4faefff2017-12-04 10:57:25 -0600666 u32 min_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800667 struct kvm_ldttss_desc *tss_desc;
668
669 struct page *save_area;
Ashok Raj15d45072018-02-01 22:59:43 +0100670 struct vmcb *current_vmcb;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600671
672 /* index = sev_asid, value = vmcb pointer */
673 struct vmcb **sev_vmcbs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674};
675
676static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
677
678struct svm_init_data {
679 int cpu;
680 int r;
681};
682
Mathias Krause09941fb2012-08-30 01:30:20 +0200683static const u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200685#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686#define MSRS_RANGE_SIZE 2048
687#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
688
Joerg Roedel455716f2010-03-01 15:34:35 +0100689static u32 svm_msrpm_offset(u32 msr)
690{
691 u32 offset;
692 int i;
693
694 for (i = 0; i < NUM_MSR_MAPS; i++) {
695 if (msr < msrpm_ranges[i] ||
696 msr >= msrpm_ranges[i] + MSRS_IN_RANGE)
697 continue;
698
699 offset = (msr - msrpm_ranges[i]) / 4; /* 4 msrs per u8 */
700 offset += (i * MSRS_RANGE_SIZE); /* add range offset */
701
702 /* Now we have the u8 offset - but need the u32 offset */
703 return offset / 4;
704 }
705
706 /* MSR not in any range */
707 return MSR_INVALID;
708}
709
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710#define MAX_INST_SIZE 15
711
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712static inline void clgi(void)
713{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300714 asm volatile (__ex(SVM_CLGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800715}
716
717static inline void stgi(void)
718{
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300719 asm volatile (__ex(SVM_STGI));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800720}
721
722static inline void invlpga(unsigned long addr, u32 asid)
723{
Joerg Roedele0231712010-02-24 18:59:10 +0100724 asm volatile (__ex(SVM_INVLPGA) : : "a"(addr), "c"(asid));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725}
726
Yu Zhang855feb62017-08-24 20:27:55 +0800727static int get_npt_level(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +0200728{
729#ifdef CONFIG_X86_64
Yu Zhang2a7266a2017-08-24 20:27:54 +0800730 return PT64_ROOT_4LEVEL;
Joerg Roedel4b161842010-09-10 17:31:03 +0200731#else
732 return PT32E_ROOT_LEVEL;
733#endif
734}
735
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
737{
Zachary Amsden6dc696d2010-05-26 15:09:43 -1000738 vcpu->arch.efer = efer;
Joerg Roedel709ddeb2008-02-07 13:47:45 +0100739 if (!npt_enabled && !(efer & EFER_LMA))
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -0600740 efer &= ~EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741
Alexander Graf9962d032008-11-25 20:17:02 +0100742 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
Joerg Roedeldcca1a62010-12-03 11:45:54 +0100743 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744}
745
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746static int is_external_interrupt(u32 info)
747{
748 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
749 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
750}
751
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200752static u32 svm_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400753{
754 struct vcpu_svm *svm = to_svm(vcpu);
755 u32 ret = 0;
756
757 if (svm->vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK)
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +0200758 ret = KVM_X86_SHADOW_INT_STI | KVM_X86_SHADOW_INT_MOV_SS;
759 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400760}
761
762static void svm_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
763{
764 struct vcpu_svm *svm = to_svm(vcpu);
765
766 if (mask == 0)
767 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
768 else
769 svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK;
770
771}
772
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
774{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400775 struct vcpu_svm *svm = to_svm(vcpu);
776
Bandan Dasf1047652015-06-11 02:05:33 -0400777 if (svm->vmcb->control.next_rip != 0) {
Dirk Müllerd2922422015-10-01 13:43:42 +0200778 WARN_ON_ONCE(!static_cpu_has(X86_FEATURE_NRIPS));
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200779 svm->next_rip = svm->vmcb->control.next_rip;
Bandan Dasf1047652015-06-11 02:05:33 -0400780 }
Andre Przywara6bc31bd2010-04-11 23:07:28 +0200781
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400782 if (!svm->next_rip) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -0700783 if (kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) !=
Gleb Natapovf629cf82009-05-11 13:35:49 +0300784 EMULATE_DONE)
785 printk(KERN_DEBUG "%s: NOP\n", __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 return;
787 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300788 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
789 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
790 __func__, kvm_rip_read(vcpu), svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300792 kvm_rip_write(vcpu, svm->next_rip);
Glauber Costa2809f5d2009-05-12 16:21:05 -0400793 svm_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800794}
795
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700796static void svm_queue_exception(struct kvm_vcpu *vcpu)
Jan Kiszka116a4752010-02-23 17:47:54 +0100797{
798 struct vcpu_svm *svm = to_svm(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700799 unsigned nr = vcpu->arch.exception.nr;
800 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700801 bool reinject = vcpu->arch.exception.injected;
Wanpeng Licfcd20e2017-07-13 18:30:39 -0700802 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka116a4752010-02-23 17:47:54 +0100803
Joerg Roedele0231712010-02-24 18:59:10 +0100804 /*
805 * If we are within a nested VM we'd better #VMEXIT and let the guest
806 * handle the exception
807 */
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200808 if (!reinject &&
809 nested_svm_check_exception(svm, nr, has_error_code, error_code))
Jan Kiszka116a4752010-02-23 17:47:54 +0100810 return;
811
Avi Kivity2a6b20b2010-11-09 16:15:42 +0200812 if (nr == BP_VECTOR && !static_cpu_has(X86_FEATURE_NRIPS)) {
Jan Kiszka66b71382010-02-23 17:47:56 +0100813 unsigned long rip, old_rip = kvm_rip_read(&svm->vcpu);
814
815 /*
816 * For guest debugging where we have to reinject #BP if some
817 * INT3 is guest-owned:
818 * Emulate nRIP by moving RIP forward. Will fail if injection
819 * raises a fault that is not intercepted. Still better than
820 * failing in all cases.
821 */
822 skip_emulated_instruction(&svm->vcpu);
823 rip = kvm_rip_read(&svm->vcpu);
824 svm->int3_rip = rip + svm->vmcb->save.cs.base;
825 svm->int3_injected = rip - old_rip;
826 }
827
Jan Kiszka116a4752010-02-23 17:47:54 +0100828 svm->vmcb->control.event_inj = nr
829 | SVM_EVTINJ_VALID
830 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
831 | SVM_EVTINJ_TYPE_EXEPT;
832 svm->vmcb->control.event_inj_err = error_code;
833}
834
Joerg Roedel67ec6602010-05-17 14:43:35 +0200835static void svm_init_erratum_383(void)
836{
837 u32 low, high;
838 int err;
839 u64 val;
840
Borislav Petkove6ee94d2013-03-20 15:07:27 +0100841 if (!static_cpu_has_bug(X86_BUG_AMD_TLB_MMATCH))
Joerg Roedel67ec6602010-05-17 14:43:35 +0200842 return;
843
844 /* Use _safe variants to not break nested virtualization */
845 val = native_read_msr_safe(MSR_AMD64_DC_CFG, &err);
846 if (err)
847 return;
848
849 val |= (1ULL << 47);
850
851 low = lower_32_bits(val);
852 high = upper_32_bits(val);
853
854 native_write_msr_safe(MSR_AMD64_DC_CFG, low, high);
855
856 erratum_383_found = true;
857}
858
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500859static void svm_init_osvw(struct kvm_vcpu *vcpu)
860{
861 /*
862 * Guests should see errata 400 and 415 as fixed (assuming that
863 * HLT and IO instructions are intercepted).
864 */
865 vcpu->arch.osvw.length = (osvw_len >= 3) ? (osvw_len) : 3;
866 vcpu->arch.osvw.status = osvw_status & ~(6ULL);
867
868 /*
869 * By increasing VCPU's osvw.length to 3 we are telling the guest that
870 * all osvw.status bits inside that length, including bit 0 (which is
871 * reserved for erratum 298), are valid. However, if host processor's
872 * osvw_len is 0 then osvw_status[0] carries no information. We need to
873 * be conservative here and therefore we tell the guest that erratum 298
874 * is present (because we really don't know).
875 */
876 if (osvw_len == 0 && boot_cpu_data.x86 == 0x10)
877 vcpu->arch.osvw.status |= 1;
878}
879
Avi Kivity6aa8b732006-12-10 02:21:36 -0800880static int has_svm(void)
881{
Eduardo Habkost63d11422008-11-17 19:03:20 -0200882 const char *msg;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883
Eduardo Habkost63d11422008-11-17 19:03:20 -0200884 if (!cpu_has_svm(&msg)) {
Joe Perchesff81ff12009-01-08 11:05:17 -0800885 printk(KERN_INFO "has_svm: %s\n", msg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 return 0;
887 }
888
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889 return 1;
890}
891
Radim Krčmář13a34e02014-08-28 15:13:03 +0200892static void svm_hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893{
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100894 /* Make sure we clean up behind us */
895 if (static_cpu_has(X86_FEATURE_TSCRATEMSR))
896 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
897
Eduardo Habkost2c8dcee2008-11-17 19:03:21 -0200898 cpu_svm_disable();
Joerg Roedel1018faa2012-02-29 14:57:32 +0100899
900 amd_pmu_disable_virt();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901}
902
Radim Krčmář13a34e02014-08-28 15:13:03 +0200903static int svm_hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904{
905
Tejun Heo0fe1e002009-10-29 22:34:14 +0900906 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 uint64_t efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 struct desc_struct *gdt;
909 int me = raw_smp_processor_id();
910
Alexander Graf10474ae2009-09-15 11:37:46 +0200911 rdmsrl(MSR_EFER, efer);
912 if (efer & EFER_SVME)
913 return -EBUSY;
914
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 if (!has_svm()) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200916 pr_err("%s: err EOPNOTSUPP on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200917 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 }
Tejun Heo0fe1e002009-10-29 22:34:14 +0900919 sd = per_cpu(svm_data, me);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900920 if (!sd) {
Borislav Petkov1f5b77f2012-10-20 20:20:04 +0200921 pr_err("%s: svm_data is NULL on %d\n", __func__, me);
Alexander Graf10474ae2009-09-15 11:37:46 +0200922 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 }
924
Tejun Heo0fe1e002009-10-29 22:34:14 +0900925 sd->asid_generation = 1;
926 sd->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
927 sd->next_asid = sd->max_asid + 1;
Brijesh Singhed3cd232017-12-04 10:57:32 -0600928 sd->min_asid = max_sev_asid + 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929
Thomas Garnier45fc8752017-03-14 10:05:08 -0700930 gdt = get_current_gdt_rw();
Tejun Heo0fe1e002009-10-29 22:34:14 +0900931 sd->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932
Alexander Graf9962d032008-11-25 20:17:02 +0100933 wrmsrl(MSR_EFER, efer | EFER_SVME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934
Linus Torvaldsd0316552009-12-14 09:58:24 -0800935 wrmsrl(MSR_VM_HSAVE_PA, page_to_pfn(sd->save_area) << PAGE_SHIFT);
Alexander Graf10474ae2009-09-15 11:37:46 +0200936
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100937 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
938 wrmsrl(MSR_AMD64_TSC_RATIO, TSC_RATIO_DEFAULT);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500939 __this_cpu_write(current_tsc_ratio, TSC_RATIO_DEFAULT);
Joerg Roedelfbc0db72011-03-25 09:44:46 +0100940 }
941
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500942
943 /*
944 * Get OSVW bits.
945 *
946 * Note that it is possible to have a system with mixed processor
947 * revisions and therefore different OSVW bits. If bits are not the same
948 * on different processors then choose the worst case (i.e. if erratum
949 * is present on one processor and not on another then assume that the
950 * erratum is present everywhere).
951 */
952 if (cpu_has(&boot_cpu_data, X86_FEATURE_OSVW)) {
953 uint64_t len, status = 0;
954 int err;
955
956 len = native_read_msr_safe(MSR_AMD64_OSVW_ID_LENGTH, &err);
957 if (!err)
958 status = native_read_msr_safe(MSR_AMD64_OSVW_STATUS,
959 &err);
960
961 if (err)
962 osvw_status = osvw_len = 0;
963 else {
964 if (len < osvw_len)
965 osvw_len = len;
966 osvw_status |= status;
967 osvw_status &= (1ULL << osvw_len) - 1;
968 }
969 } else
970 osvw_status = osvw_len = 0;
971
Joerg Roedel67ec6602010-05-17 14:43:35 +0200972 svm_init_erratum_383();
973
Joerg Roedel1018faa2012-02-29 14:57:32 +0100974 amd_pmu_enable_virt();
975
Alexander Graf10474ae2009-09-15 11:37:46 +0200976 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977}
978
Joerg Roedel0da1db752008-07-02 16:02:11 +0200979static void svm_cpu_uninit(int cpu)
980{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900981 struct svm_cpu_data *sd = per_cpu(svm_data, raw_smp_processor_id());
Joerg Roedel0da1db752008-07-02 16:02:11 +0200982
Tejun Heo0fe1e002009-10-29 22:34:14 +0900983 if (!sd)
Joerg Roedel0da1db752008-07-02 16:02:11 +0200984 return;
985
986 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Brijesh Singh70cd94e2017-12-04 10:57:34 -0600987 kfree(sd->sev_vmcbs);
Tejun Heo0fe1e002009-10-29 22:34:14 +0900988 __free_page(sd->save_area);
989 kfree(sd);
Joerg Roedel0da1db752008-07-02 16:02:11 +0200990}
991
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992static int svm_cpu_init(int cpu)
993{
Tejun Heo0fe1e002009-10-29 22:34:14 +0900994 struct svm_cpu_data *sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995 int r;
996
Tejun Heo0fe1e002009-10-29 22:34:14 +0900997 sd = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
998 if (!sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 return -ENOMEM;
Tejun Heo0fe1e002009-10-29 22:34:14 +09001000 sd->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 r = -ENOMEM;
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001002 sd->save_area = alloc_page(GFP_KERNEL);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001003 if (!sd->save_area)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 goto err_1;
1005
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001006 if (svm_sev_enabled()) {
1007 r = -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001008 sd->sev_vmcbs = kmalloc_array(max_sev_asid + 1,
1009 sizeof(void *),
1010 GFP_KERNEL);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001011 if (!sd->sev_vmcbs)
1012 goto err_1;
1013 }
1014
Tejun Heo0fe1e002009-10-29 22:34:14 +09001015 per_cpu(svm_data, cpu) = sd;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016
1017 return 0;
1018
1019err_1:
Tejun Heo0fe1e002009-10-29 22:34:14 +09001020 kfree(sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 return r;
1022
1023}
1024
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001025static bool valid_msr_intercept(u32 index)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026{
1027 int i;
1028
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001029 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++)
1030 if (direct_access_msrs[i].index == index)
1031 return true;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001033 return false;
1034}
1035
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01001036static bool msr_write_intercepted(struct kvm_vcpu *vcpu, unsigned msr)
1037{
1038 u8 bit_write;
1039 unsigned long tmp;
1040 u32 offset;
1041 u32 *msrpm;
1042
1043 msrpm = is_guest_mode(vcpu) ? to_svm(vcpu)->nested.msrpm:
1044 to_svm(vcpu)->msrpm;
1045
1046 offset = svm_msrpm_offset(msr);
1047 bit_write = 2 * (msr & 0x0f) + 1;
1048 tmp = msrpm[offset];
1049
1050 BUG_ON(offset == MSR_INVALID);
1051
1052 return !!test_bit(bit_write, &tmp);
1053}
1054
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055static void set_msr_interception(u32 *msrpm, unsigned msr,
1056 int read, int write)
1057{
Joerg Roedel455716f2010-03-01 15:34:35 +01001058 u8 bit_read, bit_write;
1059 unsigned long tmp;
1060 u32 offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001062 /*
1063 * If this warning triggers extend the direct_access_msrs list at the
1064 * beginning of the file
1065 */
1066 WARN_ON(!valid_msr_intercept(msr));
1067
Joerg Roedel455716f2010-03-01 15:34:35 +01001068 offset = svm_msrpm_offset(msr);
1069 bit_read = 2 * (msr & 0x0f);
1070 bit_write = 2 * (msr & 0x0f) + 1;
1071 tmp = msrpm[offset];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072
Joerg Roedel455716f2010-03-01 15:34:35 +01001073 BUG_ON(offset == MSR_INVALID);
1074
1075 read ? clear_bit(bit_read, &tmp) : set_bit(bit_read, &tmp);
1076 write ? clear_bit(bit_write, &tmp) : set_bit(bit_write, &tmp);
1077
1078 msrpm[offset] = tmp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079}
1080
Joerg Roedelf65c2292008-02-13 18:58:46 +01001081static void svm_vcpu_init_msrpm(u32 *msrpm)
1082{
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001083 int i;
1084
Joerg Roedelf65c2292008-02-13 18:58:46 +01001085 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
1086
Joerg Roedelac72a9b2010-03-01 15:34:36 +01001087 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1088 if (!direct_access_msrs[i].always)
1089 continue;
1090
1091 set_msr_interception(msrpm, direct_access_msrs[i].index, 1, 1);
1092 }
Joerg Roedelf65c2292008-02-13 18:58:46 +01001093}
1094
Joerg Roedel323c3d82010-03-01 15:34:37 +01001095static void add_msr_offset(u32 offset)
1096{
1097 int i;
1098
1099 for (i = 0; i < MSRPM_OFFSETS; ++i) {
1100
1101 /* Offset already in list? */
1102 if (msrpm_offsets[i] == offset)
1103 return;
1104
1105 /* Slot used by another offset? */
1106 if (msrpm_offsets[i] != MSR_INVALID)
1107 continue;
1108
1109 /* Add offset to list */
1110 msrpm_offsets[i] = offset;
1111
1112 return;
1113 }
1114
1115 /*
1116 * If this BUG triggers the msrpm_offsets table has an overflow. Just
1117 * increase MSRPM_OFFSETS in this case.
1118 */
1119 BUG();
1120}
1121
1122static void init_msrpm_offsets(void)
1123{
1124 int i;
1125
1126 memset(msrpm_offsets, 0xff, sizeof(msrpm_offsets));
1127
1128 for (i = 0; direct_access_msrs[i].index != MSR_INVALID; i++) {
1129 u32 offset;
1130
1131 offset = svm_msrpm_offset(direct_access_msrs[i].index);
1132 BUG_ON(offset == MSR_INVALID);
1133
1134 add_msr_offset(offset);
1135 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001136}
1137
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001138static void svm_enable_lbrv(struct vcpu_svm *svm)
1139{
1140 u32 *msrpm = svm->msrpm;
1141
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001142 svm->vmcb->control.virt_ext |= LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001143 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
1144 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
1145 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
1146 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
1147}
1148
1149static void svm_disable_lbrv(struct vcpu_svm *svm)
1150{
1151 u32 *msrpm = svm->msrpm;
1152
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05001153 svm->vmcb->control.virt_ext &= ~LBR_CTL_ENABLE_MASK;
Joerg Roedel24e09cb2008-02-13 18:58:47 +01001154 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
1155 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
1156 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
1157 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
1158}
1159
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001160static void disable_nmi_singlestep(struct vcpu_svm *svm)
1161{
1162 svm->nmi_singlestep = false;
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001163
Ladi Prosekab2f4d732017-06-21 09:06:58 +02001164 if (!(svm->vcpu.guest_debug & KVM_GUESTDBG_SINGLESTEP)) {
1165 /* Clear our flags if they were not set by the guest */
1166 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
1167 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF;
1168 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
1169 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF;
1170 }
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02001171}
1172
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001173/* Note:
Sean Christopherson81811c12018-03-20 12:17:21 -07001174 * This hash table is used to map VM_ID to a struct kvm_svm,
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001175 * when handling AMD IOMMU GALOG notification to schedule in
1176 * a particular vCPU.
1177 */
1178#define SVM_VM_DATA_HASH_BITS 8
David Hildenbrand681bcea2017-01-24 22:21:16 +01001179static DEFINE_HASHTABLE(svm_vm_data_hash, SVM_VM_DATA_HASH_BITS);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001180static u32 next_vm_id = 0;
1181static bool next_vm_id_wrapped = 0;
David Hildenbrand681bcea2017-01-24 22:21:16 +01001182static DEFINE_SPINLOCK(svm_vm_data_hash_lock);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001183
1184/* Note:
1185 * This function is called from IOMMU driver to notify
1186 * SVM to schedule in a particular vCPU of a particular VM.
1187 */
1188static int avic_ga_log_notifier(u32 ga_tag)
1189{
1190 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001191 struct kvm_svm *kvm_svm;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001192 struct kvm_vcpu *vcpu = NULL;
1193 u32 vm_id = AVIC_GATAG_TO_VMID(ga_tag);
1194 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(ga_tag);
1195
1196 pr_debug("SVM: %s: vm_id=%#x, vcpu_id=%#x\n", __func__, vm_id, vcpu_id);
1197
1198 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001199 hash_for_each_possible(svm_vm_data_hash, kvm_svm, hnode, vm_id) {
1200 if (kvm_svm->avic_vm_id != vm_id)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001201 continue;
Sean Christopherson81811c12018-03-20 12:17:21 -07001202 vcpu = kvm_get_vcpu_by_id(&kvm_svm->kvm, vcpu_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001203 break;
1204 }
1205 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1206
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001207 /* Note:
1208 * At this point, the IOMMU should have already set the pending
1209 * bit in the vAPIC backing page. So, we just need to schedule
1210 * in the vcpu.
1211 */
Paolo Bonzini1cf53582017-10-10 12:51:56 +02001212 if (vcpu)
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001213 kvm_vcpu_wake_up(vcpu);
1214
1215 return 0;
1216}
1217
Brijesh Singhe9df0942017-12-04 10:57:33 -06001218static __init int sev_hardware_setup(void)
1219{
1220 struct sev_user_data_status *status;
1221 int rc;
1222
1223 /* Maximum number of encrypted guests supported simultaneously */
1224 max_sev_asid = cpuid_ecx(0x8000001F);
1225
1226 if (!max_sev_asid)
1227 return 1;
1228
Brijesh Singh1654efc2017-12-04 10:57:34 -06001229 /* Minimum ASID value that should be used for SEV guest */
1230 min_sev_asid = cpuid_edx(0x8000001F);
1231
1232 /* Initialize SEV ASID bitmap */
Andy Shevchenkoa101c9d2018-08-30 14:49:59 +03001233 sev_asid_bitmap = bitmap_zalloc(max_sev_asid, GFP_KERNEL);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001234 if (!sev_asid_bitmap)
1235 return 1;
1236
Brijesh Singhe9df0942017-12-04 10:57:33 -06001237 status = kmalloc(sizeof(*status), GFP_KERNEL);
1238 if (!status)
1239 return 1;
1240
1241 /*
1242 * Check SEV platform status.
1243 *
1244 * PLATFORM_STATUS can be called in any state, if we failed to query
1245 * the PLATFORM status then either PSP firmware does not support SEV
1246 * feature or SEV firmware is dead.
1247 */
1248 rc = sev_platform_status(status, NULL);
1249 if (rc)
1250 goto err;
1251
1252 pr_info("SEV supported\n");
1253
1254err:
1255 kfree(status);
1256 return rc;
1257}
1258
Babu Moger8566ac82018-03-16 16:37:26 -04001259static void grow_ple_window(struct kvm_vcpu *vcpu)
1260{
1261 struct vcpu_svm *svm = to_svm(vcpu);
1262 struct vmcb_control_area *control = &svm->vmcb->control;
1263 int old = control->pause_filter_count;
1264
1265 control->pause_filter_count = __grow_ple_window(old,
1266 pause_filter_count,
1267 pause_filter_count_grow,
1268 pause_filter_count_max);
1269
1270 if (control->pause_filter_count != old)
1271 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1272
1273 trace_kvm_ple_window_grow(vcpu->vcpu_id,
1274 control->pause_filter_count, old);
1275}
1276
1277static void shrink_ple_window(struct kvm_vcpu *vcpu)
1278{
1279 struct vcpu_svm *svm = to_svm(vcpu);
1280 struct vmcb_control_area *control = &svm->vmcb->control;
1281 int old = control->pause_filter_count;
1282
1283 control->pause_filter_count =
1284 __shrink_ple_window(old,
1285 pause_filter_count,
1286 pause_filter_count_shrink,
1287 pause_filter_count);
1288 if (control->pause_filter_count != old)
1289 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1290
1291 trace_kvm_ple_window_shrink(vcpu->vcpu_id,
1292 control->pause_filter_count, old);
1293}
1294
Avi Kivity6aa8b732006-12-10 02:21:36 -08001295static __init int svm_hardware_setup(void)
1296{
1297 int cpu;
1298 struct page *iopm_pages;
Joerg Roedelf65c2292008-02-13 18:58:46 +01001299 void *iopm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300 int r;
1301
Avi Kivity6aa8b732006-12-10 02:21:36 -08001302 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
1303
1304 if (!iopm_pages)
1305 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +03001306
1307 iopm_va = page_address(iopm_pages);
1308 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
1310
Joerg Roedel323c3d82010-03-01 15:34:37 +01001311 init_msrpm_offsets();
1312
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001313 if (boot_cpu_has(X86_FEATURE_NX))
1314 kvm_enable_efer_bits(EFER_NX);
1315
Alexander Graf1b2fd702009-02-02 16:23:51 +01001316 if (boot_cpu_has(X86_FEATURE_FXSR_OPT))
1317 kvm_enable_efer_bits(EFER_FFXSR);
1318
Joerg Roedel92a1f122011-03-25 09:44:51 +01001319 if (boot_cpu_has(X86_FEATURE_TSCRATEMSR)) {
Joerg Roedel92a1f122011-03-25 09:44:51 +01001320 kvm_has_tsc_control = true;
Haozhong Zhangbc9b9612015-10-20 15:39:01 +08001321 kvm_max_tsc_scaling_ratio = TSC_RATIO_MAX;
1322 kvm_tsc_scaling_ratio_frac_bits = 32;
Joerg Roedel92a1f122011-03-25 09:44:51 +01001323 }
1324
Babu Moger8566ac82018-03-16 16:37:26 -04001325 /* Check for pause filtering support */
1326 if (!boot_cpu_has(X86_FEATURE_PAUSEFILTER)) {
1327 pause_filter_count = 0;
1328 pause_filter_thresh = 0;
1329 } else if (!boot_cpu_has(X86_FEATURE_PFTHRESHOLD)) {
1330 pause_filter_thresh = 0;
1331 }
1332
Alexander Graf236de052008-11-25 20:17:10 +01001333 if (nested) {
1334 printk(KERN_INFO "kvm: Nested Virtualization enabled\n");
Joerg Roedeleec4b142010-05-05 16:04:44 +02001335 kvm_enable_efer_bits(EFER_SVME | EFER_LMSLE);
Alexander Graf236de052008-11-25 20:17:10 +01001336 }
1337
Brijesh Singhe9df0942017-12-04 10:57:33 -06001338 if (sev) {
1339 if (boot_cpu_has(X86_FEATURE_SEV) &&
1340 IS_ENABLED(CONFIG_KVM_AMD_SEV)) {
1341 r = sev_hardware_setup();
1342 if (r)
1343 sev = false;
1344 } else {
1345 sev = false;
1346 }
1347 }
1348
Zachary Amsden3230bb42009-09-29 11:38:37 -10001349 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350 r = svm_cpu_init(cpu);
1351 if (r)
Joerg Roedelf65c2292008-02-13 18:58:46 +01001352 goto err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001353 }
Joerg Roedel33bd6a02008-02-07 13:47:38 +01001354
Avi Kivity2a6b20b2010-11-09 16:15:42 +02001355 if (!boot_cpu_has(X86_FEATURE_NPT))
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001356 npt_enabled = false;
1357
Joerg Roedel6c7dac72008-02-07 13:47:40 +01001358 if (npt_enabled && !npt) {
1359 printk(KERN_INFO "kvm: Nested Paging disabled\n");
1360 npt_enabled = false;
1361 }
1362
Joerg Roedel18552672008-02-07 13:47:41 +01001363 if (npt_enabled) {
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001364 printk(KERN_INFO "kvm: Nested Paging enabled\n");
Joerg Roedel18552672008-02-07 13:47:41 +01001365 kvm_enable_tdp();
Joerg Roedel5f4cb662008-07-14 20:36:36 +02001366 } else
1367 kvm_disable_tdp();
Joerg Roedele3da3ac2008-02-07 13:47:39 +01001368
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001369 if (avic) {
1370 if (!npt_enabled ||
1371 !boot_cpu_has(X86_FEATURE_AVIC) ||
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001372 !IS_ENABLED(CONFIG_X86_LOCAL_APIC)) {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001373 avic = false;
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001374 } else {
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001375 pr_info("AVIC enabled\n");
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001376
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001377 amd_iommu_register_ga_log_notifier(&avic_ga_log_notifier);
1378 }
Suravee Suthikulpanit5b8abf12016-06-15 17:24:36 -05001379 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001380
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001381 if (vls) {
1382 if (!npt_enabled ||
Borislav Petkov5442c262017-08-01 20:55:52 +02001383 !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) ||
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001384 !IS_ENABLED(CONFIG_X86_64)) {
1385 vls = false;
1386 } else {
1387 pr_info("Virtual VMLOAD VMSAVE supported\n");
1388 }
1389 }
1390
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001391 if (vgif) {
1392 if (!boot_cpu_has(X86_FEATURE_VGIF))
1393 vgif = false;
1394 else
1395 pr_info("Virtual GIF supported\n");
1396 }
1397
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 return 0;
1399
Joerg Roedelf65c2292008-02-13 18:58:46 +01001400err:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
1402 iopm_base = 0;
1403 return r;
1404}
1405
1406static __exit void svm_hardware_unsetup(void)
1407{
Joerg Roedel0da1db752008-07-02 16:02:11 +02001408 int cpu;
1409
Brijesh Singh1654efc2017-12-04 10:57:34 -06001410 if (svm_sev_enabled())
Andy Shevchenkoa101c9d2018-08-30 14:49:59 +03001411 bitmap_free(sev_asid_bitmap);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001412
Zachary Amsden3230bb42009-09-29 11:38:37 -10001413 for_each_possible_cpu(cpu)
Joerg Roedel0da1db752008-07-02 16:02:11 +02001414 svm_cpu_uninit(cpu);
1415
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
Joerg Roedelf65c2292008-02-13 18:58:46 +01001417 iopm_base = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001418}
1419
1420static void init_seg(struct vmcb_seg *seg)
1421{
1422 seg->selector = 0;
1423 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
Joerg Roedele0231712010-02-24 18:59:10 +01001424 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425 seg->limit = 0xffff;
1426 seg->base = 0;
1427}
1428
1429static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
1430{
1431 seg->selector = 0;
1432 seg->attrib = SVM_SELECTOR_P_MASK | type;
1433 seg->limit = 0xffff;
1434 seg->base = 0;
1435}
1436
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001437static u64 svm_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
1438{
1439 struct vcpu_svm *svm = to_svm(vcpu);
1440
1441 if (is_guest_mode(vcpu))
1442 return svm->nested.hsave->control.tsc_offset;
1443
1444 return vcpu->arch.tsc_offset;
1445}
1446
Leonid Shatz76c84762018-11-06 12:14:25 +02001447static u64 svm_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001448{
1449 struct vcpu_svm *svm = to_svm(vcpu);
1450 u64 g_tsc_offset = 0;
1451
Joerg Roedel20307532010-11-29 17:51:48 +01001452 if (is_guest_mode(vcpu)) {
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001453 /* Write L1's TSC offset. */
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001454 g_tsc_offset = svm->vmcb->control.tsc_offset -
1455 svm->nested.hsave->control.tsc_offset;
1456 svm->nested.hsave->control.tsc_offset = offset;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09001457 } else
1458 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1459 svm->vmcb->control.tsc_offset,
1460 offset);
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001461
1462 svm->vmcb->control.tsc_offset = offset + g_tsc_offset;
Joerg Roedel116a0a22010-12-03 11:45:49 +01001463
1464 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Leonid Shatz76c84762018-11-06 12:14:25 +02001465 return svm->vmcb->control.tsc_offset;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001466}
1467
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001468static void avic_init_vmcb(struct vcpu_svm *svm)
1469{
1470 struct vmcb *vmcb = svm->vmcb;
Sean Christopherson81811c12018-03-20 12:17:21 -07001471 struct kvm_svm *kvm_svm = to_kvm_svm(svm->vcpu.kvm);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001472 phys_addr_t bpa = __sme_set(page_to_phys(svm->avic_backing_page));
Sean Christopherson81811c12018-03-20 12:17:21 -07001473 phys_addr_t lpa = __sme_set(page_to_phys(kvm_svm->avic_logical_id_table_page));
1474 phys_addr_t ppa = __sme_set(page_to_phys(kvm_svm->avic_physical_id_table_page));
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001475
1476 vmcb->control.avic_backing_page = bpa & AVIC_HPA_MASK;
1477 vmcb->control.avic_logical_id = lpa & AVIC_HPA_MASK;
1478 vmcb->control.avic_physical_id = ppa & AVIC_HPA_MASK;
1479 vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID_COUNT;
1480 vmcb->control.int_ctl |= AVIC_ENABLE_MASK;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001481}
1482
Paolo Bonzini56908912015-10-19 11:30:19 +02001483static void init_vmcb(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484{
Joerg Roedele6101a92008-02-13 18:58:45 +01001485 struct vmcb_control_area *control = &svm->vmcb->control;
1486 struct vmcb_save_area *save = &svm->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001488 svm->vcpu.arch.hflags = 0;
Avi Kivitybff78272010-01-07 13:16:08 +02001489
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001490 set_cr_intercept(svm, INTERCEPT_CR0_READ);
1491 set_cr_intercept(svm, INTERCEPT_CR3_READ);
1492 set_cr_intercept(svm, INTERCEPT_CR4_READ);
1493 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
1494 set_cr_intercept(svm, INTERCEPT_CR3_WRITE);
1495 set_cr_intercept(svm, INTERCEPT_CR4_WRITE);
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05001496 if (!kvm_vcpu_apicv_active(&svm->vcpu))
1497 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498
Paolo Bonzini5315c712014-03-03 13:08:29 +01001499 set_dr_intercepts(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500
Joerg Roedel18c918c2010-11-30 18:03:59 +01001501 set_exception_intercept(svm, PF_VECTOR);
1502 set_exception_intercept(svm, UD_VECTOR);
1503 set_exception_intercept(svm, MC_VECTOR);
Eric Northup54a20552015-11-03 18:03:53 +01001504 set_exception_intercept(svm, AC_VECTOR);
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01001505 set_exception_intercept(svm, DB_VECTOR);
Liran Alon97184202018-03-12 13:12:52 +02001506 /*
1507 * Guest access to VMware backdoor ports could legitimately
1508 * trigger #GP because of TSS I/O permission bitmap.
1509 * We intercept those #GP and allow access to them anyway
1510 * as VMware does.
1511 */
1512 if (enable_vmware_backdoor)
1513 set_exception_intercept(svm, GP_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001515 set_intercept(svm, INTERCEPT_INTR);
1516 set_intercept(svm, INTERCEPT_NMI);
1517 set_intercept(svm, INTERCEPT_SMI);
1518 set_intercept(svm, INTERCEPT_SELECTIVE_CR0);
Avi Kivity332b56e2011-11-10 14:57:24 +02001519 set_intercept(svm, INTERCEPT_RDPMC);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001520 set_intercept(svm, INTERCEPT_CPUID);
1521 set_intercept(svm, INTERCEPT_INVD);
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001522 set_intercept(svm, INTERCEPT_INVLPG);
1523 set_intercept(svm, INTERCEPT_INVLPGA);
1524 set_intercept(svm, INTERCEPT_IOIO_PROT);
1525 set_intercept(svm, INTERCEPT_MSR_PROT);
1526 set_intercept(svm, INTERCEPT_TASK_SWITCH);
1527 set_intercept(svm, INTERCEPT_SHUTDOWN);
1528 set_intercept(svm, INTERCEPT_VMRUN);
1529 set_intercept(svm, INTERCEPT_VMMCALL);
1530 set_intercept(svm, INTERCEPT_VMLOAD);
1531 set_intercept(svm, INTERCEPT_VMSAVE);
1532 set_intercept(svm, INTERCEPT_STGI);
1533 set_intercept(svm, INTERCEPT_CLGI);
1534 set_intercept(svm, INTERCEPT_SKINIT);
1535 set_intercept(svm, INTERCEPT_WBINVD);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01001536 set_intercept(svm, INTERCEPT_XSETBV);
Brijesh Singh7607b712018-02-19 10:14:44 -06001537 set_intercept(svm, INTERCEPT_RSM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001538
Wanpeng Li4d5422c2018-03-12 04:53:02 -07001539 if (!kvm_mwait_in_guest(svm->vcpu.kvm)) {
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02001540 set_intercept(svm, INTERCEPT_MONITOR);
1541 set_intercept(svm, INTERCEPT_MWAIT);
1542 }
1543
Wanpeng Licaa057a2018-03-12 04:53:03 -07001544 if (!kvm_hlt_in_guest(svm->vcpu.kvm))
1545 set_intercept(svm, INTERCEPT_HLT);
1546
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001547 control->iopm_base_pa = __sme_set(iopm_base);
1548 control->msrpm_base_pa = __sme_set(__pa(svm->msrpm));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549 control->int_ctl = V_INTR_MASKING_MASK;
1550
1551 init_seg(&save->es);
1552 init_seg(&save->ss);
1553 init_seg(&save->ds);
1554 init_seg(&save->fs);
1555 init_seg(&save->gs);
1556
1557 save->cs.selector = 0xf000;
Paolo Bonzini04b66832013-03-19 16:30:26 +01001558 save->cs.base = 0xffff0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559 /* Executable/Readable Code Segment */
1560 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
1561 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
1562 save->cs.limit = 0xffff;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563
1564 save->gdtr.limit = 0xffff;
1565 save->idtr.limit = 0xffff;
1566
1567 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
1568 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
1569
Paolo Bonzini56908912015-10-19 11:30:19 +02001570 svm_set_efer(&svm->vcpu, 0);
Mike Dayd77c26f2007-10-08 09:02:08 -04001571 save->dr6 = 0xffff0ff0;
Avi Kivityf6e78472010-08-02 15:30:20 +03001572 kvm_set_rflags(&svm->vcpu, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573 save->rip = 0x0000fff0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001574 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575
Joerg Roedele0231712010-02-24 18:59:10 +01001576 /*
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001577 * svm_set_cr0() sets PG and WP and clears NW and CD on save->cr0.
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001578 * It also updates the guest-visible cr0 value.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579 */
Paolo Bonzini79a80592015-09-21 07:46:55 +02001580 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET);
Igor Mammedovebae8712015-09-18 15:39:05 +02001581 kvm_mmu_reset_context(&svm->vcpu);
Eduardo Habkost18fa0002009-10-24 02:49:59 -02001582
Rusty Russell66aee912007-07-17 23:34:16 +10001583 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001584 /* rdx = ?? */
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001585
1586 if (npt_enabled) {
1587 /* Setup VMCB for Nested Paging */
Tom Lendackycea3a192017-12-04 10:57:24 -06001588 control->nested_ctl |= SVM_NESTED_CTL_NP_ENABLE;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001589 clr_intercept(svm, INTERCEPT_INVLPG);
Joerg Roedel18c918c2010-11-30 18:03:59 +01001590 clr_exception_intercept(svm, PF_VECTOR);
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01001591 clr_cr_intercept(svm, INTERCEPT_CR3_READ);
1592 clr_cr_intercept(svm, INTERCEPT_CR3_WRITE);
Radim Krčmář74545702015-04-27 15:11:25 +02001593 save->g_pat = svm->vcpu.arch.pat;
Joerg Roedel709ddeb2008-02-07 13:47:45 +01001594 save->cr3 = 0;
1595 save->cr4 = 0;
1596 }
Joerg Roedelf40f6a42010-12-03 15:25:15 +01001597 svm->asid_generation = 0;
Alexander Graf1371d902008-11-25 20:17:04 +01001598
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02001599 svm->nested.vmcb = 0;
Joerg Roedel2af91942009-08-07 11:49:28 +02001600 svm->vcpu.arch.hflags = 0;
1601
Babu Moger8566ac82018-03-16 16:37:26 -04001602 if (pause_filter_count) {
1603 control->pause_filter_count = pause_filter_count;
1604 if (pause_filter_thresh)
1605 control->pause_filter_thresh = pause_filter_thresh;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01001606 set_intercept(svm, INTERCEPT_PAUSE);
Babu Moger8566ac82018-03-16 16:37:26 -04001607 } else {
1608 clr_intercept(svm, INTERCEPT_PAUSE);
Mark Langsdorf565d0992009-10-06 14:25:02 -05001609 }
1610
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05001611 if (kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001612 avic_init_vmcb(svm);
1613
Janakarajan Natarajan89c8a492017-07-06 15:50:47 -05001614 /*
1615 * If hardware supports Virtual VMLOAD VMSAVE then enable it
1616 * in VMCB and clear intercepts to avoid #VMEXIT.
1617 */
1618 if (vls) {
1619 clr_intercept(svm, INTERCEPT_VMLOAD);
1620 clr_intercept(svm, INTERCEPT_VMSAVE);
1621 svm->vmcb->control.virt_ext |= VIRTUAL_VMLOAD_VMSAVE_ENABLE_MASK;
1622 }
1623
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05001624 if (vgif) {
1625 clr_intercept(svm, INTERCEPT_STGI);
1626 clr_intercept(svm, INTERCEPT_CLGI);
1627 svm->vmcb->control.int_ctl |= V_GIF_ENABLE_MASK;
1628 }
1629
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001630 if (sev_guest(svm->vcpu.kvm)) {
Brijesh Singh1654efc2017-12-04 10:57:34 -06001631 svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
Brijesh Singh35c6f6492017-12-04 10:57:39 -06001632 clr_exception_intercept(svm, UD_VECTOR);
1633 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001634
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01001635 mark_all_dirty(svm->vmcb);
1636
Joerg Roedel2af91942009-08-07 11:49:28 +02001637 enable_gif(svm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001638
1639}
1640
Dan Carpenterd3e7dec2017-05-18 10:38:53 +03001641static u64 *avic_get_physical_id_entry(struct kvm_vcpu *vcpu,
1642 unsigned int index)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001643{
1644 u64 *avic_physical_id_table;
Sean Christopherson81811c12018-03-20 12:17:21 -07001645 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001646
1647 if (index >= AVIC_MAX_PHYSICAL_ID_COUNT)
1648 return NULL;
1649
Sean Christopherson81811c12018-03-20 12:17:21 -07001650 avic_physical_id_table = page_address(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001651
1652 return &avic_physical_id_table[index];
1653}
1654
1655/**
1656 * Note:
1657 * AVIC hardware walks the nested page table to check permissions,
1658 * but does not use the SPA address specified in the leaf page
1659 * table entry since it uses address in the AVIC_BACKING_PAGE pointer
1660 * field of the VMCB. Therefore, we set up the
1661 * APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (4KB) here.
1662 */
1663static int avic_init_access_page(struct kvm_vcpu *vcpu)
1664{
1665 struct kvm *kvm = vcpu->kvm;
Wei Wang85bb1e82018-11-12 12:23:14 +00001666 int ret = 0;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001667
Wei Wang85bb1e82018-11-12 12:23:14 +00001668 mutex_lock(&kvm->slots_lock);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001669 if (kvm->arch.apic_access_page_done)
Wei Wang85bb1e82018-11-12 12:23:14 +00001670 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001671
Wei Wang85bb1e82018-11-12 12:23:14 +00001672 ret = __x86_set_memory_region(kvm,
1673 APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
1674 APIC_DEFAULT_PHYS_BASE,
1675 PAGE_SIZE);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001676 if (ret)
Wei Wang85bb1e82018-11-12 12:23:14 +00001677 goto out;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001678
1679 kvm->arch.apic_access_page_done = true;
Wei Wang85bb1e82018-11-12 12:23:14 +00001680out:
1681 mutex_unlock(&kvm->slots_lock);
1682 return ret;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001683}
1684
1685static int avic_init_backing_page(struct kvm_vcpu *vcpu)
1686{
1687 int ret;
1688 u64 *entry, new_entry;
1689 int id = vcpu->vcpu_id;
1690 struct vcpu_svm *svm = to_svm(vcpu);
1691
1692 ret = avic_init_access_page(vcpu);
1693 if (ret)
1694 return ret;
1695
1696 if (id >= AVIC_MAX_PHYSICAL_ID_COUNT)
1697 return -EINVAL;
1698
1699 if (!svm->vcpu.arch.apic->regs)
1700 return -EINVAL;
1701
1702 svm->avic_backing_page = virt_to_page(svm->vcpu.arch.apic->regs);
1703
1704 /* Setting AVIC backing page address in the phy APIC ID table */
1705 entry = avic_get_physical_id_entry(vcpu, id);
1706 if (!entry)
1707 return -EINVAL;
1708
1709 new_entry = READ_ONCE(*entry);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05001710 new_entry = __sme_set((page_to_phys(svm->avic_backing_page) &
1711 AVIC_PHYSICAL_ID_ENTRY_BACKING_PAGE_MASK) |
1712 AVIC_PHYSICAL_ID_ENTRY_VALID_MASK);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001713 WRITE_ONCE(*entry, new_entry);
1714
1715 svm->avic_physical_id_cache = entry;
1716
1717 return 0;
1718}
1719
Brijesh Singh1654efc2017-12-04 10:57:34 -06001720static void __sev_asid_free(int asid)
1721{
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001722 struct svm_cpu_data *sd;
1723 int cpu, pos;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001724
1725 pos = asid - 1;
1726 clear_bit(pos, sev_asid_bitmap);
Brijesh Singh70cd94e2017-12-04 10:57:34 -06001727
1728 for_each_possible_cpu(cpu) {
1729 sd = per_cpu(svm_data, cpu);
1730 sd->sev_vmcbs[pos] = NULL;
1731 }
Brijesh Singh1654efc2017-12-04 10:57:34 -06001732}
1733
1734static void sev_asid_free(struct kvm *kvm)
1735{
Sean Christopherson81811c12018-03-20 12:17:21 -07001736 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06001737
1738 __sev_asid_free(sev->asid);
1739}
1740
Brijesh Singh59414c92017-12-04 10:57:35 -06001741static void sev_unbind_asid(struct kvm *kvm, unsigned int handle)
1742{
1743 struct sev_data_decommission *decommission;
1744 struct sev_data_deactivate *data;
1745
1746 if (!handle)
1747 return;
1748
1749 data = kzalloc(sizeof(*data), GFP_KERNEL);
1750 if (!data)
1751 return;
1752
1753 /* deactivate handle */
1754 data->handle = handle;
1755 sev_guest_deactivate(data, NULL);
1756
1757 wbinvd_on_all_cpus();
1758 sev_guest_df_flush(NULL);
1759 kfree(data);
1760
1761 decommission = kzalloc(sizeof(*decommission), GFP_KERNEL);
1762 if (!decommission)
1763 return;
1764
1765 /* decommission handle */
1766 decommission->handle = handle;
1767 sev_guest_decommission(decommission, NULL);
1768
1769 kfree(decommission);
1770}
1771
Brijesh Singh89c50582017-12-04 10:57:35 -06001772static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr,
1773 unsigned long ulen, unsigned long *n,
1774 int write)
1775{
Sean Christopherson81811c12018-03-20 12:17:21 -07001776 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001777 unsigned long npages, npinned, size;
1778 unsigned long locked, lock_limit;
1779 struct page **pages;
Dan Carpenter86bf20c2018-05-19 09:01:36 +03001780 unsigned long first, last;
1781
1782 if (ulen == 0 || uaddr + ulen < uaddr)
1783 return NULL;
Brijesh Singh89c50582017-12-04 10:57:35 -06001784
1785 /* Calculate number of pages. */
1786 first = (uaddr & PAGE_MASK) >> PAGE_SHIFT;
1787 last = ((uaddr + ulen - 1) & PAGE_MASK) >> PAGE_SHIFT;
1788 npages = (last - first + 1);
1789
1790 locked = sev->pages_locked + npages;
1791 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1792 if (locked > lock_limit && !capable(CAP_IPC_LOCK)) {
1793 pr_err("SEV: %lu locked pages exceed the lock limit of %lu.\n", locked, lock_limit);
1794 return NULL;
1795 }
1796
1797 /* Avoid using vmalloc for smaller buffers. */
1798 size = npages * sizeof(struct page *);
1799 if (size > PAGE_SIZE)
1800 pages = vmalloc(size);
1801 else
1802 pages = kmalloc(size, GFP_KERNEL);
1803
1804 if (!pages)
1805 return NULL;
1806
1807 /* Pin the user virtual address. */
1808 npinned = get_user_pages_fast(uaddr, npages, write ? FOLL_WRITE : 0, pages);
1809 if (npinned != npages) {
1810 pr_err("SEV: Failure locking %lu pages.\n", npages);
1811 goto err;
1812 }
1813
1814 *n = npages;
1815 sev->pages_locked = locked;
1816
1817 return pages;
1818
1819err:
1820 if (npinned > 0)
1821 release_pages(pages, npinned);
1822
1823 kvfree(pages);
1824 return NULL;
1825}
1826
1827static void sev_unpin_memory(struct kvm *kvm, struct page **pages,
1828 unsigned long npages)
1829{
Sean Christopherson81811c12018-03-20 12:17:21 -07001830 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06001831
1832 release_pages(pages, npages);
1833 kvfree(pages);
1834 sev->pages_locked -= npages;
1835}
1836
1837static void sev_clflush_pages(struct page *pages[], unsigned long npages)
1838{
1839 uint8_t *page_virtual;
1840 unsigned long i;
1841
1842 if (npages == 0 || pages == NULL)
1843 return;
1844
1845 for (i = 0; i < npages; i++) {
1846 page_virtual = kmap_atomic(pages[i]);
1847 clflush_cache_range(page_virtual, PAGE_SIZE);
1848 kunmap_atomic(page_virtual);
1849 }
1850}
1851
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001852static void __unregister_enc_region_locked(struct kvm *kvm,
1853 struct enc_region *region)
1854{
1855 /*
1856 * The guest may change the memory encryption attribute from C=0 -> C=1
1857 * or vice versa for this memory range. Lets make sure caches are
1858 * flushed to ensure that guest data gets written into memory with
1859 * correct C-bit.
1860 */
1861 sev_clflush_pages(region->pages, region->npages);
1862
1863 sev_unpin_memory(kvm, region->pages, region->npages);
1864 list_del(&region->list);
1865 kfree(region);
1866}
1867
Sean Christopherson434a1e92018-03-20 12:17:18 -07001868static struct kvm *svm_vm_alloc(void)
1869{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001870 struct kvm_svm *kvm_svm = vzalloc(sizeof(struct kvm_svm));
Sean Christopherson81811c12018-03-20 12:17:21 -07001871 return &kvm_svm->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07001872}
1873
1874static void svm_vm_free(struct kvm *kvm)
1875{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07001876 vfree(to_kvm_svm(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07001877}
1878
Brijesh Singh1654efc2017-12-04 10:57:34 -06001879static void sev_vm_destroy(struct kvm *kvm)
1880{
Sean Christopherson81811c12018-03-20 12:17:21 -07001881 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001882 struct list_head *head = &sev->regions_list;
1883 struct list_head *pos, *q;
Brijesh Singh59414c92017-12-04 10:57:35 -06001884
Brijesh Singh1654efc2017-12-04 10:57:34 -06001885 if (!sev_guest(kvm))
1886 return;
1887
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06001888 mutex_lock(&kvm->lock);
1889
1890 /*
1891 * if userspace was terminated before unregistering the memory regions
1892 * then lets unpin all the registered memory.
1893 */
1894 if (!list_empty(head)) {
1895 list_for_each_safe(pos, q, head) {
1896 __unregister_enc_region_locked(kvm,
1897 list_entry(pos, struct enc_region, list));
1898 }
1899 }
1900
1901 mutex_unlock(&kvm->lock);
1902
Brijesh Singh59414c92017-12-04 10:57:35 -06001903 sev_unbind_asid(kvm, sev->handle);
Brijesh Singh1654efc2017-12-04 10:57:34 -06001904 sev_asid_free(kvm);
1905}
1906
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001907static void avic_vm_destroy(struct kvm *kvm)
1908{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001909 unsigned long flags;
Sean Christopherson81811c12018-03-20 12:17:21 -07001910 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001911
Dmitry Vyukov3863dff2017-01-24 14:06:48 +01001912 if (!avic)
1913 return;
1914
Sean Christopherson81811c12018-03-20 12:17:21 -07001915 if (kvm_svm->avic_logical_id_table_page)
1916 __free_page(kvm_svm->avic_logical_id_table_page);
1917 if (kvm_svm->avic_physical_id_table_page)
1918 __free_page(kvm_svm->avic_physical_id_table_page);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001919
1920 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Sean Christopherson81811c12018-03-20 12:17:21 -07001921 hash_del(&kvm_svm->hnode);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001922 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001923}
1924
Brijesh Singh1654efc2017-12-04 10:57:34 -06001925static void svm_vm_destroy(struct kvm *kvm)
1926{
1927 avic_vm_destroy(kvm);
1928 sev_vm_destroy(kvm);
1929}
1930
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001931static int avic_vm_init(struct kvm *kvm)
1932{
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001933 unsigned long flags;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001934 int err = -ENOMEM;
Sean Christopherson81811c12018-03-20 12:17:21 -07001935 struct kvm_svm *kvm_svm = to_kvm_svm(kvm);
1936 struct kvm_svm *k2;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001937 struct page *p_page;
1938 struct page *l_page;
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001939 u32 vm_id;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001940
1941 if (!avic)
1942 return 0;
1943
1944 /* Allocating physical APIC ID table (4KB) */
1945 p_page = alloc_page(GFP_KERNEL);
1946 if (!p_page)
1947 goto free_avic;
1948
Sean Christopherson81811c12018-03-20 12:17:21 -07001949 kvm_svm->avic_physical_id_table_page = p_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001950 clear_page(page_address(p_page));
1951
1952 /* Allocating logical APIC ID table (4KB) */
1953 l_page = alloc_page(GFP_KERNEL);
1954 if (!l_page)
1955 goto free_avic;
1956
Sean Christopherson81811c12018-03-20 12:17:21 -07001957 kvm_svm->avic_logical_id_table_page = l_page;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001958 clear_page(page_address(l_page));
1959
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001960 spin_lock_irqsave(&svm_vm_data_hash_lock, flags);
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001961 again:
1962 vm_id = next_vm_id = (next_vm_id + 1) & AVIC_VM_ID_MASK;
1963 if (vm_id == 0) { /* id is 1-based, zero is not okay */
1964 next_vm_id_wrapped = 1;
1965 goto again;
1966 }
1967 /* Is it still in use? Only possible if wrapped at least once */
1968 if (next_vm_id_wrapped) {
Sean Christopherson81811c12018-03-20 12:17:21 -07001969 hash_for_each_possible(svm_vm_data_hash, k2, hnode, vm_id) {
1970 if (k2->avic_vm_id == vm_id)
Denys Vlasenko3f0d4db2017-08-11 22:11:58 +02001971 goto again;
1972 }
1973 }
Sean Christopherson81811c12018-03-20 12:17:21 -07001974 kvm_svm->avic_vm_id = vm_id;
1975 hash_add(svm_vm_data_hash, &kvm_svm->hnode, kvm_svm->avic_vm_id);
Suravee Suthikulpanit5881f732016-08-23 13:52:42 -05001976 spin_unlock_irqrestore(&svm_vm_data_hash_lock, flags);
1977
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05001978 return 0;
1979
1980free_avic:
1981 avic_vm_destroy(kvm);
1982 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983}
1984
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001985static inline int
1986avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r)
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001987{
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001988 int ret = 0;
1989 unsigned long flags;
1990 struct amd_svm_iommu_ir *ir;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001991 struct vcpu_svm *svm = to_svm(vcpu);
1992
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001993 if (!kvm_arch_has_assigned_device(vcpu->kvm))
1994 return 0;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05001995
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05001996 /*
1997 * Here, we go through the per-vcpu ir_list to update all existing
1998 * interrupt remapping table entry targeting this vcpu.
1999 */
2000 spin_lock_irqsave(&svm->ir_list_lock, flags);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002001
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002002 if (list_empty(&svm->ir_list))
2003 goto out;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002004
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002005 list_for_each_entry(ir, &svm->ir_list, node) {
2006 ret = amd_iommu_update_ga(cpu, r, ir->data);
2007 if (ret)
2008 break;
2009 }
2010out:
2011 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
2012 return ret;
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002013}
2014
2015static void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2016{
2017 u64 entry;
2018 /* ID = 0xff (broadcast), ID > 0xff (reserved) */
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05002019 int h_physical_id = kvm_cpu_get_apicid(cpu);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002020 struct vcpu_svm *svm = to_svm(vcpu);
2021
2022 if (!kvm_vcpu_apicv_active(vcpu))
2023 return;
2024
2025 if (WARN_ON(h_physical_id >= AVIC_MAX_PHYSICAL_ID_COUNT))
2026 return;
2027
2028 entry = READ_ONCE(*(svm->avic_physical_id_cache));
2029 WARN_ON(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK);
2030
2031 entry &= ~AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK;
2032 entry |= (h_physical_id & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK);
2033
2034 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2035 if (svm->avic_is_running)
2036 entry |= AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2037
2038 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002039 avic_update_iommu_vcpu_affinity(vcpu, h_physical_id,
2040 svm->avic_is_running);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002041}
2042
2043static void avic_vcpu_put(struct kvm_vcpu *vcpu)
2044{
2045 u64 entry;
2046 struct vcpu_svm *svm = to_svm(vcpu);
2047
2048 if (!kvm_vcpu_apicv_active(vcpu))
2049 return;
2050
2051 entry = READ_ONCE(*(svm->avic_physical_id_cache));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002052 if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)
2053 avic_update_iommu_vcpu_affinity(vcpu, -1, 0);
2054
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002055 entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK;
2056 WRITE_ONCE(*(svm->avic_physical_id_cache), entry);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002057}
2058
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05002059/**
2060 * This function is called during VCPU halt/unhalt.
2061 */
2062static void avic_set_running(struct kvm_vcpu *vcpu, bool is_run)
2063{
2064 struct vcpu_svm *svm = to_svm(vcpu);
2065
2066 svm->avic_is_running = is_run;
2067 if (is_run)
2068 avic_vcpu_load(vcpu, vcpu->cpu);
2069 else
2070 avic_vcpu_put(vcpu);
2071}
2072
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002073static void svm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivity04d2cc72007-09-10 18:10:54 +03002074{
2075 struct vcpu_svm *svm = to_svm(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002076 u32 dummy;
2077 u32 eax = 1;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002078
Wanpeng Li518e7b92018-02-28 14:03:31 +08002079 vcpu->arch.microcode_version = 0x01000065;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002080 svm->spec_ctrl = 0;
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02002081 svm->virt_spec_ctrl = 0;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01002082
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002083 if (!init_event) {
2084 svm->vcpu.arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2085 MSR_IA32_APICBASE_ENABLE;
2086 if (kvm_vcpu_is_reset_bsp(&svm->vcpu))
2087 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
2088 }
Paolo Bonzini56908912015-10-19 11:30:19 +02002089 init_vmcb(svm);
Avi Kivity70433382007-11-07 12:57:23 +02002090
Yu Zhange911eb32017-08-24 20:27:52 +08002091 kvm_cpuid(vcpu, &eax, &dummy, &dummy, &dummy, true);
Julian Stecklina66f7b722012-12-05 15:26:19 +01002092 kvm_register_write(vcpu, VCPU_REGS_RDX, eax);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002093
2094 if (kvm_vcpu_apicv_active(vcpu) && !init_event)
2095 avic_update_vapic_bar(svm, APIC_DEFAULT_PHYS_BASE);
Avi Kivity04d2cc72007-09-10 18:10:54 +03002096}
2097
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002098static int avic_init_vcpu(struct vcpu_svm *svm)
2099{
2100 int ret;
2101
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05002102 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002103 return 0;
2104
2105 ret = avic_init_backing_page(&svm->vcpu);
2106 if (ret)
2107 return ret;
2108
2109 INIT_LIST_HEAD(&svm->ir_list);
2110 spin_lock_init(&svm->ir_list_lock);
2111
2112 return ret;
2113}
2114
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002115static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002117 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 struct page *page;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002119 struct page *msrpm_pages;
Alexander Grafb286d5d2008-11-25 20:17:05 +01002120 struct page *hsave_page;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002121 struct page *nested_msrpm_pages;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002122 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123
Rusty Russellc16f8622007-07-30 21:12:19 +10002124 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002125 if (!svm) {
2126 err = -ENOMEM;
2127 goto out;
2128 }
2129
2130 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
2131 if (err)
2132 goto free_svm;
2133
Joerg Roedelf65c2292008-02-13 18:58:46 +01002134 err = -ENOMEM;
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002135 page = alloc_page(GFP_KERNEL);
2136 if (!page)
2137 goto uninit;
2138
Joerg Roedelf65c2292008-02-13 18:58:46 +01002139 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2140 if (!msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002141 goto free_page1;
Alexander Graf3d6368e2008-11-25 20:17:07 +01002142
2143 nested_msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
2144 if (!nested_msrpm_pages)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002145 goto free_page2;
Joerg Roedelf65c2292008-02-13 18:58:46 +01002146
Alexander Grafb286d5d2008-11-25 20:17:05 +01002147 hsave_page = alloc_page(GFP_KERNEL);
2148 if (!hsave_page)
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002149 goto free_page3;
2150
Suravee Suthikulpanitdfa20092017-09-12 10:42:40 -05002151 err = avic_init_vcpu(svm);
2152 if (err)
2153 goto free_page4;
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002154
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002155 /* We initialize this flag to true to make sure that the is_running
2156 * bit would be set the first time the vcpu is loaded.
2157 */
2158 svm->avic_is_running = true;
2159
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002160 svm->nested.hsave = page_address(hsave_page);
Alexander Grafb286d5d2008-11-25 20:17:05 +01002161
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002162 svm->msrpm = page_address(msrpm_pages);
2163 svm_vcpu_init_msrpm(svm->msrpm);
2164
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002165 svm->nested.msrpm = page_address(nested_msrpm_pages);
Joerg Roedel323c3d82010-03-01 15:34:37 +01002166 svm_vcpu_init_msrpm(svm->nested.msrpm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01002167
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002168 svm->vmcb = page_address(page);
2169 clear_page(svm->vmcb);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002170 svm->vmcb_pa = __sme_set(page_to_pfn(page) << PAGE_SHIFT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002171 svm->asid_generation = 0;
Paolo Bonzini56908912015-10-19 11:30:19 +02002172 init_vmcb(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002174 svm_init_osvw(&svm->vcpu);
2175
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002176 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -08002177
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05002178free_page4:
2179 __free_page(hsave_page);
Takuya Yoshikawab7af4042010-03-09 14:55:19 +09002180free_page3:
2181 __free_pages(nested_msrpm_pages, MSRPM_ALLOC_ORDER);
2182free_page2:
2183 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
2184free_page1:
2185 __free_page(page);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002186uninit:
2187 kvm_vcpu_uninit(&svm->vcpu);
2188free_svm:
Rusty Russella4770342007-08-01 14:46:11 +10002189 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002190out:
2191 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002192}
2193
Jim Mattsonb8b0c872018-05-22 09:54:20 -07002194static void svm_clear_current_vmcb(struct vmcb *vmcb)
2195{
2196 int i;
2197
2198 for_each_online_cpu(i)
2199 cmpxchg(&per_cpu(svm_data, i)->current_vmcb, vmcb, NULL);
2200}
2201
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202static void svm_free_vcpu(struct kvm_vcpu *vcpu)
2203{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002204 struct vcpu_svm *svm = to_svm(vcpu);
2205
Jim Mattsonb8b0c872018-05-22 09:54:20 -07002206 /*
2207 * The vmcb page can be recycled, causing a false negative in
2208 * svm_vcpu_load(). So, ensure that no logical CPU has this
2209 * vmcb page recorded as its current vmcb.
2210 */
2211 svm_clear_current_vmcb(svm->vmcb);
2212
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002213 __free_page(pfn_to_page(__sme_clr(svm->vmcb_pa) >> PAGE_SHIFT));
Joerg Roedelf65c2292008-02-13 18:58:46 +01002214 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02002215 __free_page(virt_to_page(svm->nested.hsave));
2216 __free_pages(virt_to_page(svm->nested.msrpm), MSRPM_ALLOC_ORDER);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002217 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002218 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219}
2220
Avi Kivity15ad7142007-07-11 18:17:21 +03002221static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002223 struct vcpu_svm *svm = to_svm(vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01002224 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002225 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +02002226
Avi Kivity0cc50642007-03-25 12:07:27 +02002227 if (unlikely(cpu != vcpu->cpu)) {
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03002228 svm->asid_generation = 0;
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01002229 mark_all_dirty(svm->vmcb);
Avi Kivity0cc50642007-03-25 12:07:27 +02002230 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002231
Avi Kivity82ca2d12010-10-21 12:20:34 +02002232#ifdef CONFIG_X86_64
2233 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host.gs_base);
2234#endif
Avi Kivitydacccfd2010-10-21 12:20:33 +02002235 savesegment(fs, svm->host.fs);
2236 savesegment(gs, svm->host.gs);
2237 svm->host.ldt = kvm_read_ldt();
2238
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002239 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002240 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002241
Haozhong Zhangad721882015-10-20 15:39:02 +08002242 if (static_cpu_has(X86_FEATURE_TSCRATEMSR)) {
2243 u64 tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2244 if (tsc_ratio != __this_cpu_read(current_tsc_ratio)) {
2245 __this_cpu_write(current_tsc_ratio, tsc_ratio);
2246 wrmsrl(MSR_AMD64_TSC_RATIO, tsc_ratio);
2247 }
Joerg Roedelfbc0db72011-03-25 09:44:46 +01002248 }
Paolo Bonzini46896c72015-11-12 14:49:16 +01002249 /* This assumes that the kernel never uses MSR_TSC_AUX */
2250 if (static_cpu_has(X86_FEATURE_RDTSCP))
2251 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002252
Ashok Raj15d45072018-02-01 22:59:43 +01002253 if (sd->current_vmcb != svm->vmcb) {
2254 sd->current_vmcb = svm->vmcb;
2255 indirect_branch_prediction_barrier();
2256 }
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002257 avic_vcpu_load(vcpu, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002258}
2259
2260static void svm_vcpu_put(struct kvm_vcpu *vcpu)
2261{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002262 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002263 int i;
2264
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002265 avic_vcpu_put(vcpu);
2266
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002267 ++vcpu->stat.host_state_reload;
Avi Kivitydacccfd2010-10-21 12:20:33 +02002268 kvm_load_ldt(svm->host.ldt);
2269#ifdef CONFIG_X86_64
2270 loadsegment(fs, svm->host.fs);
Andy Lutomirski296f7812016-04-26 12:23:29 -07002271 wrmsrl(MSR_KERNEL_GS_BASE, current->thread.gsbase);
Joerg Roedel893a5ab2011-01-14 16:45:01 +01002272 load_gs_index(svm->host.gs);
Avi Kivitydacccfd2010-10-21 12:20:33 +02002273#else
Avi Kivity831ca602011-03-08 16:09:51 +02002274#ifdef CONFIG_X86_32_LAZY_GS
Avi Kivitydacccfd2010-10-21 12:20:33 +02002275 loadsegment(gs, svm->host.gs);
2276#endif
Avi Kivity831ca602011-03-08 16:09:51 +02002277#endif
Anthony Liguori94dfbdb2007-04-29 11:56:06 +03002278 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002279 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002280}
2281
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05002282static void svm_vcpu_blocking(struct kvm_vcpu *vcpu)
2283{
2284 avic_set_running(vcpu, false);
2285}
2286
2287static void svm_vcpu_unblocking(struct kvm_vcpu *vcpu)
2288{
2289 avic_set_running(vcpu, true);
2290}
2291
Avi Kivity6aa8b732006-12-10 02:21:36 -08002292static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
2293{
Ladi Prosek9b611742017-06-21 09:06:59 +02002294 struct vcpu_svm *svm = to_svm(vcpu);
2295 unsigned long rflags = svm->vmcb->save.rflags;
2296
2297 if (svm->nmi_singlestep) {
2298 /* Hide our flags if they were not set by the guest */
2299 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF))
2300 rflags &= ~X86_EFLAGS_TF;
2301 if (!(svm->nmi_singlestep_guest_rflags & X86_EFLAGS_RF))
2302 rflags &= ~X86_EFLAGS_RF;
2303 }
2304 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305}
2306
2307static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2308{
Ladi Prosek9b611742017-06-21 09:06:59 +02002309 if (to_svm(vcpu)->nmi_singlestep)
2310 rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
2311
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002312 /*
Andrea Gelminibb3541f2016-05-21 14:14:44 +02002313 * Any change of EFLAGS.VM is accompanied by a reload of SS
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002314 * (caused by either a task switch or an inter-privilege IRET),
2315 * so we do not need to update the CPL here.
2316 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002317 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318}
2319
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002320static void svm_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
2321{
2322 switch (reg) {
2323 case VCPU_EXREG_PDPTR:
2324 BUG_ON(!npt_enabled);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002325 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002326 break;
2327 default:
2328 BUG();
2329 }
2330}
2331
Alexander Graff0b85052008-11-25 20:17:01 +01002332static void svm_set_vintr(struct vcpu_svm *svm)
2333{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002334 set_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002335}
2336
2337static void svm_clear_vintr(struct vcpu_svm *svm)
2338{
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01002339 clr_intercept(svm, INTERCEPT_VINTR);
Alexander Graff0b85052008-11-25 20:17:01 +01002340}
2341
Avi Kivity6aa8b732006-12-10 02:21:36 -08002342static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
2343{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002344 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345
2346 switch (seg) {
2347 case VCPU_SREG_CS: return &save->cs;
2348 case VCPU_SREG_DS: return &save->ds;
2349 case VCPU_SREG_ES: return &save->es;
2350 case VCPU_SREG_FS: return &save->fs;
2351 case VCPU_SREG_GS: return &save->gs;
2352 case VCPU_SREG_SS: return &save->ss;
2353 case VCPU_SREG_TR: return &save->tr;
2354 case VCPU_SREG_LDTR: return &save->ldtr;
2355 }
2356 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +00002357 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358}
2359
2360static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2361{
2362 struct vmcb_seg *s = svm_seg(vcpu, seg);
2363
2364 return s->base;
2365}
2366
2367static void svm_get_segment(struct kvm_vcpu *vcpu,
2368 struct kvm_segment *var, int seg)
2369{
2370 struct vmcb_seg *s = svm_seg(vcpu, seg);
2371
2372 var->base = s->base;
2373 var->limit = s->limit;
2374 var->selector = s->selector;
2375 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
2376 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
2377 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
2378 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
2379 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
2380 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
2381 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
Jim Mattson80112c82014-07-08 09:47:41 +05302382
2383 /*
2384 * AMD CPUs circa 2014 track the G bit for all segments except CS.
2385 * However, the SVM spec states that the G bit is not observed by the
2386 * CPU, and some VMware virtual CPUs drop the G bit for all segments.
2387 * So let's synthesize a legal G bit for all segments, this helps
2388 * running KVM nested. It also helps cross-vendor migration, because
2389 * Intel's vmentry has a check on the 'G' bit.
2390 */
2391 var->g = s->limit > 0xfffff;
Amit Shah25022ac2008-10-27 09:04:17 +00002392
Joerg Roedele0231712010-02-24 18:59:10 +01002393 /*
2394 * AMD's VMCB does not have an explicit unusable field, so emulate it
Andre Przywara19bca6a2009-04-28 12:45:30 +02002395 * for cross vendor migration purposes by "not present"
2396 */
Gioh Kim8eae9572017-05-30 15:24:45 +02002397 var->unusable = !var->present;
Andre Przywara19bca6a2009-04-28 12:45:30 +02002398
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002399 switch (seg) {
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002400 case VCPU_SREG_TR:
2401 /*
2402 * Work around a bug where the busy flag in the tr selector
2403 * isn't exposed
2404 */
Amit Shahc0d09822008-10-27 09:04:18 +00002405 var->type |= 0x2;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002406 break;
2407 case VCPU_SREG_DS:
2408 case VCPU_SREG_ES:
2409 case VCPU_SREG_FS:
2410 case VCPU_SREG_GS:
2411 /*
2412 * The accessed bit must always be set in the segment
2413 * descriptor cache, although it can be cleared in the
2414 * descriptor, the cached bit always remains at 1. Since
2415 * Intel has a check on this, set it here to support
2416 * cross-vendor migration.
2417 */
2418 if (!var->unusable)
2419 var->type |= 0x1;
2420 break;
Andre Przywarab586eb02009-04-28 12:45:43 +02002421 case VCPU_SREG_SS:
Joerg Roedele0231712010-02-24 18:59:10 +01002422 /*
2423 * On AMD CPUs sometimes the DB bit in the segment
Andre Przywarab586eb02009-04-28 12:45:43 +02002424 * descriptor is left as 1, although the whole segment has
2425 * been made unusable. Clear it here to pass an Intel VMX
2426 * entry check when cross vendor migrating.
2427 */
2428 if (var->unusable)
2429 var->db = 0;
Roman Pend9c1b542017-06-01 10:55:03 +02002430 /* This is symmetric with svm_set_segment() */
Jan Kiszka33b458d2014-06-29 17:12:43 +02002431 var->dpl = to_svm(vcpu)->vmcb->save.cpl;
Andre Przywarab586eb02009-04-28 12:45:43 +02002432 break;
Andre Przywara1fbdc7a2009-01-11 22:39:44 +01002433 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434}
2435
Izik Eidus2e4d2652008-03-24 19:38:34 +02002436static int svm_get_cpl(struct kvm_vcpu *vcpu)
2437{
2438 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
2439
2440 return save->cpl;
2441}
2442
Gleb Natapov89a27f42010-02-16 10:51:48 +02002443static void svm_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002445 struct vcpu_svm *svm = to_svm(vcpu);
2446
Gleb Natapov89a27f42010-02-16 10:51:48 +02002447 dt->size = svm->vmcb->save.idtr.limit;
2448 dt->address = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002449}
2450
Gleb Natapov89a27f42010-02-16 10:51:48 +02002451static void svm_set_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 svm->vmcb->save.idtr.limit = dt->size;
2456 svm->vmcb->save.idtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002457 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002458}
2459
Gleb Natapov89a27f42010-02-16 10:51:48 +02002460static void svm_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002462 struct vcpu_svm *svm = to_svm(vcpu);
2463
Gleb Natapov89a27f42010-02-16 10:51:48 +02002464 dt->size = svm->vmcb->save.gdtr.limit;
2465 dt->address = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002466}
2467
Gleb Natapov89a27f42010-02-16 10:51:48 +02002468static void svm_set_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 svm->vmcb->save.gdtr.limit = dt->size;
2473 svm->vmcb->save.gdtr.base = dt->address ;
Joerg Roedel17a703c2010-12-03 11:45:56 +01002474 mark_dirty(svm->vmcb, VMCB_DT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475}
2476
Avi Kivitye8467fd2009-12-29 18:43:06 +02002477static void svm_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2478{
2479}
2480
Avi Kivityaff48ba2010-12-05 18:56:11 +02002481static void svm_decache_cr3(struct kvm_vcpu *vcpu)
2482{
2483}
2484
Anthony Liguori25c4c272007-04-27 09:29:21 +03002485static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002486{
2487}
2488
Avi Kivityd2251572010-01-06 10:55:27 +02002489static void update_cr0_intercept(struct vcpu_svm *svm)
2490{
2491 ulong gcr0 = svm->vcpu.arch.cr0;
2492 u64 *hcr0 = &svm->vmcb->save.cr0;
2493
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002494 *hcr0 = (*hcr0 & ~SVM_CR0_SELECTIVE_MASK)
2495 | (gcr0 & SVM_CR0_SELECTIVE_MASK);
Avi Kivityd2251572010-01-06 10:55:27 +02002496
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002497 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002498
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002499 if (gcr0 == *hcr0) {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002500 clr_cr_intercept(svm, INTERCEPT_CR0_READ);
2501 clr_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002502 } else {
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01002503 set_cr_intercept(svm, INTERCEPT_CR0_READ);
2504 set_cr_intercept(svm, INTERCEPT_CR0_WRITE);
Avi Kivityd2251572010-01-06 10:55:27 +02002505 }
2506}
2507
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2509{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002510 struct vcpu_svm *svm = to_svm(vcpu);
2511
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002512#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002513 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002514 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002515 vcpu->arch.efer |= EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002516 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002517 }
2518
Mike Dayd77c26f2007-10-08 09:02:08 -04002519 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
Avi Kivityf6801df2010-01-21 15:31:50 +02002520 vcpu->arch.efer &= ~EFER_LMA;
Carlo Marcelo Arenas Belon2b5203e2007-12-01 06:17:11 -06002521 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522 }
2523 }
2524#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002525 vcpu->arch.cr0 = cr0;
Avi Kivity888f9f32010-01-10 12:14:04 +02002526
2527 if (!npt_enabled)
2528 cr0 |= X86_CR0_PG | X86_CR0_WP;
Avi Kivity02daab22009-12-30 12:40:26 +02002529
Paolo Bonzinibcf166a2015-10-01 13:19:55 +02002530 /*
2531 * re-enable caching here because the QEMU bios
2532 * does not do it - this results in some delay at
2533 * reboot
2534 */
2535 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
2536 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002537 svm->vmcb->save.cr0 = cr0;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002538 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivityd2251572010-01-06 10:55:27 +02002539 update_cr0_intercept(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002540}
2541
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002542static int svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543{
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002544 unsigned long host_cr4_mce = cr4_read_shadow() & X86_CR4_MCE;
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002545 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
2546
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002547 if (cr4 & X86_CR4_VMXE)
2548 return 1;
2549
Joerg Roedele5eab0c2008-09-09 19:11:51 +02002550 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08002551 svm_flush_tlb(vcpu, true);
Joerg Roedel6394b642008-04-09 14:15:29 +02002552
Joerg Roedelec077262008-04-09 14:15:28 +02002553 vcpu->arch.cr4 = cr4;
2554 if (!npt_enabled)
2555 cr4 |= X86_CR4_PAE;
Joerg Roedel6394b642008-04-09 14:15:29 +02002556 cr4 |= host_cr4_mce;
Joerg Roedelec077262008-04-09 14:15:28 +02002557 to_svm(vcpu)->vmcb->save.cr4 = cr4;
Joerg Roedeldcca1a62010-12-03 11:45:54 +01002558 mark_dirty(to_svm(vcpu)->vmcb, VMCB_CR);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002559 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002560}
2561
2562static void svm_set_segment(struct kvm_vcpu *vcpu,
2563 struct kvm_segment *var, int seg)
2564{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002565 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002566 struct vmcb_seg *s = svm_seg(vcpu, seg);
2567
2568 s->base = var->base;
2569 s->limit = var->limit;
2570 s->selector = var->selector;
Roman Pend9c1b542017-06-01 10:55:03 +02002571 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
2572 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
2573 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
2574 s->attrib |= ((var->present & 1) && !var->unusable) << SVM_SELECTOR_P_SHIFT;
2575 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
2576 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
2577 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
2578 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02002579
2580 /*
2581 * This is always accurate, except if SYSRET returned to a segment
2582 * with SS.DPL != 3. Intel does not have this quirk, and always
2583 * forces SS.DPL to 3 on sysret, so we ignore that case; fixing it
2584 * would entail passing the CPL to userspace and back.
2585 */
2586 if (seg == VCPU_SREG_SS)
Roman Pend9c1b542017-06-01 10:55:03 +02002587 /* This is symmetric with svm_get_segment() */
2588 svm->vmcb->save.cpl = (var->dpl & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589
Joerg Roedel060d0c92010-12-03 11:45:57 +01002590 mark_dirty(svm->vmcb, VMCB_SEG);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002591}
2592
Paolo Bonzinicbdb9672015-11-10 09:14:39 +01002593static void update_bp_intercept(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002595 struct vcpu_svm *svm = to_svm(vcpu);
2596
Joerg Roedel18c918c2010-11-30 18:03:59 +01002597 clr_exception_intercept(svm, BP_VECTOR);
Gleb Natapov44c11432009-05-11 13:35:52 +03002598
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002599 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002600 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Joerg Roedel18c918c2010-11-30 18:03:59 +01002601 set_exception_intercept(svm, BP_VECTOR);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002602 } else
2603 vcpu->guest_debug = 0;
Gleb Natapov44c11432009-05-11 13:35:52 +03002604}
2605
Tejun Heo0fe1e002009-10-29 22:34:14 +09002606static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *sd)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002607{
Tejun Heo0fe1e002009-10-29 22:34:14 +09002608 if (sd->next_asid > sd->max_asid) {
2609 ++sd->asid_generation;
Brijesh Singh4faefff2017-12-04 10:57:25 -06002610 sd->next_asid = sd->min_asid;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002611 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002612 }
2613
Tejun Heo0fe1e002009-10-29 22:34:14 +09002614 svm->asid_generation = sd->asid_generation;
2615 svm->vmcb->control.asid = sd->next_asid++;
Joerg Roedeld48086d2010-12-03 11:45:51 +01002616
2617 mark_dirty(svm->vmcb, VMCB_ASID);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618}
2619
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01002620static u64 svm_get_dr6(struct kvm_vcpu *vcpu)
2621{
2622 return to_svm(vcpu)->vmcb->save.dr6;
2623}
2624
2625static void svm_set_dr6(struct kvm_vcpu *vcpu, unsigned long value)
2626{
2627 struct vcpu_svm *svm = to_svm(vcpu);
2628
2629 svm->vmcb->save.dr6 = value;
2630 mark_dirty(svm->vmcb, VMCB_DR);
2631}
2632
Paolo Bonzinifacb0132014-02-21 10:32:27 +01002633static void svm_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
2634{
2635 struct vcpu_svm *svm = to_svm(vcpu);
2636
2637 get_debugreg(vcpu->arch.db[0], 0);
2638 get_debugreg(vcpu->arch.db[1], 1);
2639 get_debugreg(vcpu->arch.db[2], 2);
2640 get_debugreg(vcpu->arch.db[3], 3);
2641 vcpu->arch.dr6 = svm_get_dr6(vcpu);
2642 vcpu->arch.dr7 = svm->vmcb->save.dr7;
2643
2644 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
2645 set_dr_intercepts(svm);
2646}
2647
Gleb Natapov020df072010-04-13 10:05:23 +03002648static void svm_set_dr7(struct kvm_vcpu *vcpu, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649{
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002650 struct vcpu_svm *svm = to_svm(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002651
Gleb Natapov020df072010-04-13 10:05:23 +03002652 svm->vmcb->save.dr7 = value;
Joerg Roedel72214b92010-12-03 11:45:55 +01002653 mark_dirty(svm->vmcb, VMCB_DR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002654}
2655
Avi Kivity851ba692009-08-24 11:10:17 +03002656static int pf_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002658 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002659 u64 error_code = svm->vmcb->control.exit_info_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660
Wanpeng Li1261bfa2017-07-13 18:30:40 -07002661 return kvm_handle_page_fault(&svm->vcpu, error_code, fault_address,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002662 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2663 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002664 svm->vmcb->control.insn_len);
2665}
2666
2667static int npf_interception(struct vcpu_svm *svm)
2668{
Brijesh Singh0ede79e2017-12-04 10:57:39 -06002669 u64 fault_address = __sme_clr(svm->vmcb->control.exit_info_2);
Paolo Bonzinid0006532017-08-11 18:36:43 +02002670 u64 error_code = svm->vmcb->control.exit_info_1;
2671
2672 trace_kvm_page_fault(fault_address, error_code);
2673 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code,
Brijesh Singh00b10fe2017-12-04 10:57:40 -06002674 static_cpu_has(X86_FEATURE_DECODEASSISTS) ?
2675 svm->vmcb->control.insn_bytes : NULL,
Paolo Bonzinid0006532017-08-11 18:36:43 +02002676 svm->vmcb->control.insn_len);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677}
2678
Avi Kivity851ba692009-08-24 11:10:17 +03002679static int db_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002680{
Avi Kivity851ba692009-08-24 11:10:17 +03002681 struct kvm_run *kvm_run = svm->vcpu.run;
2682
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002683 if (!(svm->vcpu.guest_debug &
Gleb Natapov44c11432009-05-11 13:35:52 +03002684 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) &&
Jan Kiszka6be7d302009-10-18 13:24:54 +02002685 !svm->nmi_singlestep) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002686 kvm_queue_exception(&svm->vcpu, DB_VECTOR);
2687 return 1;
2688 }
Gleb Natapov44c11432009-05-11 13:35:52 +03002689
Jan Kiszka6be7d302009-10-18 13:24:54 +02002690 if (svm->nmi_singlestep) {
Ladi Prosek4aebd0e2017-06-21 09:06:57 +02002691 disable_nmi_singlestep(svm);
Gleb Natapov44c11432009-05-11 13:35:52 +03002692 }
2693
2694 if (svm->vcpu.guest_debug &
Joerg Roedele0231712010-02-24 18:59:10 +01002695 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) {
Gleb Natapov44c11432009-05-11 13:35:52 +03002696 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2697 kvm_run->debug.arch.pc =
2698 svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2699 kvm_run->debug.arch.exception = DB_VECTOR;
2700 return 0;
2701 }
2702
2703 return 1;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002704}
2705
Avi Kivity851ba692009-08-24 11:10:17 +03002706static int bp_interception(struct vcpu_svm *svm)
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002707{
Avi Kivity851ba692009-08-24 11:10:17 +03002708 struct kvm_run *kvm_run = svm->vcpu.run;
2709
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002710 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2711 kvm_run->debug.arch.pc = svm->vmcb->save.cs.base + svm->vmcb->save.rip;
2712 kvm_run->debug.arch.exception = BP_VECTOR;
2713 return 0;
2714}
2715
Avi Kivity851ba692009-08-24 11:10:17 +03002716static int ud_interception(struct vcpu_svm *svm)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002717{
Wanpeng Li082d06e2018-04-03 16:28:48 -07002718 return handle_ud(&svm->vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002719}
2720
Eric Northup54a20552015-11-03 18:03:53 +01002721static int ac_interception(struct vcpu_svm *svm)
2722{
2723 kvm_queue_exception_e(&svm->vcpu, AC_VECTOR, 0);
2724 return 1;
2725}
2726
Liran Alon97184202018-03-12 13:12:52 +02002727static int gp_interception(struct vcpu_svm *svm)
2728{
2729 struct kvm_vcpu *vcpu = &svm->vcpu;
2730 u32 error_code = svm->vmcb->control.exit_info_1;
2731 int er;
2732
2733 WARN_ON_ONCE(!enable_vmware_backdoor);
2734
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002735 er = kvm_emulate_instruction(vcpu,
Liran Alon97184202018-03-12 13:12:52 +02002736 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
2737 if (er == EMULATE_USER_EXIT)
2738 return 0;
2739 else if (er != EMULATE_DONE)
2740 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2741 return 1;
2742}
2743
Joerg Roedel67ec6602010-05-17 14:43:35 +02002744static bool is_erratum_383(void)
2745{
2746 int err, i;
2747 u64 value;
2748
2749 if (!erratum_383_found)
2750 return false;
2751
2752 value = native_read_msr_safe(MSR_IA32_MC0_STATUS, &err);
2753 if (err)
2754 return false;
2755
2756 /* Bit 62 may or may not be set for this mce */
2757 value &= ~(1ULL << 62);
2758
2759 if (value != 0xb600000000010015ULL)
2760 return false;
2761
2762 /* Clear MCi_STATUS registers */
2763 for (i = 0; i < 6; ++i)
2764 native_write_msr_safe(MSR_IA32_MCx_STATUS(i), 0, 0);
2765
2766 value = native_read_msr_safe(MSR_IA32_MCG_STATUS, &err);
2767 if (!err) {
2768 u32 low, high;
2769
2770 value &= ~(1ULL << 2);
2771 low = lower_32_bits(value);
2772 high = upper_32_bits(value);
2773
2774 native_write_msr_safe(MSR_IA32_MCG_STATUS, low, high);
2775 }
2776
2777 /* Flush tlb to evict multi-match entries */
2778 __flush_tlb_all();
2779
2780 return true;
2781}
2782
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002783static void svm_handle_mce(struct vcpu_svm *svm)
Joerg Roedel53371b52008-04-09 14:15:30 +02002784{
Joerg Roedel67ec6602010-05-17 14:43:35 +02002785 if (is_erratum_383()) {
2786 /*
2787 * Erratum 383 triggered. Guest state is corrupt so kill the
2788 * guest.
2789 */
2790 pr_err("KVM: Guest triggered AMD Erratum 383\n");
2791
Avi Kivitya8eeb042010-05-10 12:34:53 +03002792 kvm_make_request(KVM_REQ_TRIPLE_FAULT, &svm->vcpu);
Joerg Roedel67ec6602010-05-17 14:43:35 +02002793
2794 return;
2795 }
2796
Joerg Roedel53371b52008-04-09 14:15:30 +02002797 /*
2798 * On an #MC intercept the MCE handler is not called automatically in
2799 * the host. So do it by hand here.
2800 */
2801 asm volatile (
2802 "int $0x12\n");
2803 /* not sure if we ever come back to this point */
2804
Joerg Roedelfe5913e2010-05-17 14:43:34 +02002805 return;
2806}
2807
2808static int mc_interception(struct vcpu_svm *svm)
2809{
Joerg Roedel53371b52008-04-09 14:15:30 +02002810 return 1;
2811}
2812
Avi Kivity851ba692009-08-24 11:10:17 +03002813static int shutdown_interception(struct vcpu_svm *svm)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002814{
Avi Kivity851ba692009-08-24 11:10:17 +03002815 struct kvm_run *kvm_run = svm->vcpu.run;
2816
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002817 /*
2818 * VMCB is undefined after a SHUTDOWN intercept
2819 * so reinitialize it.
2820 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002821 clear_page(svm->vmcb);
Paolo Bonzini56908912015-10-19 11:30:19 +02002822 init_vmcb(svm);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08002823
2824 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2825 return 0;
2826}
2827
Avi Kivity851ba692009-08-24 11:10:17 +03002828static int io_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002830 struct kvm_vcpu *vcpu = &svm->vcpu;
Mike Dayd77c26f2007-10-08 09:02:08 -04002831 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
Sean Christophersondca7f122018-03-08 08:57:27 -08002832 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002833 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834
Rusty Russelle756fc62007-07-30 20:07:08 +10002835 ++svm->vcpu.stat.io_exits;
Laurent Viviere70669a2007-08-05 10:36:40 +03002836 string = (io_info & SVM_IOIO_STR_MASK) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002837 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05002838 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07002839 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002840
Avi Kivity039576c2007-03-20 12:46:50 +02002841 port = io_info >> 16;
2842 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002843 svm->next_rip = svm->vmcb->control.exit_info_2;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02002844
Sean Christophersondca7f122018-03-08 08:57:27 -08002845 return kvm_fast_pio(&svm->vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846}
2847
Avi Kivity851ba692009-08-24 11:10:17 +03002848static int nmi_interception(struct vcpu_svm *svm)
Joerg Roedelc47f0982008-04-30 17:56:00 +02002849{
2850 return 1;
2851}
2852
Avi Kivity851ba692009-08-24 11:10:17 +03002853static int intr_interception(struct vcpu_svm *svm)
Joerg Roedela0698052008-04-30 17:56:01 +02002854{
2855 ++svm->vcpu.stat.irq_exits;
2856 return 1;
2857}
2858
Avi Kivity851ba692009-08-24 11:10:17 +03002859static int nop_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860{
2861 return 1;
2862}
2863
Avi Kivity851ba692009-08-24 11:10:17 +03002864static int halt_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002866 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10002867 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002868}
2869
Avi Kivity851ba692009-08-24 11:10:17 +03002870static int vmmcall_interception(struct vcpu_svm *svm)
Avi Kivity02e235b2007-02-19 14:37:47 +02002871{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002872 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03002873 return kvm_emulate_hypercall(&svm->vcpu);
Avi Kivity02e235b2007-02-19 14:37:47 +02002874}
2875
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002876static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
2877{
2878 struct vcpu_svm *svm = to_svm(vcpu);
2879
2880 return svm->nested.nested_cr3;
2881}
2882
Avi Kivitye4e517b2011-07-28 11:36:17 +03002883static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
2884{
2885 struct vcpu_svm *svm = to_svm(vcpu);
2886 u64 cr3 = svm->nested.nested_cr3;
2887 u64 pdpte;
2888 int ret;
2889
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002890 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(__sme_clr(cr3)), &pdpte,
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002891 offset_in_page(cr3) + index * 8, 8);
Avi Kivitye4e517b2011-07-28 11:36:17 +03002892 if (ret)
2893 return 0;
2894 return pdpte;
2895}
2896
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002897static void nested_svm_set_tdp_cr3(struct kvm_vcpu *vcpu,
2898 unsigned long root)
2899{
2900 struct vcpu_svm *svm = to_svm(vcpu);
2901
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05002902 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01002903 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002904}
2905
Avi Kivity6389ee92010-11-29 16:12:30 +02002906static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
2907 struct x86_exception *fault)
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002908{
2909 struct vcpu_svm *svm = to_svm(vcpu);
2910
Paolo Bonzini5e352512014-09-02 13:18:37 +02002911 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
2912 /*
2913 * TODO: track the cause of the nested page fault, and
2914 * correctly fill in the high bits of exit_info_1.
2915 */
2916 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
2917 svm->vmcb->control.exit_code_hi = 0;
2918 svm->vmcb->control.exit_info_1 = (1ULL << 32);
2919 svm->vmcb->control.exit_info_2 = fault->address;
2920 }
2921
2922 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
2923 svm->vmcb->control.exit_info_1 |= fault->error_code;
2924
2925 /*
2926 * The present bit is always zero for page structure faults on real
2927 * hardware.
2928 */
2929 if (svm->vmcb->control.exit_info_1 & (2ULL << 32))
2930 svm->vmcb->control.exit_info_1 &= ~1;
Joerg Roedel5bd2edc2010-09-10 17:31:02 +02002931
2932 nested_svm_vmexit(svm);
2933}
2934
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02002935static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
Joerg Roedel4b161842010-09-10 17:31:03 +02002936{
Paolo Bonziniad896af2013-10-02 16:56:14 +02002937 WARN_ON(mmu_is_nested(vcpu));
2938 kvm_init_shadow_mmu(vcpu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002939 vcpu->arch.mmu.set_cr3 = nested_svm_set_tdp_cr3;
2940 vcpu->arch.mmu.get_cr3 = nested_svm_get_tdp_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03002941 vcpu->arch.mmu.get_pdptr = nested_svm_get_tdp_pdptr;
Joerg Roedel4b161842010-09-10 17:31:03 +02002942 vcpu->arch.mmu.inject_page_fault = nested_svm_inject_npf_exit;
Yu Zhang855feb62017-08-24 20:27:55 +08002943 vcpu->arch.mmu.shadow_root_level = get_npt_level(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08002944 reset_shadow_zero_bits_mask(vcpu, &vcpu->arch.mmu);
Joerg Roedel4b161842010-09-10 17:31:03 +02002945 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Joerg Roedel4b161842010-09-10 17:31:03 +02002946}
2947
2948static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
2949{
2950 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
2951}
2952
Alexander Grafc0725422008-11-25 20:17:03 +01002953static int nested_svm_check_permissions(struct vcpu_svm *svm)
2954{
Dan Carpentere9196ce2017-05-18 10:39:53 +03002955 if (!(svm->vcpu.arch.efer & EFER_SVME) ||
2956 !is_paging(&svm->vcpu)) {
Alexander Grafc0725422008-11-25 20:17:03 +01002957 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
2958 return 1;
2959 }
2960
2961 if (svm->vmcb->save.cpl) {
2962 kvm_inject_gp(&svm->vcpu, 0);
2963 return 1;
2964 }
2965
Dan Carpentere9196ce2017-05-18 10:39:53 +03002966 return 0;
Alexander Grafc0725422008-11-25 20:17:03 +01002967}
2968
Alexander Grafcf74a782008-11-25 20:17:08 +01002969static int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
2970 bool has_error_code, u32 error_code)
2971{
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01002972 int vmexit;
2973
Joerg Roedel20307532010-11-29 17:51:48 +01002974 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel0295ad72009-08-07 11:49:37 +02002975 return 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01002976
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002977 vmexit = nested_svm_intercept(svm);
2978 if (vmexit != NESTED_EXIT_DONE)
2979 return 0;
2980
Joerg Roedel0295ad72009-08-07 11:49:37 +02002981 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
2982 svm->vmcb->control.exit_code_hi = 0;
2983 svm->vmcb->control.exit_info_1 = error_code;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002984
2985 /*
2986 * FIXME: we should not write CR2 when L1 intercepts an L2 #PF exception.
2987 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2988 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 can be
2989 * written only when inject_pending_event runs (DR6 would written here
2990 * too). This should be conditional on a new capability---if the
2991 * capability is disabled, kvm_multiple_exception would write the
2992 * ancillary information to CR2 or DR6, for backwards ABI-compatibility.
2993 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002994 if (svm->vcpu.arch.exception.nested_apf)
2995 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
2996 else
2997 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
Joerg Roedel0295ad72009-08-07 11:49:37 +02002998
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002999 svm->nested.exit_required = true;
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003000 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003001}
3002
Joerg Roedel8fe54652010-02-19 16:23:01 +01003003/* This function returns true if it is save to enable the irq window */
3004static inline bool nested_svm_intr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003005{
Joerg Roedel20307532010-11-29 17:51:48 +01003006 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003007 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003008
Joerg Roedel26666952009-08-07 11:49:46 +02003009 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003010 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003011
Joerg Roedel26666952009-08-07 11:49:46 +02003012 if (!(svm->vcpu.arch.hflags & HF_HIF_MASK))
Joerg Roedel8fe54652010-02-19 16:23:01 +01003013 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003014
Gleb Natapova0a07cd2010-09-20 10:15:32 +02003015 /*
3016 * if vmexit was already requested (by intercepted exception
3017 * for instance) do not overwrite it with "external interrupt"
3018 * vmexit.
3019 */
3020 if (svm->nested.exit_required)
3021 return false;
3022
Joerg Roedel197717d2010-02-24 18:59:19 +01003023 svm->vmcb->control.exit_code = SVM_EXIT_INTR;
3024 svm->vmcb->control.exit_info_1 = 0;
3025 svm->vmcb->control.exit_info_2 = 0;
Joerg Roedel26666952009-08-07 11:49:46 +02003026
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003027 if (svm->nested.intercept & 1ULL) {
3028 /*
3029 * The #vmexit can't be emulated here directly because this
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003030 * code path runs with irqs and preemption disabled. A
Joerg Roedelcd3ff652009-10-09 16:08:26 +02003031 * #vmexit emulation might sleep. Only signal request for
3032 * the #vmexit here.
3033 */
3034 svm->nested.exit_required = true;
Joerg Roedel236649d2009-10-09 16:08:30 +02003035 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
Joerg Roedel8fe54652010-02-19 16:23:01 +01003036 return false;
Alexander Grafcf74a782008-11-25 20:17:08 +01003037 }
3038
Joerg Roedel8fe54652010-02-19 16:23:01 +01003039 return true;
Alexander Grafcf74a782008-11-25 20:17:08 +01003040}
3041
Joerg Roedel887f5002010-02-24 18:59:12 +01003042/* This function returns true if it is save to enable the nmi window */
3043static inline bool nested_svm_nmi(struct vcpu_svm *svm)
3044{
Joerg Roedel20307532010-11-29 17:51:48 +01003045 if (!is_guest_mode(&svm->vcpu))
Joerg Roedel887f5002010-02-24 18:59:12 +01003046 return true;
3047
3048 if (!(svm->nested.intercept & (1ULL << INTERCEPT_NMI)))
3049 return true;
3050
3051 svm->vmcb->control.exit_code = SVM_EXIT_NMI;
3052 svm->nested.exit_required = true;
3053
3054 return false;
3055}
3056
Joerg Roedel7597f122010-02-19 16:23:00 +01003057static void *nested_svm_map(struct vcpu_svm *svm, u64 gpa, struct page **_page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003058{
3059 struct page *page;
3060
Joerg Roedel6c3bd3d2010-02-19 16:23:04 +01003061 might_sleep();
3062
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003063 page = kvm_vcpu_gfn_to_page(&svm->vcpu, gpa >> PAGE_SHIFT);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003064 if (is_error_page(page))
3065 goto error;
3066
Joerg Roedel7597f122010-02-19 16:23:00 +01003067 *_page = page;
3068
3069 return kmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003070
3071error:
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003072 kvm_inject_gp(&svm->vcpu, 0);
3073
3074 return NULL;
3075}
3076
Joerg Roedel7597f122010-02-19 16:23:00 +01003077static void nested_svm_unmap(struct page *page)
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003078{
Joerg Roedel7597f122010-02-19 16:23:00 +01003079 kunmap(page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003080 kvm_release_page_dirty(page);
3081}
3082
Joerg Roedelce2ac082010-03-01 15:34:39 +01003083static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003084{
Jan Kiszka9bf41832014-06-30 10:54:17 +02003085 unsigned port, size, iopm_len;
3086 u16 val, mask;
3087 u8 start_bit;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003088 u64 gpa;
3089
3090 if (!(svm->nested.intercept & (1ULL << INTERCEPT_IOIO_PROT)))
3091 return NESTED_EXIT_HOST;
3092
3093 port = svm->vmcb->control.exit_info_1 >> 16;
Jan Kiszka9bf41832014-06-30 10:54:17 +02003094 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
3095 SVM_IOIO_SIZE_SHIFT;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003096 gpa = svm->nested.vmcb_iopm + (port / 8);
Jan Kiszka9bf41832014-06-30 10:54:17 +02003097 start_bit = port % 8;
3098 iopm_len = (start_bit + size > 8) ? 2 : 1;
3099 mask = (0xf >> (4 - size)) << start_bit;
3100 val = 0;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003101
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003102 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
Jan Kiszka9bf41832014-06-30 10:54:17 +02003103 return NESTED_EXIT_DONE;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003104
Jan Kiszka9bf41832014-06-30 10:54:17 +02003105 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003106}
3107
Joerg Roedeld2477822010-03-01 15:34:34 +01003108static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003109{
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003110 u32 offset, msr, value;
3111 int write, mask;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003112
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003113 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
Joerg Roedeld2477822010-03-01 15:34:34 +01003114 return NESTED_EXIT_HOST;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003115
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003116 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
3117 offset = svm_msrpm_offset(msr);
3118 write = svm->vmcb->control.exit_info_1 & 1;
3119 mask = 1 << ((2 * (msr & 0xf)) + write);
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003120
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003121 if (offset == MSR_INVALID)
3122 return NESTED_EXIT_DONE;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003123
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003124 /* Offset is in 32 bit units but need in 8 bit units */
3125 offset *= 4;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003126
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003127 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.vmcb_msrpm + offset, &value, 4))
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003128 return NESTED_EXIT_DONE;
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003129
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003130 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003131}
3132
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003133/* DB exceptions for our internal use must not cause vmexit */
3134static int nested_svm_intercept_db(struct vcpu_svm *svm)
3135{
3136 unsigned long dr6;
3137
3138 /* if we're not singlestepping, it's not ours */
3139 if (!svm->nmi_singlestep)
3140 return NESTED_EXIT_DONE;
3141
3142 /* if it's not a singlestep exception, it's not ours */
3143 if (kvm_get_dr(&svm->vcpu, 6, &dr6))
3144 return NESTED_EXIT_DONE;
3145 if (!(dr6 & DR6_BS))
3146 return NESTED_EXIT_DONE;
3147
3148 /* if the guest is singlestepping, it should get the vmexit */
3149 if (svm->nmi_singlestep_guest_rflags & X86_EFLAGS_TF) {
3150 disable_nmi_singlestep(svm);
3151 return NESTED_EXIT_DONE;
3152 }
3153
3154 /* it's ours, the nested hypervisor must not see this one */
3155 return NESTED_EXIT_HOST;
3156}
3157
Joerg Roedel410e4d52009-08-07 11:49:44 +02003158static int nested_svm_exit_special(struct vcpu_svm *svm)
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003159{
Alexander Grafcf74a782008-11-25 20:17:08 +01003160 u32 exit_code = svm->vmcb->control.exit_code;
Joerg Roedel4c2161a2009-08-07 11:49:35 +02003161
Joerg Roedel410e4d52009-08-07 11:49:44 +02003162 switch (exit_code) {
3163 case SVM_EXIT_INTR:
3164 case SVM_EXIT_NMI:
Joerg Roedelff47a492010-04-22 12:33:14 +02003165 case SVM_EXIT_EXCP_BASE + MC_VECTOR:
Joerg Roedel410e4d52009-08-07 11:49:44 +02003166 return NESTED_EXIT_HOST;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003167 case SVM_EXIT_NPF:
Joerg Roedele0231712010-02-24 18:59:10 +01003168 /* For now we are always handling NPFs when using them */
Joerg Roedel410e4d52009-08-07 11:49:44 +02003169 if (npt_enabled)
3170 return NESTED_EXIT_HOST;
3171 break;
Joerg Roedel410e4d52009-08-07 11:49:44 +02003172 case SVM_EXIT_EXCP_BASE + PF_VECTOR:
Gleb Natapov631bc482010-10-14 11:22:52 +02003173 /* When we're shadowing, trap PFs, but not async PF */
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003174 if (!npt_enabled && svm->vcpu.arch.apf.host_apf_reason == 0)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003175 return NESTED_EXIT_HOST;
3176 break;
3177 default:
3178 break;
Alexander Grafcf74a782008-11-25 20:17:08 +01003179 }
3180
Joerg Roedel410e4d52009-08-07 11:49:44 +02003181 return NESTED_EXIT_CONTINUE;
3182}
3183
3184/*
3185 * If this function returns true, this #vmexit was already handled
3186 */
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003187static int nested_svm_intercept(struct vcpu_svm *svm)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003188{
3189 u32 exit_code = svm->vmcb->control.exit_code;
3190 int vmexit = NESTED_EXIT_HOST;
3191
Alexander Grafcf74a782008-11-25 20:17:08 +01003192 switch (exit_code) {
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003193 case SVM_EXIT_MSR:
Joerg Roedel3d62d9a2009-08-07 11:49:39 +02003194 vmexit = nested_svm_exit_handled_msr(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003195 break;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003196 case SVM_EXIT_IOIO:
3197 vmexit = nested_svm_intercept_ioio(svm);
3198 break;
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003199 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
3200 u32 bit = 1U << (exit_code - SVM_EXIT_READ_CR0);
3201 if (svm->nested.intercept_cr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003202 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003203 break;
3204 }
Joerg Roedel3aed0412010-11-30 18:03:58 +01003205 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
3206 u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0);
3207 if (svm->nested.intercept_dr & bit)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003208 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003209 break;
3210 }
3211 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
3212 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
Ladi Prosekab2f4d732017-06-21 09:06:58 +02003213 if (svm->nested.intercept_exceptions & excp_bits) {
3214 if (exit_code == SVM_EXIT_EXCP_BASE + DB_VECTOR)
3215 vmexit = nested_svm_intercept_db(svm);
3216 else
3217 vmexit = NESTED_EXIT_DONE;
3218 }
Gleb Natapov631bc482010-10-14 11:22:52 +02003219 /* async page fault always cause vmexit */
3220 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003221 svm->vcpu.arch.exception.nested_apf != 0)
Gleb Natapov631bc482010-10-14 11:22:52 +02003222 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003223 break;
3224 }
Joerg Roedel228070b2010-04-22 12:33:10 +02003225 case SVM_EXIT_ERR: {
3226 vmexit = NESTED_EXIT_DONE;
3227 break;
3228 }
Alexander Grafcf74a782008-11-25 20:17:08 +01003229 default: {
3230 u64 exit_bits = 1ULL << (exit_code - SVM_EXIT_INTR);
Joerg Roedelaad42c62009-08-07 11:49:34 +02003231 if (svm->nested.intercept & exit_bits)
Joerg Roedel410e4d52009-08-07 11:49:44 +02003232 vmexit = NESTED_EXIT_DONE;
Alexander Grafcf74a782008-11-25 20:17:08 +01003233 }
3234 }
3235
Joerg Roedelb8e88bc2010-02-19 16:23:02 +01003236 return vmexit;
3237}
3238
3239static int nested_svm_exit_handled(struct vcpu_svm *svm)
3240{
3241 int vmexit;
3242
3243 vmexit = nested_svm_intercept(svm);
3244
3245 if (vmexit == NESTED_EXIT_DONE)
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003246 nested_svm_vmexit(svm);
Joerg Roedel9c4e40b92009-08-07 11:49:36 +02003247
3248 return vmexit;
Alexander Grafcf74a782008-11-25 20:17:08 +01003249}
3250
Joerg Roedel0460a972009-08-07 11:49:31 +02003251static inline void copy_vmcb_control_area(struct vmcb *dst_vmcb, struct vmcb *from_vmcb)
3252{
3253 struct vmcb_control_area *dst = &dst_vmcb->control;
3254 struct vmcb_control_area *from = &from_vmcb->control;
3255
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003256 dst->intercept_cr = from->intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003257 dst->intercept_dr = from->intercept_dr;
Joerg Roedel0460a972009-08-07 11:49:31 +02003258 dst->intercept_exceptions = from->intercept_exceptions;
3259 dst->intercept = from->intercept;
3260 dst->iopm_base_pa = from->iopm_base_pa;
3261 dst->msrpm_base_pa = from->msrpm_base_pa;
3262 dst->tsc_offset = from->tsc_offset;
3263 dst->asid = from->asid;
3264 dst->tlb_ctl = from->tlb_ctl;
3265 dst->int_ctl = from->int_ctl;
3266 dst->int_vector = from->int_vector;
3267 dst->int_state = from->int_state;
3268 dst->exit_code = from->exit_code;
3269 dst->exit_code_hi = from->exit_code_hi;
3270 dst->exit_info_1 = from->exit_info_1;
3271 dst->exit_info_2 = from->exit_info_2;
3272 dst->exit_int_info = from->exit_int_info;
3273 dst->exit_int_info_err = from->exit_int_info_err;
3274 dst->nested_ctl = from->nested_ctl;
3275 dst->event_inj = from->event_inj;
3276 dst->event_inj_err = from->event_inj_err;
3277 dst->nested_cr3 = from->nested_cr3;
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003278 dst->virt_ext = from->virt_ext;
Joerg Roedel0460a972009-08-07 11:49:31 +02003279}
3280
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003281static int nested_svm_vmexit(struct vcpu_svm *svm)
Alexander Grafcf74a782008-11-25 20:17:08 +01003282{
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003283 struct vmcb *nested_vmcb;
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02003284 struct vmcb *hsave = svm->nested.hsave;
Joerg Roedel33740e42009-08-07 11:49:29 +02003285 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003286 struct page *page;
Alexander Grafcf74a782008-11-25 20:17:08 +01003287
Joerg Roedel17897f32009-10-09 16:08:29 +02003288 trace_kvm_nested_vmexit_inject(vmcb->control.exit_code,
3289 vmcb->control.exit_info_1,
3290 vmcb->control.exit_info_2,
3291 vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01003292 vmcb->control.exit_int_info_err,
3293 KVM_ISA_SVM);
Joerg Roedel17897f32009-10-09 16:08:29 +02003294
Joerg Roedel7597f122010-02-19 16:23:00 +01003295 nested_vmcb = nested_svm_map(svm, svm->nested.vmcb, &page);
Joerg Roedel34f80cf2009-08-07 11:49:38 +02003296 if (!nested_vmcb)
3297 return 1;
3298
Joerg Roedel20307532010-11-29 17:51:48 +01003299 /* Exit Guest-Mode */
3300 leave_guest_mode(&svm->vcpu);
Joerg Roedel06fc77722010-02-19 16:23:07 +01003301 svm->nested.vmcb = 0;
3302
Alexander Grafcf74a782008-11-25 20:17:08 +01003303 /* Give the current vmcb to the guest */
Joerg Roedel33740e42009-08-07 11:49:29 +02003304 disable_gif(svm);
3305
3306 nested_vmcb->save.es = vmcb->save.es;
3307 nested_vmcb->save.cs = vmcb->save.cs;
3308 nested_vmcb->save.ss = vmcb->save.ss;
3309 nested_vmcb->save.ds = vmcb->save.ds;
3310 nested_vmcb->save.gdtr = vmcb->save.gdtr;
3311 nested_vmcb->save.idtr = vmcb->save.idtr;
Joerg Roedel3f6a9d12010-07-27 18:14:20 +02003312 nested_vmcb->save.efer = svm->vcpu.arch.efer;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003313 nested_vmcb->save.cr0 = kvm_read_cr0(&svm->vcpu);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003314 nested_vmcb->save.cr3 = kvm_read_cr3(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003315 nested_vmcb->save.cr2 = vmcb->save.cr2;
Joerg Roedelcdbbdc12010-02-19 16:23:03 +01003316 nested_vmcb->save.cr4 = svm->vcpu.arch.cr4;
Avi Kivityf6e78472010-08-02 15:30:20 +03003317 nested_vmcb->save.rflags = kvm_get_rflags(&svm->vcpu);
Joerg Roedel33740e42009-08-07 11:49:29 +02003318 nested_vmcb->save.rip = vmcb->save.rip;
3319 nested_vmcb->save.rsp = vmcb->save.rsp;
3320 nested_vmcb->save.rax = vmcb->save.rax;
3321 nested_vmcb->save.dr7 = vmcb->save.dr7;
3322 nested_vmcb->save.dr6 = vmcb->save.dr6;
3323 nested_vmcb->save.cpl = vmcb->save.cpl;
3324
3325 nested_vmcb->control.int_ctl = vmcb->control.int_ctl;
3326 nested_vmcb->control.int_vector = vmcb->control.int_vector;
3327 nested_vmcb->control.int_state = vmcb->control.int_state;
3328 nested_vmcb->control.exit_code = vmcb->control.exit_code;
3329 nested_vmcb->control.exit_code_hi = vmcb->control.exit_code_hi;
3330 nested_vmcb->control.exit_info_1 = vmcb->control.exit_info_1;
3331 nested_vmcb->control.exit_info_2 = vmcb->control.exit_info_2;
3332 nested_vmcb->control.exit_int_info = vmcb->control.exit_int_info;
3333 nested_vmcb->control.exit_int_info_err = vmcb->control.exit_int_info_err;
Joerg Roedel6092d3d2015-10-14 15:10:54 +02003334
3335 if (svm->nrips_enabled)
3336 nested_vmcb->control.next_rip = vmcb->control.next_rip;
Alexander Graf8d23c462009-10-09 16:08:25 +02003337
3338 /*
3339 * If we emulate a VMRUN/#VMEXIT in the same host #vmexit cycle we have
3340 * to make sure that we do not lose injected events. So check event_inj
3341 * here and copy it to exit_int_info if it is valid.
3342 * Exit_int_info and event_inj can't be both valid because the case
3343 * below only happens on a VMRUN instruction intercept which has
3344 * no valid exit_int_info set.
3345 */
3346 if (vmcb->control.event_inj & SVM_EVTINJ_VALID) {
3347 struct vmcb_control_area *nc = &nested_vmcb->control;
3348
3349 nc->exit_int_info = vmcb->control.event_inj;
3350 nc->exit_int_info_err = vmcb->control.event_inj_err;
3351 }
3352
Joerg Roedel33740e42009-08-07 11:49:29 +02003353 nested_vmcb->control.tlb_ctl = 0;
3354 nested_vmcb->control.event_inj = 0;
3355 nested_vmcb->control.event_inj_err = 0;
Alexander Grafcf74a782008-11-25 20:17:08 +01003356
3357 /* We always set V_INTR_MASKING and remember the old value in hflags */
3358 if (!(svm->vcpu.arch.hflags & HF_VINTR_MASK))
3359 nested_vmcb->control.int_ctl &= ~V_INTR_MASKING_MASK;
3360
Alexander Grafcf74a782008-11-25 20:17:08 +01003361 /* Restore the original control entries */
Joerg Roedel0460a972009-08-07 11:49:31 +02003362 copy_vmcb_control_area(vmcb, hsave);
Alexander Grafcf74a782008-11-25 20:17:08 +01003363
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003364 svm->vcpu.arch.tsc_offset = svm->vmcb->control.tsc_offset;
Alexander Graf219b65d2009-06-15 15:21:25 +02003365 kvm_clear_exception_queue(&svm->vcpu);
3366 kvm_clear_interrupt_queue(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003367
Joerg Roedel4b161842010-09-10 17:31:03 +02003368 svm->nested.nested_cr3 = 0;
3369
Alexander Grafcf74a782008-11-25 20:17:08 +01003370 /* Restore selected save entries */
3371 svm->vmcb->save.es = hsave->save.es;
3372 svm->vmcb->save.cs = hsave->save.cs;
3373 svm->vmcb->save.ss = hsave->save.ss;
3374 svm->vmcb->save.ds = hsave->save.ds;
3375 svm->vmcb->save.gdtr = hsave->save.gdtr;
3376 svm->vmcb->save.idtr = hsave->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003377 kvm_set_rflags(&svm->vcpu, hsave->save.rflags);
Alexander Grafcf74a782008-11-25 20:17:08 +01003378 svm_set_efer(&svm->vcpu, hsave->save.efer);
3379 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE);
3380 svm_set_cr4(&svm->vcpu, hsave->save.cr4);
3381 if (npt_enabled) {
3382 svm->vmcb->save.cr3 = hsave->save.cr3;
3383 svm->vcpu.arch.cr3 = hsave->save.cr3;
3384 } else {
Avi Kivity23902182010-06-10 17:02:16 +03003385 (void)kvm_set_cr3(&svm->vcpu, hsave->save.cr3);
Alexander Grafcf74a782008-11-25 20:17:08 +01003386 }
3387 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, hsave->save.rax);
3388 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, hsave->save.rsp);
3389 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, hsave->save.rip);
3390 svm->vmcb->save.dr7 = 0;
3391 svm->vmcb->save.cpl = 0;
3392 svm->vmcb->control.exit_int_info = 0;
3393
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003394 mark_all_dirty(svm->vmcb);
3395
Joerg Roedel7597f122010-02-19 16:23:00 +01003396 nested_svm_unmap(page);
Alexander Grafcf74a782008-11-25 20:17:08 +01003397
Joerg Roedel4b161842010-09-10 17:31:03 +02003398 nested_svm_uninit_mmu_context(&svm->vcpu);
Alexander Grafcf74a782008-11-25 20:17:08 +01003399 kvm_mmu_reset_context(&svm->vcpu);
3400 kvm_mmu_load(&svm->vcpu);
3401
3402 return 0;
3403}
Alexander Graf3d6368e2008-11-25 20:17:07 +01003404
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003405static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003406{
Joerg Roedel323c3d82010-03-01 15:34:37 +01003407 /*
3408 * This function merges the msr permission bitmaps of kvm and the
Guo Chaoc5ec2e52012-06-28 15:16:43 +08003409 * nested vmcb. It is optimized in that it only merges the parts where
Joerg Roedel323c3d82010-03-01 15:34:37 +01003410 * the kvm msr permission bitmap may contain zero bits
3411 */
Alexander Graf3d6368e2008-11-25 20:17:07 +01003412 int i;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003413
Joerg Roedel323c3d82010-03-01 15:34:37 +01003414 if (!(svm->nested.intercept & (1ULL << INTERCEPT_MSR_PROT)))
3415 return true;
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003416
Joerg Roedel323c3d82010-03-01 15:34:37 +01003417 for (i = 0; i < MSRPM_OFFSETS; i++) {
3418 u32 value, p;
3419 u64 offset;
3420
3421 if (msrpm_offsets[i] == 0xffffffff)
3422 break;
3423
Joerg Roedel0d6b3532010-03-01 15:34:38 +01003424 p = msrpm_offsets[i];
3425 offset = svm->nested.vmcb_msrpm + (p * 4);
Joerg Roedel323c3d82010-03-01 15:34:37 +01003426
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003427 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
Joerg Roedel323c3d82010-03-01 15:34:37 +01003428 return false;
3429
3430 svm->nested.msrpm[p] = svm->msrpm[p] | value;
3431 }
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003432
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05003433 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
Alexander Graf3d6368e2008-11-25 20:17:07 +01003434
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003435 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003436}
3437
Joerg Roedel52c65a302010-08-02 16:46:44 +02003438static bool nested_vmcb_checks(struct vmcb *vmcb)
3439{
3440 if ((vmcb->control.intercept & (1ULL << INTERCEPT_VMRUN)) == 0)
3441 return false;
3442
Joerg Roedeldbe77582010-08-02 16:46:45 +02003443 if (vmcb->control.asid == 0)
3444 return false;
3445
Tom Lendackycea3a192017-12-04 10:57:24 -06003446 if ((vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) &&
3447 !npt_enabled)
Joerg Roedel4b161842010-09-10 17:31:03 +02003448 return false;
3449
Joerg Roedel52c65a302010-08-02 16:46:44 +02003450 return true;
3451}
3452
Ladi Prosekc2634062017-10-11 16:54:44 +02003453static void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa,
3454 struct vmcb *nested_vmcb, struct page *page)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003455{
Avi Kivityf6e78472010-08-02 15:30:20 +03003456 if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003457 svm->vcpu.arch.hflags |= HF_HIF_MASK;
3458 else
3459 svm->vcpu.arch.hflags &= ~HF_HIF_MASK;
3460
Tom Lendackycea3a192017-12-04 10:57:24 -06003461 if (nested_vmcb->control.nested_ctl & SVM_NESTED_CTL_NP_ENABLE) {
Joerg Roedel4b161842010-09-10 17:31:03 +02003462 kvm_mmu_unload(&svm->vcpu);
3463 svm->nested.nested_cr3 = nested_vmcb->control.nested_cr3;
3464 nested_svm_init_mmu_context(&svm->vcpu);
3465 }
3466
Alexander Graf3d6368e2008-11-25 20:17:07 +01003467 /* Load the nested guest state */
3468 svm->vmcb->save.es = nested_vmcb->save.es;
3469 svm->vmcb->save.cs = nested_vmcb->save.cs;
3470 svm->vmcb->save.ss = nested_vmcb->save.ss;
3471 svm->vmcb->save.ds = nested_vmcb->save.ds;
3472 svm->vmcb->save.gdtr = nested_vmcb->save.gdtr;
3473 svm->vmcb->save.idtr = nested_vmcb->save.idtr;
Avi Kivityf6e78472010-08-02 15:30:20 +03003474 kvm_set_rflags(&svm->vcpu, nested_vmcb->save.rflags);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003475 svm_set_efer(&svm->vcpu, nested_vmcb->save.efer);
3476 svm_set_cr0(&svm->vcpu, nested_vmcb->save.cr0);
3477 svm_set_cr4(&svm->vcpu, nested_vmcb->save.cr4);
3478 if (npt_enabled) {
3479 svm->vmcb->save.cr3 = nested_vmcb->save.cr3;
3480 svm->vcpu.arch.cr3 = nested_vmcb->save.cr3;
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003481 } else
Avi Kivity23902182010-06-10 17:02:16 +03003482 (void)kvm_set_cr3(&svm->vcpu, nested_vmcb->save.cr3);
Joerg Roedel0e5cbe32010-02-24 18:59:11 +01003483
3484 /* Guest paging mode is active - reset mmu */
3485 kvm_mmu_reset_context(&svm->vcpu);
3486
Joerg Roedeldefbba52009-08-07 11:49:30 +02003487 svm->vmcb->save.cr2 = svm->vcpu.arch.cr2 = nested_vmcb->save.cr2;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003488 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX, nested_vmcb->save.rax);
3489 kvm_register_write(&svm->vcpu, VCPU_REGS_RSP, nested_vmcb->save.rsp);
3490 kvm_register_write(&svm->vcpu, VCPU_REGS_RIP, nested_vmcb->save.rip);
Joerg Roedele0231712010-02-24 18:59:10 +01003491
Alexander Graf3d6368e2008-11-25 20:17:07 +01003492 /* In case we don't even reach vcpu_run, the fields are not updated */
3493 svm->vmcb->save.rax = nested_vmcb->save.rax;
3494 svm->vmcb->save.rsp = nested_vmcb->save.rsp;
3495 svm->vmcb->save.rip = nested_vmcb->save.rip;
3496 svm->vmcb->save.dr7 = nested_vmcb->save.dr7;
3497 svm->vmcb->save.dr6 = nested_vmcb->save.dr6;
3498 svm->vmcb->save.cpl = nested_vmcb->save.cpl;
3499
Joerg Roedelf7138532010-03-01 15:34:40 +01003500 svm->nested.vmcb_msrpm = nested_vmcb->control.msrpm_base_pa & ~0x0fffULL;
Joerg Roedelce2ac082010-03-01 15:34:39 +01003501 svm->nested.vmcb_iopm = nested_vmcb->control.iopm_base_pa & ~0x0fffULL;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003502
Joerg Roedelaad42c62009-08-07 11:49:34 +02003503 /* cache intercepts */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003504 svm->nested.intercept_cr = nested_vmcb->control.intercept_cr;
Joerg Roedel3aed0412010-11-30 18:03:58 +01003505 svm->nested.intercept_dr = nested_vmcb->control.intercept_dr;
Joerg Roedelaad42c62009-08-07 11:49:34 +02003506 svm->nested.intercept_exceptions = nested_vmcb->control.intercept_exceptions;
3507 svm->nested.intercept = nested_vmcb->control.intercept;
3508
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08003509 svm_flush_tlb(&svm->vcpu, true);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003510 svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003511 if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK)
3512 svm->vcpu.arch.hflags |= HF_VINTR_MASK;
3513 else
3514 svm->vcpu.arch.hflags &= ~HF_VINTR_MASK;
3515
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003516 if (svm->vcpu.arch.hflags & HF_VINTR_MASK) {
3517 /* We only want the cr8 intercept bits of the guest */
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01003518 clr_cr_intercept(svm, INTERCEPT_CR8_READ);
3519 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Joerg Roedel88ab24a2010-02-19 16:23:06 +01003520 }
3521
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003522 /* We don't want to see VMMCALLs from a nested guest */
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003523 clr_intercept(svm, INTERCEPT_VMMCALL);
Joerg Roedel0d945bd2010-05-05 16:04:45 +02003524
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003525 svm->vcpu.arch.tsc_offset += nested_vmcb->control.tsc_offset;
3526 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
3527
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05003528 svm->vmcb->control.virt_ext = nested_vmcb->control.virt_ext;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003529 svm->vmcb->control.int_vector = nested_vmcb->control.int_vector;
3530 svm->vmcb->control.int_state = nested_vmcb->control.int_state;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003531 svm->vmcb->control.event_inj = nested_vmcb->control.event_inj;
3532 svm->vmcb->control.event_inj_err = nested_vmcb->control.event_inj_err;
3533
Joerg Roedel7597f122010-02-19 16:23:00 +01003534 nested_svm_unmap(page);
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003535
Joerg Roedel20307532010-11-29 17:51:48 +01003536 /* Enter Guest-Mode */
3537 enter_guest_mode(&svm->vcpu);
3538
Joerg Roedel384c6362010-11-30 18:03:56 +01003539 /*
3540 * Merge guest and host intercepts - must be called with vcpu in
3541 * guest-mode to take affect here
3542 */
3543 recalc_intercepts(svm);
3544
Joerg Roedel06fc77722010-02-19 16:23:07 +01003545 svm->nested.vmcb = vmcb_gpa;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003546
Joerg Roedel2af91942009-08-07 11:49:28 +02003547 enable_gif(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003548
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003549 mark_all_dirty(svm->vmcb);
Ladi Prosekc2634062017-10-11 16:54:44 +02003550}
3551
3552static bool nested_svm_vmrun(struct vcpu_svm *svm)
3553{
3554 struct vmcb *nested_vmcb;
3555 struct vmcb *hsave = svm->nested.hsave;
3556 struct vmcb *vmcb = svm->vmcb;
3557 struct page *page;
3558 u64 vmcb_gpa;
3559
3560 vmcb_gpa = svm->vmcb->save.rax;
3561
3562 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
3563 if (!nested_vmcb)
3564 return false;
3565
3566 if (!nested_vmcb_checks(nested_vmcb)) {
3567 nested_vmcb->control.exit_code = SVM_EXIT_ERR;
3568 nested_vmcb->control.exit_code_hi = 0;
3569 nested_vmcb->control.exit_info_1 = 0;
3570 nested_vmcb->control.exit_info_2 = 0;
3571
3572 nested_svm_unmap(page);
3573
3574 return false;
3575 }
3576
3577 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb_gpa,
3578 nested_vmcb->save.rip,
3579 nested_vmcb->control.int_ctl,
3580 nested_vmcb->control.event_inj,
3581 nested_vmcb->control.nested_ctl);
3582
3583 trace_kvm_nested_intercepts(nested_vmcb->control.intercept_cr & 0xffff,
3584 nested_vmcb->control.intercept_cr >> 16,
3585 nested_vmcb->control.intercept_exceptions,
3586 nested_vmcb->control.intercept);
3587
3588 /* Clear internal status */
3589 kvm_clear_exception_queue(&svm->vcpu);
3590 kvm_clear_interrupt_queue(&svm->vcpu);
3591
3592 /*
3593 * Save the old vmcb, so we don't need to pick what we save, but can
3594 * restore everything when a VMEXIT occurs
3595 */
3596 hsave->save.es = vmcb->save.es;
3597 hsave->save.cs = vmcb->save.cs;
3598 hsave->save.ss = vmcb->save.ss;
3599 hsave->save.ds = vmcb->save.ds;
3600 hsave->save.gdtr = vmcb->save.gdtr;
3601 hsave->save.idtr = vmcb->save.idtr;
3602 hsave->save.efer = svm->vcpu.arch.efer;
3603 hsave->save.cr0 = kvm_read_cr0(&svm->vcpu);
3604 hsave->save.cr4 = svm->vcpu.arch.cr4;
3605 hsave->save.rflags = kvm_get_rflags(&svm->vcpu);
3606 hsave->save.rip = kvm_rip_read(&svm->vcpu);
3607 hsave->save.rsp = vmcb->save.rsp;
3608 hsave->save.rax = vmcb->save.rax;
3609 if (npt_enabled)
3610 hsave->save.cr3 = vmcb->save.cr3;
3611 else
3612 hsave->save.cr3 = kvm_read_cr3(&svm->vcpu);
3613
3614 copy_vmcb_control_area(hsave, vmcb);
3615
3616 enter_svm_guest_mode(svm, vmcb_gpa, nested_vmcb, page);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01003617
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003618 return true;
Alexander Graf3d6368e2008-11-25 20:17:07 +01003619}
3620
Joerg Roedel9966bf62009-08-07 11:49:40 +02003621static void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
Alexander Graf55426752008-11-25 20:17:06 +01003622{
3623 to_vmcb->save.fs = from_vmcb->save.fs;
3624 to_vmcb->save.gs = from_vmcb->save.gs;
3625 to_vmcb->save.tr = from_vmcb->save.tr;
3626 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
3627 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
3628 to_vmcb->save.star = from_vmcb->save.star;
3629 to_vmcb->save.lstar = from_vmcb->save.lstar;
3630 to_vmcb->save.cstar = from_vmcb->save.cstar;
3631 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
3632 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
3633 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
3634 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
Alexander Graf55426752008-11-25 20:17:06 +01003635}
3636
Avi Kivity851ba692009-08-24 11:10:17 +03003637static int vmload_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003638{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003639 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003640 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003641 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003642
Alexander Graf55426752008-11-25 20:17:06 +01003643 if (nested_svm_check_permissions(svm))
3644 return 1;
3645
Joerg Roedel7597f122010-02-19 16:23:00 +01003646 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003647 if (!nested_vmcb)
3648 return 1;
3649
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003650 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003651 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003652
Joerg Roedel9966bf62009-08-07 11:49:40 +02003653 nested_svm_vmloadsave(nested_vmcb, svm->vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003654 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003655
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003656 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003657}
3658
Avi Kivity851ba692009-08-24 11:10:17 +03003659static int vmsave_interception(struct vcpu_svm *svm)
Alexander Graf55426752008-11-25 20:17:06 +01003660{
Joerg Roedel9966bf62009-08-07 11:49:40 +02003661 struct vmcb *nested_vmcb;
Joerg Roedel7597f122010-02-19 16:23:00 +01003662 struct page *page;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003663 int ret;
Joerg Roedel9966bf62009-08-07 11:49:40 +02003664
Alexander Graf55426752008-11-25 20:17:06 +01003665 if (nested_svm_check_permissions(svm))
3666 return 1;
3667
Joerg Roedel7597f122010-02-19 16:23:00 +01003668 nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
Joerg Roedel9966bf62009-08-07 11:49:40 +02003669 if (!nested_vmcb)
3670 return 1;
3671
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003672 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003673 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedele3e9ed32011-04-06 12:30:03 +02003674
Joerg Roedel9966bf62009-08-07 11:49:40 +02003675 nested_svm_vmloadsave(svm->vmcb, nested_vmcb);
Joerg Roedel7597f122010-02-19 16:23:00 +01003676 nested_svm_unmap(page);
Alexander Graf55426752008-11-25 20:17:06 +01003677
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003678 return ret;
Alexander Graf55426752008-11-25 20:17:06 +01003679}
3680
Avi Kivity851ba692009-08-24 11:10:17 +03003681static int vmrun_interception(struct vcpu_svm *svm)
Alexander Graf3d6368e2008-11-25 20:17:07 +01003682{
Alexander Graf3d6368e2008-11-25 20:17:07 +01003683 if (nested_svm_check_permissions(svm))
3684 return 1;
3685
Roedel, Joergb75f4eb2010-09-03 14:21:40 +02003686 /* Save rip after vmrun instruction */
3687 kvm_rip_write(&svm->vcpu, kvm_rip_read(&svm->vcpu) + 3);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003688
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003689 if (!nested_svm_vmrun(svm))
Alexander Graf3d6368e2008-11-25 20:17:07 +01003690 return 1;
3691
Joerg Roedel9738b2c2009-08-07 11:49:41 +02003692 if (!nested_svm_vmrun_msrpm(svm))
Joerg Roedel1f8da472009-08-07 11:49:43 +02003693 goto failed;
3694
3695 return 1;
3696
3697failed:
3698
3699 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
3700 svm->vmcb->control.exit_code_hi = 0;
3701 svm->vmcb->control.exit_info_1 = 0;
3702 svm->vmcb->control.exit_info_2 = 0;
3703
3704 nested_svm_vmexit(svm);
Alexander Graf3d6368e2008-11-25 20:17:07 +01003705
3706 return 1;
3707}
3708
Avi Kivity851ba692009-08-24 11:10:17 +03003709static int stgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003710{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003711 int ret;
3712
Alexander Graf1371d902008-11-25 20:17:04 +01003713 if (nested_svm_check_permissions(svm))
3714 return 1;
3715
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003716 /*
3717 * If VGIF is enabled, the STGI intercept is only added to
Ladi Prosekcc3d9672017-10-17 16:02:39 +02003718 * detect the opening of the SMI/NMI window; remove it now.
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05003719 */
3720 if (vgif_enabled(svm))
3721 clr_intercept(svm, INTERCEPT_STGI);
3722
Alexander Graf1371d902008-11-25 20:17:04 +01003723 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003724 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03003725 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003726
Joerg Roedel2af91942009-08-07 11:49:28 +02003727 enable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003728
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003729 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003730}
3731
Avi Kivity851ba692009-08-24 11:10:17 +03003732static int clgi_interception(struct vcpu_svm *svm)
Alexander Graf1371d902008-11-25 20:17:04 +01003733{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003734 int ret;
3735
Alexander Graf1371d902008-11-25 20:17:04 +01003736 if (nested_svm_check_permissions(svm))
3737 return 1;
3738
3739 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003740 ret = kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Graf1371d902008-11-25 20:17:04 +01003741
Joerg Roedel2af91942009-08-07 11:49:28 +02003742 disable_gif(svm);
Alexander Graf1371d902008-11-25 20:17:04 +01003743
3744 /* After a CLGI no interrupts should come */
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05003745 if (!kvm_vcpu_apicv_active(&svm->vcpu)) {
3746 svm_clear_vintr(svm);
3747 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
3748 mark_dirty(svm->vmcb, VMCB_INTR);
3749 }
Joerg Roedeldecdbf62010-12-03 11:45:52 +01003750
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003751 return ret;
Alexander Graf1371d902008-11-25 20:17:04 +01003752}
3753
Avi Kivity851ba692009-08-24 11:10:17 +03003754static int invlpga_interception(struct vcpu_svm *svm)
Alexander Grafff092382009-06-15 15:21:24 +02003755{
3756 struct kvm_vcpu *vcpu = &svm->vcpu;
Alexander Grafff092382009-06-15 15:21:24 +02003757
David Kaplan668f1982015-02-20 16:02:10 -06003758 trace_kvm_invlpga(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RCX),
3759 kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedelec1ff792009-10-09 16:08:31 +02003760
Alexander Grafff092382009-06-15 15:21:24 +02003761 /* Let's treat INVLPGA the same as INVLPG (can be optimized!) */
David Kaplan668f1982015-02-20 16:02:10 -06003762 kvm_mmu_invlpg(vcpu, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Alexander Grafff092382009-06-15 15:21:24 +02003763
3764 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003765 return kvm_skip_emulated_instruction(&svm->vcpu);
Alexander Grafff092382009-06-15 15:21:24 +02003766}
3767
Joerg Roedel532a46b2009-10-09 16:08:32 +02003768static int skinit_interception(struct vcpu_svm *svm)
3769{
David Kaplan668f1982015-02-20 16:02:10 -06003770 trace_kvm_skinit(svm->vmcb->save.rip, kvm_register_read(&svm->vcpu, VCPU_REGS_RAX));
Joerg Roedel532a46b2009-10-09 16:08:32 +02003771
3772 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3773 return 1;
3774}
3775
David Kaplandab429a2015-03-02 13:43:37 -06003776static int wbinvd_interception(struct vcpu_svm *svm)
3777{
Kyle Huey6affcbe2016-11-29 12:40:40 -08003778 return kvm_emulate_wbinvd(&svm->vcpu);
David Kaplandab429a2015-03-02 13:43:37 -06003779}
3780
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003781static int xsetbv_interception(struct vcpu_svm *svm)
3782{
3783 u64 new_bv = kvm_read_edx_eax(&svm->vcpu);
3784 u32 index = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
3785
3786 if (kvm_set_xcr(&svm->vcpu, index, new_bv) == 0) {
3787 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003788 return kvm_skip_emulated_instruction(&svm->vcpu);
Joerg Roedel81dd35d2010-12-07 17:15:06 +01003789 }
3790
3791 return 1;
3792}
3793
Avi Kivity851ba692009-08-24 11:10:17 +03003794static int task_switch_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003795{
Izik Eidus37817f22008-03-24 23:14:53 +02003796 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003797 int reason;
3798 int int_type = svm->vmcb->control.exit_int_info &
3799 SVM_EXITINTINFO_TYPE_MASK;
Gleb Natapov8317c292009-04-12 13:37:02 +03003800 int int_vec = svm->vmcb->control.exit_int_info & SVM_EVTINJ_VEC_MASK;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003801 uint32_t type =
3802 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_TYPE_MASK;
3803 uint32_t idt_v =
3804 svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID;
Jan Kiszkae269fb22010-04-14 15:51:09 +02003805 bool has_error_code = false;
3806 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02003807
3808 tss_selector = (u16)svm->vmcb->control.exit_info_1;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003809
Izik Eidus37817f22008-03-24 23:14:53 +02003810 if (svm->vmcb->control.exit_info_2 &
3811 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003812 reason = TASK_SWITCH_IRET;
3813 else if (svm->vmcb->control.exit_info_2 &
3814 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
3815 reason = TASK_SWITCH_JMP;
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003816 else if (idt_v)
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003817 reason = TASK_SWITCH_GATE;
3818 else
3819 reason = TASK_SWITCH_CALL;
3820
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003821 if (reason == TASK_SWITCH_GATE) {
3822 switch (type) {
3823 case SVM_EXITINTINFO_TYPE_NMI:
3824 svm->vcpu.arch.nmi_injected = false;
3825 break;
3826 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszkae269fb22010-04-14 15:51:09 +02003827 if (svm->vmcb->control.exit_info_2 &
3828 (1ULL << SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE)) {
3829 has_error_code = true;
3830 error_code =
3831 (u32)svm->vmcb->control.exit_info_2;
3832 }
Gleb Natapovfe8e7f82009-04-23 17:03:48 +03003833 kvm_clear_exception_queue(&svm->vcpu);
3834 break;
3835 case SVM_EXITINTINFO_TYPE_INTR:
3836 kvm_clear_interrupt_queue(&svm->vcpu);
3837 break;
3838 default:
3839 break;
3840 }
3841 }
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003842
Gleb Natapov8317c292009-04-12 13:37:02 +03003843 if (reason != TASK_SWITCH_GATE ||
3844 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
3845 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
Gleb Natapovf629cf82009-05-11 13:35:49 +03003846 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
3847 skip_emulated_instruction(&svm->vcpu);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003848
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01003849 if (int_type != SVM_EXITINTINFO_TYPE_SOFT)
3850 int_vec = -1;
3851
3852 if (kvm_task_switch(&svm->vcpu, tss_selector, int_vec, reason,
Gleb Natapovacb54512010-04-15 21:03:50 +03003853 has_error_code, error_code) == EMULATE_FAIL) {
3854 svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3855 svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3856 svm->vcpu.run->internal.ndata = 0;
3857 return 0;
3858 }
3859 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003860}
3861
Avi Kivity851ba692009-08-24 11:10:17 +03003862static int cpuid_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003863{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003864 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Kyle Huey6a908b62016-11-29 12:40:37 -08003865 return kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003866}
3867
Avi Kivity851ba692009-08-24 11:10:17 +03003868static int iret_interception(struct vcpu_svm *svm)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003869{
3870 ++svm->vcpu.stat.nmi_window_exits;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01003871 clr_intercept(svm, INTERCEPT_IRET);
Gleb Natapov44c11432009-05-11 13:35:52 +03003872 svm->vcpu.arch.hflags |= HF_IRET_MASK;
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02003873 svm->nmi_iret_rip = kvm_rip_read(&svm->vcpu);
Radim Krčmářf303b4c2014-01-17 20:52:42 +01003874 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003875 return 1;
3876}
3877
Avi Kivity851ba692009-08-24 11:10:17 +03003878static int invlpg_interception(struct vcpu_svm *svm)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003879{
Andre Przywaradf4f31082010-12-21 11:12:06 +01003880 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003881 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Andre Przywaradf4f31082010-12-21 11:12:06 +01003882
3883 kvm_mmu_invlpg(&svm->vcpu, svm->vmcb->control.exit_info_1);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02003884 return kvm_skip_emulated_instruction(&svm->vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003885}
3886
Avi Kivity851ba692009-08-24 11:10:17 +03003887static int emulate_on_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003888{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07003889 return kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003890}
3891
Brijesh Singh7607b712018-02-19 10:14:44 -06003892static int rsm_interception(struct vcpu_svm *svm)
3893{
Sean Christopherson35be0ad2018-08-23 13:56:47 -07003894 return kvm_emulate_instruction_from_buffer(&svm->vcpu,
3895 rsm_ins_bytes, 2) == EMULATE_DONE;
Brijesh Singh7607b712018-02-19 10:14:44 -06003896}
3897
Avi Kivity332b56e2011-11-10 14:57:24 +02003898static int rdpmc_interception(struct vcpu_svm *svm)
3899{
3900 int err;
3901
3902 if (!static_cpu_has(X86_FEATURE_NRIPS))
3903 return emulate_on_interception(svm);
3904
3905 err = kvm_rdpmc(&svm->vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08003906 return kvm_complete_insn_gp(&svm->vcpu, err);
Avi Kivity332b56e2011-11-10 14:57:24 +02003907}
3908
Xiubo Li52eb5a62015-03-13 17:39:45 +08003909static bool check_selective_cr0_intercepted(struct vcpu_svm *svm,
3910 unsigned long val)
Joerg Roedel628afd22011-04-04 12:39:36 +02003911{
3912 unsigned long cr0 = svm->vcpu.arch.cr0;
3913 bool ret = false;
3914 u64 intercept;
3915
3916 intercept = svm->nested.intercept;
3917
3918 if (!is_guest_mode(&svm->vcpu) ||
3919 (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0))))
3920 return false;
3921
3922 cr0 &= ~SVM_CR0_SELECTIVE_MASK;
3923 val &= ~SVM_CR0_SELECTIVE_MASK;
3924
3925 if (cr0 ^ val) {
3926 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE;
3927 ret = (nested_svm_exit_handled(svm) == NESTED_EXIT_DONE);
3928 }
3929
3930 return ret;
3931}
3932
Andre Przywara7ff76d52010-12-21 11:12:04 +01003933#define CR_VALID (1ULL << 63)
3934
3935static int cr_interception(struct vcpu_svm *svm)
3936{
3937 int reg, cr;
3938 unsigned long val;
3939 int err;
3940
3941 if (!static_cpu_has(X86_FEATURE_DECODEASSISTS))
3942 return emulate_on_interception(svm);
3943
3944 if (unlikely((svm->vmcb->control.exit_info_1 & CR_VALID) == 0))
3945 return emulate_on_interception(svm);
3946
3947 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
David Kaplan5e575182015-03-06 14:44:35 -06003948 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE)
3949 cr = SVM_EXIT_WRITE_CR0 - SVM_EXIT_READ_CR0;
3950 else
3951 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0;
Andre Przywara7ff76d52010-12-21 11:12:04 +01003952
3953 err = 0;
3954 if (cr >= 16) { /* mov to cr */
3955 cr -= 16;
3956 val = kvm_register_read(&svm->vcpu, reg);
3957 switch (cr) {
3958 case 0:
Joerg Roedel628afd22011-04-04 12:39:36 +02003959 if (!check_selective_cr0_intercepted(svm, val))
3960 err = kvm_set_cr0(&svm->vcpu, val);
Joerg Roedel977b2d02011-04-18 11:42:52 +02003961 else
3962 return 1;
3963
Andre Przywara7ff76d52010-12-21 11:12:04 +01003964 break;
3965 case 3:
3966 err = kvm_set_cr3(&svm->vcpu, val);
3967 break;
3968 case 4:
3969 err = kvm_set_cr4(&svm->vcpu, val);
3970 break;
3971 case 8:
3972 err = kvm_set_cr8(&svm->vcpu, val);
3973 break;
3974 default:
3975 WARN(1, "unhandled write to CR%d", cr);
3976 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3977 return 1;
3978 }
3979 } else { /* mov from cr */
3980 switch (cr) {
3981 case 0:
3982 val = kvm_read_cr0(&svm->vcpu);
3983 break;
3984 case 2:
3985 val = svm->vcpu.arch.cr2;
3986 break;
3987 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003988 val = kvm_read_cr3(&svm->vcpu);
Andre Przywara7ff76d52010-12-21 11:12:04 +01003989 break;
3990 case 4:
3991 val = kvm_read_cr4(&svm->vcpu);
3992 break;
3993 case 8:
3994 val = kvm_get_cr8(&svm->vcpu);
3995 break;
3996 default:
3997 WARN(1, "unhandled read from CR%d", cr);
3998 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
3999 return 1;
4000 }
4001 kvm_register_write(&svm->vcpu, reg, val);
4002 }
Kyle Huey6affcbe2016-11-29 12:40:40 -08004003 return kvm_complete_insn_gp(&svm->vcpu, err);
Andre Przywara7ff76d52010-12-21 11:12:04 +01004004}
4005
Andre Przywaracae37972010-12-21 11:12:05 +01004006static int dr_interception(struct vcpu_svm *svm)
4007{
4008 int reg, dr;
4009 unsigned long val;
Andre Przywaracae37972010-12-21 11:12:05 +01004010
Paolo Bonzinifacb0132014-02-21 10:32:27 +01004011 if (svm->vcpu.guest_debug == 0) {
4012 /*
4013 * No more DR vmexits; force a reload of the debug registers
4014 * and reenter on this instruction. The next vmexit will
4015 * retrieve the full state of the debug registers.
4016 */
4017 clr_dr_intercepts(svm);
4018 svm->vcpu.arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4019 return 1;
4020 }
4021
Andre Przywaracae37972010-12-21 11:12:05 +01004022 if (!boot_cpu_has(X86_FEATURE_DECODEASSISTS))
4023 return emulate_on_interception(svm);
4024
4025 reg = svm->vmcb->control.exit_info_1 & SVM_EXITINFO_REG_MASK;
4026 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0;
4027
4028 if (dr >= 16) { /* mov to DRn */
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004029 if (!kvm_require_dr(&svm->vcpu, dr - 16))
4030 return 1;
Andre Przywaracae37972010-12-21 11:12:05 +01004031 val = kvm_register_read(&svm->vcpu, reg);
4032 kvm_set_dr(&svm->vcpu, dr - 16, val);
4033 } else {
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004034 if (!kvm_require_dr(&svm->vcpu, dr))
4035 return 1;
4036 kvm_get_dr(&svm->vcpu, dr, &val);
4037 kvm_register_write(&svm->vcpu, reg, val);
Andre Przywaracae37972010-12-21 11:12:05 +01004038 }
4039
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004040 return kvm_skip_emulated_instruction(&svm->vcpu);
Andre Przywaracae37972010-12-21 11:12:05 +01004041}
4042
Avi Kivity851ba692009-08-24 11:10:17 +03004043static int cr8_write_interception(struct vcpu_svm *svm)
Joerg Roedel1d075432007-12-06 21:02:25 +01004044{
Avi Kivity851ba692009-08-24 11:10:17 +03004045 struct kvm_run *kvm_run = svm->vcpu.run;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004046 int r;
Avi Kivity851ba692009-08-24 11:10:17 +03004047
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004048 u8 cr8_prev = kvm_get_cr8(&svm->vcpu);
4049 /* instruction emulation calls kvm_set_cr8() */
Andre Przywara7ff76d52010-12-21 11:12:04 +01004050 r = cr_interception(svm);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004051 if (lapic_in_kernel(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004052 return r;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004053 if (cr8_prev <= kvm_get_cr8(&svm->vcpu))
Andre Przywara7ff76d52010-12-21 11:12:04 +01004054 return r;
Joerg Roedel1d075432007-12-06 21:02:25 +01004055 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
4056 return 0;
4057}
4058
Tom Lendacky801e4592018-02-21 13:39:51 -06004059static int svm_get_msr_feature(struct kvm_msr_entry *msr)
4060{
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004061 msr->data = 0;
4062
4063 switch (msr->index) {
4064 case MSR_F10H_DECFG:
4065 if (boot_cpu_has(X86_FEATURE_LFENCE_RDTSC))
4066 msr->data |= MSR_F10H_DECFG_LFENCE_SERIALIZE;
4067 break;
4068 default:
4069 return 1;
4070 }
4071
4072 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004073}
4074
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004075static int svm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004076{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004077 struct vcpu_svm *svm = to_svm(vcpu);
4078
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004079 switch (msr_info->index) {
Brian Gerst8c065852010-07-17 09:03:26 -04004080 case MSR_STAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004081 msr_info->data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004082 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08004083#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084 case MSR_LSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004085 msr_info->data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004086 break;
4087 case MSR_CSTAR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004088 msr_info->data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004089 break;
4090 case MSR_KERNEL_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004091 msr_info->data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004092 break;
4093 case MSR_SYSCALL_MASK:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004094 msr_info->data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004095 break;
4096#endif
4097 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004098 msr_info->data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004099 break;
4100 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004101 msr_info->data = svm->sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004102 break;
4103 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004104 msr_info->data = svm->sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004106 case MSR_TSC_AUX:
4107 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4108 return 1;
4109 msr_info->data = svm->tsc_aux;
4110 break;
Joerg Roedele0231712010-02-24 18:59:10 +01004111 /*
4112 * Nobody will change the following 5 values in the VMCB so we can
4113 * safely return them on rdmsr. They will always be 0 until LBRV is
4114 * implemented.
4115 */
Joerg Roedela2938c82008-02-13 16:30:28 +01004116 case MSR_IA32_DEBUGCTLMSR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004117 msr_info->data = svm->vmcb->save.dbgctl;
Joerg Roedela2938c82008-02-13 16:30:28 +01004118 break;
4119 case MSR_IA32_LASTBRANCHFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004120 msr_info->data = svm->vmcb->save.br_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004121 break;
4122 case MSR_IA32_LASTBRANCHTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004123 msr_info->data = svm->vmcb->save.br_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004124 break;
4125 case MSR_IA32_LASTINTFROMIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004126 msr_info->data = svm->vmcb->save.last_excp_from;
Joerg Roedela2938c82008-02-13 16:30:28 +01004127 break;
4128 case MSR_IA32_LASTINTTOIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004129 msr_info->data = svm->vmcb->save.last_excp_to;
Joerg Roedela2938c82008-02-13 16:30:28 +01004130 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004131 case MSR_VM_HSAVE_PA:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004132 msr_info->data = svm->nested.hsave_msr;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004133 break;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004134 case MSR_VM_CR:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004135 msr_info->data = svm->nested.vm_cr_msr;
Joerg Roedeleb6f3022008-11-25 20:17:09 +01004136 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004137 case MSR_IA32_SPEC_CTRL:
4138 if (!msr_info->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004139 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4140 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004141 return 1;
4142
4143 msr_info->data = svm->spec_ctrl;
4144 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004145 case MSR_AMD64_VIRT_SPEC_CTRL:
4146 if (!msr_info->host_initiated &&
4147 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4148 return 1;
4149
4150 msr_info->data = svm->virt_spec_ctrl;
4151 break;
Borislav Petkovae8b7872015-11-23 11:12:23 +01004152 case MSR_F15H_IC_CFG: {
4153
4154 int family, model;
4155
4156 family = guest_cpuid_family(vcpu);
4157 model = guest_cpuid_model(vcpu);
4158
4159 if (family < 0 || model < 0)
4160 return kvm_get_msr_common(vcpu, msr_info);
4161
4162 msr_info->data = 0;
4163
4164 if (family == 0x15 &&
4165 (model >= 0x2 && model < 0x20))
4166 msr_info->data = 0x1E;
4167 }
4168 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004169 case MSR_F10H_DECFG:
4170 msr_info->data = svm->msr_decfg;
4171 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004172 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004173 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 }
4175 return 0;
4176}
4177
Avi Kivity851ba692009-08-24 11:10:17 +03004178static int rdmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004179{
David Kaplan668f1982015-02-20 16:02:10 -06004180 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004181 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004183 msr_info.index = ecx;
4184 msr_info.host_initiated = false;
4185 if (svm_get_msr(&svm->vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004186 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004187 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004188 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004189 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004190 trace_kvm_msr_read(ecx, msr_info.data);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004191
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004192 kvm_register_write(&svm->vcpu, VCPU_REGS_RAX,
4193 msr_info.data & 0xffffffff);
4194 kvm_register_write(&svm->vcpu, VCPU_REGS_RDX,
4195 msr_info.data >> 32);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004196 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004197 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004198 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004199}
4200
Joerg Roedel4a810182010-02-24 18:59:15 +01004201static int svm_set_vm_cr(struct kvm_vcpu *vcpu, u64 data)
4202{
4203 struct vcpu_svm *svm = to_svm(vcpu);
4204 int svm_dis, chg_mask;
4205
4206 if (data & ~SVM_VM_CR_VALID_MASK)
4207 return 1;
4208
4209 chg_mask = SVM_VM_CR_VALID_MASK;
4210
4211 if (svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK)
4212 chg_mask &= ~(SVM_VM_CR_SVM_LOCK_MASK | SVM_VM_CR_SVM_DIS_MASK);
4213
4214 svm->nested.vm_cr_msr &= ~chg_mask;
4215 svm->nested.vm_cr_msr |= (data & chg_mask);
4216
4217 svm_dis = svm->nested.vm_cr_msr & SVM_VM_CR_SVM_DIS_MASK;
4218
4219 /* check for svm_disable while efer.svme is set */
4220 if (svm_dis && (vcpu->arch.efer & EFER_SVME))
4221 return 1;
4222
4223 return 0;
4224}
4225
Will Auld8fe8ab42012-11-29 12:42:12 -08004226static int svm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004227{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004228 struct vcpu_svm *svm = to_svm(vcpu);
4229
Will Auld8fe8ab42012-11-29 12:42:12 -08004230 u32 ecx = msr->index;
4231 u64 data = msr->data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232 switch (ecx) {
Paolo Bonzini15038e12017-10-26 09:13:27 +02004233 case MSR_IA32_CR_PAT:
4234 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4235 return 1;
4236 vcpu->arch.pat = data;
4237 svm->vmcb->save.g_pat = data;
4238 mark_dirty(svm->vmcb, VMCB_NPT);
4239 break;
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004240 case MSR_IA32_SPEC_CTRL:
4241 if (!msr->host_initiated &&
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004242 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) &&
4243 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004244 return 1;
4245
4246 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk6ac2f492018-06-01 10:59:20 -04004247 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01004248 return 1;
4249
4250 svm->spec_ctrl = data;
4251
4252 if (!data)
4253 break;
4254
4255 /*
4256 * For non-nested:
4257 * When it's written (to non-zero) for the first time, pass
4258 * it through.
4259 *
4260 * For nested:
4261 * The handling of the MSR bitmap for L2 guests is done in
4262 * nested_svm_vmrun_msrpm.
4263 * We update the L1 MSR bit as well since it will end up
4264 * touching the MSR anyway now.
4265 */
4266 set_msr_interception(svm->msrpm, MSR_IA32_SPEC_CTRL, 1, 1);
4267 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004268 case MSR_IA32_PRED_CMD:
4269 if (!msr->host_initiated &&
Borislav Petkove7c587d2018-05-02 18:15:14 +02004270 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB))
Ashok Raj15d45072018-02-01 22:59:43 +01004271 return 1;
4272
4273 if (data & ~PRED_CMD_IBPB)
4274 return 1;
4275
4276 if (!data)
4277 break;
4278
4279 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4280 if (is_guest_mode(vcpu))
4281 break;
4282 set_msr_interception(svm->msrpm, MSR_IA32_PRED_CMD, 0, 1);
4283 break;
Tom Lendackybc226f02018-05-10 22:06:39 +02004284 case MSR_AMD64_VIRT_SPEC_CTRL:
4285 if (!msr->host_initiated &&
4286 !guest_cpuid_has(vcpu, X86_FEATURE_VIRT_SSBD))
4287 return 1;
4288
4289 if (data & ~SPEC_CTRL_SSBD)
4290 return 1;
4291
4292 svm->virt_spec_ctrl = data;
4293 break;
Brian Gerst8c065852010-07-17 09:03:26 -04004294 case MSR_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004295 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08004297#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004298 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004299 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004300 break;
4301 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004302 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303 break;
4304 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004305 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004306 break;
4307 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004308 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004309 break;
4310#endif
4311 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004312 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004313 break;
4314 case MSR_IA32_SYSENTER_EIP:
Andre Przywara017cb992009-05-28 11:56:31 +02004315 svm->sysenter_eip = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004316 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004317 break;
4318 case MSR_IA32_SYSENTER_ESP:
Andre Przywara017cb992009-05-28 11:56:31 +02004319 svm->sysenter_esp = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004320 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004321 break;
Paolo Bonzini46896c72015-11-12 14:49:16 +01004322 case MSR_TSC_AUX:
4323 if (!boot_cpu_has(X86_FEATURE_RDTSCP))
4324 return 1;
4325
4326 /*
4327 * This is rare, so we update the MSR here instead of using
4328 * direct_access_msrs. Doing that would require a rdmsr in
4329 * svm_vcpu_put.
4330 */
4331 svm->tsc_aux = data;
4332 wrmsrl(MSR_TSC_AUX, svm->tsc_aux);
4333 break;
Joerg Roedela2938c82008-02-13 16:30:28 +01004334 case MSR_IA32_DEBUGCTLMSR:
Avi Kivity2a6b20b2010-11-09 16:15:42 +02004335 if (!boot_cpu_has(X86_FEATURE_LBRV)) {
Christoffer Dalla737f252012-06-03 21:17:48 +03004336 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
4337 __func__, data);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004338 break;
4339 }
4340 if (data & DEBUGCTL_RESERVED_BITS)
4341 return 1;
4342
4343 svm->vmcb->save.dbgctl = data;
Joerg Roedelb53ba3f2010-12-03 11:45:59 +01004344 mark_dirty(svm->vmcb, VMCB_LBR);
Joerg Roedel24e09cb2008-02-13 18:58:47 +01004345 if (data & (1ULL<<0))
4346 svm_enable_lbrv(svm);
4347 else
4348 svm_disable_lbrv(svm);
Joerg Roedela2938c82008-02-13 16:30:28 +01004349 break;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004350 case MSR_VM_HSAVE_PA:
Joerg Roedele6aa9ab2009-08-07 11:49:33 +02004351 svm->nested.hsave_msr = data;
Alexander Grafb286d5d2008-11-25 20:17:05 +01004352 break;
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004353 case MSR_VM_CR:
Joerg Roedel4a810182010-02-24 18:59:15 +01004354 return svm_set_vm_cr(vcpu, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004355 case MSR_VM_IGNNE:
Christoffer Dalla737f252012-06-03 21:17:48 +03004356 vcpu_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
Alexander Graf3c5d0a42009-06-15 15:21:23 +02004357 break;
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01004358 case MSR_F10H_DECFG: {
4359 struct kvm_msr_entry msr_entry;
4360
4361 msr_entry.index = msr->index;
4362 if (svm_get_msr_feature(&msr_entry))
4363 return 1;
4364
4365 /* Check the supported bits */
4366 if (data & ~msr_entry.data)
4367 return 1;
4368
4369 /* Don't allow the guest to change a bit, #GP */
4370 if (!msr->host_initiated && (data ^ msr_entry.data))
4371 return 1;
4372
4373 svm->msr_decfg = data;
4374 break;
4375 }
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004376 case MSR_IA32_APICBASE:
4377 if (kvm_vcpu_apicv_active(vcpu))
4378 avic_update_vapic_bar(to_svm(vcpu), data);
4379 /* Follow through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004380 default:
Will Auld8fe8ab42012-11-29 12:42:12 -08004381 return kvm_set_msr_common(vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004382 }
4383 return 0;
4384}
4385
Avi Kivity851ba692009-08-24 11:10:17 +03004386static int wrmsr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004387{
Will Auld8fe8ab42012-11-29 12:42:12 -08004388 struct msr_data msr;
David Kaplan668f1982015-02-20 16:02:10 -06004389 u32 ecx = kvm_register_read(&svm->vcpu, VCPU_REGS_RCX);
4390 u64 data = kvm_read_edx_eax(&svm->vcpu);
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004391
Will Auld8fe8ab42012-11-29 12:42:12 -08004392 msr.data = data;
4393 msr.index = ecx;
4394 msr.host_initiated = false;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004395
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004396 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004397 if (kvm_set_msr(&svm->vcpu, &msr)) {
Avi Kivity59200272010-01-25 19:47:02 +02004398 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004399 kvm_inject_gp(&svm->vcpu, 0);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004400 return 1;
Avi Kivity59200272010-01-25 19:47:02 +02004401 } else {
4402 trace_kvm_msr_write(ecx, data);
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004403 return kvm_skip_emulated_instruction(&svm->vcpu);
Avi Kivity59200272010-01-25 19:47:02 +02004404 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004405}
4406
Avi Kivity851ba692009-08-24 11:10:17 +03004407static int msr_interception(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004408{
Rusty Russelle756fc62007-07-30 20:07:08 +10004409 if (svm->vmcb->control.exit_info_1)
Avi Kivity851ba692009-08-24 11:10:17 +03004410 return wrmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004411 else
Avi Kivity851ba692009-08-24 11:10:17 +03004412 return rdmsr_interception(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004413}
4414
Avi Kivity851ba692009-08-24 11:10:17 +03004415static int interrupt_window_interception(struct vcpu_svm *svm)
Dor Laorc1150d82007-01-05 16:36:24 -08004416{
Avi Kivity3842d132010-07-27 12:30:24 +03004417 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
Alexander Graff0b85052008-11-25 20:17:01 +01004418 svm_clear_vintr(svm);
Eddie Dong85f455f2007-07-06 12:20:49 +03004419 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Joerg Roedeldecdbf62010-12-03 11:45:52 +01004420 mark_dirty(svm->vmcb, VMCB_INTR);
Jason Wang675acb72012-03-08 18:07:56 +08004421 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08004422 return 1;
4423}
4424
Mark Langsdorf565d0992009-10-06 14:25:02 -05004425static int pause_interception(struct vcpu_svm *svm)
4426{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004427 struct kvm_vcpu *vcpu = &svm->vcpu;
4428 bool in_kernel = (svm_get_cpl(vcpu) == 0);
4429
Babu Moger8566ac82018-03-16 16:37:26 -04004430 if (pause_filter_thresh)
4431 grow_ple_window(vcpu);
4432
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004433 kvm_vcpu_on_spin(vcpu, in_kernel);
Mark Langsdorf565d0992009-10-06 14:25:02 -05004434 return 1;
4435}
4436
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004437static int nop_interception(struct vcpu_svm *svm)
4438{
Ladi Prosekb742c1e2017-06-22 09:05:26 +02004439 return kvm_skip_emulated_instruction(&(svm->vcpu));
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004440}
4441
4442static int monitor_interception(struct vcpu_svm *svm)
4443{
4444 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
4445 return nop_interception(svm);
4446}
4447
4448static int mwait_interception(struct vcpu_svm *svm)
4449{
4450 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
4451 return nop_interception(svm);
4452}
4453
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004454enum avic_ipi_failure_cause {
4455 AVIC_IPI_FAILURE_INVALID_INT_TYPE,
4456 AVIC_IPI_FAILURE_TARGET_NOT_RUNNING,
4457 AVIC_IPI_FAILURE_INVALID_TARGET,
4458 AVIC_IPI_FAILURE_INVALID_BACKING_PAGE,
4459};
4460
4461static int avic_incomplete_ipi_interception(struct vcpu_svm *svm)
4462{
4463 u32 icrh = svm->vmcb->control.exit_info_1 >> 32;
4464 u32 icrl = svm->vmcb->control.exit_info_1;
4465 u32 id = svm->vmcb->control.exit_info_2 >> 32;
Dan Carpenter5446a972016-05-23 13:20:10 +03004466 u32 index = svm->vmcb->control.exit_info_2 & 0xFF;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004467 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4468
4469 trace_kvm_avic_incomplete_ipi(svm->vcpu.vcpu_id, icrh, icrl, id, index);
4470
4471 switch (id) {
4472 case AVIC_IPI_FAILURE_INVALID_INT_TYPE:
4473 /*
4474 * AVIC hardware handles the generation of
4475 * IPIs when the specified Message Type is Fixed
4476 * (also known as fixed delivery mode) and
4477 * the Trigger Mode is edge-triggered. The hardware
4478 * also supports self and broadcast delivery modes
4479 * specified via the Destination Shorthand(DSH)
4480 * field of the ICRL. Logical and physical APIC ID
4481 * formats are supported. All other IPI types cause
4482 * a #VMEXIT, which needs to emulated.
4483 */
4484 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4485 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
4486 break;
4487 case AVIC_IPI_FAILURE_TARGET_NOT_RUNNING: {
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004488 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4489
4490 /*
Suravee Suthikulpanit0149b032019-01-22 10:25:13 +00004491 * Update ICR high and low, then emulate sending IPI,
4492 * which is handled when writing APIC_ICR.
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004493 */
Suravee Suthikulpanit0149b032019-01-22 10:25:13 +00004494 kvm_lapic_reg_write(apic, APIC_ICR2, icrh);
4495 kvm_lapic_reg_write(apic, APIC_ICR, icrl);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004496 break;
4497 }
4498 case AVIC_IPI_FAILURE_INVALID_TARGET:
4499 break;
4500 case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
4501 WARN_ONCE(1, "Invalid backing page\n");
4502 break;
4503 default:
4504 pr_err("Unknown IPI interception\n");
4505 }
4506
4507 return 1;
4508}
4509
4510static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
4511{
Sean Christopherson81811c12018-03-20 12:17:21 -07004512 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004513 int index;
4514 u32 *logical_apic_id_table;
4515 int dlid = GET_APIC_LOGICAL_ID(ldr);
4516
4517 if (!dlid)
4518 return NULL;
4519
4520 if (flat) { /* flat */
4521 index = ffs(dlid) - 1;
4522 if (index > 7)
4523 return NULL;
4524 } else { /* cluster */
4525 int cluster = (dlid & 0xf0) >> 4;
4526 int apic = ffs(dlid & 0x0f) - 1;
4527
4528 if ((apic < 0) || (apic > 7) ||
4529 (cluster >= 0xf))
4530 return NULL;
4531 index = (cluster << 2) + apic;
4532 }
4533
Sean Christopherson81811c12018-03-20 12:17:21 -07004534 logical_apic_id_table = (u32 *) page_address(kvm_svm->avic_logical_id_table_page);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004535
4536 return &logical_apic_id_table[index];
4537}
4538
4539static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
4540 bool valid)
4541{
4542 bool flat;
4543 u32 *entry, new_entry;
4544
4545 flat = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR) == APIC_DFR_FLAT;
4546 entry = avic_get_logical_id_entry(vcpu, ldr, flat);
4547 if (!entry)
4548 return -EINVAL;
4549
4550 new_entry = READ_ONCE(*entry);
4551 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
4552 new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
4553 if (valid)
4554 new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4555 else
4556 new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
4557 WRITE_ONCE(*entry, new_entry);
4558
4559 return 0;
4560}
4561
4562static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
4563{
4564 int ret;
4565 struct vcpu_svm *svm = to_svm(vcpu);
4566 u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
4567
4568 if (!ldr)
4569 return 1;
4570
4571 ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true);
4572 if (ret && svm->ldr_reg) {
4573 avic_ldr_write(vcpu, 0, svm->ldr_reg, false);
4574 svm->ldr_reg = 0;
4575 } else {
4576 svm->ldr_reg = ldr;
4577 }
4578 return ret;
4579}
4580
4581static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
4582{
4583 u64 *old, *new;
4584 struct vcpu_svm *svm = to_svm(vcpu);
4585 u32 apic_id_reg = kvm_lapic_get_reg(vcpu->arch.apic, APIC_ID);
4586 u32 id = (apic_id_reg >> 24) & 0xff;
4587
4588 if (vcpu->vcpu_id == id)
4589 return 0;
4590
4591 old = avic_get_physical_id_entry(vcpu, vcpu->vcpu_id);
4592 new = avic_get_physical_id_entry(vcpu, id);
4593 if (!new || !old)
4594 return 1;
4595
4596 /* We need to move physical_id_entry to new offset */
4597 *new = *old;
4598 *old = 0ULL;
4599 to_svm(vcpu)->avic_physical_id_cache = new;
4600
4601 /*
4602 * Also update the guest physical APIC ID in the logical
4603 * APIC ID table entry if already setup the LDR.
4604 */
4605 if (svm->ldr_reg)
4606 avic_handle_ldr_update(vcpu);
4607
4608 return 0;
4609}
4610
4611static int avic_handle_dfr_update(struct kvm_vcpu *vcpu)
4612{
4613 struct vcpu_svm *svm = to_svm(vcpu);
Sean Christopherson81811c12018-03-20 12:17:21 -07004614 struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004615 u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
4616 u32 mod = (dfr >> 28) & 0xf;
4617
4618 /*
4619 * We assume that all local APICs are using the same type.
4620 * If this changes, we need to flush the AVIC logical
4621 * APID id table.
4622 */
Sean Christopherson81811c12018-03-20 12:17:21 -07004623 if (kvm_svm->ldr_mode == mod)
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004624 return 0;
4625
Sean Christopherson81811c12018-03-20 12:17:21 -07004626 clear_page(page_address(kvm_svm->avic_logical_id_table_page));
4627 kvm_svm->ldr_mode = mod;
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004628
4629 if (svm->ldr_reg)
4630 avic_handle_ldr_update(vcpu);
4631 return 0;
4632}
4633
4634static int avic_unaccel_trap_write(struct vcpu_svm *svm)
4635{
4636 struct kvm_lapic *apic = svm->vcpu.arch.apic;
4637 u32 offset = svm->vmcb->control.exit_info_1 &
4638 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4639
4640 switch (offset) {
4641 case APIC_ID:
4642 if (avic_handle_apic_id_update(&svm->vcpu))
4643 return 0;
4644 break;
4645 case APIC_LDR:
4646 if (avic_handle_ldr_update(&svm->vcpu))
4647 return 0;
4648 break;
4649 case APIC_DFR:
4650 avic_handle_dfr_update(&svm->vcpu);
4651 break;
4652 default:
4653 break;
4654 }
4655
4656 kvm_lapic_reg_write(apic, offset, kvm_lapic_get_reg(apic, offset));
4657
4658 return 1;
4659}
4660
4661static bool is_avic_unaccelerated_access_trap(u32 offset)
4662{
4663 bool ret = false;
4664
4665 switch (offset) {
4666 case APIC_ID:
4667 case APIC_EOI:
4668 case APIC_RRR:
4669 case APIC_LDR:
4670 case APIC_DFR:
4671 case APIC_SPIV:
4672 case APIC_ESR:
4673 case APIC_ICR:
4674 case APIC_LVTT:
4675 case APIC_LVTTHMR:
4676 case APIC_LVTPC:
4677 case APIC_LVT0:
4678 case APIC_LVT1:
4679 case APIC_LVTERR:
4680 case APIC_TMICT:
4681 case APIC_TDCR:
4682 ret = true;
4683 break;
4684 default:
4685 break;
4686 }
4687 return ret;
4688}
4689
4690static int avic_unaccelerated_access_interception(struct vcpu_svm *svm)
4691{
4692 int ret = 0;
4693 u32 offset = svm->vmcb->control.exit_info_1 &
4694 AVIC_UNACCEL_ACCESS_OFFSET_MASK;
4695 u32 vector = svm->vmcb->control.exit_info_2 &
4696 AVIC_UNACCEL_ACCESS_VECTOR_MASK;
4697 bool write = (svm->vmcb->control.exit_info_1 >> 32) &
4698 AVIC_UNACCEL_ACCESS_WRITE_MASK;
4699 bool trap = is_avic_unaccelerated_access_trap(offset);
4700
4701 trace_kvm_avic_unaccelerated_access(svm->vcpu.vcpu_id, offset,
4702 trap, write, vector);
4703 if (trap) {
4704 /* Handling Trap */
4705 WARN_ONCE(!write, "svm: Handling trap read.\n");
4706 ret = avic_unaccel_trap_write(svm);
4707 } else {
4708 /* Handling Fault */
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004709 ret = (kvm_emulate_instruction(&svm->vcpu, 0) == EMULATE_DONE);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004710 }
4711
4712 return ret;
4713}
4714
Mathias Krause09941fb2012-08-30 01:30:20 +02004715static int (*const svm_exit_handlers[])(struct vcpu_svm *svm) = {
Andre Przywara7ff76d52010-12-21 11:12:04 +01004716 [SVM_EXIT_READ_CR0] = cr_interception,
4717 [SVM_EXIT_READ_CR3] = cr_interception,
4718 [SVM_EXIT_READ_CR4] = cr_interception,
4719 [SVM_EXIT_READ_CR8] = cr_interception,
David Kaplan5e575182015-03-06 14:44:35 -06004720 [SVM_EXIT_CR0_SEL_WRITE] = cr_interception,
Joerg Roedel628afd22011-04-04 12:39:36 +02004721 [SVM_EXIT_WRITE_CR0] = cr_interception,
Andre Przywara7ff76d52010-12-21 11:12:04 +01004722 [SVM_EXIT_WRITE_CR3] = cr_interception,
4723 [SVM_EXIT_WRITE_CR4] = cr_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004724 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
Andre Przywaracae37972010-12-21 11:12:05 +01004725 [SVM_EXIT_READ_DR0] = dr_interception,
4726 [SVM_EXIT_READ_DR1] = dr_interception,
4727 [SVM_EXIT_READ_DR2] = dr_interception,
4728 [SVM_EXIT_READ_DR3] = dr_interception,
4729 [SVM_EXIT_READ_DR4] = dr_interception,
4730 [SVM_EXIT_READ_DR5] = dr_interception,
4731 [SVM_EXIT_READ_DR6] = dr_interception,
4732 [SVM_EXIT_READ_DR7] = dr_interception,
4733 [SVM_EXIT_WRITE_DR0] = dr_interception,
4734 [SVM_EXIT_WRITE_DR1] = dr_interception,
4735 [SVM_EXIT_WRITE_DR2] = dr_interception,
4736 [SVM_EXIT_WRITE_DR3] = dr_interception,
4737 [SVM_EXIT_WRITE_DR4] = dr_interception,
4738 [SVM_EXIT_WRITE_DR5] = dr_interception,
4739 [SVM_EXIT_WRITE_DR6] = dr_interception,
4740 [SVM_EXIT_WRITE_DR7] = dr_interception,
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004741 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
4742 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004743 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004744 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004745 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
Eric Northup54a20552015-11-03 18:03:53 +01004746 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
Liran Alon97184202018-03-12 13:12:52 +02004747 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004748 [SVM_EXIT_INTR] = intr_interception,
Joerg Roedelc47f0982008-04-30 17:56:00 +02004749 [SVM_EXIT_NMI] = nmi_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004750 [SVM_EXIT_SMI] = nop_on_interception,
4751 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08004752 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity332b56e2011-11-10 14:57:24 +02004753 [SVM_EXIT_RDPMC] = rdpmc_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004754 [SVM_EXIT_CPUID] = cpuid_interception,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004755 [SVM_EXIT_IRET] = iret_interception,
Avi Kivitycf5a94d2007-10-28 16:11:58 +02004756 [SVM_EXIT_INVD] = emulate_on_interception,
Mark Langsdorf565d0992009-10-06 14:25:02 -05004757 [SVM_EXIT_PAUSE] = pause_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004758 [SVM_EXIT_HLT] = halt_interception,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004759 [SVM_EXIT_INVLPG] = invlpg_interception,
Alexander Grafff092382009-06-15 15:21:24 +02004760 [SVM_EXIT_INVLPGA] = invlpga_interception,
Joerg Roedele0231712010-02-24 18:59:10 +01004761 [SVM_EXIT_IOIO] = io_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004762 [SVM_EXIT_MSR] = msr_interception,
4763 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08004764 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Alexander Graf3d6368e2008-11-25 20:17:07 +01004765 [SVM_EXIT_VMRUN] = vmrun_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02004766 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Alexander Graf55426752008-11-25 20:17:06 +01004767 [SVM_EXIT_VMLOAD] = vmload_interception,
4768 [SVM_EXIT_VMSAVE] = vmsave_interception,
Alexander Graf1371d902008-11-25 20:17:04 +01004769 [SVM_EXIT_STGI] = stgi_interception,
4770 [SVM_EXIT_CLGI] = clgi_interception,
Joerg Roedel532a46b2009-10-09 16:08:32 +02004771 [SVM_EXIT_SKINIT] = skinit_interception,
David Kaplandab429a2015-03-02 13:43:37 -06004772 [SVM_EXIT_WBINVD] = wbinvd_interception,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04004773 [SVM_EXIT_MONITOR] = monitor_interception,
4774 [SVM_EXIT_MWAIT] = mwait_interception,
Joerg Roedel81dd35d2010-12-07 17:15:06 +01004775 [SVM_EXIT_XSETBV] = xsetbv_interception,
Paolo Bonzinid0006532017-08-11 18:36:43 +02004776 [SVM_EXIT_NPF] = npf_interception,
Brijesh Singh7607b712018-02-19 10:14:44 -06004777 [SVM_EXIT_RSM] = rsm_interception,
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05004778 [SVM_EXIT_AVIC_INCOMPLETE_IPI] = avic_incomplete_ipi_interception,
4779 [SVM_EXIT_AVIC_UNACCELERATED_ACCESS] = avic_unaccelerated_access_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004780};
4781
Joe Perchesae8cc052011-04-24 22:00:50 -07004782static void dump_vmcb(struct kvm_vcpu *vcpu)
Joerg Roedel3f10c842010-05-05 16:04:42 +02004783{
4784 struct vcpu_svm *svm = to_svm(vcpu);
4785 struct vmcb_control_area *control = &svm->vmcb->control;
4786 struct vmcb_save_area *save = &svm->vmcb->save;
4787
4788 pr_err("VMCB Control Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004789 pr_err("%-20s%04x\n", "cr_read:", control->intercept_cr & 0xffff);
4790 pr_err("%-20s%04x\n", "cr_write:", control->intercept_cr >> 16);
4791 pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff);
4792 pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16);
4793 pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
4794 pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
4795 pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
Babu Moger1d8fb442018-03-16 16:37:25 -04004796 pr_err("%-20s%d\n", "pause filter threshold:",
4797 control->pause_filter_thresh);
Joe Perchesae8cc052011-04-24 22:00:50 -07004798 pr_err("%-20s%016llx\n", "iopm_base_pa:", control->iopm_base_pa);
4799 pr_err("%-20s%016llx\n", "msrpm_base_pa:", control->msrpm_base_pa);
4800 pr_err("%-20s%016llx\n", "tsc_offset:", control->tsc_offset);
4801 pr_err("%-20s%d\n", "asid:", control->asid);
4802 pr_err("%-20s%d\n", "tlb_ctl:", control->tlb_ctl);
4803 pr_err("%-20s%08x\n", "int_ctl:", control->int_ctl);
4804 pr_err("%-20s%08x\n", "int_vector:", control->int_vector);
4805 pr_err("%-20s%08x\n", "int_state:", control->int_state);
4806 pr_err("%-20s%08x\n", "exit_code:", control->exit_code);
4807 pr_err("%-20s%016llx\n", "exit_info1:", control->exit_info_1);
4808 pr_err("%-20s%016llx\n", "exit_info2:", control->exit_info_2);
4809 pr_err("%-20s%08x\n", "exit_int_info:", control->exit_int_info);
4810 pr_err("%-20s%08x\n", "exit_int_info_err:", control->exit_int_info_err);
4811 pr_err("%-20s%lld\n", "nested_ctl:", control->nested_ctl);
4812 pr_err("%-20s%016llx\n", "nested_cr3:", control->nested_cr3);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004813 pr_err("%-20s%016llx\n", "avic_vapic_bar:", control->avic_vapic_bar);
Joe Perchesae8cc052011-04-24 22:00:50 -07004814 pr_err("%-20s%08x\n", "event_inj:", control->event_inj);
4815 pr_err("%-20s%08x\n", "event_inj_err:", control->event_inj_err);
Janakarajan Natarajan0dc92112017-07-06 15:50:45 -05004816 pr_err("%-20s%lld\n", "virt_ext:", control->virt_ext);
Joe Perchesae8cc052011-04-24 22:00:50 -07004817 pr_err("%-20s%016llx\n", "next_rip:", control->next_rip);
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05004818 pr_err("%-20s%016llx\n", "avic_backing_page:", control->avic_backing_page);
4819 pr_err("%-20s%016llx\n", "avic_logical_id:", control->avic_logical_id);
4820 pr_err("%-20s%016llx\n", "avic_physical_id:", control->avic_physical_id);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004821 pr_err("VMCB State Save Area:\n");
Joe Perchesae8cc052011-04-24 22:00:50 -07004822 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4823 "es:",
4824 save->es.selector, save->es.attrib,
4825 save->es.limit, save->es.base);
4826 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4827 "cs:",
4828 save->cs.selector, save->cs.attrib,
4829 save->cs.limit, save->cs.base);
4830 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4831 "ss:",
4832 save->ss.selector, save->ss.attrib,
4833 save->ss.limit, save->ss.base);
4834 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4835 "ds:",
4836 save->ds.selector, save->ds.attrib,
4837 save->ds.limit, save->ds.base);
4838 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4839 "fs:",
4840 save->fs.selector, save->fs.attrib,
4841 save->fs.limit, save->fs.base);
4842 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4843 "gs:",
4844 save->gs.selector, save->gs.attrib,
4845 save->gs.limit, save->gs.base);
4846 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4847 "gdtr:",
4848 save->gdtr.selector, save->gdtr.attrib,
4849 save->gdtr.limit, save->gdtr.base);
4850 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4851 "ldtr:",
4852 save->ldtr.selector, save->ldtr.attrib,
4853 save->ldtr.limit, save->ldtr.base);
4854 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4855 "idtr:",
4856 save->idtr.selector, save->idtr.attrib,
4857 save->idtr.limit, save->idtr.base);
4858 pr_err("%-5s s: %04x a: %04x l: %08x b: %016llx\n",
4859 "tr:",
4860 save->tr.selector, save->tr.attrib,
4861 save->tr.limit, save->tr.base);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004862 pr_err("cpl: %d efer: %016llx\n",
4863 save->cpl, save->efer);
Joe Perchesae8cc052011-04-24 22:00:50 -07004864 pr_err("%-15s %016llx %-13s %016llx\n",
4865 "cr0:", save->cr0, "cr2:", save->cr2);
4866 pr_err("%-15s %016llx %-13s %016llx\n",
4867 "cr3:", save->cr3, "cr4:", save->cr4);
4868 pr_err("%-15s %016llx %-13s %016llx\n",
4869 "dr6:", save->dr6, "dr7:", save->dr7);
4870 pr_err("%-15s %016llx %-13s %016llx\n",
4871 "rip:", save->rip, "rflags:", save->rflags);
4872 pr_err("%-15s %016llx %-13s %016llx\n",
4873 "rsp:", save->rsp, "rax:", save->rax);
4874 pr_err("%-15s %016llx %-13s %016llx\n",
4875 "star:", save->star, "lstar:", save->lstar);
4876 pr_err("%-15s %016llx %-13s %016llx\n",
4877 "cstar:", save->cstar, "sfmask:", save->sfmask);
4878 pr_err("%-15s %016llx %-13s %016llx\n",
4879 "kernel_gs_base:", save->kernel_gs_base,
4880 "sysenter_cs:", save->sysenter_cs);
4881 pr_err("%-15s %016llx %-13s %016llx\n",
4882 "sysenter_esp:", save->sysenter_esp,
4883 "sysenter_eip:", save->sysenter_eip);
4884 pr_err("%-15s %016llx %-13s %016llx\n",
4885 "gpat:", save->g_pat, "dbgctl:", save->dbgctl);
4886 pr_err("%-15s %016llx %-13s %016llx\n",
4887 "br_from:", save->br_from, "br_to:", save->br_to);
4888 pr_err("%-15s %016llx %-13s %016llx\n",
4889 "excp_from:", save->last_excp_from,
4890 "excp_to:", save->last_excp_to);
Joerg Roedel3f10c842010-05-05 16:04:42 +02004891}
4892
Avi Kivity586f9602010-11-18 13:09:54 +02004893static void svm_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4894{
4895 struct vmcb_control_area *control = &to_svm(vcpu)->vmcb->control;
4896
4897 *info1 = control->exit_info_1;
4898 *info2 = control->exit_info_2;
4899}
4900
Avi Kivity851ba692009-08-24 11:10:17 +03004901static int handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004902{
Avi Kivity04d2cc72007-09-10 18:10:54 +03004903 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004904 struct kvm_run *kvm_run = vcpu->run;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004905 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004906
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01004907 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM);
4908
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01004909 if (!is_cr_intercept(svm, INTERCEPT_CR0_WRITE))
Joerg Roedel2be4fc72010-04-22 12:33:09 +02004910 vcpu->arch.cr0 = svm->vmcb->save.cr0;
4911 if (npt_enabled)
4912 vcpu->arch.cr3 = svm->vmcb->save.cr3;
Joerg Roedelaf9ca2d2008-04-30 17:56:03 +02004913
Joerg Roedelcd3ff652009-10-09 16:08:26 +02004914 if (unlikely(svm->nested.exit_required)) {
4915 nested_svm_vmexit(svm);
4916 svm->nested.exit_required = false;
4917
4918 return 1;
4919 }
4920
Joerg Roedel20307532010-11-29 17:51:48 +01004921 if (is_guest_mode(vcpu)) {
Joerg Roedel410e4d52009-08-07 11:49:44 +02004922 int vmexit;
4923
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004924 trace_kvm_nested_vmexit(svm->vmcb->save.rip, exit_code,
4925 svm->vmcb->control.exit_info_1,
4926 svm->vmcb->control.exit_info_2,
4927 svm->vmcb->control.exit_int_info,
Stefan Hajnoczie097e5f2011-07-22 12:46:52 +01004928 svm->vmcb->control.exit_int_info_err,
4929 KVM_ISA_SVM);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02004930
Joerg Roedel410e4d52009-08-07 11:49:44 +02004931 vmexit = nested_svm_exit_special(svm);
4932
4933 if (vmexit == NESTED_EXIT_CONTINUE)
4934 vmexit = nested_svm_exit_handled(svm);
4935
4936 if (vmexit == NESTED_EXIT_DONE)
Alexander Grafcf74a782008-11-25 20:17:08 +01004937 return 1;
Alexander Grafcf74a782008-11-25 20:17:08 +01004938 }
4939
Joerg Roedela5c38322009-08-07 11:49:32 +02004940 svm_complete_interrupts(svm);
4941
Avi Kivity04d2cc72007-09-10 18:10:54 +03004942 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
4943 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4944 kvm_run->fail_entry.hardware_entry_failure_reason
4945 = svm->vmcb->control.exit_code;
Joerg Roedel3f10c842010-05-05 16:04:42 +02004946 pr_err("KVM: FAILED VMRUN WITH VMCB:\n");
4947 dump_vmcb(vcpu);
Avi Kivity04d2cc72007-09-10 18:10:54 +03004948 return 0;
4949 }
4950
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004951 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Joerg Roedel709ddeb2008-02-07 13:47:45 +01004952 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Joerg Roedel55c5e462010-09-10 17:31:04 +02004953 exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH &&
4954 exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI)
Borislav Petkov6614c7d2013-04-26 00:22:01 +02004955 printk(KERN_ERR "%s: unexpected exit_int_info 0x%x "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004956 "exit_code 0x%x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08004957 __func__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004958 exit_code);
4959
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02004960 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Joe Perches56919c52007-11-12 20:06:51 -08004961 || !svm_exit_handlers[exit_code]) {
Bandan Dasfaac2452015-03-16 17:18:25 -04004962 WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03004963 kvm_queue_exception(vcpu, UD_VECTOR);
4964 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004965 }
4966
Avi Kivity851ba692009-08-24 11:10:17 +03004967 return svm_exit_handlers[exit_code](svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968}
4969
4970static void reload_tss(struct kvm_vcpu *vcpu)
4971{
4972 int cpu = raw_smp_processor_id();
4973
Tejun Heo0fe1e002009-10-29 22:34:14 +09004974 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4975 sd->tss_desc->type = 9; /* available 32/64-bit TSS */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004976 load_TR_desc();
4977}
4978
Brijesh Singh70cd94e2017-12-04 10:57:34 -06004979static void pre_sev_run(struct vcpu_svm *svm, int cpu)
4980{
4981 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
4982 int asid = sev_get_asid(svm->vcpu.kvm);
4983
4984 /* Assign the asid allocated with this SEV guest */
4985 svm->vmcb->control.asid = asid;
4986
4987 /*
4988 * Flush guest TLB:
4989 *
4990 * 1) when different VMCB for the same ASID is to be run on the same host CPU.
4991 * 2) or this VMCB was executed on different host CPU in previous VMRUNs.
4992 */
4993 if (sd->sev_vmcbs[asid] == svm->vmcb &&
4994 svm->last_cpu == cpu)
4995 return;
4996
4997 svm->last_cpu = cpu;
4998 sd->sev_vmcbs[asid] = svm->vmcb;
4999 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5000 mark_dirty(svm->vmcb, VMCB_ASID);
5001}
5002
Rusty Russelle756fc62007-07-30 20:07:08 +10005003static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005004{
5005 int cpu = raw_smp_processor_id();
5006
Tejun Heo0fe1e002009-10-29 22:34:14 +09005007 struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008
Brijesh Singh70cd94e2017-12-04 10:57:34 -06005009 if (sev_guest(svm->vcpu.kvm))
5010 return pre_sev_run(svm, cpu);
5011
Marcelo Tosatti4b656b12009-07-21 12:47:45 -03005012 /* FIXME: handle wraparound of asid_generation */
Tejun Heo0fe1e002009-10-29 22:34:14 +09005013 if (svm->asid_generation != sd->asid_generation)
5014 new_asid(svm, sd);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005015}
5016
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005017static void svm_inject_nmi(struct kvm_vcpu *vcpu)
5018{
5019 struct vcpu_svm *svm = to_svm(vcpu);
5020
5021 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
5022 vcpu->arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005023 set_intercept(svm, INTERCEPT_IRET);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005024 ++vcpu->stat.nmi_injections;
5025}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005026
Eddie Dong85f455f2007-07-06 12:20:49 +03005027static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005028{
5029 struct vmcb_control_area *control;
5030
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005031 /* The following fields are ignored when AVIC is enabled */
Rusty Russelle756fc62007-07-30 20:07:08 +10005032 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03005033 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005034 control->int_ctl &= ~V_INTR_PRIO_MASK;
5035 control->int_ctl |= V_IRQ_MASK |
5036 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
Joerg Roedeldecdbf62010-12-03 11:45:52 +01005037 mark_dirty(svm->vmcb, VMCB_INTR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005038}
5039
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005040static void svm_set_irq(struct kvm_vcpu *vcpu)
Eddie Dong2a8067f2007-08-06 16:29:07 +03005041{
5042 struct vcpu_svm *svm = to_svm(vcpu);
5043
Joerg Roedel2af91942009-08-07 11:49:28 +02005044 BUG_ON(!(gif_set(svm)));
Alexander Grafcf74a782008-11-25 20:17:08 +01005045
Gleb Natapov9fb2d2b2010-05-23 14:28:26 +03005046 trace_kvm_inj_virq(vcpu->arch.interrupt.nr);
5047 ++vcpu->stat.irq_injections;
5048
Alexander Graf219b65d2009-06-15 15:21:25 +02005049 svm->vmcb->control.event_inj = vcpu->arch.interrupt.nr |
5050 SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR;
Eddie Dong2a8067f2007-08-06 16:29:07 +03005051}
5052
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005053static inline bool svm_nested_virtualize_tpr(struct kvm_vcpu *vcpu)
5054{
5055 return is_guest_mode(vcpu) && (vcpu->arch.hflags & HF_VINTR_MASK);
5056}
5057
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005058static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
5059{
5060 struct vcpu_svm *svm = to_svm(vcpu);
5061
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005062 if (svm_nested_virtualize_tpr(vcpu) ||
5063 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005064 return;
5065
Radim Krčmář596f3142014-03-11 19:11:18 +01005066 clr_cr_intercept(svm, INTERCEPT_CR8_WRITE);
5067
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005068 if (irr == -1)
5069 return;
5070
5071 if (tpr >= irr)
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005072 set_cr_intercept(svm, INTERCEPT_CR8_WRITE);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005073}
5074
Jim Mattson8d860bb2018-05-09 16:56:05 -04005075static void svm_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005076{
5077 return;
5078}
5079
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005080static bool svm_get_enable_apicv(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005081{
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005082 return avic && irqchip_split(vcpu->kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005083}
5084
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005085static void svm_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
5086{
5087}
5088
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005089static void svm_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005090{
5091}
5092
5093/* Note: Currently only used by Hyper-V. */
Andrey Smetanind62caab2015-11-10 15:36:33 +03005094static void svm_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5095{
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005096 struct vcpu_svm *svm = to_svm(vcpu);
5097 struct vmcb *vmcb = svm->vmcb;
5098
Suravee Suthikulpanit67034bb2017-09-12 10:42:42 -05005099 if (!kvm_vcpu_apicv_active(&svm->vcpu))
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05005100 return;
5101
5102 vmcb->control.int_ctl &= ~AVIC_ENABLE_MASK;
5103 mark_dirty(vmcb, VMCB_INTR);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005104}
5105
Andrey Smetanin63086302015-11-10 15:36:32 +03005106static void svm_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005107{
5108 return;
5109}
5110
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005111static void svm_deliver_avic_intr(struct kvm_vcpu *vcpu, int vec)
5112{
5113 kvm_lapic_set_irr(vec, vcpu->arch.apic);
5114 smp_mb__after_atomic();
5115
5116 if (avic_vcpu_is_running(vcpu))
5117 wrmsrl(SVM_AVIC_DOORBELL,
Suravee Suthikulpanit7d669f52016-06-15 17:23:45 -05005118 kvm_cpu_get_apicid(vcpu->cpu));
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005119 else
5120 kvm_vcpu_wake_up(vcpu);
5121}
5122
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005123static void svm_ir_list_del(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5124{
5125 unsigned long flags;
5126 struct amd_svm_iommu_ir *cur;
5127
5128 spin_lock_irqsave(&svm->ir_list_lock, flags);
5129 list_for_each_entry(cur, &svm->ir_list, node) {
5130 if (cur->data != pi->ir_data)
5131 continue;
5132 list_del(&cur->node);
5133 kfree(cur);
5134 break;
5135 }
5136 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5137}
5138
5139static int svm_ir_list_add(struct vcpu_svm *svm, struct amd_iommu_pi_data *pi)
5140{
5141 int ret = 0;
5142 unsigned long flags;
5143 struct amd_svm_iommu_ir *ir;
5144
5145 /**
5146 * In some cases, the existing irte is updaed and re-set,
5147 * so we need to check here if it's already been * added
5148 * to the ir_list.
5149 */
5150 if (pi->ir_data && (pi->prev_ga_tag != 0)) {
5151 struct kvm *kvm = svm->vcpu.kvm;
5152 u32 vcpu_id = AVIC_GATAG_TO_VCPUID(pi->prev_ga_tag);
5153 struct kvm_vcpu *prev_vcpu = kvm_get_vcpu_by_id(kvm, vcpu_id);
5154 struct vcpu_svm *prev_svm;
5155
5156 if (!prev_vcpu) {
5157 ret = -EINVAL;
5158 goto out;
5159 }
5160
5161 prev_svm = to_svm(prev_vcpu);
5162 svm_ir_list_del(prev_svm, pi);
5163 }
5164
5165 /**
5166 * Allocating new amd_iommu_pi_data, which will get
5167 * add to the per-vcpu ir_list.
5168 */
5169 ir = kzalloc(sizeof(struct amd_svm_iommu_ir), GFP_KERNEL);
5170 if (!ir) {
5171 ret = -ENOMEM;
5172 goto out;
5173 }
5174 ir->data = pi->ir_data;
5175
5176 spin_lock_irqsave(&svm->ir_list_lock, flags);
5177 list_add(&ir->node, &svm->ir_list);
5178 spin_unlock_irqrestore(&svm->ir_list_lock, flags);
5179out:
5180 return ret;
5181}
5182
5183/**
5184 * Note:
5185 * The HW cannot support posting multicast/broadcast
5186 * interrupts to a vCPU. So, we still use legacy interrupt
5187 * remapping for these kind of interrupts.
5188 *
5189 * For lowest-priority interrupts, we only support
5190 * those with single CPU as the destination, e.g. user
5191 * configures the interrupts via /proc/irq or uses
5192 * irqbalance to make the interrupts single-CPU.
5193 */
5194static int
5195get_pi_vcpu_info(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
5196 struct vcpu_data *vcpu_info, struct vcpu_svm **svm)
5197{
5198 struct kvm_lapic_irq irq;
5199 struct kvm_vcpu *vcpu = NULL;
5200
5201 kvm_set_msi_irq(kvm, e, &irq);
5202
5203 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
5204 pr_debug("SVM: %s: use legacy intr remap mode for irq %u\n",
5205 __func__, irq.vector);
5206 return -1;
5207 }
5208
5209 pr_debug("SVM: %s: use GA mode for irq %u\n", __func__,
5210 irq.vector);
5211 *svm = to_svm(vcpu);
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005212 vcpu_info->pi_desc_addr = __sme_set(page_to_phys((*svm)->avic_backing_page));
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005213 vcpu_info->vector = irq.vector;
5214
5215 return 0;
5216}
5217
5218/*
5219 * svm_update_pi_irte - set IRTE for Posted-Interrupts
5220 *
5221 * @kvm: kvm
5222 * @host_irq: host irq of the interrupt
5223 * @guest_irq: gsi of the interrupt
5224 * @set: set or unset PI
5225 * returns 0 on success, < 0 on failure
5226 */
5227static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
5228 uint32_t guest_irq, bool set)
5229{
5230 struct kvm_kernel_irq_routing_entry *e;
5231 struct kvm_irq_routing_table *irq_rt;
5232 int idx, ret = -EINVAL;
5233
5234 if (!kvm_arch_has_assigned_device(kvm) ||
5235 !irq_remapping_cap(IRQ_POSTING_CAP))
5236 return 0;
5237
5238 pr_debug("SVM: %s: host_irq=%#x, guest_irq=%#x, set=%#x\n",
5239 __func__, host_irq, guest_irq, set);
5240
5241 idx = srcu_read_lock(&kvm->irq_srcu);
5242 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
5243 WARN_ON(guest_irq >= irq_rt->nr_rt_entries);
5244
5245 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
5246 struct vcpu_data vcpu_info;
5247 struct vcpu_svm *svm = NULL;
5248
5249 if (e->type != KVM_IRQ_ROUTING_MSI)
5250 continue;
5251
5252 /**
5253 * Here, we setup with legacy mode in the following cases:
5254 * 1. When cannot target interrupt to a specific vcpu.
5255 * 2. Unsetting posted interrupt.
5256 * 3. APIC virtialization is disabled for the vcpu.
5257 */
5258 if (!get_pi_vcpu_info(kvm, e, &vcpu_info, &svm) && set &&
5259 kvm_vcpu_apicv_active(&svm->vcpu)) {
5260 struct amd_iommu_pi_data pi;
5261
5262 /* Try to enable guest_mode in IRTE */
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005263 pi.base = __sme_set(page_to_phys(svm->avic_backing_page) &
5264 AVIC_HPA_MASK);
Sean Christopherson81811c12018-03-20 12:17:21 -07005265 pi.ga_tag = AVIC_GATAG(to_kvm_svm(kvm)->avic_vm_id,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005266 svm->vcpu.vcpu_id);
5267 pi.is_guest_mode = true;
5268 pi.vcpu_data = &vcpu_info;
5269 ret = irq_set_vcpu_affinity(host_irq, &pi);
5270
5271 /**
5272 * Here, we successfully setting up vcpu affinity in
5273 * IOMMU guest mode. Now, we need to store the posted
5274 * interrupt information in a per-vcpu ir_list so that
5275 * we can reference to them directly when we update vcpu
5276 * scheduling information in IOMMU irte.
5277 */
5278 if (!ret && pi.is_guest_mode)
5279 svm_ir_list_add(svm, &pi);
5280 } else {
5281 /* Use legacy mode in IRTE */
5282 struct amd_iommu_pi_data pi;
5283
5284 /**
5285 * Here, pi is used to:
5286 * - Tell IOMMU to use legacy mode for this interrupt.
5287 * - Retrieve ga_tag of prior interrupt remapping data.
5288 */
5289 pi.is_guest_mode = false;
5290 ret = irq_set_vcpu_affinity(host_irq, &pi);
5291
5292 /**
5293 * Check if the posted interrupt was previously
5294 * setup with the guest_mode by checking if the ga_tag
5295 * was cached. If so, we need to clean up the per-vcpu
5296 * ir_list.
5297 */
5298 if (!ret && pi.prev_ga_tag) {
5299 int id = AVIC_GATAG_TO_VCPUID(pi.prev_ga_tag);
5300 struct kvm_vcpu *vcpu;
5301
5302 vcpu = kvm_get_vcpu_by_id(kvm, id);
5303 if (vcpu)
5304 svm_ir_list_del(to_svm(vcpu), &pi);
5305 }
5306 }
5307
5308 if (!ret && svm) {
hu huajun2698d822018-04-11 15:16:40 +08005309 trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id,
5310 e->gsi, vcpu_info.vector,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05005311 vcpu_info.pi_desc_addr, set);
5312 }
5313
5314 if (ret < 0) {
5315 pr_err("%s: failed to update PI IRTE\n", __func__);
5316 goto out;
5317 }
5318 }
5319
5320 ret = 0;
5321out:
5322 srcu_read_unlock(&kvm->irq_srcu, idx);
5323 return ret;
5324}
5325
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005326static int svm_nmi_allowed(struct kvm_vcpu *vcpu)
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005327{
5328 struct vcpu_svm *svm = to_svm(vcpu);
5329 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel924584c2010-04-22 12:33:07 +02005330 int ret;
5331 ret = !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
5332 !(svm->vcpu.arch.hflags & HF_NMI_MASK);
5333 ret = ret && gif_set(svm) && nested_svm_nmi(svm);
5334
5335 return ret;
Joerg Roedelaaacfc92008-04-16 16:51:18 +02005336}
5337
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005338static bool svm_get_nmi_mask(struct kvm_vcpu *vcpu)
5339{
5340 struct vcpu_svm *svm = to_svm(vcpu);
5341
5342 return !!(svm->vcpu.arch.hflags & HF_NMI_MASK);
5343}
5344
5345static void svm_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5346{
5347 struct vcpu_svm *svm = to_svm(vcpu);
5348
5349 if (masked) {
5350 svm->vcpu.arch.hflags |= HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005351 set_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005352 } else {
5353 svm->vcpu.arch.hflags &= ~HF_NMI_MASK;
Joerg Roedel8a05a1b82010-11-30 18:04:00 +01005354 clr_intercept(svm, INTERCEPT_IRET);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005355 }
5356}
5357
Gleb Natapov78646122009-03-23 12:12:11 +02005358static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
5359{
5360 struct vcpu_svm *svm = to_svm(vcpu);
5361 struct vmcb *vmcb = svm->vmcb;
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005362 int ret;
5363
5364 if (!gif_set(svm) ||
5365 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK))
5366 return 0;
5367
Avi Kivityf6e78472010-08-02 15:30:20 +03005368 ret = !!(kvm_get_rflags(vcpu) & X86_EFLAGS_IF);
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005369
Joerg Roedel20307532010-11-29 17:51:48 +01005370 if (is_guest_mode(vcpu))
Joerg Roedel7fcdb512009-09-16 15:24:15 +02005371 return ret && !(svm->vcpu.arch.hflags & HF_VINTR_MASK);
5372
5373 return ret;
Gleb Natapov78646122009-03-23 12:12:11 +02005374}
5375
Jan Kiszkac9a79532014-03-07 20:03:15 +01005376static void enable_irq_window(struct kvm_vcpu *vcpu)
Gleb Natapov9222be12009-04-23 17:14:37 +03005377{
Alexander Graf219b65d2009-06-15 15:21:25 +02005378 struct vcpu_svm *svm = to_svm(vcpu);
Alexander Graf219b65d2009-06-15 15:21:25 +02005379
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05005380 if (kvm_vcpu_apicv_active(vcpu))
5381 return;
5382
Joerg Roedele0231712010-02-24 18:59:10 +01005383 /*
5384 * In case GIF=0 we can't rely on the CPU to tell us when GIF becomes
5385 * 1, because that's a separate STGI/VMRUN intercept. The next time we
5386 * get that intercept, this function will be called again though and
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005387 * we'll get the vintr intercept. However, if the vGIF feature is
5388 * enabled, the STGI interception will not occur. Enable the irq
5389 * window under the assumption that the hardware will set the GIF.
Joerg Roedele0231712010-02-24 18:59:10 +01005390 */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005391 if ((vgif_enabled(svm) || gif_set(svm)) && nested_svm_intr(svm)) {
Alexander Graf219b65d2009-06-15 15:21:25 +02005392 svm_set_vintr(svm);
5393 svm_inject_irq(svm, 0x0);
5394 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005395}
5396
Jan Kiszkac9a79532014-03-07 20:03:15 +01005397static void enable_nmi_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005398{
Avi Kivity04d2cc72007-09-10 18:10:54 +03005399 struct vcpu_svm *svm = to_svm(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005400
Gleb Natapov44c11432009-05-11 13:35:52 +03005401 if ((svm->vcpu.arch.hflags & (HF_NMI_MASK | HF_IRET_MASK))
5402 == HF_NMI_MASK)
Jan Kiszkac9a79532014-03-07 20:03:15 +01005403 return; /* IRET will cause a vm exit */
Gleb Natapov44c11432009-05-11 13:35:52 +03005404
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005405 if (!gif_set(svm)) {
5406 if (vgif_enabled(svm))
5407 set_intercept(svm, INTERCEPT_STGI);
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005408 return; /* STGI will cause a vm exit */
Janakarajan Natarajan640bd6e2017-08-23 09:57:19 -05005409 }
Ladi Prosek1a5e1852017-06-21 09:07:01 +02005410
5411 if (svm->nested.exit_required)
5412 return; /* we're not going to run the guest yet */
5413
Joerg Roedele0231712010-02-24 18:59:10 +01005414 /*
5415 * Something prevents NMI from been injected. Single step over possible
5416 * problem (IRET or exception injection or interrupt shadow)
5417 */
Ladi Prosekab2f4d732017-06-21 09:06:58 +02005418 svm->nmi_singlestep_guest_rflags = svm_get_rflags(vcpu);
Jan Kiszka6be7d302009-10-18 13:24:54 +02005419 svm->nmi_singlestep = true;
Gleb Natapov44c11432009-05-11 13:35:52 +03005420 svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF);
Eddie Dong85f455f2007-07-06 12:20:49 +03005421}
5422
Izik Eiduscbc94022007-10-25 00:29:55 +02005423static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
5424{
5425 return 0;
5426}
5427
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07005428static int svm_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
5429{
5430 return 0;
5431}
5432
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005433static void svm_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Avi Kivityd9e368d2007-06-07 19:18:30 +03005434{
Joerg Roedel38e5e922010-12-03 15:25:16 +01005435 struct vcpu_svm *svm = to_svm(vcpu);
5436
5437 if (static_cpu_has(X86_FEATURE_FLUSHBYASID))
5438 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ASID;
5439 else
5440 svm->asid_generation--;
Avi Kivityd9e368d2007-06-07 19:18:30 +03005441}
5442
Junaid Shahidfaff8752018-06-29 13:10:05 -07005443static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva)
5444{
5445 struct vcpu_svm *svm = to_svm(vcpu);
5446
5447 invlpga(gva, svm->vmcb->control.asid);
5448}
5449
Avi Kivity04d2cc72007-09-10 18:10:54 +03005450static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
5451{
5452}
5453
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005454static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
5455{
5456 struct vcpu_svm *svm = to_svm(vcpu);
5457
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005458 if (svm_nested_virtualize_tpr(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005459 return;
5460
Roedel, Joerg4ee546b2010-12-03 10:50:51 +01005461 if (!is_cr_intercept(svm, INTERCEPT_CR8_WRITE)) {
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005462 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
Gleb Natapov615d5192009-04-21 17:45:05 +03005463 kvm_set_cr8(vcpu, cr8);
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005464 }
5465}
5466
Joerg Roedel649d6862008-04-16 16:51:15 +02005467static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
5468{
5469 struct vcpu_svm *svm = to_svm(vcpu);
5470 u64 cr8;
5471
Suravee Suthikulpanit3bbf3562016-05-04 14:09:51 -05005472 if (svm_nested_virtualize_tpr(vcpu) ||
5473 kvm_vcpu_apicv_active(vcpu))
Joerg Roedel88ab24a2010-02-19 16:23:06 +01005474 return;
5475
Joerg Roedel649d6862008-04-16 16:51:15 +02005476 cr8 = kvm_get_cr8(vcpu);
5477 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
5478 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
5479}
5480
Gleb Natapov9222be12009-04-23 17:14:37 +03005481static void svm_complete_interrupts(struct vcpu_svm *svm)
5482{
5483 u8 vector;
5484 int type;
5485 u32 exitintinfo = svm->vmcb->control.exit_int_info;
Jan Kiszka66b71382010-02-23 17:47:56 +01005486 unsigned int3_injected = svm->int3_injected;
5487
5488 svm->int3_injected = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005489
Avi Kivitybd3d1ec2011-02-03 15:29:52 +02005490 /*
5491 * If we've made progress since setting HF_IRET_MASK, we've
5492 * executed an IRET and can allow NMI injection.
5493 */
5494 if ((svm->vcpu.arch.hflags & HF_IRET_MASK)
5495 && kvm_rip_read(&svm->vcpu) != svm->nmi_iret_rip) {
Gleb Natapov44c11432009-05-11 13:35:52 +03005496 svm->vcpu.arch.hflags &= ~(HF_NMI_MASK | HF_IRET_MASK);
Avi Kivity3842d132010-07-27 12:30:24 +03005497 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5498 }
Gleb Natapov44c11432009-05-11 13:35:52 +03005499
Gleb Natapov9222be12009-04-23 17:14:37 +03005500 svm->vcpu.arch.nmi_injected = false;
5501 kvm_clear_exception_queue(&svm->vcpu);
5502 kvm_clear_interrupt_queue(&svm->vcpu);
5503
5504 if (!(exitintinfo & SVM_EXITINTINFO_VALID))
5505 return;
5506
Avi Kivity3842d132010-07-27 12:30:24 +03005507 kvm_make_request(KVM_REQ_EVENT, &svm->vcpu);
5508
Gleb Natapov9222be12009-04-23 17:14:37 +03005509 vector = exitintinfo & SVM_EXITINTINFO_VEC_MASK;
5510 type = exitintinfo & SVM_EXITINTINFO_TYPE_MASK;
5511
5512 switch (type) {
5513 case SVM_EXITINTINFO_TYPE_NMI:
5514 svm->vcpu.arch.nmi_injected = true;
5515 break;
5516 case SVM_EXITINTINFO_TYPE_EXEPT:
Jan Kiszka66b71382010-02-23 17:47:56 +01005517 /*
5518 * In case of software exceptions, do not reinject the vector,
5519 * but re-execute the instruction instead. Rewind RIP first
5520 * if we emulated INT3 before.
5521 */
5522 if (kvm_exception_is_soft(vector)) {
5523 if (vector == BP_VECTOR && int3_injected &&
5524 kvm_is_linear_rip(&svm->vcpu, svm->int3_rip))
5525 kvm_rip_write(&svm->vcpu,
5526 kvm_rip_read(&svm->vcpu) -
5527 int3_injected);
Alexander Graf219b65d2009-06-15 15:21:25 +02005528 break;
Jan Kiszka66b71382010-02-23 17:47:56 +01005529 }
Gleb Natapov9222be12009-04-23 17:14:37 +03005530 if (exitintinfo & SVM_EXITINTINFO_VALID_ERR) {
5531 u32 err = svm->vmcb->control.exit_int_info_err;
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005532 kvm_requeue_exception_e(&svm->vcpu, vector, err);
Gleb Natapov9222be12009-04-23 17:14:37 +03005533
5534 } else
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005535 kvm_requeue_exception(&svm->vcpu, vector);
Gleb Natapov9222be12009-04-23 17:14:37 +03005536 break;
5537 case SVM_EXITINTINFO_TYPE_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005538 kvm_queue_interrupt(&svm->vcpu, vector, false);
Gleb Natapov9222be12009-04-23 17:14:37 +03005539 break;
5540 default:
5541 break;
5542 }
5543}
5544
Avi Kivityb463a6f2010-07-20 15:06:17 +03005545static void svm_cancel_injection(struct kvm_vcpu *vcpu)
5546{
5547 struct vcpu_svm *svm = to_svm(vcpu);
5548 struct vmcb_control_area *control = &svm->vmcb->control;
5549
5550 control->exit_int_info = control->event_inj;
5551 control->exit_int_info_err = control->event_inj_err;
5552 control->event_inj = 0;
5553 svm_complete_interrupts(svm);
5554}
5555
Avi Kivity851ba692009-08-24 11:10:17 +03005556static void svm_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005557{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005558 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +03005559
Joerg Roedel2041a062010-04-22 12:33:08 +02005560 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
5561 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
5562 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
5563
Joerg Roedelcd3ff652009-10-09 16:08:26 +02005564 /*
5565 * A vmexit emulation is required before the vcpu can be executed
5566 * again.
5567 */
5568 if (unlikely(svm->nested.exit_required))
5569 return;
5570
Ladi Proseka12713c2017-06-21 09:07:00 +02005571 /*
5572 * Disable singlestep if we're injecting an interrupt/exception.
5573 * We don't want our modified rflags to be pushed on the stack where
5574 * we might not be able to easily reset them if we disabled NMI
5575 * singlestep later.
5576 */
5577 if (svm->nmi_singlestep && svm->vmcb->control.event_inj) {
5578 /*
5579 * Event injection happens before external interrupts cause a
5580 * vmexit and interrupts are disabled here, so smp_send_reschedule
5581 * is enough to force an immediate vmexit.
5582 */
5583 disable_nmi_singlestep(svm);
5584 smp_send_reschedule(vcpu->cpu);
5585 }
5586
Rusty Russelle756fc62007-07-30 20:07:08 +10005587 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005588
Joerg Roedel649d6862008-04-16 16:51:15 +02005589 sync_lapic_to_cr8(vcpu);
5590
Joerg Roedelcda0ffd2009-08-07 11:49:45 +02005591 svm->vmcb->save.cr2 = vcpu->arch.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005592
Avi Kivity04d2cc72007-09-10 18:10:54 +03005593 clgi();
5594
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005595 /*
5596 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
5597 * it's non-zero. Since vmentry is serialising on affected CPUs, there
5598 * is no need to worry about the conditional branch over the wrmsr
5599 * being speculatively taken.
5600 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02005601 x86_spec_ctrl_set_guest(svm->spec_ctrl, svm->virt_spec_ctrl);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005602
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005603 local_irq_enable();
5604
Avi Kivity6aa8b732006-12-10 02:21:36 -08005605 asm volatile (
Avi Kivity74547662012-09-16 15:10:59 +03005606 "push %%" _ASM_BP "; \n\t"
5607 "mov %c[rbx](%[svm]), %%" _ASM_BX " \n\t"
5608 "mov %c[rcx](%[svm]), %%" _ASM_CX " \n\t"
5609 "mov %c[rdx](%[svm]), %%" _ASM_DX " \n\t"
5610 "mov %c[rsi](%[svm]), %%" _ASM_SI " \n\t"
5611 "mov %c[rdi](%[svm]), %%" _ASM_DI " \n\t"
5612 "mov %c[rbp](%[svm]), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005613#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005614 "mov %c[r8](%[svm]), %%r8 \n\t"
5615 "mov %c[r9](%[svm]), %%r9 \n\t"
5616 "mov %c[r10](%[svm]), %%r10 \n\t"
5617 "mov %c[r11](%[svm]), %%r11 \n\t"
5618 "mov %c[r12](%[svm]), %%r12 \n\t"
5619 "mov %c[r13](%[svm]), %%r13 \n\t"
5620 "mov %c[r14](%[svm]), %%r14 \n\t"
5621 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005622#endif
5623
Avi Kivity6aa8b732006-12-10 02:21:36 -08005624 /* Enter guest mode */
Avi Kivity74547662012-09-16 15:10:59 +03005625 "push %%" _ASM_AX " \n\t"
5626 "mov %c[vmcb](%[svm]), %%" _ASM_AX " \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005627 __ex(SVM_VMLOAD) "\n\t"
5628 __ex(SVM_VMRUN) "\n\t"
5629 __ex(SVM_VMSAVE) "\n\t"
Avi Kivity74547662012-09-16 15:10:59 +03005630 "pop %%" _ASM_AX " \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005631
5632 /* Save guest registers, load host registers */
Avi Kivity74547662012-09-16 15:10:59 +03005633 "mov %%" _ASM_BX ", %c[rbx](%[svm]) \n\t"
5634 "mov %%" _ASM_CX ", %c[rcx](%[svm]) \n\t"
5635 "mov %%" _ASM_DX ", %c[rdx](%[svm]) \n\t"
5636 "mov %%" _ASM_SI ", %c[rsi](%[svm]) \n\t"
5637 "mov %%" _ASM_DI ", %c[rdi](%[svm]) \n\t"
5638 "mov %%" _ASM_BP ", %c[rbp](%[svm]) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005639#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005640 "mov %%r8, %c[r8](%[svm]) \n\t"
5641 "mov %%r9, %c[r9](%[svm]) \n\t"
5642 "mov %%r10, %c[r10](%[svm]) \n\t"
5643 "mov %%r11, %c[r11](%[svm]) \n\t"
5644 "mov %%r12, %c[r12](%[svm]) \n\t"
5645 "mov %%r13, %c[r13](%[svm]) \n\t"
5646 "mov %%r14, %c[r14](%[svm]) \n\t"
5647 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005648#endif
Jim Mattson0cb5b302018-01-03 14:31:38 -08005649 /*
5650 * Clear host registers marked as clobbered to prevent
5651 * speculative use.
5652 */
5653 "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
5654 "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
5655 "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
5656 "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
5657 "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
5658#ifdef CONFIG_X86_64
5659 "xor %%r8, %%r8 \n\t"
5660 "xor %%r9, %%r9 \n\t"
5661 "xor %%r10, %%r10 \n\t"
5662 "xor %%r11, %%r11 \n\t"
5663 "xor %%r12, %%r12 \n\t"
5664 "xor %%r13, %%r13 \n\t"
5665 "xor %%r14, %%r14 \n\t"
5666 "xor %%r15, %%r15 \n\t"
5667#endif
Avi Kivity74547662012-09-16 15:10:59 +03005668 "pop %%" _ASM_BP
Avi Kivity6aa8b732006-12-10 02:21:36 -08005669 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005670 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005671 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005672 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
5673 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
5674 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
5675 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
5676 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
5677 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005678#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005679 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
5680 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
5681 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
5682 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
5683 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
5684 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
5685 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
5686 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005687#endif
Laurent Vivier54a08c02007-10-25 14:18:53 +02005688 : "cc", "memory"
5689#ifdef CONFIG_X86_64
Avi Kivity74547662012-09-16 15:10:59 +03005690 , "rbx", "rcx", "rdx", "rsi", "rdi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005691 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
Avi Kivity74547662012-09-16 15:10:59 +03005692#else
5693 , "ebx", "ecx", "edx", "esi", "edi"
Laurent Vivier54a08c02007-10-25 14:18:53 +02005694#endif
5695 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005696
Thomas Gleixner15e6c222018-05-11 15:21:01 +02005697 /* Eliminate branch target predictions from guest mode */
5698 vmexit_fill_RSB();
5699
5700#ifdef CONFIG_X86_64
5701 wrmsrl(MSR_GS_BASE, svm->host.gs_base);
5702#else
5703 loadsegment(fs, svm->host.fs);
5704#ifndef CONFIG_X86_32_LAZY_GS
5705 loadsegment(gs, svm->host.gs);
5706#endif
5707#endif
5708
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005709 /*
5710 * We do not use IBRS in the kernel. If this vCPU has used the
5711 * SPEC_CTRL MSR it may have left it on; save the value and
5712 * turn it off. This is much more efficient than blindly adding
5713 * it to the atomic save/restore list. Especially as the former
5714 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
5715 *
5716 * For non-nested case:
5717 * If the L01 MSR bitmap does not intercept the MSR, then we need to
5718 * save it.
5719 *
5720 * For nested case:
5721 * If the L02 MSR bitmap does not intercept the MSR, then we need to
5722 * save it.
5723 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01005724 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01005725 svm->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedb2ac58f2018-02-03 15:56:23 +01005726
Avi Kivity6aa8b732006-12-10 02:21:36 -08005727 reload_tss(vcpu);
5728
Avi Kivity56ba47d2007-11-07 17:14:18 +02005729 local_irq_disable();
5730
Thomas Gleixner024d83c2018-08-12 20:41:45 +02005731 x86_spec_ctrl_restore_host(svm->spec_ctrl, svm->virt_spec_ctrl);
5732
Avi Kivity13c34e02010-10-21 12:20:31 +02005733 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5734 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
5735 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
5736 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
5737
Joerg Roedel3781c012011-01-14 16:45:02 +01005738 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005739 kvm_before_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005740
5741 stgi();
5742
5743 /* Any pending NMI will happen here */
5744
5745 if (unlikely(svm->vmcb->control.exit_code == SVM_EXIT_NMI))
Andi Kleendd60d212017-07-25 17:20:32 -07005746 kvm_after_interrupt(&svm->vcpu);
Joerg Roedel3781c012011-01-14 16:45:02 +01005747
Joerg Roedeld7bf8222008-04-16 16:51:17 +02005748 sync_cr8_to_lapic(vcpu);
5749
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005750 svm->next_rip = 0;
Gleb Natapov9222be12009-04-23 17:14:37 +03005751
Joerg Roedel38e5e922010-12-03 15:25:16 +01005752 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
5753
Gleb Natapov631bc482010-10-14 11:22:52 +02005754 /* if exit due to PF check for async PF */
5755 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005756 svm->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
Gleb Natapov631bc482010-10-14 11:22:52 +02005757
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005758 if (npt_enabled) {
5759 vcpu->arch.regs_avail &= ~(1 << VCPU_EXREG_PDPTR);
5760 vcpu->arch.regs_dirty &= ~(1 << VCPU_EXREG_PDPTR);
5761 }
Joerg Roedelfe5913e2010-05-17 14:43:34 +02005762
5763 /*
5764 * We need to handle MC intercepts here before the vcpu has a chance to
5765 * change the physical cpu
5766 */
5767 if (unlikely(svm->vmcb->control.exit_code ==
5768 SVM_EXIT_EXCP_BASE + MC_VECTOR))
5769 svm_handle_mce(svm);
Roedel, Joerg8d28fec2010-12-03 13:15:21 +01005770
5771 mark_all_clean(svm->vmcb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005772}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05005773STACK_FRAME_NON_STANDARD(svm_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005774
Avi Kivity6aa8b732006-12-10 02:21:36 -08005775static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5776{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005777 struct vcpu_svm *svm = to_svm(vcpu);
5778
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005779 svm->vmcb->save.cr3 = __sme_set(root);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005780 mark_dirty(svm->vmcb, VMCB_CR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005781}
5782
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005783static void set_tdp_cr3(struct kvm_vcpu *vcpu, unsigned long root)
5784{
5785 struct vcpu_svm *svm = to_svm(vcpu);
5786
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005787 svm->vmcb->control.nested_cr3 = __sme_set(root);
Joerg Roedelb2747162010-12-03 11:45:53 +01005788 mark_dirty(svm->vmcb, VMCB_NPT);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005789
5790 /* Also sync guest cr3 here in case we live migrate */
Avi Kivity9f8fe502010-12-05 17:30:00 +02005791 svm->vmcb->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedeldcca1a62010-12-03 11:45:54 +01005792 mark_dirty(svm->vmcb, VMCB_CR);
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005793}
5794
Avi Kivity6aa8b732006-12-10 02:21:36 -08005795static int is_disabled(void)
5796{
Joerg Roedel6031a612007-06-22 12:29:50 +03005797 u64 vm_cr;
5798
5799 rdmsrl(MSR_VM_CR, vm_cr);
5800 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
5801 return 1;
5802
Avi Kivity6aa8b732006-12-10 02:21:36 -08005803 return 0;
5804}
5805
Ingo Molnar102d8322007-02-19 14:37:47 +02005806static void
5807svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5808{
5809 /*
5810 * Patch in the VMMCALL instruction:
5811 */
5812 hypercall[0] = 0x0f;
5813 hypercall[1] = 0x01;
5814 hypercall[2] = 0xd9;
Ingo Molnar102d8322007-02-19 14:37:47 +02005815}
5816
Yang, Sheng002c7f72007-07-31 14:23:01 +03005817static void svm_check_processor_compat(void *rtn)
5818{
5819 *(int *)rtn = 0;
5820}
5821
Avi Kivity774ead32007-12-26 13:57:04 +02005822static bool svm_cpu_has_accelerated_tpr(void)
5823{
5824 return false;
5825}
5826
Tom Lendackybc226f02018-05-10 22:06:39 +02005827static bool svm_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005828{
Vitaly Kuznetsov84a45722018-12-19 12:06:13 +01005829 switch (index) {
5830 case MSR_IA32_MCG_EXT_CTL:
5831 return false;
5832 default:
5833 break;
5834 }
5835
Paolo Bonzini6d396b52015-04-01 14:25:33 +02005836 return true;
5837}
5838
Paolo Bonzinifc07e762015-10-01 13:20:22 +02005839static u64 svm_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
5840{
5841 return 0;
5842}
5843
Sheng Yang0e851882009-12-18 16:48:46 +08005844static void svm_cpuid_update(struct kvm_vcpu *vcpu)
5845{
Joerg Roedel6092d3d2015-10-14 15:10:54 +02005846 struct vcpu_svm *svm = to_svm(vcpu);
5847
5848 /* Update nrips enabled cache */
Radim Krčmářd6321d42017-08-05 00:12:49 +02005849 svm->nrips_enabled = !!guest_cpuid_has(&svm->vcpu, X86_FEATURE_NRIPS);
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005850
5851 if (!kvm_vcpu_apicv_active(vcpu))
5852 return;
5853
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02005854 guest_cpuid_clear(vcpu, X86_FEATURE_X2APIC);
Sheng Yang0e851882009-12-18 16:48:46 +08005855}
5856
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005857static void svm_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5858{
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005859 switch (func) {
Suravee Suthikulpanit46781ea2016-05-04 14:09:50 -05005860 case 0x1:
5861 if (avic)
5862 entry->ecx &= ~bit(X86_FEATURE_X2APIC);
5863 break;
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02005864 case 0x80000001:
5865 if (nested)
5866 entry->ecx |= (1 << 2); /* Set SVM bit */
5867 break;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005868 case 0x8000000A:
5869 entry->eax = 1; /* SVM revision 1 */
5870 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
5871 ASID emulation to nested SVM */
5872 entry->ecx = 0; /* Reserved */
Joerg Roedel7a190662010-07-27 18:14:21 +02005873 entry->edx = 0; /* Per default do not support any
5874 additional features */
5875
5876 /* Support next_rip if host supports it */
Avi Kivity2a6b20b2010-11-09 16:15:42 +02005877 if (boot_cpu_has(X86_FEATURE_NRIPS))
Joerg Roedel7a190662010-07-27 18:14:21 +02005878 entry->edx |= SVM_FEATURE_NRIP;
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005879
Joerg Roedel3d4aeaa2010-09-10 17:31:05 +02005880 /* Support NPT for the guest if enabled */
5881 if (npt_enabled)
5882 entry->edx |= SVM_FEATURE_NPT;
5883
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005884 break;
Brijesh Singh8765d752017-12-04 10:57:25 -06005885 case 0x8000001F:
5886 /* Support memory encryption cpuid if host supports it */
5887 if (boot_cpu_has(X86_FEATURE_SEV))
5888 cpuid(0x8000001f, &entry->eax, &entry->ebx,
5889 &entry->ecx, &entry->edx);
5890
Joerg Roedelc2c63a42010-04-22 12:33:12 +02005891 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005892}
5893
Sheng Yang17cc3932010-01-05 19:02:27 +08005894static int svm_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005895{
Sheng Yang17cc3932010-01-05 19:02:27 +08005896 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005897}
5898
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005899static bool svm_rdtscp_supported(void)
5900{
Paolo Bonzini46896c72015-11-12 14:49:16 +01005901 return boot_cpu_has(X86_FEATURE_RDTSCP);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005902}
5903
Mao, Junjiead756a12012-07-02 01:18:48 +00005904static bool svm_invpcid_supported(void)
5905{
5906 return false;
5907}
5908
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005909static bool svm_mpx_supported(void)
5910{
5911 return false;
5912}
5913
Wanpeng Li55412b22014-12-02 19:21:30 +08005914static bool svm_xsaves_supported(void)
5915{
5916 return false;
5917}
5918
Paolo Bonzini66336ca2016-07-12 10:36:41 +02005919static bool svm_umip_emulated(void)
5920{
5921 return false;
5922}
5923
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005924static bool svm_has_wbinvd_exit(void)
5925{
5926 return true;
5927}
5928
Joerg Roedel80612522011-04-04 12:39:33 +02005929#define PRE_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005930 .stage = X86_ICPT_PRE_EXCEPT, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005931#define POST_EX(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005932 .stage = X86_ICPT_POST_EXCEPT, }
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005933#define POST_MEM(exit) { .exit_code = (exit), \
Avi Kivity40e19b52011-04-21 12:35:41 +03005934 .stage = X86_ICPT_POST_MEMACCESS, }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005935
Mathias Krause09941fb2012-08-30 01:30:20 +02005936static const struct __x86_intercept {
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005937 u32 exit_code;
5938 enum x86_intercept_stage stage;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005939} x86_intercept_map[] = {
5940 [x86_intercept_cr_read] = POST_EX(SVM_EXIT_READ_CR0),
5941 [x86_intercept_cr_write] = POST_EX(SVM_EXIT_WRITE_CR0),
5942 [x86_intercept_clts] = POST_EX(SVM_EXIT_WRITE_CR0),
5943 [x86_intercept_lmsw] = POST_EX(SVM_EXIT_WRITE_CR0),
5944 [x86_intercept_smsw] = POST_EX(SVM_EXIT_READ_CR0),
Joerg Roedel3b88e412011-04-04 12:39:29 +02005945 [x86_intercept_dr_read] = POST_EX(SVM_EXIT_READ_DR0),
5946 [x86_intercept_dr_write] = POST_EX(SVM_EXIT_WRITE_DR0),
Joerg Roedeldee6bb72011-04-04 12:39:30 +02005947 [x86_intercept_sldt] = POST_EX(SVM_EXIT_LDTR_READ),
5948 [x86_intercept_str] = POST_EX(SVM_EXIT_TR_READ),
5949 [x86_intercept_lldt] = POST_EX(SVM_EXIT_LDTR_WRITE),
5950 [x86_intercept_ltr] = POST_EX(SVM_EXIT_TR_WRITE),
5951 [x86_intercept_sgdt] = POST_EX(SVM_EXIT_GDTR_READ),
5952 [x86_intercept_sidt] = POST_EX(SVM_EXIT_IDTR_READ),
5953 [x86_intercept_lgdt] = POST_EX(SVM_EXIT_GDTR_WRITE),
5954 [x86_intercept_lidt] = POST_EX(SVM_EXIT_IDTR_WRITE),
Joerg Roedel01de8b02011-04-04 12:39:31 +02005955 [x86_intercept_vmrun] = POST_EX(SVM_EXIT_VMRUN),
5956 [x86_intercept_vmmcall] = POST_EX(SVM_EXIT_VMMCALL),
5957 [x86_intercept_vmload] = POST_EX(SVM_EXIT_VMLOAD),
5958 [x86_intercept_vmsave] = POST_EX(SVM_EXIT_VMSAVE),
5959 [x86_intercept_stgi] = POST_EX(SVM_EXIT_STGI),
5960 [x86_intercept_clgi] = POST_EX(SVM_EXIT_CLGI),
5961 [x86_intercept_skinit] = POST_EX(SVM_EXIT_SKINIT),
5962 [x86_intercept_invlpga] = POST_EX(SVM_EXIT_INVLPGA),
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005963 [x86_intercept_rdtscp] = POST_EX(SVM_EXIT_RDTSCP),
5964 [x86_intercept_monitor] = POST_MEM(SVM_EXIT_MONITOR),
5965 [x86_intercept_mwait] = POST_EX(SVM_EXIT_MWAIT),
Joerg Roedel80612522011-04-04 12:39:33 +02005966 [x86_intercept_invlpg] = POST_EX(SVM_EXIT_INVLPG),
5967 [x86_intercept_invd] = POST_EX(SVM_EXIT_INVD),
5968 [x86_intercept_wbinvd] = POST_EX(SVM_EXIT_WBINVD),
5969 [x86_intercept_wrmsr] = POST_EX(SVM_EXIT_MSR),
5970 [x86_intercept_rdtsc] = POST_EX(SVM_EXIT_RDTSC),
5971 [x86_intercept_rdmsr] = POST_EX(SVM_EXIT_MSR),
5972 [x86_intercept_rdpmc] = POST_EX(SVM_EXIT_RDPMC),
5973 [x86_intercept_cpuid] = PRE_EX(SVM_EXIT_CPUID),
5974 [x86_intercept_rsm] = PRE_EX(SVM_EXIT_RSM),
Joerg Roedelbf608f82011-04-04 12:39:34 +02005975 [x86_intercept_pause] = PRE_EX(SVM_EXIT_PAUSE),
5976 [x86_intercept_pushf] = PRE_EX(SVM_EXIT_PUSHF),
5977 [x86_intercept_popf] = PRE_EX(SVM_EXIT_POPF),
5978 [x86_intercept_intn] = PRE_EX(SVM_EXIT_SWINT),
5979 [x86_intercept_iret] = PRE_EX(SVM_EXIT_IRET),
5980 [x86_intercept_icebp] = PRE_EX(SVM_EXIT_ICEBP),
5981 [x86_intercept_hlt] = POST_EX(SVM_EXIT_HLT),
Joerg Roedelf6511932011-04-04 12:39:35 +02005982 [x86_intercept_in] = POST_EX(SVM_EXIT_IOIO),
5983 [x86_intercept_ins] = POST_EX(SVM_EXIT_IOIO),
5984 [x86_intercept_out] = POST_EX(SVM_EXIT_IOIO),
5985 [x86_intercept_outs] = POST_EX(SVM_EXIT_IOIO),
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005986};
5987
Joerg Roedel80612522011-04-04 12:39:33 +02005988#undef PRE_EX
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005989#undef POST_EX
Joerg Roedeld7eb8202011-04-04 12:39:32 +02005990#undef POST_MEM
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005991
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005992static int svm_check_intercept(struct kvm_vcpu *vcpu,
5993 struct x86_instruction_info *info,
5994 enum x86_intercept_stage stage)
5995{
Joerg Roedelcfec82c2011-04-04 12:39:28 +02005996 struct vcpu_svm *svm = to_svm(vcpu);
5997 int vmexit, ret = X86EMUL_CONTINUE;
5998 struct __x86_intercept icpt_info;
5999 struct vmcb *vmcb = svm->vmcb;
6000
6001 if (info->intercept >= ARRAY_SIZE(x86_intercept_map))
6002 goto out;
6003
6004 icpt_info = x86_intercept_map[info->intercept];
6005
Avi Kivity40e19b52011-04-21 12:35:41 +03006006 if (stage != icpt_info.stage)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006007 goto out;
6008
6009 switch (icpt_info.exit_code) {
6010 case SVM_EXIT_READ_CR0:
6011 if (info->intercept == x86_intercept_cr_read)
6012 icpt_info.exit_code += info->modrm_reg;
6013 break;
6014 case SVM_EXIT_WRITE_CR0: {
6015 unsigned long cr0, val;
6016 u64 intercept;
6017
6018 if (info->intercept == x86_intercept_cr_write)
6019 icpt_info.exit_code += info->modrm_reg;
6020
Jan Kiszka62baf442014-06-29 21:55:53 +02006021 if (icpt_info.exit_code != SVM_EXIT_WRITE_CR0 ||
6022 info->intercept == x86_intercept_clts)
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006023 break;
6024
6025 intercept = svm->nested.intercept;
6026
6027 if (!(intercept & (1ULL << INTERCEPT_SELECTIVE_CR0)))
6028 break;
6029
6030 cr0 = vcpu->arch.cr0 & ~SVM_CR0_SELECTIVE_MASK;
6031 val = info->src_val & ~SVM_CR0_SELECTIVE_MASK;
6032
6033 if (info->intercept == x86_intercept_lmsw) {
6034 cr0 &= 0xfUL;
6035 val &= 0xfUL;
6036 /* lmsw can't clear PE - catch this here */
6037 if (cr0 & X86_CR0_PE)
6038 val |= X86_CR0_PE;
6039 }
6040
6041 if (cr0 ^ val)
6042 icpt_info.exit_code = SVM_EXIT_CR0_SEL_WRITE;
6043
6044 break;
6045 }
Joerg Roedel3b88e412011-04-04 12:39:29 +02006046 case SVM_EXIT_READ_DR0:
6047 case SVM_EXIT_WRITE_DR0:
6048 icpt_info.exit_code += info->modrm_reg;
6049 break;
Joerg Roedel80612522011-04-04 12:39:33 +02006050 case SVM_EXIT_MSR:
6051 if (info->intercept == x86_intercept_wrmsr)
6052 vmcb->control.exit_info_1 = 1;
6053 else
6054 vmcb->control.exit_info_1 = 0;
6055 break;
Joerg Roedelbf608f82011-04-04 12:39:34 +02006056 case SVM_EXIT_PAUSE:
6057 /*
6058 * We get this for NOP only, but pause
6059 * is rep not, check this here
6060 */
6061 if (info->rep_prefix != REPE_PREFIX)
6062 goto out;
Jan H. Schönherr49a8afc2017-09-05 23:58:44 +02006063 break;
Joerg Roedelf6511932011-04-04 12:39:35 +02006064 case SVM_EXIT_IOIO: {
6065 u64 exit_info;
6066 u32 bytes;
6067
Joerg Roedelf6511932011-04-04 12:39:35 +02006068 if (info->intercept == x86_intercept_in ||
6069 info->intercept == x86_intercept_ins) {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006070 exit_info = ((info->src_val & 0xffff) << 16) |
6071 SVM_IOIO_TYPE_MASK;
Joerg Roedelf6511932011-04-04 12:39:35 +02006072 bytes = info->dst_bytes;
Jan Kiszka6493f152014-06-30 11:07:05 +02006073 } else {
Jan Kiszka6cbc5f52014-06-30 12:52:55 +02006074 exit_info = (info->dst_val & 0xffff) << 16;
Jan Kiszka6493f152014-06-30 11:07:05 +02006075 bytes = info->src_bytes;
Joerg Roedelf6511932011-04-04 12:39:35 +02006076 }
6077
6078 if (info->intercept == x86_intercept_outs ||
6079 info->intercept == x86_intercept_ins)
6080 exit_info |= SVM_IOIO_STR_MASK;
6081
6082 if (info->rep_prefix)
6083 exit_info |= SVM_IOIO_REP_MASK;
6084
6085 bytes = min(bytes, 4u);
6086
6087 exit_info |= bytes << SVM_IOIO_SIZE_SHIFT;
6088
6089 exit_info |= (u32)info->ad_bytes << (SVM_IOIO_ASIZE_SHIFT - 1);
6090
6091 vmcb->control.exit_info_1 = exit_info;
6092 vmcb->control.exit_info_2 = info->next_rip;
6093
6094 break;
6095 }
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006096 default:
6097 break;
6098 }
6099
Bandan Dasf1047652015-06-11 02:05:33 -04006100 /* TODO: Advertise NRIPS to guest hypervisor unconditionally */
6101 if (static_cpu_has(X86_FEATURE_NRIPS))
6102 vmcb->control.next_rip = info->next_rip;
Joerg Roedelcfec82c2011-04-04 12:39:28 +02006103 vmcb->control.exit_code = icpt_info.exit_code;
6104 vmexit = nested_svm_exit_handled(svm);
6105
6106 ret = (vmexit == NESTED_EXIT_DONE) ? X86EMUL_INTERCEPTED
6107 : X86EMUL_CONTINUE;
6108
6109out:
6110 return ret;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006111}
6112
Yang Zhanga547c6d2013-04-11 19:25:10 +08006113static void svm_handle_external_intr(struct kvm_vcpu *vcpu)
6114{
6115 local_irq_enable();
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006116 /*
6117 * We must have an instruction with interrupts enabled, so
6118 * the timer interrupt isn't delayed by the interrupt shadow.
6119 */
6120 asm("nop");
6121 local_irq_disable();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006122}
6123
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006124static void svm_sched_in(struct kvm_vcpu *vcpu, int cpu)
6125{
Babu Moger8566ac82018-03-16 16:37:26 -04006126 if (pause_filter_thresh)
6127 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02006128}
6129
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05006130static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
6131{
6132 if (avic_handle_apic_id_update(vcpu) != 0)
6133 return;
6134 if (avic_handle_dfr_update(vcpu) != 0)
6135 return;
6136 avic_handle_ldr_update(vcpu);
6137}
6138
Borislav Petkov74f16902017-03-26 23:51:24 +02006139static void svm_setup_mce(struct kvm_vcpu *vcpu)
6140{
6141 /* [63:9] are reserved. */
6142 vcpu->arch.mcg_cap &= 0x1ff;
6143}
6144
Ladi Prosek72d7b372017-10-11 16:54:41 +02006145static int svm_smi_allowed(struct kvm_vcpu *vcpu)
6146{
Ladi Prosek05cade72017-10-11 16:54:45 +02006147 struct vcpu_svm *svm = to_svm(vcpu);
6148
6149 /* Per APM Vol.2 15.22.2 "Response to SMI" */
6150 if (!gif_set(svm))
6151 return 0;
6152
6153 if (is_guest_mode(&svm->vcpu) &&
6154 svm->nested.intercept & (1ULL << INTERCEPT_SMI)) {
6155 /* TODO: Might need to set exit_info_1 and exit_info_2 here */
6156 svm->vmcb->control.exit_code = SVM_EXIT_SMI;
6157 svm->nested.exit_required = true;
6158 return 0;
6159 }
6160
Ladi Prosek72d7b372017-10-11 16:54:41 +02006161 return 1;
6162}
6163
Ladi Prosek0234bf82017-10-11 16:54:40 +02006164static int svm_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
6165{
Ladi Prosek05cade72017-10-11 16:54:45 +02006166 struct vcpu_svm *svm = to_svm(vcpu);
6167 int ret;
6168
6169 if (is_guest_mode(vcpu)) {
6170 /* FED8h - SVM Guest */
6171 put_smstate(u64, smstate, 0x7ed8, 1);
6172 /* FEE0h - SVM Guest VMCB Physical Address */
6173 put_smstate(u64, smstate, 0x7ee0, svm->nested.vmcb);
6174
6175 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
6176 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
6177 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
6178
6179 ret = nested_svm_vmexit(svm);
6180 if (ret)
6181 return ret;
6182 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02006183 return 0;
6184}
6185
6186static int svm_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
6187{
Ladi Prosek05cade72017-10-11 16:54:45 +02006188 struct vcpu_svm *svm = to_svm(vcpu);
6189 struct vmcb *nested_vmcb;
6190 struct page *page;
6191 struct {
6192 u64 guest;
6193 u64 vmcb;
6194 } svm_state_save;
6195 int ret;
6196
6197 ret = kvm_vcpu_read_guest(vcpu, smbase + 0xfed8, &svm_state_save,
6198 sizeof(svm_state_save));
6199 if (ret)
6200 return ret;
6201
6202 if (svm_state_save.guest) {
6203 vcpu->arch.hflags &= ~HF_SMM_MASK;
6204 nested_vmcb = nested_svm_map(svm, svm_state_save.vmcb, &page);
6205 if (nested_vmcb)
6206 enter_svm_guest_mode(svm, svm_state_save.vmcb, nested_vmcb, page);
6207 else
6208 ret = 1;
6209 vcpu->arch.hflags |= HF_SMM_MASK;
6210 }
6211 return ret;
Ladi Prosek0234bf82017-10-11 16:54:40 +02006212}
6213
Ladi Prosekcc3d9672017-10-17 16:02:39 +02006214static int enable_smi_window(struct kvm_vcpu *vcpu)
6215{
6216 struct vcpu_svm *svm = to_svm(vcpu);
6217
6218 if (!gif_set(svm)) {
6219 if (vgif_enabled(svm))
6220 set_intercept(svm, INTERCEPT_STGI);
6221 /* STGI will cause a vm exit */
6222 return 1;
6223 }
6224 return 0;
6225}
6226
Brijesh Singh1654efc2017-12-04 10:57:34 -06006227static int sev_asid_new(void)
6228{
6229 int pos;
6230
6231 /*
6232 * SEV-enabled guest must use asid from min_sev_asid to max_sev_asid.
6233 */
6234 pos = find_next_zero_bit(sev_asid_bitmap, max_sev_asid, min_sev_asid - 1);
6235 if (pos >= max_sev_asid)
6236 return -EBUSY;
6237
6238 set_bit(pos, sev_asid_bitmap);
6239 return pos + 1;
6240}
6241
6242static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
6243{
Sean Christopherson81811c12018-03-20 12:17:21 -07006244 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006245 int asid, ret;
6246
6247 ret = -EBUSY;
David Rientjes6804b3e2019-01-02 12:56:33 -08006248 if (unlikely(sev->active))
6249 return ret;
6250
Brijesh Singh1654efc2017-12-04 10:57:34 -06006251 asid = sev_asid_new();
6252 if (asid < 0)
6253 return ret;
6254
6255 ret = sev_platform_init(&argp->error);
6256 if (ret)
6257 goto e_free;
6258
6259 sev->active = true;
6260 sev->asid = asid;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006261 INIT_LIST_HEAD(&sev->regions_list);
Brijesh Singh1654efc2017-12-04 10:57:34 -06006262
6263 return 0;
6264
6265e_free:
6266 __sev_asid_free(asid);
6267 return ret;
6268}
6269
Brijesh Singh59414c92017-12-04 10:57:35 -06006270static int sev_bind_asid(struct kvm *kvm, unsigned int handle, int *error)
6271{
6272 struct sev_data_activate *data;
6273 int asid = sev_get_asid(kvm);
6274 int ret;
6275
6276 wbinvd_on_all_cpus();
6277
6278 ret = sev_guest_df_flush(error);
6279 if (ret)
6280 return ret;
6281
6282 data = kzalloc(sizeof(*data), GFP_KERNEL);
6283 if (!data)
6284 return -ENOMEM;
6285
6286 /* activate ASID on the given handle */
6287 data->handle = handle;
6288 data->asid = asid;
6289 ret = sev_guest_activate(data, error);
6290 kfree(data);
6291
6292 return ret;
6293}
6294
Brijesh Singh89c50582017-12-04 10:57:35 -06006295static int __sev_issue_cmd(int fd, int id, void *data, int *error)
Brijesh Singh59414c92017-12-04 10:57:35 -06006296{
6297 struct fd f;
6298 int ret;
6299
6300 f = fdget(fd);
6301 if (!f.file)
6302 return -EBADF;
6303
6304 ret = sev_issue_cmd_external_user(f.file, id, data, error);
6305
6306 fdput(f);
6307 return ret;
6308}
6309
Brijesh Singh89c50582017-12-04 10:57:35 -06006310static int sev_issue_cmd(struct kvm *kvm, int id, void *data, int *error)
6311{
Sean Christopherson81811c12018-03-20 12:17:21 -07006312 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006313
6314 return __sev_issue_cmd(sev->fd, id, data, error);
6315}
6316
Brijesh Singh59414c92017-12-04 10:57:35 -06006317static int sev_launch_start(struct kvm *kvm, struct kvm_sev_cmd *argp)
6318{
Sean Christopherson81811c12018-03-20 12:17:21 -07006319 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh59414c92017-12-04 10:57:35 -06006320 struct sev_data_launch_start *start;
6321 struct kvm_sev_launch_start params;
6322 void *dh_blob, *session_blob;
6323 int *error = &argp->error;
6324 int ret;
6325
6326 if (!sev_guest(kvm))
6327 return -ENOTTY;
6328
6329 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6330 return -EFAULT;
6331
6332 start = kzalloc(sizeof(*start), GFP_KERNEL);
6333 if (!start)
6334 return -ENOMEM;
6335
6336 dh_blob = NULL;
6337 if (params.dh_uaddr) {
6338 dh_blob = psp_copy_user_blob(params.dh_uaddr, params.dh_len);
6339 if (IS_ERR(dh_blob)) {
6340 ret = PTR_ERR(dh_blob);
6341 goto e_free;
6342 }
6343
6344 start->dh_cert_address = __sme_set(__pa(dh_blob));
6345 start->dh_cert_len = params.dh_len;
6346 }
6347
6348 session_blob = NULL;
6349 if (params.session_uaddr) {
6350 session_blob = psp_copy_user_blob(params.session_uaddr, params.session_len);
6351 if (IS_ERR(session_blob)) {
6352 ret = PTR_ERR(session_blob);
6353 goto e_free_dh;
6354 }
6355
6356 start->session_address = __sme_set(__pa(session_blob));
6357 start->session_len = params.session_len;
6358 }
6359
6360 start->handle = params.handle;
6361 start->policy = params.policy;
6362
6363 /* create memory encryption context */
Brijesh Singh89c50582017-12-04 10:57:35 -06006364 ret = __sev_issue_cmd(argp->sev_fd, SEV_CMD_LAUNCH_START, start, error);
Brijesh Singh59414c92017-12-04 10:57:35 -06006365 if (ret)
6366 goto e_free_session;
6367
6368 /* Bind ASID to this guest */
6369 ret = sev_bind_asid(kvm, start->handle, error);
6370 if (ret)
6371 goto e_free_session;
6372
6373 /* return handle to userspace */
6374 params.handle = start->handle;
6375 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params))) {
6376 sev_unbind_asid(kvm, start->handle);
6377 ret = -EFAULT;
6378 goto e_free_session;
6379 }
6380
6381 sev->handle = start->handle;
6382 sev->fd = argp->sev_fd;
6383
6384e_free_session:
6385 kfree(session_blob);
6386e_free_dh:
6387 kfree(dh_blob);
6388e_free:
6389 kfree(start);
6390 return ret;
6391}
6392
Brijesh Singh89c50582017-12-04 10:57:35 -06006393static int get_num_contig_pages(int idx, struct page **inpages,
6394 unsigned long npages)
6395{
6396 unsigned long paddr, next_paddr;
6397 int i = idx + 1, pages = 1;
6398
6399 /* find the number of contiguous pages starting from idx */
6400 paddr = __sme_page_pa(inpages[idx]);
6401 while (i < npages) {
6402 next_paddr = __sme_page_pa(inpages[i++]);
6403 if ((paddr + PAGE_SIZE) == next_paddr) {
6404 pages++;
6405 paddr = next_paddr;
6406 continue;
6407 }
6408 break;
6409 }
6410
6411 return pages;
6412}
6413
6414static int sev_launch_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
6415{
6416 unsigned long vaddr, vaddr_end, next_vaddr, npages, size;
Sean Christopherson81811c12018-03-20 12:17:21 -07006417 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh89c50582017-12-04 10:57:35 -06006418 struct kvm_sev_launch_update_data params;
6419 struct sev_data_launch_update_data *data;
6420 struct page **inpages;
6421 int i, ret, pages;
6422
6423 if (!sev_guest(kvm))
6424 return -ENOTTY;
6425
6426 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6427 return -EFAULT;
6428
6429 data = kzalloc(sizeof(*data), GFP_KERNEL);
6430 if (!data)
6431 return -ENOMEM;
6432
6433 vaddr = params.uaddr;
6434 size = params.len;
6435 vaddr_end = vaddr + size;
6436
6437 /* Lock the user memory. */
6438 inpages = sev_pin_memory(kvm, vaddr, size, &npages, 1);
6439 if (!inpages) {
6440 ret = -ENOMEM;
6441 goto e_free;
6442 }
6443
6444 /*
6445 * The LAUNCH_UPDATE command will perform in-place encryption of the
6446 * memory content (i.e it will write the same memory region with C=1).
6447 * It's possible that the cache may contain the data with C=0, i.e.,
6448 * unencrypted so invalidate it first.
6449 */
6450 sev_clflush_pages(inpages, npages);
6451
6452 for (i = 0; vaddr < vaddr_end; vaddr = next_vaddr, i += pages) {
6453 int offset, len;
6454
6455 /*
6456 * If the user buffer is not page-aligned, calculate the offset
6457 * within the page.
6458 */
6459 offset = vaddr & (PAGE_SIZE - 1);
6460
6461 /* Calculate the number of pages that can be encrypted in one go. */
6462 pages = get_num_contig_pages(i, inpages, npages);
6463
6464 len = min_t(size_t, ((pages * PAGE_SIZE) - offset), size);
6465
6466 data->handle = sev->handle;
6467 data->len = len;
6468 data->address = __sme_page_pa(inpages[i]) + offset;
6469 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_DATA, data, &argp->error);
6470 if (ret)
6471 goto e_unpin;
6472
6473 size -= len;
6474 next_vaddr = vaddr + len;
6475 }
6476
6477e_unpin:
6478 /* content of memory is updated, mark pages dirty */
6479 for (i = 0; i < npages; i++) {
6480 set_page_dirty_lock(inpages[i]);
6481 mark_page_accessed(inpages[i]);
6482 }
6483 /* unlock the user pages */
6484 sev_unpin_memory(kvm, inpages, npages);
6485e_free:
6486 kfree(data);
6487 return ret;
6488}
6489
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006490static int sev_launch_measure(struct kvm *kvm, struct kvm_sev_cmd *argp)
6491{
Brijesh Singh3e233382018-02-23 12:36:50 -06006492 void __user *measure = (void __user *)(uintptr_t)argp->data;
Sean Christopherson81811c12018-03-20 12:17:21 -07006493 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006494 struct sev_data_launch_measure *data;
6495 struct kvm_sev_launch_measure params;
Brijesh Singh3e233382018-02-23 12:36:50 -06006496 void __user *p = NULL;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006497 void *blob = NULL;
6498 int ret;
6499
6500 if (!sev_guest(kvm))
6501 return -ENOTTY;
6502
Brijesh Singh3e233382018-02-23 12:36:50 -06006503 if (copy_from_user(&params, measure, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006504 return -EFAULT;
6505
6506 data = kzalloc(sizeof(*data), GFP_KERNEL);
6507 if (!data)
6508 return -ENOMEM;
6509
6510 /* User wants to query the blob length */
6511 if (!params.len)
6512 goto cmd;
6513
Brijesh Singh3e233382018-02-23 12:36:50 -06006514 p = (void __user *)(uintptr_t)params.uaddr;
6515 if (p) {
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006516 if (params.len > SEV_FW_BLOB_MAX_SIZE) {
6517 ret = -EINVAL;
6518 goto e_free;
6519 }
6520
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006521 ret = -ENOMEM;
6522 blob = kmalloc(params.len, GFP_KERNEL);
6523 if (!blob)
6524 goto e_free;
6525
6526 data->address = __psp_pa(blob);
6527 data->len = params.len;
6528 }
6529
6530cmd:
6531 data->handle = sev->handle;
6532 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_MEASURE, data, &argp->error);
6533
6534 /*
6535 * If we query the session length, FW responded with expected data.
6536 */
6537 if (!params.len)
6538 goto done;
6539
6540 if (ret)
6541 goto e_free_blob;
6542
6543 if (blob) {
Brijesh Singh3e233382018-02-23 12:36:50 -06006544 if (copy_to_user(p, blob, params.len))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006545 ret = -EFAULT;
6546 }
6547
6548done:
6549 params.len = data->len;
Brijesh Singh3e233382018-02-23 12:36:50 -06006550 if (copy_to_user(measure, &params, sizeof(params)))
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006551 ret = -EFAULT;
6552e_free_blob:
6553 kfree(blob);
6554e_free:
6555 kfree(data);
6556 return ret;
6557}
6558
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006559static int sev_launch_finish(struct kvm *kvm, struct kvm_sev_cmd *argp)
6560{
Sean Christopherson81811c12018-03-20 12:17:21 -07006561 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006562 struct sev_data_launch_finish *data;
6563 int ret;
6564
6565 if (!sev_guest(kvm))
6566 return -ENOTTY;
6567
6568 data = kzalloc(sizeof(*data), GFP_KERNEL);
6569 if (!data)
6570 return -ENOMEM;
6571
6572 data->handle = sev->handle;
6573 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_FINISH, data, &argp->error);
6574
6575 kfree(data);
6576 return ret;
6577}
6578
Brijesh Singh255d9e72017-12-04 10:57:37 -06006579static int sev_guest_status(struct kvm *kvm, struct kvm_sev_cmd *argp)
6580{
Sean Christopherson81811c12018-03-20 12:17:21 -07006581 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006582 struct kvm_sev_guest_status params;
6583 struct sev_data_guest_status *data;
6584 int ret;
6585
6586 if (!sev_guest(kvm))
6587 return -ENOTTY;
6588
6589 data = kzalloc(sizeof(*data), GFP_KERNEL);
6590 if (!data)
6591 return -ENOMEM;
6592
6593 data->handle = sev->handle;
6594 ret = sev_issue_cmd(kvm, SEV_CMD_GUEST_STATUS, data, &argp->error);
6595 if (ret)
6596 goto e_free;
6597
6598 params.policy = data->policy;
6599 params.state = data->state;
6600 params.handle = data->handle;
6601
6602 if (copy_to_user((void __user *)(uintptr_t)argp->data, &params, sizeof(params)))
6603 ret = -EFAULT;
6604e_free:
6605 kfree(data);
6606 return ret;
6607}
6608
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006609static int __sev_issue_dbg_cmd(struct kvm *kvm, unsigned long src,
6610 unsigned long dst, int size,
6611 int *error, bool enc)
6612{
Sean Christopherson81811c12018-03-20 12:17:21 -07006613 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006614 struct sev_data_dbg *data;
6615 int ret;
6616
6617 data = kzalloc(sizeof(*data), GFP_KERNEL);
6618 if (!data)
6619 return -ENOMEM;
6620
6621 data->handle = sev->handle;
6622 data->dst_addr = dst;
6623 data->src_addr = src;
6624 data->len = size;
6625
6626 ret = sev_issue_cmd(kvm,
6627 enc ? SEV_CMD_DBG_ENCRYPT : SEV_CMD_DBG_DECRYPT,
6628 data, error);
6629 kfree(data);
6630 return ret;
6631}
6632
6633static int __sev_dbg_decrypt(struct kvm *kvm, unsigned long src_paddr,
6634 unsigned long dst_paddr, int sz, int *err)
6635{
6636 int offset;
6637
6638 /*
6639 * Its safe to read more than we are asked, caller should ensure that
6640 * destination has enough space.
6641 */
6642 src_paddr = round_down(src_paddr, 16);
6643 offset = src_paddr & 15;
6644 sz = round_up(sz + offset, 16);
6645
6646 return __sev_issue_dbg_cmd(kvm, src_paddr, dst_paddr, sz, err, false);
6647}
6648
6649static int __sev_dbg_decrypt_user(struct kvm *kvm, unsigned long paddr,
6650 unsigned long __user dst_uaddr,
6651 unsigned long dst_paddr,
6652 int size, int *err)
6653{
6654 struct page *tpage = NULL;
6655 int ret, offset;
6656
6657 /* if inputs are not 16-byte then use intermediate buffer */
6658 if (!IS_ALIGNED(dst_paddr, 16) ||
6659 !IS_ALIGNED(paddr, 16) ||
6660 !IS_ALIGNED(size, 16)) {
6661 tpage = (void *)alloc_page(GFP_KERNEL);
6662 if (!tpage)
6663 return -ENOMEM;
6664
6665 dst_paddr = __sme_page_pa(tpage);
6666 }
6667
6668 ret = __sev_dbg_decrypt(kvm, paddr, dst_paddr, size, err);
6669 if (ret)
6670 goto e_free;
6671
6672 if (tpage) {
6673 offset = paddr & 15;
6674 if (copy_to_user((void __user *)(uintptr_t)dst_uaddr,
6675 page_address(tpage) + offset, size))
6676 ret = -EFAULT;
6677 }
6678
6679e_free:
6680 if (tpage)
6681 __free_page(tpage);
6682
6683 return ret;
6684}
6685
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006686static int __sev_dbg_encrypt_user(struct kvm *kvm, unsigned long paddr,
6687 unsigned long __user vaddr,
6688 unsigned long dst_paddr,
6689 unsigned long __user dst_vaddr,
6690 int size, int *error)
6691{
6692 struct page *src_tpage = NULL;
6693 struct page *dst_tpage = NULL;
6694 int ret, len = size;
6695
6696 /* If source buffer is not aligned then use an intermediate buffer */
6697 if (!IS_ALIGNED(vaddr, 16)) {
6698 src_tpage = alloc_page(GFP_KERNEL);
6699 if (!src_tpage)
6700 return -ENOMEM;
6701
6702 if (copy_from_user(page_address(src_tpage),
6703 (void __user *)(uintptr_t)vaddr, size)) {
6704 __free_page(src_tpage);
6705 return -EFAULT;
6706 }
6707
6708 paddr = __sme_page_pa(src_tpage);
6709 }
6710
6711 /*
6712 * If destination buffer or length is not aligned then do read-modify-write:
6713 * - decrypt destination in an intermediate buffer
6714 * - copy the source buffer in an intermediate buffer
6715 * - use the intermediate buffer as source buffer
6716 */
6717 if (!IS_ALIGNED(dst_vaddr, 16) || !IS_ALIGNED(size, 16)) {
6718 int dst_offset;
6719
6720 dst_tpage = alloc_page(GFP_KERNEL);
6721 if (!dst_tpage) {
6722 ret = -ENOMEM;
6723 goto e_free;
6724 }
6725
6726 ret = __sev_dbg_decrypt(kvm, dst_paddr,
6727 __sme_page_pa(dst_tpage), size, error);
6728 if (ret)
6729 goto e_free;
6730
6731 /*
6732 * If source is kernel buffer then use memcpy() otherwise
6733 * copy_from_user().
6734 */
6735 dst_offset = dst_paddr & 15;
6736
6737 if (src_tpage)
6738 memcpy(page_address(dst_tpage) + dst_offset,
6739 page_address(src_tpage), size);
6740 else {
6741 if (copy_from_user(page_address(dst_tpage) + dst_offset,
6742 (void __user *)(uintptr_t)vaddr, size)) {
6743 ret = -EFAULT;
6744 goto e_free;
6745 }
6746 }
6747
6748 paddr = __sme_page_pa(dst_tpage);
6749 dst_paddr = round_down(dst_paddr, 16);
6750 len = round_up(size, 16);
6751 }
6752
6753 ret = __sev_issue_dbg_cmd(kvm, paddr, dst_paddr, len, error, true);
6754
6755e_free:
6756 if (src_tpage)
6757 __free_page(src_tpage);
6758 if (dst_tpage)
6759 __free_page(dst_tpage);
6760 return ret;
6761}
6762
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006763static int sev_dbg_crypt(struct kvm *kvm, struct kvm_sev_cmd *argp, bool dec)
6764{
6765 unsigned long vaddr, vaddr_end, next_vaddr;
Colin Ian King0186ec82018-08-28 16:22:28 +01006766 unsigned long dst_vaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006767 struct page **src_p, **dst_p;
6768 struct kvm_sev_dbg debug;
6769 unsigned long n;
6770 int ret, size;
6771
6772 if (!sev_guest(kvm))
6773 return -ENOTTY;
6774
6775 if (copy_from_user(&debug, (void __user *)(uintptr_t)argp->data, sizeof(debug)))
6776 return -EFAULT;
6777
6778 vaddr = debug.src_uaddr;
6779 size = debug.len;
6780 vaddr_end = vaddr + size;
6781 dst_vaddr = debug.dst_uaddr;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006782
6783 for (; vaddr < vaddr_end; vaddr = next_vaddr) {
6784 int len, s_off, d_off;
6785
6786 /* lock userspace source and destination page */
6787 src_p = sev_pin_memory(kvm, vaddr & PAGE_MASK, PAGE_SIZE, &n, 0);
6788 if (!src_p)
6789 return -EFAULT;
6790
6791 dst_p = sev_pin_memory(kvm, dst_vaddr & PAGE_MASK, PAGE_SIZE, &n, 1);
6792 if (!dst_p) {
6793 sev_unpin_memory(kvm, src_p, n);
6794 return -EFAULT;
6795 }
6796
6797 /*
6798 * The DBG_{DE,EN}CRYPT commands will perform {dec,en}cryption of the
6799 * memory content (i.e it will write the same memory region with C=1).
6800 * It's possible that the cache may contain the data with C=0, i.e.,
6801 * unencrypted so invalidate it first.
6802 */
6803 sev_clflush_pages(src_p, 1);
6804 sev_clflush_pages(dst_p, 1);
6805
6806 /*
6807 * Since user buffer may not be page aligned, calculate the
6808 * offset within the page.
6809 */
6810 s_off = vaddr & ~PAGE_MASK;
6811 d_off = dst_vaddr & ~PAGE_MASK;
6812 len = min_t(size_t, (PAGE_SIZE - s_off), size);
6813
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006814 if (dec)
6815 ret = __sev_dbg_decrypt_user(kvm,
6816 __sme_page_pa(src_p[0]) + s_off,
6817 dst_vaddr,
6818 __sme_page_pa(dst_p[0]) + d_off,
6819 len, &argp->error);
6820 else
6821 ret = __sev_dbg_encrypt_user(kvm,
6822 __sme_page_pa(src_p[0]) + s_off,
6823 vaddr,
6824 __sme_page_pa(dst_p[0]) + d_off,
6825 dst_vaddr,
6826 len, &argp->error);
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006827
6828 sev_unpin_memory(kvm, src_p, 1);
6829 sev_unpin_memory(kvm, dst_p, 1);
6830
6831 if (ret)
6832 goto err;
6833
6834 next_vaddr = vaddr + len;
6835 dst_vaddr = dst_vaddr + len;
6836 size -= len;
6837 }
6838err:
6839 return ret;
6840}
6841
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006842static int sev_launch_secret(struct kvm *kvm, struct kvm_sev_cmd *argp)
6843{
Sean Christopherson81811c12018-03-20 12:17:21 -07006844 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006845 struct sev_data_launch_secret *data;
6846 struct kvm_sev_launch_secret params;
6847 struct page **pages;
6848 void *blob, *hdr;
6849 unsigned long n;
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006850 int ret, offset;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006851
6852 if (!sev_guest(kvm))
6853 return -ENOTTY;
6854
6855 if (copy_from_user(&params, (void __user *)(uintptr_t)argp->data, sizeof(params)))
6856 return -EFAULT;
6857
6858 pages = sev_pin_memory(kvm, params.guest_uaddr, params.guest_len, &n, 1);
6859 if (!pages)
6860 return -ENOMEM;
6861
6862 /*
6863 * The secret must be copied into contiguous memory region, lets verify
6864 * that userspace memory pages are contiguous before we issue command.
6865 */
6866 if (get_num_contig_pages(0, pages, n) != n) {
6867 ret = -EINVAL;
6868 goto e_unpin_memory;
6869 }
6870
6871 ret = -ENOMEM;
6872 data = kzalloc(sizeof(*data), GFP_KERNEL);
6873 if (!data)
6874 goto e_unpin_memory;
6875
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006876 offset = params.guest_uaddr & (PAGE_SIZE - 1);
6877 data->guest_address = __sme_page_pa(pages[0]) + offset;
6878 data->guest_len = params.guest_len;
6879
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006880 blob = psp_copy_user_blob(params.trans_uaddr, params.trans_len);
6881 if (IS_ERR(blob)) {
6882 ret = PTR_ERR(blob);
6883 goto e_free;
6884 }
6885
6886 data->trans_address = __psp_pa(blob);
6887 data->trans_len = params.trans_len;
6888
6889 hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len);
6890 if (IS_ERR(hdr)) {
6891 ret = PTR_ERR(hdr);
6892 goto e_free_blob;
6893 }
Brijesh Singh9c5e0af2018-02-19 10:13:25 -06006894 data->hdr_address = __psp_pa(hdr);
6895 data->hdr_len = params.hdr_len;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006896
6897 data->handle = sev->handle;
6898 ret = sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE_SECRET, data, &argp->error);
6899
6900 kfree(hdr);
6901
6902e_free_blob:
6903 kfree(blob);
6904e_free:
6905 kfree(data);
6906e_unpin_memory:
6907 sev_unpin_memory(kvm, pages, n);
6908 return ret;
6909}
6910
Brijesh Singh1654efc2017-12-04 10:57:34 -06006911static int svm_mem_enc_op(struct kvm *kvm, void __user *argp)
6912{
6913 struct kvm_sev_cmd sev_cmd;
6914 int r;
6915
6916 if (!svm_sev_enabled())
6917 return -ENOTTY;
6918
6919 if (copy_from_user(&sev_cmd, argp, sizeof(struct kvm_sev_cmd)))
6920 return -EFAULT;
6921
6922 mutex_lock(&kvm->lock);
6923
6924 switch (sev_cmd.id) {
6925 case KVM_SEV_INIT:
6926 r = sev_guest_init(kvm, &sev_cmd);
6927 break;
Brijesh Singh59414c92017-12-04 10:57:35 -06006928 case KVM_SEV_LAUNCH_START:
6929 r = sev_launch_start(kvm, &sev_cmd);
6930 break;
Brijesh Singh89c50582017-12-04 10:57:35 -06006931 case KVM_SEV_LAUNCH_UPDATE_DATA:
6932 r = sev_launch_update_data(kvm, &sev_cmd);
6933 break;
Brijesh Singh0d0736f2017-12-04 10:57:36 -06006934 case KVM_SEV_LAUNCH_MEASURE:
6935 r = sev_launch_measure(kvm, &sev_cmd);
6936 break;
Brijesh Singh5bdb0e22017-12-04 10:57:36 -06006937 case KVM_SEV_LAUNCH_FINISH:
6938 r = sev_launch_finish(kvm, &sev_cmd);
6939 break;
Brijesh Singh255d9e72017-12-04 10:57:37 -06006940 case KVM_SEV_GUEST_STATUS:
6941 r = sev_guest_status(kvm, &sev_cmd);
6942 break;
Brijesh Singh24f41fb2017-12-04 10:57:37 -06006943 case KVM_SEV_DBG_DECRYPT:
6944 r = sev_dbg_crypt(kvm, &sev_cmd, true);
6945 break;
Brijesh Singh7d1594f2017-12-04 10:57:37 -06006946 case KVM_SEV_DBG_ENCRYPT:
6947 r = sev_dbg_crypt(kvm, &sev_cmd, false);
6948 break;
Brijesh Singh9f5b5b92017-12-04 10:57:38 -06006949 case KVM_SEV_LAUNCH_SECRET:
6950 r = sev_launch_secret(kvm, &sev_cmd);
6951 break;
Brijesh Singh1654efc2017-12-04 10:57:34 -06006952 default:
6953 r = -EINVAL;
6954 goto out;
6955 }
6956
6957 if (copy_to_user(argp, &sev_cmd, sizeof(struct kvm_sev_cmd)))
6958 r = -EFAULT;
6959
6960out:
6961 mutex_unlock(&kvm->lock);
6962 return r;
6963}
6964
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006965static int svm_register_enc_region(struct kvm *kvm,
6966 struct kvm_enc_region *range)
6967{
Sean Christopherson81811c12018-03-20 12:17:21 -07006968 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006969 struct enc_region *region;
6970 int ret = 0;
6971
6972 if (!sev_guest(kvm))
6973 return -ENOTTY;
6974
Dan Carpenter86bf20c2018-05-19 09:01:36 +03006975 if (range->addr > ULONG_MAX || range->size > ULONG_MAX)
6976 return -EINVAL;
6977
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06006978 region = kzalloc(sizeof(*region), GFP_KERNEL);
6979 if (!region)
6980 return -ENOMEM;
6981
6982 region->pages = sev_pin_memory(kvm, range->addr, range->size, &region->npages, 1);
6983 if (!region->pages) {
6984 ret = -ENOMEM;
6985 goto e_free;
6986 }
6987
6988 /*
6989 * The guest may change the memory encryption attribute from C=0 -> C=1
6990 * or vice versa for this memory range. Lets make sure caches are
6991 * flushed to ensure that guest data gets written into memory with
6992 * correct C-bit.
6993 */
6994 sev_clflush_pages(region->pages, region->npages);
6995
6996 region->uaddr = range->addr;
6997 region->size = range->size;
6998
6999 mutex_lock(&kvm->lock);
7000 list_add_tail(&region->list, &sev->regions_list);
7001 mutex_unlock(&kvm->lock);
7002
7003 return ret;
7004
7005e_free:
7006 kfree(region);
7007 return ret;
7008}
7009
7010static struct enc_region *
7011find_enc_region(struct kvm *kvm, struct kvm_enc_region *range)
7012{
Sean Christopherson81811c12018-03-20 12:17:21 -07007013 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007014 struct list_head *head = &sev->regions_list;
7015 struct enc_region *i;
7016
7017 list_for_each_entry(i, head, list) {
7018 if (i->uaddr == range->addr &&
7019 i->size == range->size)
7020 return i;
7021 }
7022
7023 return NULL;
7024}
7025
7026
7027static int svm_unregister_enc_region(struct kvm *kvm,
7028 struct kvm_enc_region *range)
7029{
7030 struct enc_region *region;
7031 int ret;
7032
7033 mutex_lock(&kvm->lock);
7034
7035 if (!sev_guest(kvm)) {
7036 ret = -ENOTTY;
7037 goto failed;
7038 }
7039
7040 region = find_enc_region(kvm, range);
7041 if (!region) {
7042 ret = -EINVAL;
7043 goto failed;
7044 }
7045
7046 __unregister_enc_region_locked(kvm, region);
7047
7048 mutex_unlock(&kvm->lock);
7049 return 0;
7050
7051failed:
7052 mutex_unlock(&kvm->lock);
7053 return ret;
7054}
7055
Kees Cook404f6aa2016-08-08 16:29:06 -07007056static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007057 .cpu_has_kvm_support = has_svm,
7058 .disabled_by_bios = is_disabled,
7059 .hardware_setup = svm_hardware_setup,
7060 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007061 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007062 .hardware_enable = svm_hardware_enable,
7063 .hardware_disable = svm_hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02007064 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
Tom Lendackybc226f02018-05-10 22:06:39 +02007065 .has_emulated_msr = svm_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007066
7067 .vcpu_create = svm_create_vcpu,
7068 .vcpu_free = svm_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007069 .vcpu_reset = svm_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007070
Sean Christopherson434a1e92018-03-20 12:17:18 -07007071 .vm_alloc = svm_vm_alloc,
7072 .vm_free = svm_vm_free,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007073 .vm_init = avic_vm_init,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007074 .vm_destroy = svm_vm_destroy,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007075
Avi Kivity04d2cc72007-09-10 18:10:54 +03007076 .prepare_guest_switch = svm_prepare_guest_switch,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007077 .vcpu_load = svm_vcpu_load,
7078 .vcpu_put = svm_vcpu_put,
Suravee Suthikulpanit8221c132016-05-04 14:09:52 -05007079 .vcpu_blocking = svm_vcpu_blocking,
7080 .vcpu_unblocking = svm_vcpu_unblocking,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007081
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007082 .update_bp_intercept = update_bp_intercept,
Tom Lendacky801e4592018-02-21 13:39:51 -06007083 .get_msr_feature = svm_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007084 .get_msr = svm_get_msr,
7085 .set_msr = svm_set_msr,
7086 .get_segment_base = svm_get_segment_base,
7087 .get_segment = svm_get_segment,
7088 .set_segment = svm_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007089 .get_cpl = svm_get_cpl,
Rusty Russell1747fb72007-09-06 01:21:32 +10007090 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007091 .decache_cr0_guest_bits = svm_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007092 .decache_cr3 = svm_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007093 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007094 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007095 .set_cr3 = svm_set_cr3,
7096 .set_cr4 = svm_set_cr4,
7097 .set_efer = svm_set_efer,
7098 .get_idt = svm_get_idt,
7099 .set_idt = svm_set_idt,
7100 .get_gdt = svm_get_gdt,
7101 .set_gdt = svm_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007102 .get_dr6 = svm_get_dr6,
7103 .set_dr6 = svm_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007104 .set_dr7 = svm_set_dr7,
Paolo Bonzinifacb0132014-02-21 10:32:27 +01007105 .sync_dirty_debug_regs = svm_sync_dirty_debug_regs,
Avi Kivity6de4f3a2009-05-31 22:58:47 +03007106 .cache_reg = svm_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007107 .get_rflags = svm_get_rflags,
7108 .set_rflags = svm_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007109
Avi Kivity6aa8b732006-12-10 02:21:36 -08007110 .tlb_flush = svm_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007111 .tlb_flush_gva = svm_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007112
Avi Kivity6aa8b732006-12-10 02:21:36 -08007113 .run = svm_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007114 .handle_exit = handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007115 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007116 .set_interrupt_shadow = svm_set_interrupt_shadow,
7117 .get_interrupt_shadow = svm_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007118 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007119 .set_irq = svm_set_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007120 .set_nmi = svm_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007121 .queue_exception = svm_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007122 .cancel_injection = svm_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007123 .interrupt_allowed = svm_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007124 .nmi_allowed = svm_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007125 .get_nmi_mask = svm_get_nmi_mask,
7126 .set_nmi_mask = svm_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007127 .enable_nmi_window = enable_nmi_window,
7128 .enable_irq_window = enable_irq_window,
7129 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007130 .set_virtual_apic_mode = svm_set_virtual_apic_mode,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007131 .get_enable_apicv = svm_get_enable_apicv,
7132 .refresh_apicv_exec_ctrl = svm_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007133 .load_eoi_exitmap = svm_load_eoi_exitmap,
Suravee Suthikulpanit44a95da2016-05-04 14:09:46 -05007134 .hwapic_irr_update = svm_hwapic_irr_update,
7135 .hwapic_isr_update = svm_hwapic_isr_update,
Liran Alonfa59cc02017-12-24 18:12:53 +02007136 .sync_pir_to_irr = kvm_lapic_find_highest_irr,
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05007137 .apicv_post_state_restore = avic_post_state_restore,
Izik Eiduscbc94022007-10-25 00:29:55 +02007138
7139 .set_tss_addr = svm_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007140 .set_identity_map_addr = svm_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007141 .get_tdp_level = get_npt_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007142 .get_mt_mask = svm_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007143
Avi Kivity586f9602010-11-18 13:09:54 +02007144 .get_exit_info = svm_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007145
Sheng Yang17cc3932010-01-05 19:02:27 +08007146 .get_lpage_level = svm_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007147
7148 .cpuid_update = svm_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007149
7150 .rdtscp_supported = svm_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007151 .invpcid_supported = svm_invpcid_supported,
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01007152 .mpx_supported = svm_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007153 .xsaves_supported = svm_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007154 .umip_emulated = svm_umip_emulated,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007155
7156 .set_supported_cpuid = svm_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007157
7158 .has_wbinvd_exit = svm_has_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007159
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007160 .read_l1_tsc_offset = svm_read_l1_tsc_offset,
Leonid Shatz76c84762018-11-06 12:14:25 +02007161 .write_l1_tsc_offset = svm_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007162
7163 .set_tdp_cr3 = set_tdp_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007164
7165 .check_intercept = svm_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007166 .handle_external_intr = svm_handle_external_intr,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007167
Sean Christophersond264ee02018-08-27 15:21:12 -07007168 .request_immediate_exit = __kvm_request_immediate_exit,
7169
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007170 .sched_in = svm_sched_in,
Wei Huang25462f7f2015-06-19 15:45:05 +02007171
7172 .pmu_ops = &amd_pmu_ops,
Suravee Suthikulpanit340d3bc2016-05-04 14:09:47 -05007173 .deliver_posted_interrupt = svm_deliver_avic_intr,
Suravee Suthikulpanit411b44b2016-08-23 13:52:43 -05007174 .update_pi_irte = svm_update_pi_irte,
Borislav Petkov74f16902017-03-26 23:51:24 +02007175 .setup_mce = svm_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007176
Ladi Prosek72d7b372017-10-11 16:54:41 +02007177 .smi_allowed = svm_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007178 .pre_enter_smm = svm_pre_enter_smm,
7179 .pre_leave_smm = svm_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007180 .enable_smi_window = enable_smi_window,
Brijesh Singh1654efc2017-12-04 10:57:34 -06007181
7182 .mem_enc_op = svm_mem_enc_op,
Brijesh Singh1e80fdc2017-12-04 10:57:38 -06007183 .mem_enc_reg_region = svm_register_enc_region,
7184 .mem_enc_unreg_region = svm_unregister_enc_region,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007185};
7186
7187static int __init svm_init(void)
7188{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007189 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
Avi Kivity0ee75be2010-04-28 15:39:01 +03007190 __alignof__(struct vcpu_svm), THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007191}
7192
7193static void __exit svm_exit(void)
7194{
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007195 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007196}
7197
7198module_init(svm_init)
7199module_exit(svm_exit)